/* Header */

.header__nav-list {
  list-style: none;
  display: flex;
  gap: 4.8rem;
  justify-content: end;
  align-items: center;
  padding: 3.2rem;
  position: absolute;
  top: 2%;
  left: 0;
  width: 100%;
  z-index: 10;
}

.nav__time {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-white);
  padding-bottom: 0.5rem;
}

.header__social-icon {
  height: 2.8rem;
  width: 2.8rem;
  color: var(--color-white);
}

/* Hero section */
.hero__section {
  height: 90vh;
  /* background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.8)
    ),
    url(img/hero-img.jpg); */
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.5)
    ),
    url(img/hero-img__red-min.jpg);
  /* background-blend-mode: multiply; */
  background-size: cover;

  /* background-attachment: fixed; */
  position: relative;
}

.hero__text-box {
  color: var(--color-white);
  position: absolute;
  top: 65%;
  left: 37%;
  transform: translate(-50%, -50%);
}

/* Section services */

.services {
  margin-top: 12rem;
  position: relative;
  /* background: url('img/AdobeStock_265186493.jpeg') center center / cover no-repeat; */
}

.service__gear-1 {
  height: 20%;
  opacity: 30%;
  position: absolute;
  top: -10%;
  left: 3%;
}

.service__gear-2 {
  height: 20%;
  opacity: 30%;
  position: absolute;
  bottom: -25%;
  right: 3%;
}

.service__box {
  height: 17.6rem;
  width: 34.6rem;
  background-color: var(--color-primary-light);
  /* background: linear-gradient(var(--color-grey-light-1, var(--color-white))); */
  color: var(--color-white);
  border-radius: 1rem;

  transition: all 0.3s;
}

.service__box:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.1);
}

.service__box-items {
  padding: 3.2rem 4rem;
}

.service__box-icon {
  color: var(--color-white);
  height: 5rem;
  margin-bottom: 1.8rem;
}

.service__box-time {
  font-size: 1rem;
  padding-bottom: 1rem;
}

.service__box-description {
  font-size: 1.4rem;
  line-height: 1.4;
}

/* Brands logos section */

.brands__logos-section {
  height: 90rem;
  background-color: var(--color-primary-light);
  padding-top: 8.2rem;
  margin-top: 14.4rem;

  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)),
    url("img/logos-sec-bg-min.jpg");
  background-size: cover;
}

.brand__logo-box {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  width: 16rem;
  height: 8rem;
  overflow: hidden;
}

.brand__logos-desclaimer-box {
  width: 72%;
  margin: 0 auto;
}

.desclaimer-text {
  font-size: 1rem;
  line-height: 1.6;
  padding: 10rem 0;
  color: var(--color-white);
}

/* Proof stats section */

.stats-proof {
  margin-top: 12rem;
}

.stats-proof__item {
  display: flex;
  gap: 1.6rem;
  justify-items: center;
  align-items: center;
}

.stats-proof__number {
  font-size: 4.2rem;
  font-weight: 600;
  color: var(--color-primary-light);
}

.stats-proof__divider {
  width: 2px;
  height: 6.5rem;
  background-color: var(--accent-color);
}

.stats-proof__label {
  font-size: 2.4rem;
  /* border-left: 2px solid var(--color-primary-light); */
}

/* State proof image section */

.state-proof__img-box {
  position: relative;
  min-height: 35rem;
}

.stats-proof__image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Image 1 */
.stats-proof__image--1 {
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url("img/state-proof-sec-img-1--bw-min.jpg");
}

/* Image 2 */
.stats-proof__image--2 {
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.4)
    ),
    url("img/state-proof-sec-img-2--bw-min.jpg");
  background-position: top;
  /* url("img/state-proof-sec-img-2.jpg");
  background-position: top; */
}

.state-proof__img-tag {
  font-size: 2.4rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5000;
}

/* Team section */

.team-section {
  margin-top: 12.6em;
  margin-bottom: 8rem;
}

.team-section__tagline-box {
  position: relative;
  background-color: var(--accent-color);
}

.team-section__tagline {
  font-size: 6.2rem;
  color: var(--color-white);
  padding: 4rem;
  margin-top: 8rem;
}

.team-section__tagline-img {
  height: 220%;
  position: absolute;
  top: -60%;
  right: 5%;
  /* transform: rotate(2deg); */
}

/* Features section using for both team section and car wash section
Reusable part of the section */

.feature-section__description {
  font-size: 1.6rem;
  line-height: 1.6;
  padding-bottom: 5.2rem;
}

.feature-section__img {
  width: 100%;
  background-size: cover;
  border-radius: 1rem;
}

.feature-section__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}

.feature-section__list-item {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.feature-section__list-item--description {
  font-size: 1.6rem;
  font-weight: 500;
}

.feature-section__list-item--icon {
  height: 2.8rem;
  color: var(--accent-color);
}

/* Experts section */
.experts {
  margin-top: 0rem;
  height: 92vh;
  background: url("img/experts-sec--bw-min.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
}

.experts__heading-secondary {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: lighter;
  padding-bottom: 5.2rem;
}

.experts__wrapper {
  display: flex;
  gap: 2rem;
}

.experts__right-box {
  flex: 1;
  z-index: 1;
}

.experts__left-box {
  flex: 0 0 40%;
  z-index: 2;
  margin-right: -15%;
}

.expertise__box-wrapper {
  width: 100%;
  display: flex;
  gap: 2.4rem;
}

.expertise-box {
  height: 18.5rem;
  width: 24.2rem;
  background-color: var(--color-primary-light);
  color: var(--color-white);
  border-radius: 10px;
  padding: 4rem 4rem;
}

.expertise__box-description {
  font-size: 1.4rem;
  line-height: 1.2;
  padding-top: 2.4rem;
}

.experts__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

/* car wash section */

.car-wash {
  margin-top: 0rem;
}

.wash-section__heading {
  font-size: 4.8rem;
  font-weight: lighter;
  color: var(--color-white);
  background-color: var(--color-primary-light);
  padding: 4rem;
  margin-bottom: 3.2rem;
}

.car-wash-timing {
  font-size: 1.2rem;
  color: var(--accent-color);
  display: inline-block;
  padding: 5px 15px;
  border: 1px solid var(--accent-color);
  border-radius: 20px;
  margin-bottom: 1.8rem;
}

/* Footer */

.footer {
  padding-top: 21.5rem;
  padding-bottom: 3rem;
}

.footer__nav-col {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.9rem;
}

.footer__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: var(--color-grey-dark-2);
}

.footer__heading {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.footer__nav-item {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
}

.footer__service-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
}

.footer__service-hours {
  font-size: 1.4rem;
}

.socail-links-box {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.footer__social-icon {
  height: 3.2rem;
  width: 3.2rem;
  color: var(--accent-color);
}

/*=============================*/
/*=======FOOTER BOTTOM=========*/
/*=============================*/

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  border-top: 3px solid var(--accent-color);
  margin-top: 7.2rem;
  padding-top: 3.9rem;
  font-size: 1.2rem;
}

.center-text {
  /* flex: 1; */
  text-align: center;
}

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

/* Deals page */

.feature__section {
  /* background-image: linear-gradient(
      to right,
      rgba(214, 223, 35, 0.6),
      rgba(214, 223, 35, 0.6)
    ),
    url(img/deals-bg-min.jpg); */

  background-image: linear-gradient(
      to left,
      rgba(255, 230, 0, 0.6),
      rgba(255, 153, 0, 0.6)
    ),
    url(img/deals-bg-min.jpg);
  width: 100%;
  height: 100vh;
  background-size: cover;
  position: relative;
}

.back-icon {
  height: 5.2rem;
  color: var(--color-black);
  cursor: pointer;
  position: absolute;
  top: 5%;
  left: 5%;
}

.feature__section-text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.feature__section-title {
  font-size: 5.2rem;
  font-weight: 600;
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 1rem;
}

.feature__section-sub-title {
  font-size: 3rem;
  margin-bottom: 3.8rem;
}

.feature__section-items {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-left: 1.8rem;
}

.feature__section-list {
  font-size: 1.8rem;
}

@media only screen and (max-width: 56.25em) {
  .feature__section-title {
    font-size: 4.2rem;
  }

  .feature__section-sub-title {
    font-size: 2.6rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .feature__section-title {
    font-size: 3rem;
  }

  .feature__section-sub-title {
    font-size: 1.8rem;
  }

  .feature__section-list {
    font-size: 1.4rem;
  }
}

@media only screen and (max-width: 500px) {
  .feature__section-title {
    font-size: 3.2rem;
  }

  .feature__section-sub-title {
    font-size: 1.6rem;
  }

  .feature__section-items {
    margin-left: 1rem;
  }

  .feature__section-list {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
