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

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

body {
  font-family: "Nunito Sans", sans-serif;
  margin: 0;
  overflow-x: hidden;
  background: #0E1B15;
  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: "Playfair Display", serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 52px;
  margin-bottom: 64px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .title {
    font-weight: 700;
    font-size: 52px;
    line-height: 60px;
  }
}

.title span {
  color: #e8ba30;
}

.tip-box {
  background: rgba(140, 204, 51, 0.8980392157);
  backdrop-filter: blur(4px);
  padding: 10px 20px;
  color: #0e1f07;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 5;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  background: rgb(14, 27, 21);
  border-bottom: 1px solid #293d34;
}
.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;
}
.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: 48px 40px;
  top: 130px;
  background: rgba(14, 27, 21, 0.8);
  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: 500;
  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 {
    background: rgba(14, 27, 21, 0.8);
    backdrop-filter: blur(12px);
  }
  .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;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    gap: 80px;
  }
}
.home {
  background: linear-gradient(178.65deg, #171717 1.11%, #171717 35.14%, #161616 59.27%, #000000 98.85%);
  padding: 144px 20px 388px 20px;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .home {
    padding-top: 218px;
    padding-bottom: 190px;
  }
}
.home .home-1 {
  position: absolute;
  bottom: 0;
  left: 80%;
  -webkit-transform: translate(-80%);
          transform: translate(-80%);
  width: 357px;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .home .home-1 {
    width: auto;
    left: 50%;
    -webkit-transform: translate(0%);
            transform: translate(0%);
    bottom: 30px;
  }
}
.home .home-bg {
  position: absolute;
  bottom: 0;
  left: 80%;
  -webkit-transform: translate(-80%);
          transform: translate(-80%);
  min-width: 992px;
  height: 453px;
}
@media screen and (min-width: 1200px) {
  .home .home-bg {
    min-width: 1812px;
    height: auto;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
}
.home .gradient {
  width: 100%;
  height: 582px;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(2.14%, #0e1b15), color-stop(68.07%, rgba(14, 27, 21, 0)));
  background: linear-gradient(360deg, #0e1b15 2.14%, rgba(14, 27, 21, 0) 68.07%);
}
@media screen and (min-width: 1200px) {
  .home .gradient {
    height: 420px;
  }
}
.home .circle {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 1;
}
.home .wrapper {
  max-width: 650px;
  position: relative;
  z-index: 3;
}
.home h1 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 52px;
  margin-bottom: 28px;
}
@media screen and (min-width: 1200px) {
  .home h1 {
    font-weight: 700;
    font-size: 60px;
    line-height: 64px;
  }
}
.home h1 span {
  color: #e8ba30;
}
.home h2 {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #a8a18a;
}
@media screen and (min-width: 1200px) {
  .home h2 {
    font-size: 20px;
  }
}
.home a {
  font-weight: 700;
  color: #e8ba30;
  text-decoration: none;
}

.faq {
  padding: 64px 20px;
}
@media screen and (min-width: 1200px) {
  .faq {
    padding-block: 88px;
  }
}
.faq ul {
  max-width: 965px;
  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;
}
.faq__item {
  width: 100%;
  background: #1b2d24;
  border-radius: 12px;
  border: 1px solid rgba(41, 61, 52, 0.5019607843);
  padding: 18px 16px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.faq__item:hover {
  background: #1e3529;
  border: 1px solid rgba(13, 120, 72, 0.5019607843);
}
.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-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #f1eee4;
}
.faq__answer {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #fbfbfb;
  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: 24px;
  height: 24px;
  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-wrapper {
  border-bottom: 1px solid #8ccc33;
}

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

.products {
  padding: 64px 20px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .products {
    padding-block: 88px;
  }
}
.products .cards-left {
  min-width: 400px;
  max-width: 400px;
  position: absolute;
  z-index: -1;
  left: -100px;
}
@media screen and (min-width: 1200px) {
  .products .cards-left {
    max-width: 540px;
    height: 800px;
    top: -70px;
    left: -200px;
  }
}
.products .cards-right {
  min-width: 427px;
  max-width: 427px;
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: -150px;
}
@media screen and (min-width: 1200px) {
  .products .cards-right {
    height: 630px;
    bottom: -250px;
  }
}
.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;
    width: 1120px;
    margin: 0 auto;
  }
}
.products li {
  max-width: 335px;
  width: 100%;
  height: 416px;
  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: 30px 64px;
  border-radius: 12px;
  border: 1px solid #00371d;
  background: -webkit-gradient(linear, left top, left bottom, from(#1b2d24), to(#13201a));
  background: linear-gradient(180deg, #1b2d24 0%, #13201a 100%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.products li:hover {
  -webkit-box-shadow: -13px 2px 66.3px -8px rgba(255, 202, 79, 0.5019607843);
          box-shadow: -13px 2px 66.3px -8px rgba(255, 202, 79, 0.5019607843);
  border: 1px solid #f2c300;
}
@media (min-width: 1200px) {
  .products li {
    height: 148px;
    max-width: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: unset;
  }
}
.products .product-logo {
  width: 144px;
}
@media (min-width: 1200px) {
  .products .product-logo {
    margin-right: 36px;
  }
}
.products .flag {
  width: 24px;
}
@media (min-width: 1200px) {
  .products .flag {
    margin-right: 54px;
  }
}
.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;
    margin-right: 54px;
  }
}
.products li h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}
.products li p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.products li .colored {
  color: #e8ba30;
}
.products .product-link {
  width: 202px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(103.82deg, #8ccc33 0%, #72ad1f 100%);
  -webkit-box-shadow: 0px 0px 40px 0px rgba(140, 204, 51, 0.1490196078);
          box-shadow: 0px 0px 40px 0px rgba(140, 204, 51, 0.1490196078);
  text-decoration: none;
  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: #0f0f0f;
  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 {
    margin-left: auto;
  }
}

.avico {
  position: relative;
  overflow: hidden;
  padding: 64px 20px;
}
@media screen and (min-width: 1200px) {
  .avico {
    padding-block: 88px;
  }
}
.avico .cards-bg {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  z-index: -1;
  opacity: 0.3;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: difference;
}
.avico .container {
  max-width: 1097px;
  border: 1px solid rgba(130, 148, 177, 0.5019607843);
  border-radius: 14px;
  background: linear-gradient(0deg, rgba(3, 124, 60, 0.02), rgba(3, 124, 60, 0.02)), linear-gradient(90.27deg, rgba(130, 148, 177, 0) 0%, rgba(130, 148, 177, 0.12) 50.52%, rgba(130, 148, 177, 0) 100%);
  padding: 28px 16px;
}
.avico h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 20px;
}
.avico p {
  font-weight: 300;
  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: 1px solid #e3e5e8;
  border-radius: 6px;
  background: #fcfcfd;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.0196078431), 0px 3px 3px 0px rgba(0, 0, 0, 0.0196078431), 0px 7px 4px 0px rgba(0, 0, 0, 0.0117647059);
          box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.0196078431), 0px 3px 3px 0px rgba(0, 0, 0, 0.0196078431), 0px 7px 4px 0px rgba(0, 0, 0, 0.0117647059);
  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: #17161a;
  text-decoration: none;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
}
.cookies button {
  padding: 10px 16px;
  background: #282828;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  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: 40px 20px;
  background: #15231d;
  border-top: 1px solid #293d34;
}
@media screen and (min-width: 1200px) {
  .footer {
    padding-block: 64px;
  }
}
.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: 45px;
  margin-top: 32px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .footer ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 53px;
  }
}
.footer li a {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #a8a18a;
  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: 400;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: rgba(168, 161, 138, 0.6);
}

.contacts {
  padding-bottom: 32px;
  border-bottom: 1px solid #394825;
}
.contacts h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #e8ba30;
  text-align: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 1200px) {
  .contacts h2 {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
  }
}
.contacts p {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #a8a18a;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .contacts p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
  }
}
.contacts a {
  text-decoration: none;
  color: #a8a18a;
}

.policies {
  padding: 156px 20px 40px 20px;
  background-color: #fff;
  color: #1b2d24;
}
.policies h1 {
  font-family: "Playfair Display", 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 */