/* header */

.nav-sqp {
  display: none;
}

.header-sqp {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  width: 100%;
  background: var(--ll-blue);
}

.header-container-sqp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  width: 100%;
  padding: 0 16px;
}

.header-logo-sqp {
  flex-shrink: 0;
  border-radius: 10px;
  width: 44px;
  height: 44px;
}

.nav-list-sqp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32.5px;
}

.nav-item-sqp {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.nav-link-sqp {
  font-size: 18px;
  line-height: 150%;
  transition: all 0.3s ease-in-out;
}

.nav-item-sqp:hover {
  border-bottom: 1px dashed var(--d-blue);
}

.nav-link-sqp:active + .nav-item-sqp,
.nav-item-sqp:has(.nav-link-sqp:active) {
  border-bottom: 1px solid var(--d-blue);
}

.menu-svg-sqp {
  width: 26px;
  height: 18px;
  fill: var(--d-blue);
}

.menu-btn-sqp {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 44px;
  height: 44px;
}

@media screen and (min-width: 1440px) {
  .header-container-sqp {
    justify-content: center;
    gap: 52px;
    padding: 0px 160px;
  }

  .nav-sqp {
    display: block;
  }

  .menu-open-sqp {
    display: none;
  }
}

/* modal  */

.modal-sqp {
  position: fixed;
  top: 80px;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);

  border-radius: 0 0 40px 40px;
  width: 375px;
  background: var(--ll-blue);

  display: flex;
  padding: 30px 27px 48px;
}

.menu-nav-list-sqp {
  flex-direction: column;
  align-items: start;
  gap: 8px;
  width: 320px;
}

.menu-nav-item-sqp {
  width: 100%;
  height: 50px;
}

.menu-nav-link-sqp {
  width: 100%;
  font-weight: 400;
  font-size: 20px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-footer-list-sqp {
  gap: 8px;
  margin-top: 40px;
}

/* popup */

.popup-sqp {
  position: fixed;
  z-index: 11;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);

  border-radius: 32px;
  padding: 32px;
  width: 343px;

  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;

  background: var(--d-blue);
  color: var(--white);
}

.popup-text-sqp {
  font-family: var(--third-family);
  font-size: 18px;
  line-height: 150%;
  text-align: center;
}

.popup-btn-wrap-sqp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.popup-btn-sqp {
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 28px;
  padding: 16px 32px;
  width: 256px;
  height: 55px;

  text-align: center;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
}

.popup-btn-accept-sqp {
  background: var(--white);
  color: var(--d-blue);

  transition: all 0.3s ease;
}

.popup-btn-decline-sqp {
  border: 1px solid var(--white);
  color: var(--white);

  transition: all 0.3s ease;
}

.popup-btn-accept-sqp:hover {
  border: 1px solid var(--white);
  color: var(--white);
  background: transparent;

  transition: all 0.3s ease;
}

.popup-btn-decline-sqp:hover {
  background: var(--white);
  color: var(--d-blue);
}

@media screen and (min-width: 1440px) {
  .popup-sqp {
    width: 1262px;
    height: 119px;

    flex-direction: row;
    gap: 32px;
  }

  .popup-text-sqp {
    font-family: var(--second-family);
    text-align: left;
  }

  .popup-btn-wrap-sqp {
    gap: 32px;
    flex-direction: row;
  }
}

/* hero  */

.hero-container-sqp {
  padding-top: 99px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.hero-title-sqp {
  font-size: 48px;
}

.hero-pic-sqp {
  width: 299px;
  height: 330px;
  margin-top: 32px;
}

@media screen and (min-width: 1440px) {
  .hero-container-sqp {
    padding-top: 105px;
    padding-bottom: 31px;
    padding-right: 126px;
    flex-direction: row;
    align-items: start;
  }

  .hero-title-sqp {
    font-size: 72px;
    padding-top: 45px;
  }

  .hero-pic-sqp {
    width: 490px;
    height: 540px;
    margin-top: 0;
    margin-left: 23px;
  }
}

/* about */

.about-wrapper-sqp {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.about-text-wrap-sqp {
  border-radius: 32px;
  padding: 32px;
  width: 343px;
  background: var(--white);

  display: flex;
  flex-direction: column;
  gap: 16px;

  p {
    line-height: 150%;
  }
}

.about-pic-sqp {
  background: url(/images/about-pic-mob.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 343px;
  height: 307px;
}

@media screen and (min-width: 1440px) {
  .about-wrapper-sqp {
    flex-direction: row;
    gap: 32px;
  }

  .about-text-wrap-sqp {
    width: 544px;
    height: 307px;

    gap: 24px;

    p {
      font-size: 18px;
    }
  }

  .about-pic-sqp {
    background: url(/images/about-pic-desk.png);
    width: 544px;
    height: 307px;
  }
}

/* features */

.features-list-sqp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.features-item-sqp {
  border-radius: 24px;
  padding: 16px 32px;
  width: 343px;

  display: flex;
  flex-direction: column;
  gap: 8px;

  svg {
    width: 24px;
    height: 13px;
    fill: currentColor;
  }

  h3 {
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
  }

  p {
    line-height: 150%;
  }
}

.features-item-sqp:nth-child(1),
.features-item-sqp:nth-child(5) {
  background: var(--l-blue);
  color: var(--d-blue);
}

.features-item-sqp:nth-child(2),
.features-item-sqp:nth-child(6) {
  background: var(--orange);
  color: var(--brown);
}

.features-item-sqp:nth-child(3),
.features-item-sqp:nth-child(4) {
  background: var(--d-orange);
  color: var(--brown);
}

@media screen and (min-width: 1440px) {
  .features-list-sqp {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 32px;
  }

  .features-item-sqp {
    width: 352px;
    height: 164px;

    h3 {
      font-size: 20px;
    }

    p {
      font-size: 18px;
    }
  }
}

/* how */

.how-list-sqp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.how-item-sqp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;

  border-radius: 16px;
  padding: 16px;
  width: 208px;
  height: 208px;
  background: var(--white);

  span {
    width: 100%;
    font-weight: 600;
    font-size: 40px;
    line-height: 80%;
    text-align: center;
    position: relative;
  }

  span::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 2px;
    width: 100%;
    content: "";
    background: var(--gray);
  }

  h3 {
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
  }

  p {
    line-height: 150%;
    text-align: center;
  }
}

.how-item-sqp:nth-child(1),
.how-item-sqp:nth-child(4) {
  span {
    color: var(--l-blue);
  }
}

.how-item-sqp:nth-child(2),
.how-item-sqp:nth-child(5) {
  span {
    color: var(--orange);
  }
}

.how-item-sqp:nth-child(3) {
  span {
    color: var(--d-orange);
  }
}

@media screen and (min-width: 1440px) {
  .how-list-sqp {
    flex-direction: row;
    gap: 20px;
  }

  .how-item-sqp {
    h3 {
      font-size: 20px;
    }

    p {
      font-size: 18px;
    }
  }
}

/* advantages */

.advantages-item-sqp {
  position: relative;
  padding-left: 30px;

  p {
    font-size: 18px;
    line-height: 150%;

    span {
      font-weight: 500;
      font-size: 20px;
      color: var(--blue);
    }
  }
}

.advantages-item-sqp::before {
  position: absolute;
  top: 12px;
  left: 13px;
  height: 4px;
  width: 4px;
  border-radius: 100%;
  content: "";
  background: var(--blue);
}

@media screen and (min-width: 1440px) {
  .advantages-container-sqp {
    align-items: start;
  }
}

/* reviews */

.reviews-item-sqp {
  height: 162px;
  padding-top: 23px;

  div {
    border: 2px solid var(--white);
    border-radius: 24px;
    padding: 32px 24px 16px;
    width: 327px;
    height: 139px;
    position: relative;

    img {
      position: absolute;
      top: -23px;
      left: 24px;

      width: 46px;
      height: 46px;
    }

    p {
      line-height: 150%;
    }

    h3 {
      font-weight: 500;
      font-size: 18px;
      line-height: 150%;
      text-align: right;

      position: absolute;
      right: 24px;
      bottom: 16px;
    }
  }
}

.reviews-item-sqp:nth-child(1),
.reviews-item-sqp:nth-child(5) {
  div {
    background: var(--orange);
    color: var(--brown);
  }
}

.reviews-item-sqp:nth-child(2) {
  div {
    background: var(--l-blue);
    color: var(--d-blue);
  }
}

.reviews-item-sqp:nth-child(3),
.reviews-item-sqp:nth-child(4) {
  div {
    background: var(--d-orange);
    color: var(--brown);
  }
}

@media screen and (min-width: 1440px) {
  .reviews-wrapper-sqp {
    transform: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }

  .reviews-item-sqp {
    width: auto;
    flex-shrink: 0;
  }

  .reviews-container-sqp {
    height: 726px;
  }

  .reviews-item-sqp {
    height: 171px;

    div {
      width: 352px;
      height: 148px;

      p {
        font-size: 18px;
      }

      h3 {
        font-size: 20px;
      }
    }
  }
}

/* faq */

.faq-list-sqp {
  display: flex;
  flex-direction: column;
  gap: 24px;

  border-radius: 24px;
  padding: 16px 24px;
  width: 343px;
  background: var(--white);
}

.faq-item-sqp {
  position: relative;

  h3 {
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: var(--blue);
    margin-bottom: 8px;
  }

  p {
    line-height: 150%;
  }
}

.faq-item-sqp:not(:last-child)::after {
  position: absolute;
  bottom: -11px;
  left: 0;
  height: 1px;
  width: 100%;
  content: "";
  background: var(--gray);
}

@media screen and (min-width: 1440px) {
  .faq-list-sqp {
    width: 736px;
  }

  .faq-item-sqp {
    h3 {
      font-size: 20px;
    }

    p {
      font-size: 18px;
    }
  }
}

/* rewards */

.rewards-title-wrap-sqp {
  align-items: start;
}

.rewards-title-sqp {
  width: 268px;
}

.rewards-list-sqp {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rewards-item-sqp {
  border-radius: 24px;
  padding: 16px 8px 8px 8px;
  width: 343px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;

  svg {
    width: 52px;
    height: 27px;
  }

  p {
    border-radius: 16px;
    padding: 8px 16px;
    width: 100%;

    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: var(--white);
  }
}

.rewards-item-sqp:nth-child(1) {
  background: var(--l-blue);

  svg {
    fill: var(--d-blue);
  }

  p {
    background: var(--d-blue);
  }
}

.rewards-item-sqp:nth-child(2) {
  background: var(--d-orange);

  svg {
    fill: var(--brown);
  }

  p {
    background: var(--brown);
  }
}

.rewards-item-sqp:nth-child(3) {
  background: var(--orange);

  svg {
    fill: var(--d-orange);
  }

  p {
    background: var(--d-orange);
  }
}

@media screen and (min-width: 1440px) {
  .rewards-title-sqp {
    width: 600px;
  }

  .rewards-list-sqp {
    flex-direction: row;
    gap: 32px;
  }

  .rewards-item-sqp {
    width: 352px;

    p {
      font-size: 20px;
    }
  }
}

/* gallery */

.gallery-item-sqp {
  width: 215px;
  height: 468px;

  img {
    height: 100%;
    width: 100%;
  }
}

@media screen and (min-width: 1440px) {
  .gallery-wrapper-sqp {
    display: flex;
    gap: 10px;
  }
}

/* claim */

#claim {
  background: var(--d-blue);
}

.claim-title-sqp {
  font-weight: 500;
  font-size: 32px;
  line-height: 120%;
  text-align: center;
  color: var(--white);
  margin-bottom: 40px;
}

.claim-text-sqp {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: var(--white);
}

@media screen and (min-width: 1440px) {
  .claim-title-sqp {
    font-size: 48px;
  }

  .claim-text-sqp {
    font-size: 20px;
  }
}

/* footer */

#footer {
  background: var(--d-blue);
  color: var(--white);
}

.footer-container-sqp {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 16px;
}

.footer-links-list-sqp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-link-sqp {
  line-height: 150%;
  text-align: center;
}

.footer-text-sqp {
  margin-top: 40px;
  font-size: 11px;
  line-height: 150%;
  text-align: center;
}

@media screen and (min-width: 1440px) {
  .footer-link-sqp {
    font-size: 18px;
  }

  .footer-text-sqp {
    font-size: 12px;
  }
}

/* ********************* */

.hidden-sqp {
  display: none;
}

.click-sqp {
  transform: rotate(180deg);
}
