/* header */

.nav-lhb {
  display: none;
}

.header-lhb {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  width: 100%;
  backdrop-filter: blur(15px);
  background: var(--background-black);
}

.header-container-lhb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  position: relative;
  width: 375px;
  height: 52px;
}

.header-logo-lhb {
  width: 86px;
  height: 32px;
}

.menu-btn-lhb {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.menu-btn-lhb:hover {
  transform: scale(1.1);
}

.menu-svg-lhb {
  width: 100%;
  height: 100%;
  fill: #fff;
}

.nav-list-lhb {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-item-lhb {
  padding: 8px 12px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.nav-link-lhb {
  position: relative;
  line-height: 150%;
  text-align: center;
  color: var(--typography-gray);
  transition: all 0.3s ease-in-out;
}

.nav-item-lhb::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: var(--typography-gray);

  transition: all 0.3s ease-in-out;
}

.item-active-lhb::after {
  width: 100%;
}

.link-active-lhb {
  font-weight: 900;
}

.nav-link-lhb:hover {
  font-weight: 900;
}

@media screen and (min-width: 1440px) {
  .header-container-lhb {
    padding: 11px 80px;
    width: 1440px;
    height: 62px;
  }

  .nav-lhb {
    display: block;
  }

  .menu-btn-lhb {
    display: none;
  }

  .header-btn-link-lhb {
    display: flex;
  }
}

/* modal  */

.modal-lhb {
  position: fixed;
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;

  padding: 24px;
  width: 375px;
  height: 760px;
  background-image: url("./images/menu-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  align-items: start;
}

.menu-close-lhb {
  position: absolute;
  top: 10px;
  right: 10px;
}

.menu-nav-list-lhb {
  flex-direction: column;
  align-items: start;
}

.nav-modal-lhb {
  margin-bottom: 55px;
}

.modal-btn-link-lhb {
  display: flex;
  box-shadow: none;
}

/* hero  */

.section-hero-lhb {
  background-image: url("./images/hero-bg.png");
}

.hero-container-lhb {
  padding-top: 604px;
}

.hero-text-lhb {
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: justify;
}

@media screen and (min-width: 1440px) {
  .hero-container-lhb {
    padding: 468px 65.5px 54px;
    align-items: start;
  }

  .hero-text-lhb {
    font-size: 16px;
    width: 371px;
  }
}

/* about */

.section-about-lhb {
  background-image: url("./images/about-bg.png");
}

.about-container-lhb {
  padding-top: 64px;
  padding-bottom: 0;
}

.about-wrap-lhb {
  margin-bottom: 32px;
}

.about-text-lhb {
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: justify;
  color: var(--typography-gray);
}

.about-upper-text-lhb {
  margin-bottom: 16px;
}

.about-image-lhb {
  width: 343px;
  height: 486px;
}

@media screen and (min-width: 1440px) {
  .about-container-lhb {
    display: flex;
    flex-direction: row;
    gap: 48px;
    padding-top: 96px;
    padding-bottom: 0;
  }

  .about-wrap-lhb {
    margin-bottom: 0;
    padding-top: 80px;
    padding-bottom: 80px;
    order: 0;
  }

  .about-text-lhb {
    font-size: 16px;
  }

  .about-image-lhb {
    width: 384px;
    order: 1;
  }

  .about-subtitle-lhb {
    margin-bottom: 0;
    padding-top: 318px;
    padding-bottom: 80px;
    order: 2;
  }
}

/* mechanics */

.section-mechanics-lhb {
  background-image: url("./images/mechanics/mechanics-bg.png");
}

.mechanics-title-lhb {
  margin-bottom: 32px;
}

.mechanics-list-lhb {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-right: 104px;
}

.mechanics-item-lhb {
  display: flex;
  flex-direction: column;
  gap: 24px;

  img {
    width: 40px;
    height: 40px;
  }

  p {
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.02em;
    color: var(--typography-gray);
  }
}

@media screen and (min-width: 1440px) {
  .mechanics-container-lhb {
    align-items: start;
  }

  .mechanics-title-lhb {
    width: 500px;
    margin-bottom: 64px;
  }

  .mechanics-list-lhb {
    flex-direction: row;
    gap: 48px;
    padding-right: 0;
  }

  .mechanics-item-lhb {
    width: calc((1440px - 48px * 4 - 64px * 2) / 5);
    p {
      font-size: 16px;
    }
  }
}

/* features */

.section-features-lhb {
  background-image: url("./images/features-bg.png");
}

.features-title-lhb {
  text-align: center;
  margin-bottom: 32px;
}

.features-list-lhb {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-right: 19.5px;
  padding-left: 19.5px;
}

.features-item-lhb {
  display: flex;
  gap: 16px;
  align-items: center;

  svg {
    width: 40px;
    height: 40px;
    fill: var(--secondary-orange);
    flex-shrink: 0;
  }

  p {
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
    color: var(--typography-gray);
  }
}

.features-text-lhb {
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: justify;
  color: var(--typography-gray);
  margin-top: 32px;
  padding-right: 10px;
  padding-left: 10px;
}

@media screen and (min-width: 1440px) {
  .features-title-lhb {
    text-align: center;
    margin-bottom: 64px;
  }

  .features-list-lhb {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-right: 19.5px;
    padding-left: 19.5px;
    width: 1312px;
    height: 220px;
  }

  .features-item-lhb {
    position: absolute;
    width: 304px;
  }

  .features-item-lhb:nth-child(1) {
    left: 152px;
    top: 0;
  }

  .features-item-lhb:nth-child(2) {
    left: 504px;
    top: 60px;
  }

  .features-item-lhb:nth-child(3) {
    right: 152px;
    top: 0;
  }

  .features-item-lhb:nth-child(4) {
    left: 242px;
    bottom: 0;
  }

  .features-item-lhb:nth-child(5) {
    right: 242px;
    bottom: 0;
  }

  .features-text-lhb {
    font-size: 16px;
    margin-top: 64px;
    padding-right: 0;
    padding-left: 988px;
  }
}

/* experience */

.section-experience-lhb {
  background-image: url("./images/experience-bg.png");
  background-position: bottom left;
}

.experience-container-lhb {
  padding-bottom: 399px;
}

.experience-subtitle-lhb {
  margin-bottom: 24px;
}

.experience-list-lhb {
  display: flex;
  flex-direction: column;
  gap: 24px;

  li {
    h4 {
      font-weight: 500;
      font-size: 18px;
      line-height: 150%;
      letter-spacing: 0.02em;
      text-align: justify;
      color: var(--typography-gray);
      margin-bottom: 4px;
    }

    p {
      font-size: 14px;
      line-height: 150%;
      letter-spacing: 0.02em;
      text-align: justify;
      color: var(--typography-gray);
    }
  }
}

@media screen and (min-width: 1440px) {
  .experience-container-lhb {
    padding-bottom: 80px;
    padding-left: 848px;
  }

  .experience-subtitle-lhb {
    margin-bottom: 24px;
  }

  .experience-list-lhb {
    li {
      h4 {
        font-size: 20px;
      }

      p {
        text-align: left;
        font-size: 16px;
      }
    }
  }
}

/* gallery */

.section-gallery-lhb {
  background-image: url("./images/gallery/gallery-bg.png");
}

.gallery-image-lhb {
  min-width: 300px;
  height: 230px;
}

@media screen and (min-width: 1440px) {
  .gallery-glide-lhb {
    cursor: default;
  }

  .gallery-title-lhb {
    text-align: left;
  }

  .gallery-container-lhb {
    align-items: start;
  }

  .gallery-subtitle-lhb {
    max-width: 528px;
    text-align: left;
  }

  .gallery-list-lhb {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
  }

  .gallery-item-lhb {
    width: 416px;
  }

  .gallery-image-lhb {
    width: 416px;
    height: 320px;
  }
}

/* faq */

.section-faq-lhb {
  background-image: url("./images/faq-bg.png");
}

.faq-subtitle-lhb {
  margin-bottom: 24px;
}

.faq-list-lhb {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 343px;
}

.faq-item-lhb {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid var(--typography-orange);
  padding: 20px 0px;
}

.faq-question-wrap-lhb {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.faq-question-lhb {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.faq-btn-lhb {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;

  svg {
    fill: #fff;
    width: 18px;
    height: 18px;
  }
}

.faq-answer-lhb {
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #dfdfdf;
  padding-right: 24px;
}

@media screen and (min-width: 1440px) {
  .faq-container-lhb {
    padding-right: 736px;
    align-items: start;
  }

  .faq-subtitle-lhb {
    max-width: 528px;
    margin-bottom: 24px;
  }

  .faq-list-lhb {
    gap: 24px;
    width: 640px;
  }

  .faq-question-lhb {
    font-size: 20px;
  }

  .faq-answer-lhb {
    font-size: 16px;
  }
}

/* contact */

.section-contact-lhb {
  background-image: url("./images/contact-bg.png");
}

.title-special-lhb {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 34px;
  line-height: 150%;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(
    180deg,
    #fff 0%,
    rgba(199, 201, 207, 0.64) 27.4%,
    rgba(19, 25, 51, 0) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-link-lhb {
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-align: center;
  color: var(--typography-orange);
}

@media screen and (min-width: 1440px) {
  .title-special-lhb {
    font-size: 108px;
    letter-spacing: 0.4em;
  }

  .contact-link-lhb {
    font-size: 16px;
  }
}

/* footer */

.footer-container-lhb {
  padding: 60px 16px;
}

.footer-links-list-lhb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;

  li {
    a {
      font-weight: 500;
      font-size: 18px;
      line-height: 150%;
      letter-spacing: 0.02em;
      text-align: center;
    }
  }
}

.footer-text-lhb {
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--typography-gray);
}

@media screen and (min-width: 1440px) {
  .footer-container-lhb {
    padding: 60px 88px;
  }

  .footer-links-list-lhb {
    width: 100%;
    flex-direction: row;
    justify-content: end;
    gap: 60px;
    margin-bottom: 60px;

    li {
      a {
        font-size: 20px;
      }
    }
  }

  .footer-text-lhb {
    font-size: 16px;
  }
}

/* ********************* */

.hidden-lhb {
  display: none;
}

.click-lhb {
  transform: rotate(-90deg);
}
