* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Play", sans-serif;
  margin: 0;
  overflow-x: hidden;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#030010), to(#020f43));
  background: linear-gradient(180deg, #030010 0%, #020f43 100%);
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.list {
  list-style: none;
}

button,
a {
  cursor: pointer;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
}

.title {
  font-family: "Play", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 34px;
  text-transform: uppercase;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .title {
    font-weight: 700;
    font-size: 36px;
    line-height: 48px;
  }
}

.tip-box {
  background: #000100;
  padding: 10px 20px;
  color: #0CA5FF;
  font-weight: 500;
  font-size: 10px;
  line-height: 12px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .tip-box {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
  }
}

.header {
  position: fixed;
  width: 100%;
  z-index: 5;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  background: #000100;
  -webkit-box-shadow: 0px 4px 9.6px 0px #278AC4;
          box-shadow: 0px 4px 9.6px 0px #278AC4;
}
.header__button-wrapper {
  margin-left: auto;
  padding-right: 20px;
}
.header__icon {
  display: none;
  width: 24px;
  height: 24px;
}
.header__icon-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
  border: none;
  padding: 0;
}

.header__icon--menu {
  display: block;
  width: 30px;
}

.header__icon-button.is-open .header__icon--menu {
  display: none;
}

.header__icon-button.is-open .header__icon--close {
  display: block;
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-block: 20px;
  position: relative;
  border: 1px solid #278AC4;
}
.navigation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 36px;
  padding: 118px 40px;
  margin-top: 14px;
  top: 130px;
  background: #09024B;
  backdrop-filter: blur(12px);
  position: absolute;
  top: 100%;
  right: -100%;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 999;
}
.navigation__list.is-open {
  right: 0;
}
.navigation__link {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.navigation__link:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media screen and (min-width: 1200px) {
  .header__button-wrapper {
    display: none;
  }
  .navigation {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .navigation__list {
    background: none;
    backdrop-filter: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: static;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
    padding-block: 0;
    margin: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    gap: 80px;
  }
}
.home {
  padding: 0px 20px 64px 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(#030010), to(#020f43));
  background: linear-gradient(180deg, #030010 0%, #020f43 100%);
}
@media screen and (min-width: 1200px) {
  .home {
    padding-bottom: 80px;
  }
}
.home h1 {
  font-weight: 700;
  font-size: 44px;
  line-height: 52px;
  text-transform: uppercase;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .home h1 {
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    margin-bottom: 40px;
  }
}
.home h2 {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .home h2 {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
  }
}

.wrapper-bttm {
  background-image: url("../../images/bg-bottm.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.faq {
  padding: 64px 20px;
}
@media screen and (min-width: 1200px) {
  .faq {
    padding-top: 88px;
    padding-bottom: 21px;
  }
}
.faq ul {
  max-width: 1240px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.faq__item {
  width: 100%;
  background: #000100;
  border: 1px solid #0ca5ff;
  border-radius: 12px;
  padding: 22px 12px;
}
.faq__item:hover {
  -webkit-box-shadow: 0px 0px 26px 0px rgba(255, 255, 255, 0.3490196078);
          box-shadow: 0px 0px 26px 0px rgba(255, 255, 255, 0.3490196078);
}
@media screen and (min-width: 1200px) {
  .faq__item {
    padding: 32px 22px;
  }
}
.faq__question-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  padding-bottom: 6px;
}
.faq__question {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
}
@media screen and (min-width: 1200px) {
  .faq__question {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
  }
}
.faq__answer {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: max-height 0.6s cubic-bezier(0.5, 0.25, 0, 1), padding 0.6s cubic-bezier(0.5, 0.25, 0, 1), opacity 0.6s ease, margin-top 0.6s cubic-bezier(0.5, 0.25, 0, 1);
  transition: max-height 0.6s cubic-bezier(0.5, 0.25, 0, 1), padding 0.6s cubic-bezier(0.5, 0.25, 0, 1), opacity 0.6s ease, margin-top 0.6s cubic-bezier(0.5, 0.25, 0, 1);
  padding: 0;
}
.faq__button {
  background-color: transparent;
  border: none;
  padding: 0;
  width: 28px;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.faq__icon {
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.5, 0.25, 0, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.5, 0.25, 0, 1);
  transition: transform 0.4s cubic-bezier(0.5, 0.25, 0, 1);
  transition: transform 0.4s cubic-bezier(0.5, 0.25, 0, 1), -webkit-transform 0.4s cubic-bezier(0.5, 0.25, 0, 1);
}

.faq__item.active .faq__icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq__item.active .faq__question {
  color: #0ca5ff;
}

.faq__item.active .faq__answer {
  max-height: 200px;
  opacity: 1;
  padding: 8px 0;
  margin-top: 12px;
}

.products {
  padding: 173px 20px 91px 20px;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .products {
    padding-top: 158px;
    padding-bottom: 118px;
  }
}
.products .content {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}
.products h2 {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 48px;
  line-height: 52px;
}
@media screen and (min-width: 1200px) {
  .products h2 {
    font-weight: 800;
    font-size: 52px;
    line-height: 60px;
    text-align: start;
  }
}
.products ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
@media screen and (min-width: 1200px) {
  .products ul {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.products li {
  max-width: 300px;
  width: 100%;
  height: 390px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  padding: 16px 12px;
  border-radius: 12px;
  background: #09024b;
  border: 2px solid #278ac4;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.products li:hover {
  -webkit-box-shadow: 0px 0px 26px 0px #38b6ff;
          box-shadow: 0px 0px 26px 0px #38b6ff;
  background: #000100;
}
@media (min-width: 1200px) {
  .products li {
    height: 184px;
    max-width: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 36px;
  }
}
.products .number {
  display: none;
}
@media (min-width: 1200px) {
  .products .number {
    display: block;
    width: 92px;
    height: 100px;
  }
}
.products .product-logo {
  width: 100%;
}
@media (min-width: 1200px) {
  .products .product-logo {
    width: 300px;
  }
}
.products .flag-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media (min-width: 1200px) {
  .products .flag-box {
    width: 228px;
  }
}
.products .flag {
  width: 44px;
}
.products .text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 16px;
}
@media (min-width: 1200px) {
  .products .text-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 0;
    gap: unset;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.products li h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
}
@media (min-width: 1200px) {
  .products li h3 {
    font-weight: 700;
    font-size: 28px;
    line-height: 30px;
  }
}
.products li p {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
}
.products .product-link {
  width: 167px;
  min-height: 66px;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(#7ed1ff), color-stop(78.5%, #011976));
  background: linear-gradient(180deg, #7ed1ff 0%, #011976 78.5%);
  text-decoration: none;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.products .product-link:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media (min-width: 1200px) {
  .products .product-link {
    width: 252px;
    min-height: 100px;
    margin-left: auto;
  }
}

.avico {
  position: relative;
  padding: 80px 20px;
}
@media screen and (min-width: 1200px) {
  .avico {
    padding-block: 90px;
  }
}
.avico .container {
  max-width: 1240px;
  border-radius: 22px;
  background: linear-gradient(0deg, #000100, #000100), linear-gradient(90.27deg, rgba(130, 148, 177, 0) 0%, rgba(130, 148, 177, 0.12) 50.52%, rgba(130, 148, 177, 0) 100%);
  border: 4px solid #0CA5FF;
  padding: 33px 31px;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .avico .container {
    padding-block: 28px;
  }
}
.avico h2 {
  font-family: "Play", sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 20px;
}
.avico p {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 28px;
}
.avico ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.cookies {
  position: fixed;
  z-index: 4;
  bottom: 0;
  left: 50%;
  max-width: 375px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  padding: 21px;
  border-radius: 22px;
  background: #040401;
  border: 4px solid #0078be;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translate(-50%, 20px);
          transform: translate(-50%, 20px);
  -webkit-transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, -webkit-transform 0.35s ease;
  will-change: opacity, transform;
}
@media screen and (min-width: 1200px) {
  .cookies {
    max-width: 950px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: unset;
  }
}
.cookies p,
.cookies a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
}
.cookies button {
  padding: 10px 16px;
  background: #fff;
  color: #040401;
  border: none;
  border-radius: 6px;
  font-family: "Play", sans-serif;
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.cookies button:hover {
  background: #000;
}
@media screen and (min-width: 1200px) {
  .cookies button {
    margin-left: 140px;
  }
}

.cookies.is-visible {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.footer {
  padding: 32px 20px;
  background: #030504;
  border-top: 1px solid #0CA5FF;
}
@media screen and (min-width: 1200px) {
  .footer {
    padding-top: 51px;
    padding-bottom: 70px;
  }
}
.footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2px;
  margin-bottom: 10px;
}
@media screen and (min-width: 1200px) {
  .footer ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 18px;
    margin-bottom: 20px;
  }
}
.footer li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  text-decoration: none;
}
.footer .copyright {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #0CA5FF;
}

.contacts {
  padding-bottom: 10px;
}
@media screen and (min-width: 1200px) {
  .contacts {
    padding-bottom: 20px;
  }
}
.contacts h2 {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  margin-bottom: 12px;
}
.contacts p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}
.contacts a {
  text-decoration: none;
  color: #fff;
}

.policies {
  padding: 156px 20px 40px 20px;
  color: #0d1b03;
}
.policies h1 {
  font-family: "Play", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 1200px) {
  .policies h1 {
    font-weight: 700;
    font-size: 60px;
    line-height: 64px;
  }
}
.policies p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}
.policies span {
  display: block;
  margin-block: 10px;
  font-weight: bold;
}/*# sourceMappingURL=main.css.map */