.hero-section {
  height: calc(100vh - 8rem);
  width: 100%;
  padding: 0;
  margin-top: 0;
  background-color: var(--clr-primary-lightest);
  /* background-image: linear-gradient(120deg, #1488cc, #2b32b2); */
}

.hero-section .hero-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 3rem;
  gap: 2rem;
}

.hero-section h1,
.hero-section h3 {
  margin: 0;
  padding: 0;
}

.hero-section p {
  color: var(--clr-gray-d400);
}

.hero-section h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}

.hero-section .hero-img {
  width: 50%;
  max-height: 100%;
}

/* ABOUT SECTION */
.about-section {
  width: 90%;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.about-section .wrapper {
  width: 100%;
  align-items: flex-start;
  flex-direction: row-reverse;
  gap: 2rem;
}

.about-section .about-img {
  width: 50%;
  height: 40rem;
}

.about-section .about-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem;
}

/*FEATURED PRODUCT SECTION */
.featured-products {
  flex-direction: column;
  gap: 3rem;
}

.featured-products .wrapper {
  flex-direction: column;
  gap: 1rem;
}

.featured-products .wrapper h2 {
  align-self: flex-start;
}

.featured-products .wrapper .cta {
  align-self: flex-end;
}

/* SERVICES SECTION */
.services-section {
  width: 100%;
  flex-direction: column;
  background-color: var(--clr-primary-lightest);
  padding: 5rem;
}

.services-section > .cta {
  align-self: center;
  margin: 3rem 0;
  /* margin-right: 3rem; */
}
.services-section .services {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: 2rem;
}

.services-section .service {
  width: 20rem;
  min-height: 25rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 1rem;
  text-align: center;
  gap: 1rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: 0.1rem solid var(--clr-gray-200);
  background-color: white;
}

.services-section .service-img {
  width: 10rem;
  height: 10rem;
  border-radius: var(--radius-half);
}

.services-section .service .content {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;

  text-align: center;
}
.services-section .service .content p {
  font-size: 1.5rem;
  text-transform: lowercase;
}

.services-section .service a {
  display: flex;
  align-items: center;
  color: var(--clr-primary-light);
  font-size: 1.5rem;
  font-weight: 500;
  border-bottom: 0.1rem solid var(--clr-primary-light);
}
.services-section .service a img {
  width: 3rem;
  height: 3rem;
}

/* REQUEST QUOTE */
.request-quote {
  flex-direction: column;
}

.request-quote .wrapper {
  align-items: center;
  gap: 1rem;
}

.request-quote .wrapper-img {
  width: 50%;
  height: 40rem;
}

.request-quote .wrapper-content {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.request-quote form {
  background-color: rgba(255, 255, 255, 0.507);
  -webkit-backdrop-filter: blur(0.3rem);
  backdrop-filter: blur(0.3rem);
}

@media (max-width: 800px) {
  .hero-section {
    min-height: calc(100vh - 8rem);
    background-image: url("../img/hero-img.jpg");
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-section::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.595);
  }

  .hero-section .hero-content {
    width: 100%;
    z-index: 1;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-section h3 {
    color: white;
  }
  
  .hero-section h1 {
      color: #eeee00;
  }

  .hero-section p {
    color: white;
  }

  .hero-section .hero-img {
    display: none;
  }

  /* ABOUT SECTION */
  .about-section .wrapper {
    flex-direction: column;
  }

  .about-section .about-img {
    width: 100%;
    height: 40rem;
  }

  .about-section .about-content {
    width: 100%;
  }

  /*  REQUEST A QUOTE SECTION*/
  .request-quote .wrapper-img {
    width: 100%;
  }

  .request-quote .wrapper-content {
    width: 100%;
  }
}
