/* header */

.nav-lpb {
  display: none;
}

.header-lpb {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  width: 100%;
}

.header-container-lpb {
  display: flex;
  justify-content: space-between;
  padding: 16px 16px 0;
  width: 100%;
  height: 80px;
  background: var(--d-purple);
  position: relative;
}

.nav-list-lpb {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 23px;
}

.nav-item-lpb {
  position: relative;
  transition: all 0.3s ease-in-out;
}

.nav-link-lpb {
  position: relative;
  font-size: 18px;
  line-height: 150%;
}

.nav-item-lpb::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background-color: var(--white);
  transition: width 0.3s ease-in-out;
}

.nav-item-lpb:hover::after {
  width: 100%;
}

.nav-link-lpb:active + .nav-item-lpb,
.nav-item-lpb:has(.nav-link-lpb:active) {
  border: 2px solid var(--white);
}

.menu-btn-lpb {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 64px;
  height: 64px;
}

.menu-svg-lpb {
  width: 26px;
  height: 18px;
  fill: var(--white);
}

.header-favicon {
  width: 44px;
  height: 48px;
  padding-top: 4px;
}

@media screen and (min-width: 1440px) {
  .header-lpb {
    width: 100%;
  }

  .header-container-lpb {
    align-items: center;
    margin: 0 auto;
    width: 100%;
    padding: 18px 160px;
  }

  .nav-lpb {
    display: block;
  }

  .menu-open-lpb {
    display: none;
  }

  .header-favicon {
    height: 44px;
    padding-top: 0;
  }
}

/* modal  */

.modal-lpb {
  position: fixed;
  top: 96px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  border-radius: 24px;
  padding: 16px 0px;
  width: 343px;
  background: var(--d-purple);
}

.modal-btn-lpb {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);

  border-radius: 32px;
  background-color: var(--d-purple);
  width: 64px;
  height: 64px;
}

.menu-nav-list-lpb {
  flex-direction: column;
  gap: 25px;
}

.menu-nav-link-lpb {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
}

/* popup */

.popup-lpb {
  position: fixed;
  z-index: 11;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);

  border-radius: 32px;
  padding: 32px;
  width: 343px;
  background: var(--d-purple);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.popup-text-lpb {
  font-family: var(--font3);
  font-size: 18px;
  line-height: 150%;
  text-align: center;
}

.popup-btn-wrap-lpb {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.popup-btn-lpb {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  padding: 16px 32px;
  width: 256px;
  height: 55px;

  font-family: var(--third-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  transition: all 0.3s ease;
}

.popup-btn-accept-lpb {
  background: var(--white);
  color: var(--d-purple);
}

.popup-btn-decline-lpb {
  border: 1px solid var(--white);
  color: var(--white);
}

.popup-btn-lpb:hover {
  transform: scaleX(1.1);
}

@media screen and (min-width: 1440px) {
  .popup-lpb {
    flex-direction: row;
    gap: 32px;
    width: 1262px;
  }

  .popup-text-lpb {
    font-family: var(--third-family);
    text-align: left;
  }

  .popup-btn-wrap-lpb {
    flex-direction: row;
    gap: 32px;
  }

  .popup-btn-lpb:hover {
    transform: scaleY(1.2);
  }
}

/* hero  */

.hero-container-lpb {
  padding-top: 138px;
}

.hero-wrap-lpb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;

  h1 {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 48px;
    line-height: 120%;
    color: var(--white);

    text-shadow: -6px -6px 0 var(--d-purple), 6px -6px 0 var(--d-purple),
      -6px 6px 0 var(--d-purple), 6px 6px 0 var(--d-purple),
      0px -6px 0 var(--d-purple), 0px 6px 0 var(--d-purple),
      -6px 0px 0 var(--d-purple), 6px 0px 0 var(--d-purple);

    span {
      color: var(--yellow);
    }
  }

  p {
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
  }
}

.hero-candy-lpb {
  display: none;
}

.hero-rocket-lpb {
  display: none;
}

@media screen and (min-width: 1440px) {
  .hero-container-lpb {
    padding-top: 150px;
    padding-bottom: 177px;
  }

  .hero-wrap-lpb {
    width: 836px;
    gap: 32px;

    h1 {
      font-size: 80px;

      text-shadow: -8px -8px 0 var(--d-purple), 8px -8px 0 var(--d-purple),
        -8px 8px 0 var(--d-purple), 8px 8px 0 var(--d-purple),
        0px -8px 0 var(--d-purple), 0px 8px 0 var(--d-purple),
        -8px 0px 0 var(--d-purple), 8px 0px 0 var(--d-purple);
    }

    p {
      font-size: 20px;
      padding-right: 4px;
    }
  }

  .hero-candy-lpb {
    position: absolute;
    top: 101px;
    right: 126px;

    display: block;
    width: 394px;
    height: 295px;

    transform: rotate(26deg);
  }

  .hero-rocket-lpb {
    position: absolute;
    bottom: 93px;
    right: 183px;

    display: block;
    width: 198px;
    height: 206px;
  }
}

/* about */

.about-subtitle-lpb {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  margin-bottom: 24px;
}

.about-text-lpb {
  line-height: 150%;
}

.about-pic-lpb {
  width: 342px;
  height: 315px;
  margin-top: 40px;
}

@media screen and (min-width: 1440px) {
  .about-subtitle-lpb {
    font-size: 28px;
    width: 544px;
  }

  .about-text-lpb {
    font-size: 18px;
    width: 544px;
  }

  .about-pic-lpb {
    width: 544px;
    height: 500px;
    margin-top: 0;

    position: absolute;
    top: 80px;
    right: 160px;
  }
}

/* features */

.features-list-lpb {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.features-item-lpb {
  border-radius: 24px;
  padding: 24px;
  width: 343px;
  background: var(--white);

  div {
    display: flex;
    align-items: center;
    gap: 16px;

    img {
      width: 40px;
      height: 38px;
    }

    h3 {
      font-weight: 700;
      font-size: 18px;
      line-height: 150%;
      color: var(--d-purple);
    }
  }

  p {
    line-height: 150%;
    color: var(--d-purple);
    margin-top: 16px;
  }
}

.features-text-lpb {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  margin-top: 40px;
}

@media screen and (min-width: 1440px) {
  .features-list-lpb {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 32px;
  }

  .features-item-lpb {
    width: 352px;

    div {
      h3 {
        font-size: 20px;
      }
    }

    p {
      font-size: 18px;
    }
  }

  .features-text-lpb {
    font-size: 20px;
  }
}

/* rewards */

.rewards-list-lpb {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rewards-item-lpb {
  display: flex;
  gap: 32px;

  img {
    width: 50px;
    height: 44px;
  }

  p {
    line-height: 150%;

    span {
      font-weight: 700;
      font-size: 18px;
      color: var(--yellow);
    }
  }
}

.rewards-text-lpb {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  margin-top: 40px;
}

@media screen and (min-width: 1440px) {
  .rewards-item-lpb {
    align-items: center;

    p {
      font-size: 18px;

      span {
        font-size: 20px;
      }
    }
  }

  .rewards-text-lpb {
    font-size: 20px;
  }
}

/* faq */

.faq-list-lpb {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item-lpb {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  padding: 16px 24px;
  width: 343px;
  background: var(--white);
  color: var(--d-purple);
}

.faq-question-wrap-lpb {
  display: flex;
  justify-content: space-between;
  position: relative;

  transition: all 0.3s ease-in-out;

  p {
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
  }

  .faq-btn-lpb {
    width: 30px;
    height: 30px;
    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: 100%;
      height: 100%;
      fill: var(--d-purple);
    }
  }
}

.faq-answer-wrap-lpb {
  margin-top: 24px;

  transition: all 0.3s ease-in-out;

  p {
    line-height: 150%;
  }
}

@media screen and (min-width: 1440px) {
  .faq-item-lpb {
    width: 1120px;
  }

  .faq-question-wrap-lpb {
    align-items: center;

    transition: all 0.3s ease-in-out;

    p {
      font-size: 20px;
    }
  }

  .faq-answer-wrap-lpb {
    p {
      font-size: 18px;
    }
  }
}

/* call */

.contact-subtitle-lpb {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  margin-bottom: 24px;
}

.contact-email-lpb {
  line-height: 150%;
  margin-bottom: 40px;

  span {
    font-weight: 700;
    font-size: 18px;
  }
}

.contact-subject-lpb {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 8px;
}

.contact-wrap-lpb {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-list-lpb {
  display: flex;
  flex-direction: column;
}

.contact-item-lpb {
  p {
    line-height: 150%;

    span {
      font-weight: 700;
      font-size: 18px;
      line-height: 150%;
      text-decoration: underline;
      text-decoration-skip-ink: none;
      color: var(--yellow);
    }
  }
}

.contact-text-lpb {
  line-height: 150%;

  span {
    font-weight: 700;
    font-size: 18px;
    color: var(--yellow);
  }
}

@media screen and (min-width: 1440px) {
  .contact-subtitle-lpb {
    font-size: 28px;
  }

  .contact-email-lpb {
    font-size: 18px;

    span {
      font-size: 20px;
    }
  }

  .contact-subject-lpb {
    font-size: 20px;
  }

  .contact-wrap-lpb {
    flex-direction: row;
    gap: 172px;
  }

  .contact-list-lpb {
    flex-shrink: 0;
  }

  .contact-item-lpb {
    p {
      font-size: 18px;

      span {
        font-size: 20px;
      }
    }
  }

  .contact-text-lpb {
    font-size: 18px;

    span {
      font-size: 20px;
    }
  }
}

/* footer */

#footer {
  background: var(--d-purple);
  z-index: 2;
  overflow: hidden;
}

.footer-container-lpb {
  width: 375px;
  margin: 0 auto;
  padding: 40px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-title-lpb {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 26px;
  line-height: 120%;
  color: var(--yellow);
}

.footer-links-list-lpb {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-link-lpb {
  line-height: 150%;
}

.footer-text-lpb {
  font-size: 11px;
  line-height: 150%;
}

@media screen and (min-width: 1440px) {
  .footer-container-lpb {
    width: 1440px;
    padding: 40px 160px 16px;
    align-items: end;
  }

  .footer-title-lpb {
    font-size: 48px;

    position: absolute;
    top: 40px;
    left: 160px;
  }

  .footer-links-list-lpb {
    align-items: end;
  }

  .footer-link-lpb {
    font-size: 18px;
  }

  .footer-text-lpb {
    font-size: 12px;
  }
}

/* ********************* */

.hidden-lpb {
  display: none;
}

.click-lpb {
  transform: rotate(45deg);
}
