* {
  box-sizing: border-box;
}

:root {
  --17450e: #17450e;
  --2dff28: #2dff28;
  --font-family: "Poppins", sans-serif;
  --second-family: "Play", sans-serif;
  --third-family: "Nunito Sans", sans-serif;
}

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

body {
  font-family: "Poppins", 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: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 52px;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .title {
    font-weight: 700;
    font-size: 52px;
    line-height: 60px;
  }
}

.tip-box {
  border-bottom: 1px solid rgba(45, 255, 40, 0.5);
  background: #000100;
  margin: 15px auto;
  padding: 10px 20px;
  color: var(--2dff28);
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .tip-box {
    margin: 0;
  }
}

.header {
  position: fixed;
  width: 100%;
  z-index: 5;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 26px 0 var(--2dff28);
  background: #000100;
}
.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: none;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding-block: 20px;
  position: relative;
  border: 1px solid var(--0000bf);
}
.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;
  backdrop-filter: blur(12px);
  background: #00103d;
}
.navigation__link {
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  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-bottom: 1px solid var(--2dff28);
    margin: 0 auto;
    box-shadow: 0 2px 26px 0 var(--2dff28);
    background: #000100;
  }
  .header__button-wrapper {
    display: none;
  }
  .navigation {
    display: flex;
    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;
  }
  .navigation .accent {
    color: var(--2dff28);
  }
}
.home {
  padding-block: 56px 84px;
}
@media screen and (min-width: 1200px) {
  .home {
    padding-block: 100px 80px;
  }
}
.home h1 {
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 40px;
  text-transform: uppercase;
}
@media screen and (min-width: 1200px) {
  .home h1 {
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    width: 600px;
  }
}
.home p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .home p {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    width: 827px;
  }
}

.bg-wrapper {
  background: url("/images/faq-bg.jpg") no-repeat center center;
  background-size: cover;
}

.faq {
  padding: 64px 20px;
}
.faq h2 {
  font-weight: 900;
  font-size: 26px;
  line-height: 34px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media screen and (min-width: 1200px) {
  .faq {
    padding-block: 188px 90px;
  }
  .faq h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 48px;
  }
}
.faq ul {
  max-width: 965px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.faq__item {
  width: 100%;
  background: #000100;
  border: 1px solid var(--2dff28);
  border-radius: 12px;
  padding: 22px 12px;
  transition: 0.3s ease;
}
.faq__item:hover {
  box-shadow: 0 0 26px 0 rgba(255, 255, 255, 0.35);
  background: #000100;
}
.faq__question-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq__question {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
}
.faq__answer {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  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;
  min-width: 36px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq__icon {
  transition: transform 0.4s cubic-bezier(0.5, 0.25, 0, 1);
}

.faq__item.active .faq__icon1 {
  transform: rotate(180deg);
}

.faq__item.active .faq__question {
  color: var(--2dff28);
}

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

.faq__item.active {
  box-shadow: 0 0 26px 0 rgba(255, 255, 255, 0.35);
}

.products {
  padding: 180px 20px 64px 20px;
  position: relative;
  overflow: visible;
  width: 100%;
  height: 1348px;
  background-image: url(/images/home-bg-m.webp);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1200px) {
  .products {
    padding-block: 188px 92px;
    background-image: url(/images/home-bg.jpg);
    background-position: center top;
    height: 1152px;
  }
}
.products .products-linear-gradient {
  width: 100%;
  height: 372px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #021903 0%, #000701 56.24%, rgba(0, 14, 2, 0) 100%);
}
.products .products__slider {
  width: 100%;
  overflow: hidden;
}
.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;
    gap: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .products .products__slider ul {
    gap: 40px;
    justify-content: center;
  }
}
.products .products__slider li {
  border: 1px solid var(--2dff28);
  border-radius: 20px;
  padding: 20px 8px;
  max-width: 161px;
  height: 308px;
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(48px);
  background: #154205;
  transition: 0.3s ease;
}
.products .products__slider li:nth-child(odd) {
  margin-right: 12px;
}
.products .products__slider li:nth-child(even) {
  margin-right: 0;
}
.products .products__slider li:hover {
  backdrop-filter: blur(48px);
  box-shadow: 0 9px 26px 0 rgba(71, 255, 122, 0.25);
  background: #146d00;
}
.products .products__slider li:hover .product-logo {
  background: #081d00;
}
@media (min-width: 1200px) {
  .products .products__slider li {
    padding: 60px 44px;
    max-width: 284px;
    height: 420px;
  }
  .products .products__slider li:nth-child(odd) {
    margin-right: 0;
  }
}
.products .products__controls {
  padding-top: 40px;
  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 .product-logo {
  border-radius: 12px;
  min-width: 146px;
  padding: 11px 17px;
  background: rgba(8, 29, 0, 0.5);
}
@media (min-width: 1200px) {
  .products .product-logo {
    min-width: 207px;
    padding: 11px 66px 11px 26px;
    position: relative;
    margin-bottom: 20px;
  }
}
.products .flag {
  width: 24px;
  padding-block: 16px 12px;
}
@media (min-width: 1200px) {
  .products .flag {
    position: absolute;
    right: 60px;
    top: 62px;
  }
}
.products .text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 20px;
  gap: 12px;
}
.products li h3 {
  font-weight: 700;
  font-size: 17px;
  line-height: 28px;
  color: #f1eee4;
}
@media (min-width: 1200px) {
  .products li h3 {
    font-weight: 700;
    font-size: 23px;
    line-height: 32px;
  }
}
.products li p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}
@media (min-width: 1200px) {
  .products li p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
  }
}
.products li .colored {
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  color: #ffff03;
}
@media (min-width: 1200px) {
  .products li .colored {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: #fff;
  }
}
.products .product-link {
  border-radius: 10px;
  padding-block: 12px;
  width: 145px;
  height: 44px;
  box-shadow: 0 0 40px 0 rgba(140, 204, 51, 0.15);
  background: var(--2dff28);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #122b09;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  transition: 0.3s ease;
}
.products .product-link:hover {
  transform: scale(1.05);
}
@media (min-width: 1200px) {
  .products .product-link {
    margin-top: 36px;
    width: 204px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
  }
}

.avico {
  position: relative;
  overflow: hidden;
  padding: 64px 20px;
}
@media screen and (min-width: 1200px) {
  .avico {
    padding-block: 80px;
  }
}
.avico .container {
  max-width: 1097px;
  border: 4px solid var(--2dff28);
  border-radius: 22px;
  padding: 20px;
  background-color: #000100;
  background-image: linear-gradient(92deg, rgba(130, 148, 177, 0) 0%, rgba(130, 148, 177, 0.12) 50.52%, rgba(130, 148, 177, 0) 100%);
}
@media screen and (min-width: 1200px) {
  .avico .container {
    padding: 32px 128px;
  }
}
.avico h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 12px;
}
@media screen and (min-width: 1200px) {
  .avico h2 {
    font-weight: 800;
    font-size: 24px;
    line-height: 34px;
  }
}
.avico p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 12px;
}
.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: 375px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  border: 4px solid var(--2dff28);
  border-radius: 22px;
  padding: 18px;
  background: #040401;
  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: #eee;
  text-decoration: none;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}
@media screen and (min-width: 1200px) {
  .cookies p,
  .cookies a {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
  }
}
.cookies button {
  padding: 10px 45px;
  background: #fff;
  color: #23a202;
  border: none;
  border-radius: 12px;
  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: 3px 4px 10px 0 rgba(45, 255, 40, 0.5);
}

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

.footer {
  padding: 32px 20px;
  backdrop-filter: blur(14px);
  background: #030504;
}
@media screen and (min-width: 1200px) {
  .footer {
    padding-block: 64px;
  }
}
.footer ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-bottom: 10px;
}
@media screen and (min-width: 1200px) {
  .footer ul {
    flex-direction: row;
    gap: 20px;
  }
}
.footer li a {
  font-family: "Play", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  text-decoration: none;
}
.footer li a:hover {
  color: var(--2dff28);
}
.footer .copyright {
  font-family: "Play", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: var(--2dff28);
}

@media screen and (min-width: 1200px) {
  .contacts div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2px;
  }
}
.contacts {
  padding-top: 10px;
}
.contacts p {
  font-family: "Play", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .contacts p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
  }
}
.contacts a {
  text-decoration: none;
  color: #fff;
}

.policies {
  padding: 156px 20px 40px 20px;
  background-color: var(--17450e);
  color: #fff;
}
.policies h1 {
  font-weight: 700;
  font-size: 26px;
  line-height: 34px;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}
@media screen and (min-width: 1200px) {
  .policies h1 {
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
  }
}
.policies p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}
.policies span {
  display: block;
  margin-block: 10px;
  font-weight: 400;
}

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