/* header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 6px 0;
  backdrop-filter: blur(54.20000076293945px);
  background: rgba(255, 193, 7, 0.6);
  z-index: 9;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.header-logo {
  width: 62px;
}

.navigation {
  display: none;
}

.open-modal {
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-modal {
  display: flex;
  align-items: center;
  justify-content: center;
}

.svg {
  fill: #fff;
  stroke: #fff;
}

.navigation-list {
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.navigation-item {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 16px;
  color: var(--fon);
  transition: color 0.3s ease;
}

.navigation-item:hover {
  text-decoration: underline;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 8;
  padding: 14px;
  padding-left: 40px;
  padding-top: 88px;
  background: var(--accent);

  transform: translateX(100%);
  transition: transform 1s ease;
  z-index: 8;
}

.modal-navigation-list {
  flex-direction: column;
  align-items: flex-start;
}

.modal-click {
  transform: translateX(0);
}

@media screen and (min-width: 1438px) {
  .header {
    padding: 14px 0;
  }

  .header-wrapper {
    gap: 132px;
  }

  .header-logo {
    width: 80px;
    flex-shrink: 0;
  }

  .navigation {
    display: block;
    flex-shrink: 1;
  }

  .navigation-list {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 38px;
  }

  .navigation-item {
    color: #1b1b1b;
  }

  .open-modal {
    display: none;
  }
}

/* home */

#home {
  padding-top: 124px;
}

.home-wrapper {
  position: relative;
}

.home-title {
  font-family: var(--font3);
  font-weight: 700;
  font-size: 20px;
  background: linear-gradient(
    90deg,
    #fff 0%,
    #fff 70.67%,
    #1e1e1e 81.25%,
    #1e1e1e 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.home-title2 {
  text-align: end;
  margin-bottom: 135px;
}

.home-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: var(--text);
  margin-bottom: 40px;
}

.home-link {
  border-radius: 40px;
  padding: 17px 10px;
  width: 311px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;

  backdrop-filter: blur(60px);
  box-shadow: 0 2px 2px rgba(212, 175, 55, 0.3);
  background: var(--accent);

  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
}

.hero-image {
  position: absolute;
  left: 0;
  top: -20px;
  width: 289px;
  max-width: max-content;
}

@media screen and (min-width: 1438px) {
  #home {
    padding-top: 171px;
    padding-bottom: 120px;
  }

  .hero-image {
    width: auto;
    top: -40px;
  }

  .home-title {
    font-size: 48px;
    margin-bottom: 16px;
  }

  .home-title2 {
    margin-bottom: 117px;
  }

  .home-text {
    font-size: 24px;
    max-width: 435px;
    margin-left: auto;
  }

  .home-link {
    font-size: 24px;
    width: 459px;
    margin: 0;
    margin-left: auto;
  }
}

/* about */

.about-description {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: var(--text);

  span {
    color: var(--accent);
  }
}

.about-img {
  margin: 24px auto;
}

.about-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: var(--text);

  span {
    display: block;
    color: var(--accent);
    margin: 24px 0;
  }
}

@media screen and (min-width: 1438px) {
  #about {
    padding-top: 120px;
  }

  .about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
  }

  .about-description {
    font-size: 32px;
    text-align: start;
    margin: 0;
  }

  .about-img {
    margin: 0;
    flex-shrink: 0;
  }

  .about-text-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
  }

  .about-text {
    font-size: 32px;
    text-align: start;

    span {
      margin: 0;
      margin-top: 24px;
    }
  }
}

/* how */

.how-description {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: var(--text);
}

.how-list {
  margin-top: 44px;
  margin-bottom: 44px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px 14px;
  border-left: 4px solid rgba(255, 193, 7, 0.5);
  border-right: 4px solid rgba(255, 193, 7, 0.5);

  li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: var(--text);
  }

  img {
    width: 25px;
    flex-shrink: 0;
  }
}

.how-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;

  p {
    padding: 10px 14px;
    border-radius: 40px;
    background: var(--accent);
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: var(--text);
  }

  img {
    margin: 0 auto;
  }
}

@media screen and (min-width: 1438px) {
  .how-description {
    font-size: 32px;
  }

  .how-list {
    margin-top: 60px;
    margin-bottom: 60px;
    gap: 40px;
    padding: 40px;

    li {
      gap: 40px;
      font-weight: 400;
      font-size: 32px;
    }

    img {
      width: auto;
    }
  }

  .how-wrap {
    flex-direction: row;
    margin-bottom: 60px;

    img {
      flex-shrink: 0;
      margin: 0;
    }

    p {
      padding: 28px;
      font-size: 28px;
    }
  }
}

/* features */

.features-list {
  display: flex;
  flex-direction: column;
  align-items: center;

  li {
    position: relative;
    width: 311px;
    max-width: 100%;
    min-height: 122px;
    padding: 40px;
  }

  img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: var(--text);
    position: relative;
    z-index: 1;
  }
}

@media screen and (min-width: 1438px) {
  .features-list {
    flex-wrap: wrap;
    gap: 0 24px;
    height: 940px;
    align-items: normal;

    li {
      width: calc((100% - 24px) / 2);
      min-height: 206px;
      padding: 70px 90px;
    }

    span {
      font-size: 32px;
    }
  }
}

/* why */

.why-img {
  width: 311px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 24px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;

  li {
    display: flex;
    align-items: center;
    gap: 16px;

    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: var(--text);
  }
}

.why-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: var(--text);

  padding: 12px;
  border-radius: 40px;
  background: var(--accent);
  margin-top: 40px;
}

@media screen and (min-width: 1438px) {
  .why-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }

  .why-img {
    width: auto;
    margin: 0;
    flex-shrink: 0;
  }

  .why-list {
    gap: 32px;

    li {
      gap: 40px;
      font-size: 32px;
    }
  }

  .why-text {
    font-size: 28px;
    max-width: 1062px;
    margin: 0 auto;
    margin-top: 60px;
  }
}

/* gallery */

.swiper-slide {
  width: 311px;
  max-width: 100%;
}

.gallery-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.gallery-right {
  transform: scaleX(-1);
}

@media screen and (min-width: 1438px) {
  .swiper-slide {
    width: 411px;
  }

  .gallery-container {
    position: relative;
  }

  .gallery-btn-wrap {
    position: absolute;
    top: 0;
    right: 80px;
  }
}

/* reviews */

.reviews-item {
  border-radius: 14px;
  padding: 28px 14px;
  height: 255px;
  box-shadow: 0 1px 1px 0 rgba(27, 67, 50, 0.1);
  background: var(--accent);
  position: relative;

  p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    color: var(--text);
    margin-top: 16px;
  }

  div {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: flex-start;
    position: absolute;
    left: 14px;
    bottom: 14px;
  }

  span {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 16px;
    color: var(--text);
  }
}

@media screen and (min-width: 1438px) {
  .reviews-item {
    border-radius: 40px;
    padding: 40px 20px;
    height: 368px;

    p {
      font-size: 20px;
    }

    div {
      left: 16px;
      bottom: 16px;
    }
  }
}

/* who */

.who-list {
  display: flex;
  flex-direction: column;
  gap: 24px 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 672px;

  div {
    border: 2px solid var(--accent);
    border-radius: 16px;
    padding: 0px 0px 5px 0px;
    width: calc((100% - 16px) / 2);
    height: 208px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 11px;
    line-height: 140%;
    text-align: center;
    color: var(--text);

    img {
      margin-bottom: 6px;
    }
  }
}

@media screen and (min-width: 768px) {
  .who-list {
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;

    div {
      width: calc((100% - 48px) / 3);
      height: 300px;
      font-size: 16px;
      border-radius: 22px;
    }
  }
}

@media screen and (min-width: 1438px) {
  .who-list {
    div {
      height: 570px;
      font-size: 32px;
      border-radius: 40px;
    }

    img {
      margin-bottom: 16px;
    }
  }
}

/* benefits */

.iphone {
  width: 228px;
}

@media screen and (min-width: 1438px) {
  .iphone {
    width: auto;
  }

  .benefits-wrap {
    gap: 153px;
  }
}

/* download */

.download-title {
  margin-top: 32px;
}

.download-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 6px;
  padding-left: 36px;
  border-radius: 19px;
  backdrop-filter: blur(5.616666793823242px);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.3);
  margin-bottom: 70px;

  span {
    color: var(--accent);
  }
}

.download-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;

  a {
    display: block;
    width: 311px;
    max-width: 100%;
    transition: transform 0.2s ease;
  }

  a:hover {
    transform: scale(1.05);
  }

  p {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    padding: 14px;
    width: 311px;
    max-width: 100%;
    text-align: center;
    border-radius: 24px;
    backdrop-filter: blur(35.953758239746094px);
    box-shadow: 0 1px 1px rgba(212, 175, 55, 0.3);
    background: var(--accent);
  }
}

@media screen and (min-width: 1438px) {
  .download-title {
    margin-top: 60px;
  }

  .download-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 133px;
  }

  .download-list {
    font-size: 32px;
    gap: 40px;
    padding: 24px 50px;
    margin: 0;
  }

  .download-wrap {
    gap: 80px;

    a {
      width: 519px;
    }

    p {
      width: 519px;
      font-size: 24px;
      padding: 23px;
    }
  }
}

/* levels */

.levels-wrap {
  p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: var(--text);
    margin-bottom: 20px;
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: var(--accent);
    margin-top: 24px;
  }
}

@media screen and (min-width: 1438px) {
  .levels-wrapper {
    gap: 44px;
  }

  .levels-wrap {
    p {
      font-size: 32px;
      margin-bottom: 40px;
    }

    span {
      font-size: 32px;
      margin-top: 60px;
    }
  }
}

/* contact */

.contact-logo {
  width: 234px;
  margin: 0 auto;
}

.contact-title {
  font-family: var(--font3);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: var(--accent);
  margin-bottom: 24px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;

  li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: var(--accent);
  }

  span {
    color: var(--text);
  }
}

.contact-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: var(--text);
  margin-top: 32px;
}

@media screen and (min-width: 1438px) {
  .contact-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 24px;
  }

  .contact-logo {
    width: auto;
    margin: 0;
    flex-shrink: 0;
  }

  .contact-title {
    font-size: 36px;
  }

  .contact-list {
    gap: 40px;
    align-items: center;

    li {
      font-size: 24px;
    }
  }

  .contact-text {
    font-size: 32px;
    margin-top: 40px;
  }
}

/* footer */

.footer {
  padding: 32px;
  background: #220c02;
}

.footer-content-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-logo {
  display: block;
  width: 110px;
  margin-bottom: 24px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #f2f2f2;
}

.footer-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #f2f2f2;
  margin-bottom: 16px;
}

.socisl-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 140%;
  text-align: center;
  color: #e3ecff;

  img {
    width: 25px;
  }
}

.mail-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: var(--accent);

  span {
    color: var(--fon);
  }
}

.footer-description {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: var(--fon);
}

.footer-rights-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: var(--accent);
  margin-top: 40px;
}

@media screen and (min-width: 1438px) {
  .footer {
    padding: 60px 80px;
  }

  .footer-content-wrap {
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .footer-logo {
    width: 180px;
    margin-bottom: 30px;
  }

  .footer-list {
    gap: 24px;
  }

  .footer-link {
    font-size: 24px;
  }

  .footer-title {
    font-size: 20px;
    margin-bottom: 40px;
  }

  .soocisl-list {
    flex-direction: row;
  }

  .socisl-link {
    img {
      width: auto;
    }
  }

  .mail-link,
  .footer-description {
    font-size: 20px;
  }

  .footer-rights-text {
    font-size: 24px;
    margin-top: 80px;
  }
}

/* cookie popup */

.popup {
  position: fixed;
  z-index: 10;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 40px 40px 0 0;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
  background: var(--accent);
  padding: 32px;

  transition: transform 0.5s ease;
}

.cookie-title {
  font-family: var(--font3);
  font-weight: 700;
  font-size: 20px;
  color: #f2f2f2;
  margin-bottom: 35px;
}

.popup-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: #f2f2f2;
  margin-bottom: 31px;
}

.popup-btn {
  border-radius: 20px;
  padding: 24px 12px;
  background: var(--fon);

  font-family: var(--font5);
  font-weight: 700;
  font-size: 12px;
  color: var(--text);
  text-transform: uppercase;

  transition: color 0.3s ease, background-color 0.2s ease;
}

.popup-btn:hover {
  color: var(--accent);
}

.popup-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.popup-click {
  transform: translateY(120%) translateX(-50%);
}

@media screen and (min-width: 1438px) {
  .popup {
    padding: 80px 100px;
    bottom: 40px;
    border-radius: 40px;
  }

  .cookie-title {
    font-size: 48px;
    margin-bottom: 54px;
  }

  .popup-text {
    font-size: 36px;
    margin-bottom: 54px;
  }
  .popup-wrap {
    flex-direction: row;
    gap: 24px;
  }

  .popup-btn {
    font-size: 24px;
    display: block;
    width: 519px;
  }
}
