/* header */

.nav-lbo {
  display: none;
}

.header-lbo {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  width: 100%;
}

.header-container-lbo {
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 18px 312px 18px 326px;
  width: 100%;
}

.nav-list-lbo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.nav-item-lbo {
  position: relative;
  transition: all 0.3s ease-in-out;
}

.nav-link-lbo {
  line-height: 150%;
  text-align: center;
  color: #000;
}

.nav-item-lbo:hover {
  font-weight: 700;
  font-size: 20px;
}

.nav-link-lbo:active + .nav-item-lbo,
.nav-item-lbo:has(.nav-link-lbo:active) {
  transform: scale(1.2);
}

.menu-btn-lbo {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 50px;
  height: 50px;
  border-radius: 30px;

  position: absolute;
  top: 80px;
  right: 16px;

  background: #fff;
  box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.25);

  svg {
    width: 24px;
    height: 14px;
    fill: #000;
  }
}

@media screen and (min-width: 1440px) {
  .header-container-lbo {
    justify-content: center;

    backdrop-filter: blur(30px);
    box-shadow: inset 0 0 14px 0 rgba(255, 255, 255, 0.3),
      inset 1px 2px 2px 0 rgba(255, 255, 255, 0.3),
      inset -1px 3px 2px 0 rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.4);
  }

  .nav-lbo {
    display: block;
  }

  .menu-open-lbo {
    display: none;
  }
}

/* modal  */

.modal-lbo {
  position: fixed;
  top: 0;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);

  width: 375px;
  height: 671px;
  background: #9b26c4;

  display: flex;
  justify-content: center;
  padding-top: 211px;
}

.menu-close-lbo {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 50px;
  height: 50px;
  border-radius: 30px;

  position: absolute;
  top: 80px;
  right: 16px;

  background: #fff;
  box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.25);

  svg {
    width: 12px;
    height: 12px;
    fill: #000;
  }
}

.menu-nav-list-lbo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.menu-nav-link-lbo {
  line-height: 150%;
  text-align: center;
  color: #fff;
}

/* popup */

.popup-lbo {
  position: fixed;
  z-index: 11;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: #fff;
  color: #000;

  padding: 40px 28px;
}

.popup-title-lbo {
  font-family: var(--font3);
  font-weight: 700;
  font-size: 24px;
  line-height: 92%;
}

.popup-text-lbo {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
}

.popup-btn-wrap-lbo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}

.popup-btn-lbo {
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;
  padding: 14px 12px;
  width: 319px;
  height: 45px;

  text-align: center;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
}

.popup-btn-accept-lbo {
  font-family: var(--second-family);
  background: #aa34c9;

  transition: all 0.3s ease;
}

.popup-btn-decline-lbo {
  font-family: var(--font-family);
  border: 1px solid #000;
  box-shadow: 0 1px 3px 0 #87614c;

  transition: all 0.3s ease;
}

.popup-btn-lbo:hover {
  transform: scale(1.1);
}

@media screen and (min-width: 1440px) {
  .popup-lbo {
    padding: 43.5px 108px;

    max-width: 1440px;
    left: 50%;
    transform: translateX(-50%);
  }

  .popup-title-lbo {
    font-size: 36px;
    line-height: 61%;
  }

  .popup-text-lbo {
    font-size: 24px;
    text-align: center;
  }

  .popup-btn-wrap-lbo {
    gap: 16px;
    flex-direction: row;
  }

  .popup-btn-lbo {
    width: 269px;
    height: 55px;
  }

  .popup-btn-decline-lbo {
    font-family: var(--second-family);
  }

  .popup-btn-lbo:hover {
    transform: scaleY(1.5);
  }
}

/* hero  */

.hero-container-lbo {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 124px;
  padding-bottom: 252px;
}

.hero-logo-lbo {
  background: url(/images/hero-logo.png);
  background-position: left;
  background-size: cover;

  width: 214px;
  height: 135px;

  margin-bottom: 78px;
}

.hero-wrap-lbo {
  border-radius: 20px;
  padding: 19px 34px;
  width: 344px;
  height: 198px;
  background: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;

  h1 {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 24px;
    line-height: 110%;
    text-transform: uppercase;
    text-align: center;
    color: #4b288a;
  }

  p {
    text-align: center;
    color: #000;
  }
}

.hero-bg-lbo {
  background: url(/images/hero-bg-mob.png);
  background-position: left;
  background-size: cover;

  height: 320px;
  width: 1040px;

  position: absolute;
  top: 276px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

@media screen and (min-width: 1440px) {
  .hero-container-lbo {
    padding-top: 84px;
    padding-bottom: 306px;
  }

  .hero-logo-lbo {
    margin-bottom: 76px;
  }

  .hero-wrap-lbo {
    padding: 20px 44px;
    width: 615px;

    h1 {
      font-size: 40px;
    }

    p {
      font-size: 20px;
    }
  }

  .hero-bg-lbo {
    background: url(/images/hero-bg-desk.png);

    height: 300px;
    width: 1560px;

    top: 243px;
  }
}

/* description */

.description-container-lbo {
  padding-top: 0;
}

.description-text-lbo {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  text-transform: uppercase;
  text-align: center;
  color: #4b288a;

  margin-bottom: 32px;

  .description-white-lbo {
    color: #fff;
  }

  .description-underlined-lbo {
    text-decoration: underline;
    text-decoration-skip-ink: none;
  }
}

.descr-question-lbo {
  font-weight: 700;
  line-height: 130%;
  text-align: center;
}

@media screen and (min-width: 1440px) {
  .description-container-lbo {
    padding-bottom: 0;
  }

  .description-text-lbo {
    font-size: 40px;
    width: 934px;
    margin-bottom: 50px;
  }

  .descr-question-lbo {
    font-size: 30px;
  }
}

/* features */

.features-container-lbo {
  padding-left: 0;
  padding-right: 0;
}

.features-title-lbo {
  margin-bottom: -21px;
}

.features-list-lbo {
  width: 375px;
  height: 590px;
  position: relative;
}

.features-item-lbo {
  background: url(/images/feature.png);
  background-position: left;
  background-size: cover;

  width: 178px;
  height: 295px;
  padding: 188px 25px 42px;
  position: absolute;

  p {
    font-weight: 700;
    line-height: 130%;
    text-align: center;
    color: #4b288a;
  }
}

.features-item-lbo:nth-child(1) {
  top: 0;
  left: 0;
  z-index: 2;
}

.features-item-lbo:nth-child(2) {
  top: 0;
  right: 0;
  z-index: 2;
}

.features-item-lbo:nth-child(3) {
  top: 136px;
  left: 50%;
  transform: translateX(-50%);
}

.features-item-lbo:nth-child(4) {
  bottom: 0;
  left: 0;
  z-index: -1;
}

.features-item-lbo:nth-child(5) {
  bottom: 0;
  right: 0;
  z-index: -1;
}

@media screen and (min-width: 1440px) {
  .features-container-lbo {
    padding-left: 180;
    padding-right: 180;
    padding-top: 0;
  }

  .features-title-lbo {
    position: absolute;
    top: 175px;
  }

  .features-list-lbo {
    width: 1080px;
    height: 1030px;
  }

  .features-item-lbo {
    width: 344px;
    height: 569px;
    padding: 362px 49px 81.5px;

    p {
      font-size: 32px;
    }
  }

  .features-item-lbo:nth-child(3) {
    top: 231px;
  }
}

/* how */

.how-list-lbo {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-left: 16px;
  padding-right: 16px;
}

.how-item-lbo {
  width: 312px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;

  span {
    font-family: var(--third-family);
    font-size: 32px;
    line-height: 130%;
  }

  h3 {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
  }

  p {
    line-height: 130%;
  }
}

.how-item-lbo:not(:last-child)::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -16px;
  right: 0;
  background: #fff;
}

@media screen and (min-width: 1440px) {
  .how-container-lbo {
    padding-left: 156px;
    padding-right: 156px;
  }

  .how-list-lbo {
    flex-direction: row;
    gap: 48px;
    padding: 0;
  }

  .how-item-lbo {
    width: 344px;

    span {
      font-size: 40px;
    }

    h3 {
      font-size: 32px;
    }

    p {
      font-size: 20px;
    }
  }

  .how-item-lbo:not(:last-child)::after {
    width: 1px;
    height: 100%;

    bottom: 0;
    right: -24px;
  }
}

/* gallery */

.gallery-container-lbo {
  display: block;
}

.gallery-item-lbo {
  width: 252px;
  height: 448px;

  img {
    width: 100%;
    height: 100%;
  }
}

@media screen and (min-width: 1440px) {
  .gallery-wrapper-lbo {
    display: flex;
    flex-direction: row;
    gap: 24px;
  }

  .gallery-item-lbo {
    width: 252px;
    height: 448px;
  }
}

/* reviews */

.reviews-wrapper-lbo {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reviews-item-lbo {
  width: 344px;
  height: 146px;

  display: flex;
  gap: 16px;

  img {
    width: 91px;
    height: 91px;
  }

  .reviewer-wrap-lbo {
    h3 {
      font-family: var(--third-family);
      font-weight: 400;
      font-size: 24px;
      line-height: 130%;
      margin-bottom: 16px;
    }

    p {
      line-height: 130%;
    }
  }
}

@media screen and (min-width: 1440px) {
  .reviews-container-lbo {
    display: block;
  }

  .reviews-wrapper-lbo {
    flex-direction: row;
    gap: 0;
  }

  .reviews-item-lbo {
    height: 160px;

    .reviewer-wrap-lbo {
      h3 {
        font-size: 32px;
      }

      p {
        font-size: 20px;
      }
    }
  }
}

/* faq */

.faq-container-lbo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-list-lbo {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item-lbo {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  padding: 16px;
  width: 336px;

  backdrop-filter: blur(50px);
  box-shadow: inset 0 2px 10px 0 rgba(0, 0, 0, 0.25);
  background: rgba(0, 0, 0, 0.1);
}

.faq-question-wrap-lbo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;

  p {
    font-weight: 600;
    line-height: 150%;
  }

  .faq-btn-lbo {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease-in-out;

    svg {
      width: 21px;
      height: 2px;
      stroke: #fff;
      transform: rotate(90deg);
    }
  }

  .faq-icon-minus-lbo {
    position: absolute;
    width: 21px;
    height: 2px;
    stroke: #fff;
    right: 8px;
  }
}

.faq-answer-wrap-lbo {
  margin-top: 16px;

  p {
    line-height: 150%;
  }
}

@media screen and (min-width: 1440px) {
  .faq-list-lbo {
    gap: 16px;
    width: 728px;
  }

  .faq-item-lbo {
    padding: 16px 24px;
    width: 100%;
  }

  .faq-question-wrap-lbo {
    p {
      font-size: 20px;
    }

    .faq-btn-lbo {
      width: 50px;
      height: 50px;

      svg {
        width: 28px;
      }
    }

    .faq-icon-minus-lbo {
      width: 28px;
      right: 11px;
    }
  }

  .faq-answer-wrap-lbo {
    p {
      font-size: 20px;
    }
  }
}

/* call */

.call-container-lbo {
  padding-bottom: 95px;
}

.call-title-lbo {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.call-text-lbo {
  text-align: center;
}

@media screen and (min-width: 1440px) {
  .call-container-lbo {
    padding-bottom: 113px;
  }

  .call-title-lbo {
    font-size: 40px;
  }

  .call-text-lbo {
    font-size: 20px;
  }
}

/* footer */

#footer {
  background: #d68ce2;
  color: #000;
  font-family: var(--second-family);
}

.footer-container-lbo {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
}

.footer-links-list-lbo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-link-lbo {
  line-height: 150%;
  letter-spacing: 0.01em;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.footer-text-lbo {
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.01em;
  margin-top: 24px;
}

@media screen and (min-width: 1440px) {
  .footer-container-lbo {
    padding: 25px;
  }

  .footer-links-list-lbo {
    flex-direction: row;
    gap: 19px;
  }

  .footer-link-lbo {
    font-size: 20px;
  }

  .footer-text-lbo {
    font-size: 20px;
  }
}

/* ********************* */

.hidden-lbo {
  display: none;
}

.click-lbo {
  transform: rotate(90deg);
}
