/* header */

.nav-nvs {
  display: none;
}

.header-nvs {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  width: 100%;
  background: var(--bg1);
}

.header-container-nvs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 16px 0;
  width: 375px;
}

.header-wrap-nvs {
  border-radius: 100px;
  padding: 16px 24px;
  width: 343px;
  height: 56px;
  background: #222120;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo-link-nvs {
  flex-shrink: 0;
  font-size: 20px;
  transition: all 0.3s ease;
}

.menu-btn-nvs {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  width: 24px;
  height: 24px;

  svg {
    width: 100%;
    height: 100%;
  }
}

.header-logo-link-nvs:hover,
.menu-btn-nvs:hover,
.nav-item-nvs:hover {
  transform: scale(1.1);
}

.nav-list-nvs {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item-nvs {
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.nav-link-nvs {
  position: relative;
  line-height: 150%;
  text-align: center;
  color: #b39a8c;
  transition: all 0.3s ease-in-out;
}

.nav-item-nvs::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 0;
  height: 1px;
  background: #b39a8c;

  transition: all 0.3s ease-in-out;
}

.item-active-nvs::after {
  width: 100%;
}

@media screen and (min-width: 1440px) {
  .header-container-nvs {
    display: flex;
    justify-content: center;
    padding-top: 32px;
    width: 1440px;
  }

  .header-wrap-nvs {
    width: 856px;
  }

  .nav-nvs {
    display: block;
  }

  .menu-btn-nvs {
    display: none;
  }
}

/* modal  */

.modal-nvs {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;

  background: #1b1919;
  padding-top: 128px;
  width: 375px;
  height: 812px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-nav-list-nvs {
  flex-direction: column;
  gap: 32px;
}

.menu-close-nvs {
  position: absolute;
  top: 40px;
  right: 40px;
}

.menu-nav-link-nvs {
  font-family: var(--second-family);
}

/* hero  */

#home {
  background-image: url(/images/hero-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-container-nvs {
  padding: 200px 16px 334px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-title-nvs {
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
}

.hero-text-nvs {
  line-height: 150%;
}

.hero-gplay-link-nvs {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding: 16px 24px;
  width: 244px;
  height: 56px;
  background: linear-gradient(180deg, #fff 0%, #d6d6d6 100%);

  line-height: 150%;
  color: #000;
  transition: all 0.3s ease;
}

.hero-gplay-link-nvs:hover {
  transform: scale(1.1);
}

@media screen and (min-width: 1440px) {
  .hero-container-nvs {
    padding: 159px 629px 423px 189px;
    align-items: start;
  }

  .hero-title-nvs {
    font-size: 64px;
  }

  .hero-gplay-link-nvs {
    color: #212121;
  }
}

/* features */

.features-container-nvs {
  padding-top: 64px;
}

.features-list-nvs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.features-item-nvs {
  background-image: url(/images/features/bg-bottom.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 40px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;

  svg {
    width: 44px;
    height: 44px;
  }

  h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 133%;
    margin-bottom: 16px;
  }

  p {
    line-height: 150%;
  }
}

.features-item-nvs:nth-child(even) {
  background-image: url(/images/features/bg-top.png);
}

.features-item-circles-nvs {
  background-image: url(/images/features/circles.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 236px;
  height: 236px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.features-item-icon-wrap-nvs {
  box-shadow: inset -5px -5px 10px 0 rgba(255, 167, 135, 0.5);
  background: #fe6a34;
  border-radius: 100px;
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 1440px) {
  .features-container-nvs {
    padding-top: 120px;
  }

  .features-list-nvs {
    position: relative;
    width: 856px;
    height: 1128px;
  }

  .features-item-nvs {
    position: absolute;
    width: 416px;

    h3 {
      font-size: 40px;
      line-height: 120%;
    }
  }

  .features-item-nvs:nth-child(1) {
    top: 0;
    left: 0;
  }

  .features-item-nvs:nth-child(2) {
    left: 0;
    bottom: 80px;
  }

  .features-item-nvs:nth-child(3) {
    top: 80px;
    right: 0;
  }

  .features-item-nvs:nth-child(4) {
    bottom: 0;
    right: 0;
  }
}

/* how */

.how-container-nvs {
  position: relative;
}

.how-list-nvs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.how-list-bg-nvs {
  display: none;
}

.how-item-nvs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;

  .how-number-wrap-external-nvs {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: #fff solid 1px;
    width: 94px;
    height: 94px;
  }

  .how-number-wrap-inner-nvs {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    background: #fff;
  }

  .how-number-nvs {
    font-weight: 400;
    font-size: 36px;
    line-height: 122%;
    color: #020202;
  }

  .how-item-wrap-nvs {
    display: flex;
    flex-direction: column;
    gap: 24px;
    backdrop-filter: blur(20px);
    background: rgba(27, 25, 25, 0.5);
    border-radius: 40px;
    padding: 28px;

    h4 {
      font-weight: 400;
      font-size: 40px;
      line-height: 120%;
    }

    p {
      line-height: 150%;
    }
  }
}

@media screen and (min-width: 1440px) {
  .how-list-nvs {
    position: relative;
    z-index: 2;
    width: 1296px;
    height: 664px;
  }

  .how-list-bg-nvs {
    display: block;
    position: absolute;
    left: 370px;
    bottom: 88px;
    background-image: url(/images/how-circle.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    /* width: 632px;
    height: 636px; */
    width: 780px;
    height: 736px;
  }

  .how-item-nvs {
    position: absolute;
    align-items: start;
    flex-direction: row;
    gap: 50px;
  }

  .how-item-wrap-nvs {
    width: 416px;
  }

  .how-item-nvs:nth-child(1) {
    top: 2px;
    right: 0;

    .how-number-wrap-main-nvs {
      padding-top: 35px;
    }
  }

  .how-item-nvs:nth-child(2) {
    bottom: 0;
    right: 0;

    .how-number-wrap-main-nvs {
      padding-top: 41px;
    }
  }

  .how-item-nvs:nth-child(3) {
    flex-direction: column;
    align-items: end;
    gap: 35px;
    bottom: 88px;
    left: 0;
  }
}

/* reviews */

.reviews-list-nvs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reviews-item-upper-wrap-nvs {
  background-image: url(/images/reviews-item-bg-mob.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  gap: 24px;
  border-radius: 40px 40px 0 0;
  padding: 28px;

  .reviews-quote-nvs {
    flex-shrink: 0;
    width: 34px;
    height: 24px;
  }

  .reviews-text-wrap-nvs {
    .reviews-title-nvs {
      font-weight: 700;
      font-size: 16px;
      line-height: 150%;
      margin-bottom: 8px;
    }

    .reviews-text-nvs {
      line-height: 150%;
    }
  }
}

.reviews-item-lower-wrap-nvs {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  border-radius: 0 0 40px 40px;
  background: #302e2b;

  .reviews-item-author-nvs {
    font-size: 12px;
    line-height: 133%;
  }

  .reviews-item-stars-wrap-nvs {
    display: flex;

    .reviews-star-nvs {
      width: 16px;
      height: 16px;
      fill: #fff;
    }

    .reviews-star-empty-nvs {
      fill: #302e2b;
      stroke: #fff;
    }
  }
}

@media screen and (min-width: 1440px) {
  .reviews-list-nvs {
    flex-direction: row;
  }

  .reviews-item-nvs {
    width: 416px;
  }

  .reviews-item-nvs:nth-child(1),
  .reviews-item-nvs:nth-child(3) {
    padding-top: 40px;
  }

  .reviews-item-upper-wrap-nvs {
    background-image: url(/images/reviews-item-bg-desk.png);
    height: 208px;
  }
}

/* faq */

.faq-container-nvs {
  padding-bottom: 64px;
}

.faq-list-nvs {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.faq-item-nvs {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background: #302e2b;
  border-radius: 40px;
}

.faq-question-wrap-nvs {
  display: flex;
  justify-content: space-between;
}

.faq-question-nvs {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
}

.faq-btn-nvs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.faq-item-active-nvs {
  box-shadow: 0 0 50px 0 #ff5a00;
  background: #fe6a34;
}

@media screen and (min-width: 1440px) {
  .faq-container-nvs {
    padding-bottom: 120px;
  }

  .faq-list-nvs {
    width: 636px;
  }
}

/* footer */

#footer {
  background: #222120;
}

.footer-container-nvs {
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.footer-wrap-nvs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-home-link-nvs {
  font-size: 20px;
  transition: all 0.3s ease;
}

.footer-home-link-nvs:hover {
  transform: scale(1.1);
}

.footer-links-list-nvs {
  display: flex;
  gap: 32px;

  li {
    transition: all 0.3s ease;

    a {
      line-height: 150%;
      text-align: center;
      color: #b39a8c;
    }
  }

  li:hover {
    transform: scale(1.1);
  }
}

.footer-copyright-nvs {
  line-height: 150%;
  text-align: center;
}

@media screen and (min-width: 1440px) {
  .footer-container-nvs {
    padding: 40px 72px;
  }

  .footer-wrap-nvs {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ********************* */

.hidden-nvs {
  display: none;
}

.click-nvs {
  transform: rotate(180deg);
}
