/* header */

.nav-pcr {
  display: none;
}

.header-pcr {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 7;
  width: 100%;
}

.header-container-pcr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 34px 14px 26px;
  width: 375px;
  height: 73px;
}

.header-link-pcr {
  transition: all 0.3s ease;

  img {
    width: 159px;
    height: 44px;
  }
}

.header-link-pcr:hover {
  transform: scale(1.1);
}

.menu-btn-pcr {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 41px;
  height: 41px;
  transition: all 0.3s ease;
}

.nav-item-pcr:hover,
.menu-btn-pcr:hover {
  transform: scale(1.1);
}

.menu-svg-pcr {
  width: 100%;
  height: 100%;
}

.nav-list-pcr {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item-pcr {
  position: relative;
  transition: all 0.3s ease-in-out;
}

.nav-link-pcr {
  position: relative;
  font-weight: 600;
  font-size: 18px;
  line-height: 113%;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.nav-item-pcr::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: #fff;

  transition: all 0.3s ease-in-out;
}

.item-active-pcr::after {
  width: 100%;
}

@media screen and (min-width: 1440px) {
  .header-container-pcr {
    padding: 11px 101px 10px 98px;
    width: 1440px;
    align-items: center;
    height: 91px;
  }

  .header-link-pcr {
    img {
      width: 251px;
      height: 70px;
    }
  }

  .nav-pcr {
    display: block;
  }

  .menu-btn-pcr {
    display: none;
  }
}

/* modal  */

.modal-pcr {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8;

  width: 375px;
  height: 812px;
  background: #060911;
  padding: 289px 119px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-close-pcr {
  position: absolute;
  top: 23px;
  right: 28px;
  width: 30px;
  height: 30px;
}

.menu-nav-list-pcr {
  flex-direction: column;
  gap: 50px;
}

.menu-nav-item-pcr {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-nav-link-pcr {
  font-size: 20px;
  line-height: 102%;
  letter-spacing: 0.04em;
}

/* hero  */

#home {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(/images/hero-bg.png);
}

.hero-container-pcr {
  padding: 106px 30px;
  align-items: start;
}

.hero-title-pcr {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 30px;
  line-height: 97%;
  color: #fff;
  margin-bottom: 23px;

  .hero-title-turquoise-pcr {
    color: #00e5ff;
  }

  .hero-title-purple-pcr {
    color: #d946ef;
  }
}

.hero-text-pcr {
  width: 240px;
  font-size: 14px;
  margin-bottom: 41px;
}

.hero-link-pcr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 16px;
  padding: 16px 24px;
  width: 305px;
  height: 57px;
  box-shadow:
    0 0 80px 0 rgba(124, 58, 237, 0.15),
    0 0 40px 0 rgba(0, 229, 255, 0.25);
  background: linear-gradient(127deg, #00e5ff 0%, #7c3aed 100%);

  font-family: var(--second-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 0.07em;
  color: #fff;

  margin-bottom: 50px;
  transition: all 0.3s ease;

  svg {
    width: 24px;
    height: 24px;
    fill: #fff;
  }
}

.hero-link-pcr:hover {
  transform: scale(1.1);
}

.hero-img-pcr {
  width: 307px;
  height: 276px;
}

@media screen and (min-width: 1440px) {
  #home {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(/images/hero-bg.png);
  }

  .hero-container-pcr {
    padding: 239px 134px 292px;
    align-items: center;
    flex-direction: row;
    gap: 31px;
  }

  .hero-text-wrap-pcr {
    width: 592px;
  }

  .hero-title-pcr {
    font-size: 72px;
    line-height: 106%;
  }

  .hero-text-pcr {
    width: 512px;
    font-size: 20px;
    line-height: 150%;
  }

  .hero-link-pcr {
    padding: 16px 32px;
    width: 353px;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.06em;

    margin-bottom: 0;
  }

  .hero-img-pcr {
    width: 548px;
    height: 493px;
  }
}

/* features */

#features {
  background: radial-gradient(
    80% 50% at 50% 0%,
    rgba(124, 58, 237, 0.08) 30.77%,
    rgba(0, 0, 0, 0) 100%
  );
}

.features-container-pcr {
  padding: 50px 36px 25px;
  margin-bottom: 50px;
}

.features-item-pcr {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  height: 244px;
  padding: 28px 22px 19px 28px;
  background: rgba(13, 14, 28, 0.7);

  div {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 255, 0.09);
    border: 1px solid rgba(0, 229, 255, 0.19);
    border-radius: 14px;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;

    svg {
      width: 24px;
      height: 24px;
    }
  }

  h3 {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
    margin-bottom: 12px;
  }

  p {
    font-size: 14px;
    line-height: 127%;
  }
}

.features-item-pcr:nth-child(2) {
  div {
    border: 1px solid rgba(217, 70, 239, 0.19);
    background: rgba(217, 70, 239, 0.09);
  }
}

.features-item-pcr:nth-child(3) {
  div {
    border: 1px solid rgba(167, 139, 250, 0.19);
    background: rgba(167, 139, 250, 0.09);
  }
}

.features-item-pcr:nth-child(4) {
  div {
    border: 1px solid rgba(244, 114, 182, 0.19);
    background: rgba(244, 114, 182, 0.09);
  }
}

@media screen and (min-width: 1440px) {
  .features-container-pcr {
    padding: 100px 103px 27px;
    margin-bottom: 100px;
  }

  .features-list-pcr {
    display: flex;
    gap: 24px;
  }

  .features-item-pcr {
    padding: 28px;
    width: 290px;
    height: 281px;

    h3 {
      font-size: 18px;
      line-height: 134%;
    }

    p {
      font-size: 16px;
      line-height: 149%;
    }
  }
}

/* how */

#how {
  background: linear-gradient(180deg, #060911 0%, #08091a 50%, #060911 100%);
}

.how-container-pcr {
  padding: 22px;
}

.how-item-pcr {
  background: rgba(13, 14, 28, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px 30px 17px 32px;
  width: 286px;
  height: 222px;

  div {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    width: 56px;
    height: 56px;

    span {
      font-family: var(--second-family);
      font-weight: 700;
      font-size: 22px;
      line-height: 150%;
    }
  }

  h3 {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 168%;
    color: #fff;
    margin-top: 24px;
    margin-bottom: 12px;
  }

  p {
    font-size: 14px;
  }
}

.how-item-pcr:nth-child(1) {
  div {
    box-shadow: 0 0 20px 0 rgba(0, 229, 255, 0.14);
    background: rgba(0, 229, 255, 0.09);
    border: 1px solid rgba(0, 229, 255, 0.31);
    color: #00e5ff;

    span {
      color: #00e5ff;
    }
  }
}

.how-item-pcr:nth-child(2) {
  div {
    border: 1px solid rgba(217, 70, 239, 0.31);
    box-shadow: 0 0 20px 0 rgba(217, 70, 239, 0.14);
    background: rgba(217, 70, 239, 0.09);

    span {
      color: #d946ef;
    }
  }
}

.how-item-pcr:nth-child(3) {
  div {
    border: 1px solid rgba(167, 139, 250, 0.31);
    box-shadow: 0 0 20px 0 rgba(167, 139, 250, 0.14);
    background: rgba(167, 139, 250, 0.09);

    span {
      color: #a78bfa;
    }
  }
}

@media screen and (min-width: 1440px) {
  .how-container-pcr {
    padding: 66px 106px;
  }

  .how-list-pcr {
    display: flex;
    gap: 31px;
  }

  .how-item-pcr {
    padding: 32px;
    width: 389px;
    height: 226px;

    h3 {
      font-size: 18px;
      line-height: 150%;
    }

    p {
      font-size: 16px;
    }
  }
}

/* testimonials */

.testimonials-container-pcr {
  padding: 50px 22px;
}

.testimonials-item-pcr {
  background: rgba(13, 14, 28, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px 15px 22px 32px;
  width: 284px;
  height: 316px;

  div {
    display: flex;
    gap: 4px;

    svg {
      width: 16px;
      height: 16px;
    }
  }

  p {
    font-style: italic;
    font-size: 14px;
    line-height: 165%;
    margin-top: 12px;
    margin-bottom: 28px;
  }

  h3 {
    width: 218px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0px 0px;
    font-size: 14px;
    line-height: 150%;
  }
}

.testimonials-star-empty-pcr {
  stroke: rgba(255, 255, 255, 0.1);
  fill: transparent;
}

@media screen and (min-width: 1440px) {
  .testimonials-container-pcr {
    padding: 100px 104px;
  }

  .testimonials-list-pcr {
    display: flex;
    gap: 24px;
  }

  .testimonials-item-pcr {
    padding: 32px;
    width: 394px;
    height: 290px;

    p {
      font-size: 16px;
      line-height: 144%;
    }

    h3 {
      width: 329px;
    }
  }
}

/* faq */

.faq-container-pcr {
  padding: 70px 14px 50px;
}

.faq-list-pcr {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.faq-item-pcr {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  background: rgba(13, 14, 28, 0.7);
}

.faq-question-wrap-pcr {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question-pcr {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 180%;
  color: #fff;
}

.faq-btn-pcr {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.faq-answer-pcr {
  font-size: 14px;
}

@media screen and (min-width: 1440px) {
  .faq-container-pcr {
    padding: 100px 360px;
  }

  .faq-item-pcr {
    padding: 24px 28px;
  }

  .faq-question-pcr {
    font-size: 16px;
    line-height: 150%;
  }

  .faq-answer-pcr {
    font-size: 16px;
  }
}

/* footer */

#footer {
  border-top: 1px solid rgba(0, 229, 255, 0.08);
}

.footer-container-pcr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  padding: 32px 0;
}

.footer-links-list-pcr {
  display: flex;
  gap: 35px;
}

.footer-links-item-pcr {
  position: relative;
  transition: all 0.3s ease;

  a {
    font-size: 14px;
    line-height: 143%;
    color: #fff;
  }
}

.footer-item-privacy-pcr::after {
  position: absolute;
  right: -19px;
  top: 0;
  content: "|";
  opacity: 0.3;
  color: #fff;
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
}

.footer-home-link-pcr:hover {
  transform: scale(1.1);
}

.footer-text-pcr {
  font-size: 14px;
  line-height: 143%;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 1440px) {
  .footer-container-pcr {
    flex-direction: row;
    justify-content: space-between;
    padding: 32px 92px 32px 104px;
  }

  .footer-links-list-pcr {
    display: flex;
    gap: 32px;
  }
}

/* ********************* */

.hidden-pcr {
  display: none;
}

.click-pcr {
  transform: rotate(180deg);
}
