.main-section {
  position: fixed;
  z-index: 9;
  width: 100%;
  padding: 30px;
  background: #06285a;
}

.page-nav {
  display: none;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
}

.page-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.page-nav-link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.3s ease;
}

.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.menu-open-svg {
  stroke: #fff;
}

.menu-close-svg {
  stroke: #fff;
}

@media screen and (min-width: 1421px) {
  .main-section {
    padding: 30px;
  }

  .page-nav {
    display: block;
  }

  .menu-btn {
    display: none;
  }
}

/* modal  */

.menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 8;
  width: 100%;
  padding: 45px 15px;
  padding-top: 90px;
  transform: translateX(100%);
  transition: transform 1s ease;
  background: #06285a;
}

.menu-nav-list {
  flex-direction: column;
  align-items: center;
}

/* popup */

.page-popup {
  position: fixed;
  z-index: 10;
  width: 96%;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.4s ease;
  padding: 40px;
  background: #06285a;
}

.popup-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  color: #fff;
}

.popup-btn {
  border-radius: 30px;
  padding: 9px;

  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #f00;
  text-decoration: underline;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.popup-btn:hover {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  background: #08ae17;
  color: #06285a;
  text-decoration: none;
}

.popup-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}

@media screen and (min-width: 1421px) {
  .page-popup {
    padding: 40px;
  }

  .popup-wrap {
    gap: 80px;
    margin-top: 24px;
  }

  .popup-btn {
    font-size: 16px;
    padding: 10px 30px;
  }
}

/* hero  */

.dashboard {
  background: linear-gradient(160deg, #7a00b4, #1e35d3, #00d6db);

  padding-top: 101px;
  padding-bottom: 549px;
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 24px;
  line-height: 133%;
  text-align: center;
  background: linear-gradient(90deg, #dbaeff 0%, #fffdff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
  margin-bottom: 16px;
}

.page-hero-text {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 11px;
}

.page-hero-sub-title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 24px;
  line-height: 133%;
  text-align: center;
  background: linear-gradient(90deg, #dbaeff 0%, #fffdff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
  margin-bottom: 24px;
}

.hero-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 46px;

  li {
    display: flex;
    align-items: center;
    width: 327px;
    max-width: 100%;
    gap: 16px;
    padding: 15px 24px;
    padding-left: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(26px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-radius: 50px;

    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    line-height: 114%;
    letter-spacing: -0.01em;
    text-align: center;
    color: #06285a;
  }

  div {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ff0019;
    flex-shrink: 0;
  }
}

.hero-link-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.hero-link {
  border-radius: 47px;
  padding: 15px 30px;
  backdrop-filter: blur(44px);
  box-shadow: 0 17px 18px rgba(0, 0, 0, 0.12);
  background: rgba(0, 0, 0, 0.2);
  display: block;
  width: 304px;
  max-width: 100%;
  text-align: center;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: -0.04em;
  text-align: center;
}

.hero-img {
  position: absolute;
  width: 576px;
  bottom: 0;
  left: -60px;
  max-width: max-content;
}

@media screen and (min-width: 1421px) {
  .dashboard {
    padding-top: 148px;
    padding-bottom: 101px;
  }

  .hero-title {
    font-size: 38px;
    margin-bottom: 16px;
    text-align: start;
  }

  .page-hero-text {
    font-size: 18px;
    margin-bottom: 31px;
    text-align: start;
  }

  .page-hero-sub-title {
    font-size: 24px;
    text-align: start;
  }

  .hero-list {
    align-items: flex-start;
    margin-bottom: 70px;
  }

  .hero-img {
    width: auto;
    bottom: auto;
    top: 0;
    left: 50%;
  }

  .hero-wrapper {
    max-width: 50%;
  }

  .hero-link-wrap {
    flex-direction: row;
  }
}

/* about */

.about-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  text-align: justify;
  color: #fff;
}

.snake {
  display: none;
}

@media screen and (min-width: 1421px) {
  #about {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;

    .section-title,
    .section-description {
      text-align: start;
    }
  }

  .snake {
    display: block;
    flex-shrink: 0;
    transform: translateX(-80px);
  }

  .about-text {
    font-size: 16px;
  }
}

/* features */

.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.features-item {
  width: 100%;
}

.features-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  flex-shrink: 0;
  transition: transform 0.6s ease;
}

.features-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 36px;
  padding: 8px 12px;
  position: relative;
  z-index: 1;
  background: radial-gradient(ellipse at center, #1c2331 0%, #0f131b 100%);
}

.wrap2 {
  flex-direction: row-reverse;
}

.features-title {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 18px;
  line-height: 111%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.faq-text {
  border-radius: 50px;
  padding: 30px;
  padding-top: 103px;
  transform: translateY(-30px);

  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  color: #000;
  background: #d9d9d9;
}

@media screen and (min-width: 1421px) {
  .features-list {
    gap: 16px 78px;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .features-item {
    width: calc((100% - 78px) / 2);
  }

  .features-title {
    font-size: 24px;
  }

  .faq-text {
    font-size: 16px;
    padding: 100px;
    padding-bottom: 50px;
    transform: translateY(-50px);
  }

  .features-btn {
    width: 66px;
  }
}

/* why */

.why-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;

  li {
    border-radius: 20px;
    padding: 17px 33px;
    background: #d9d9d9;
  }

  span {
    display: block;
    margin-bottom: 31px;
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 40px;
    line-height: 55%;
    letter-spacing: 0em;
    color: #347ee8;
  }

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 111%;
    letter-spacing: 0.01em;
    color: #000;
  }
}

@media screen and (min-width: 1421px) {
  #why {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 74px;
    flex-direction: row-reverse;

    .section-title,
    .section-description {
      text-align: end;
    }
  }

  .why-text {
    font-size: 18px;
    text-align: end;
  }

  .why-list {
    li {
      display: flex;
      gap: 24px;
      padding: 18px 80px;
    }

    span {
      margin: 0;
    }
  }
}

/* gallery */

#gallery {
  padding-left: 0;
  padding-right: 0;
}

.gallery-item {
  width: 375px;
  max-width: 100%;
}

/* download */

.download-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  color: #fff;
  max-width: 574px;
  margin: 0 auto;
  margin-bottom: 24px;
}

.download-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  max-width: 574px;
  margin: 0 auto;
  margin-bottom: 24px;
}

.download-link {
  border-radius: 47px;
  padding: 14px 30px;
  width: 304px;
  max-width: 100%;
  display: block;
  font-size: 20px;
  margin: 0 auto;
  backdrop-filter: blur(44px);
  box-shadow: 0 17px 18px rgba(0, 0, 0, 0.12);
  background: #347ee8;
  text-align: center;
  transition: background-color 0.3s ease;
}

.download-link:hover {
  background: #2662b6;
}
@media screen and (min-width: 1421px) {
  #download {
    background-image: url(../img/ball1.png), url(../img/ball1.png);
    background-position: left, right;
    background-repeat: no-repeat;
  }
}

/* testimonials */

#testimonials {
  padding-left: 0;
  padding-right: 0;
}

.testimonials-item {
  border-radius: 20px;
  padding: 22px 21px;
  background: #fff;
  width: 375px;
  max-width: 100%;
  min-height: 298px;

  h4 {
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 18px;
    line-height: 133%;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 12px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 112%;
    color: #347ee8;
  }
}

@media screen and (min-width: 1421px) {
  #testimonials {
    background-image: url(../img/ball3.png);
    background-position: top right;
    background-repeat: no-repeat;
  }
}

/* info */

#info {
  overflow: hidden;
}

.snake3 {
  width: 520px;
  max-width: max-content;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;

  li {
    display: flex;
    gap: 8px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    color: #000;
    border-radius: 14px;
    padding: 13px;
    width: calc((100% - 8px) / 2);
    background-color: #fff;
  }

  span {
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    color: #347ee8;
    border-radius: 14px;
    padding: 13px;
    width: calc((100% - 8px) / 2);
    background-color: #fff;
  }
}

@media screen and (min-width: 1421px) {
  #info {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    padding-right: 0;
  }

  .snake3 {
    width: auto;
    transform: translateX(80px);
  }

  .info-list {
    gap: 12px;

    li {
      gap: 12px;
    }

    p,
    span {
      font-size: 24px;
      padding: 19px;
    }
  }
}

/* faq */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;

  h4 {
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 14px;
    line-height: 114%;
    text-transform: uppercase;
    color: #fbc006;
  }

  p {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 14px;
    line-height: 114%;
    text-transform: uppercase;
    color: #fff;
  }
}

@media screen and (min-width: 1421px) {
  .faq-list {
    gap: 24px;

    h4,
    p {
      font-size: 16px;
    }
  }
}

/* news */

.news-list {
  display: flex;
  flex-direction: column;
  gap: 17px;

  li {
    border-radius: 20px;
    padding: 17px 33px;
    background: #d9d9d9;
  }

  p {
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 18px;
    line-height: 111%;
    text-transform: uppercase;
    text-align: center;
    color: #000;
    margin-bottom: 12px;
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    text-align: center;
    color: #000;
  }
}

@media screen and (min-width: 1421px) {
  .news-contact-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 100px;
  }

  #news {
    .section-title,
    .section-description {
      text-align: start;
    }
  }

  .news-list {
    li {
      padding: 30px 42px;
    }
  }
}

/* contact */

.contact-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 122%;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.contact-list {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 122%;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.contact-title {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 18px;
  line-height: 122%;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

@media screen and (min-width: 1421px) {
  #contact {
    .section-title,
    .section-description {
      text-align: end;
    }
  }

  .contact-text {
    text-align: end;
  }

  .contact-list {
    align-items: flex-end;
  }

  .contact-title {
    text-align: end;
  }
}

/* footer */

.footer {
  padding: 34px 10px;
  box-shadow: 0 -37px 100px rgba(85, 148, 244, 0.06);
  background: #fff;
}

.footer-link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  color: #000;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-link-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.footer-description {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
  text-align: center;
  color: #000;
  margin-bottom: 20px;
}

@media screen and (min-width: 1421px) {
  .footer {
    padding: 36px 117px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-link-wrap {
    flex-direction: row;
  }

  .footer-description {
    margin: 0;
  }
}

/* ********************* */

.hidden {
  display: none;
}

.menu-transform {
  transform: translateY(0);
}

.click {
  transform: rotate(180deg);
}

.popup-click {
  transform: translateY(130%) translateX(-50%);
}

.overflow {
  overflow: hidden;
}
