.container {
  max-width: 1580px;
  padding: 0 1.5rem;
  margin: auto;
  overflow: hidden; }

.text-primary {
  color: #33cc66; }

.btn-main, .btn-light {
  display: inline-block;
  padding: 0.8rem 2rem;
  transition: all 0.5;
  border: none;
  cursor: pointer; }

.btn-main {
  color: #292828;
  background-color: #33cc66;
  border-radius: 5px;
  text-transform: uppercase; }

.btn-light {
  color: #292828;
  background-color: #33cc66;
  border-radius: 5px;
  text-transform: uppercase; }

button[class^="btn-"]:hover,
a[class^="btn-"]:hover,
input[class^="btn-"]:hover {
  background-color: #87e1a5; }

.lead-light {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #fff; }

.lead-dark {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #292828;
  font-weight: 200; }

.section-title-light {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: 200; }

.section-title-dark {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: #292828;
  text-transform: uppercase;
  font-weight: 200; }

.text-center {
  text-align: center; }

.py-1 {
  padding: 1rem 0; }

.py-2 {
  padding: 2rem 0; }

.py-3 {
  padding: 3rem 0; }

.py-4 {
  padding: 4rem 0; }

.my-1 {
  margin: 1rem 0; }

.my-2 {
  margin: 2rem 0; }

.my-3 {
  margin: 3rem 0; }

.my-4 {
  margin: 4rem 0; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  font-family: "Rubik", sans-serif;
  line-height: 1.6;
  background: #fff; }

a {
  text-decoration: none;
  color: #fff; }

ul {
  list-style: none; }

img {
  width: 100%; }

#header-content {
  height: 100vh;
  align-items: center;
  background: url("../img/showcase main.jpg") no-repeat center center/cover;
  text-align: center;
  padding-top: 20%; }
  #header-content h1 {
    font-size: 4rem;
    line-height: 1.2;
    color: #fff; }
    #header-content h1 p {
      padding-top: 2rem; }

#logo {
  width: 115px;
  height: 40px; }

#main-nav {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem; }
  #main-nav ul {
    display: flex; }
  #main-nav li {
    padding: 1rem 1.5rem;
    font-size: small; }
  #main-nav a {
    text-transform: uppercase;
    padding-bottom: 0.5rem; }
    #main-nav a:hover {
      color: #87e1a5; }
    #main-nav a.current {
      color: #33cc66; }

#header-home {
  background: #000 no-repeat center / cover;
  width: 100%;
  color: #fff;
  position: fixed;
  opacity: 0.9; }

#header-thankyou {
  height: 100vh;
  align-items: center;
  background: url("../img/showcase main.jpg") no-repeat center center/cover;
  text-align: center;
  padding-top: 20%;
  color: #fff; }
  #header-thankyou h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #fff; }
    #header-thankyou h1 p {
      padding-top: 2rem; }

#about {
  background-color: #292828;
  padding-top: 4rem;
  padding-bottom: 4rem; }

#services {
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding-top: 4rem;
  padding-bottom: 4rem; }
  #services .specials {
    margin-top: 1rem;
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(5, 1fr);
    text-align: center; }
  #services .img {
    height: 100px;
    width: 100px;
    padding-bottom: 0.4rem; }

.items {
  display: grid;
  grid-template-columns: repeat(4, 3fr); }

#projects img:hover {
  opacity: 0.7; }

.item {
  padding: 0 0.2rem; }

#projects {
  padding-top: 4rem;
  padding-bottom: 4rem; }

#testimonials {
  background-color: #e0eee3; }
  #testimonials .testimonials {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0.5rem; }
  #testimonials ul {
    list-style: none;
    font-size: 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center; }
  #testimonials h3 {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem; }
  #testimonials img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 0.5rem; }

#contact-a .text-fields {
  display: grid;
  margin-top: 5rem;
  grid-template-areas: "name email"
 "subject phone"
 "message message";
  grid-gap: 1.4rem;
  margin-bottom: 4rem; }

#contact-a .text-fields .name-input {
  grid-area: name; }

#contact-a .text-fields .subject-input {
  grid-area: subject; }

#contact-a .text-fields .email-input {
  grid-area: email; }

#contact-a .text-fields .phone-input {
  grid-area: phone; }

#contact-a .text-fields .message-input {
  grid-area: message;
  height: 100px; }

#contact-a .text-fields .text-input {
  padding: 0.5rem 1rem; }

#contact-a {
  padding-top: 5rem; /* Adjust padding */
  margin-bottom: 2rem;
}

#contact-a p {
  color: #000; /* Ensure the phone number text is visible */
  font-size: 18px; /* Adjust font size for better visibility */
}

@media screen and (max-width: 768px) {
  #contact-a p {
    font-size: 16px; /* Adjust font size for smaller screens */
  }

  #contact-a a {
    font-size: 18px; /* Increase font size for visibility */
    color: #007bff; /* Ensure anchor link is visible */
    display: block; /* Make sure the link takes up full width */
  }
}

#main-footer {
  background: #333;
  color: #fff;
  height: 3rem;
  text-align: center;
  font-size: 0.8rem;
  padding-top: 1rem; }

@media (max-width: 800px) {
  #header-content {
    height: 40rem;
    padding-top: 10rem; } }

@media (max-width: 600px) {
  #main-nav {
    flex-direction: column;
    align-items: center; }
    #main-nav li {
      padding: 0.5rem;
      font-size: 0.75rem; }
  #header-content {
    padding-top: 10rem; }
    #header-content h1 {
      font-size: 2rem; }
  #header-thankyou h1 {
    font-size: 2rem;
    padding-top: 10rem; }
  #services .specials,
  #testimonials .testimonials,
  .items {
    grid-template-columns: auto; }
  #services .specials div {
    border-bottom: 1px #87e1a5 solid;
    padding-bottom: 1rem; }
    #services .specials div:last-child {
      border: none;
      padding-bottom: 0; }
  #testimonials .testimonials div {
    border-bottom: 1px #fff solid;
    padding-bottom: 1rem; }
    #testimonials .testimonials div:last-child {
      border: none;
      padding-bottom: 0; }
  #contact-a .text-fields {
    grid-template-areas: "name"
 "subject"
 "email"
 "phone"
 "message"; } }

@media (max-width: 330px) {
  #main-nav {
    flex-direction: column;
    align-items: center; }
    #main-nav li {
      padding: 0.5rem;
      font-size: 0.6rem; }
  #header-content {
    padding-top: 10rem; }
    #header-content h1 {
      font-size: 2rem; }
  #about {
    padding-top: 10rem; }
    #about h1 {
      font-size: 2rem; }
  #main-footer {
    height: 3rem;
    text-align: center;
    font-size: 0.7rem; } }

@media (max-height: 580px) {
  #header-content {
    padding-top: 6rem; } }

@media (max-height: 330px) {
  #header-content h1 {
    font-size: 2rem; } }
