* {
  box-sizing: border-box;
}

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

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  overflow-x: hidden;
  background: #000;
  color: #fff;
  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: "Inter", sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 40px;
  text-align: center;
  color: #cf0;
}
@media screen and (min-width: 1200px) {
  .title {
    font-weight: 800;
    font-size: 32px;
    line-height: 48px;
  }
}

.tip-box {
  backdrop-filter: blur(4px);
  background: #cf0;
  padding: 10px 20px;
  color: #110035;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  transition: background-color 0.3s ease;
  backdrop-filter: blur(22px);
  background: rgba(255, 255, 255, 0.8);
}
.header__button-wrapper {
  margin-left: auto;
  padding-right: 20px;
}
.header__icon {
  display: none;
  width: 24px;
  height: 24px;
}
.header__icon-button {
  display: flex;
  align-items: 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: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding-block: 12px;
  position: relative;
}
.navigation__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 48px 40px;
  top: 130px;
  backdrop-filter: blur(12px);
  background: #00103d;
  position: absolute;
  top: 100%;
  right: -100%;
  width: 100%;
  transition: 0.3s;
  z-index: 999;
}
.navigation__list.is-open {
  right: 0;
  background: #cf0;
}
.navigation__link {
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #110035;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.navigation__link:hover {
  transform: scale(1.05);
}

@media screen and (min-width: 1200px) {
  .header {
    border: 1px solid #cf0;
    border-radius: 12px;
    width: 1100px;
  }
  .header__button-wrapper {
    display: none;
  }
  .navigation {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex: 1;
  }
  .navigation__list {
    background: none;
    backdrop-filter: none;
    flex-direction: row;
    justify-content: center;
    position: static;
    align-items: center;
    width: auto;
    padding-block: 0;
    flex: 1;
    gap: 80px;
  }
}
.home {
  padding-top: 10px;
  position: relative;
  z-index: -1;
}
@media screen and (min-width: 1200px) {
  .home {
    padding-top: 6px;
  }
}
.home .wrapper {
  position: relative;
  z-index: 3;
}
.home h1 {
  font-weight: 800;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 26px;
  text-transform: uppercase;
  text-align: center;
  color: #cf0;
}
@media screen and (min-width: 1200px) {
  .home h1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 48px;
  }
}
.home p {
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .home p {
    font-size: 18px;
  }
}

.wrapper-bg {
  background-image: url(/images/faq-bg.webp);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1200px) {
  .wrapper-bg {
    background-image: url(/images/faq-bg-b.webp);
  }
}

.faq {
  padding: 40px 20px;
}
.faq ul {
  max-width: 965px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.faq__item {
  width: 100%;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 26px 0 rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.8);
  border: 4px solid #cf0;
  border-radius: 12px;
  padding: 22px 12px;
  transition: 0.3s ease;
}
.faq__item:hover {
  background: #fff;
  box-shadow: 0 2px 12px 2px rgba(255, 255, 255, 0.5);
}
.faq__question-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq__question {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 20px;
  line-height: 26px;
  color: #110035;
  padding-bottom: 12px;
}
.faq__answer {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #110035;
}

.products {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  padding: 200px 20px 64px 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(0deg, #4700d7 0%, #250071 100%), url(/images/products-mask.webp);
  background-position: bottom;
  background-blend-mode: soft-light;
  background-size: cover;
}
@media screen and (min-width: 1200px) {
  .products {
    background: linear-gradient(0deg, #4700d7 0%, #250071 100%);
    padding-block: 154px 92px;
  }
}
.products .products__slider {
  width: 100%;
  overflow: hidden;
  padding-top: 60px;
}
@media screen and (min-width: 376px) {
  .products .products__slider {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.products .products__slider ul {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  transition: transform 0.4s ease;
  position: relative;
}
@media screen and (min-width: 376px) {
  .products .products__slider ul {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1100px;
    gap: 32px;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 22px;
  }
}
@media screen and (min-width: 1200px) {
  .products .products__slider ul {
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto;
    border-radius: 0 0 22px 22px;
  }
}
.products .products-slider-box {
  display: flex;
  flex-direction: column;
  width: 228px;
}
.products .product-text-top {
  display: none;
}
@media screen and (min-width: 1200px) {
  .products .product-text-top {
    padding: 22px 40px;
    background: #a784fa;
    border-radius: 22px 22px 0 0;
    width: 1100px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    text-transform: uppercase;
  }
}
.products .product-img-bgcard {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  max-width: none;
  z-index: -1;
  border-radius: 22px;
  width: 335px;
  height: 715px;
}
@media screen and (min-width: 376px) {
  .products .product-img-bgcard {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .products .product-img-bgcard {
    display: none;
  }
}
.products .products__slider li {
  flex: 0 0 100%;
  max-width: 300px;
  height: 517px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 18px;
  padding: 22px 36px;
  box-shadow: 0 0 16px 0 #a784fa;
  background: linear-gradient(90deg, #170046 0%, #391486 100%);
  border: 4px solid #cf0;
  border-radius: 12px;
  transition: 0.3s ease;
}
.products .products__slider li:hover {
  box-shadow: 0 2px 12px 2px rgba(255, 255, 255, 0.5);
}
@media (min-width: 1200px) {
  .products .products__slider li {
    padding-inline: 64px;
    max-width: none;
    flex-direction: row;
    justify-content: space-between;
  }
}
.products .products__controls {
  padding-top: 31px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 376px) {
  .products .products__controls {
    display: none;
  }
}
.products .products__btn {
  background: transparent;
  border: none;
  padding: 0;
}
.products .products__btn:active {
  opacity: 0.5;
}
.products .product-logo {
  max-width: 176px;
}
@media (min-width: 1200px) {
  .products .product-logo {
    max-width: 144px;
  }
}
.products .flag {
  width: 24px;
}
.products .text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding-bottom: 10px;
}
@media (min-width: 1200px) {
  .products .text-box {
    width: 228px;
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 0px;
  }
}
.products li h3 {
  font-weight: 500;
  font-size: 28px;
  line-height: 30px;
  color: #fff;
}
.products li p {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
}
.products li .colored {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
}
.products .product-link {
  width: 207px;
  height: 82px;
  border-radius: 12px;
  background: linear-gradient(180deg, #cf0 0%, #f7ffd7 100%);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #110035;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.products .product-link:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px 0 rgba(255, 255, 255, 0.9);
}

.product-img-object {
  max-width: 542px;
}
@media (min-width: 1200px) {
  .product-img-object {
    max-width: 658px;
  }
}

.avico {
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
}
@media screen and (min-width: 1200px) {
  .avico {
    padding-block: 88px;
  }
}
.avico .container {
  max-width: 1101px;
  border: 4px solid #cf0;
  border-radius: 12px;
  background: #4700d7;
  padding: 20px 14px;
}
@media screen and (min-width: 1200px) {
  .avico .container {
    padding: 32px 73px;
  }
}
.avico h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 20px;
}
.avico p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 28px;
}
.avico ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  .avico ul {
    grid-template-columns: repeat(6, auto);
    justify-content: center;
    gap: 20px;
  }
}

.cookies {
  position: fixed;
  z-index: 4;
  bottom: 0;
  left: 50%;
  max-width: 335px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  padding: 18px;
  border: 4px solid #fff;
  border-radius: 22px;
  background: #000d36;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  will-change: opacity, transform;
}
@media screen and (min-width: 1200px) {
  .cookies {
    max-width: 488px;
  }
}
.cookies p,
.cookies a {
  color: #fff;
  text-decoration: none;
  font-family: "Nunito Sans" sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
@media screen and (min-width: 1200px) {
  .cookies p,
  .cookies a {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
  }
}
.cookies button {
  padding: 10px 45px;
  box-shadow: 0 4px 10px 0 rgba(13, 16, 21, 0.6);
  background: #fff;
  color: #00031e;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}
.cookies button:hover {
  transform: scale(1.05);
  box-shadow: 0 9px 26px 0 #fff;
}

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

.footer {
  padding: 40px 20px;
  background: #110035;
  border-top: 1px solid #fff;
}
@media screen and (min-width: 1200px) {
  .footer {
    padding-block: 64px;
  }
}
.footer ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .footer ul {
    flex-direction: row;
    gap: 24px;
  }
}
.footer li a {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  text-decoration: none;
}
@media screen and (min-width: 1200px) {
  .footer li a {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
  }
}
.footer .copyright {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: fff;
}

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

.policies {
  padding: 100px 20px 40px 20px;
  background: linear-gradient(0deg, #4700d7 0%, #250071 100%);
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .policies {
    padding: 130px 85px 48px 85px;
  }
}
.policies h1 {
  font-weight: 700;
  font-size: 28px;
  line-height: 50px;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 1200px) {
  .policies h1 {
    font-weight: 700;
    font-size: 42px;
    line-height: 50px;
  }
}
.policies p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}

/*# sourceMappingURL=main.css.map */
