@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border: 0;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  position: relative;
  font-family: "DMSans";
  font-weight: 400;
  font-style: normal;
  background: #010103;
  color: var(--white-60, rgba(255, 255, 255, 0.6));
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 100vh;
}
body.lock {
  overflow: hidden;
}
body.overlay {
  position: relative;
  overflow: hidden;
}
body.overlay::before {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.4);
  z-index: 10;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none;
  border: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

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

.fade-in {
  opacity: 0;
  transform: translate(0px, 40px);
  transition: all 1s ease;
  -webkit-transform: translate(0px, 40px);
  -webkit-transition: all 1s ease;
  -moz-transform: translate(0px, 40px);
  -moz-transition: all 1s ease;
  -o-transform: translate(0px, 40px);
  -o-transition: all 1s ease;
}

.fade-in.start-animation {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
}

.anim-translate-top {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.5s ease;
  -webkit-transform: translateY(50px);
  -webkit-transition: 0.5s ease;
  -moz-transform: translateY(50px);
  -moz-transition: 0.5s ease;
  -o-transform: translateY(50px);
  -o-transition: 0.5s ease;
}

.anim-translate-top.start-animation {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
}

.anim-scale {
  opacity: 0;
  transform: scale(0);
  transition: 0.5s ease;
  -webkit-transform: scale(0);
  -webkit-transition: 0.5s ease;
  -moz-transform: scale(0);
  -moz-transition: 0.5s ease;
  -o-transform: scale(0);
  -o-transition: 0.5s ease;
}

.anim-scale.start-animation {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
}

.anim-translate-right {
  opacity: 0;
  transform: translateX(-50px);
  transition: 0.5s ease;
  -webkit-transform: translateX(-50px);
  -webkit-transition: 0.5s ease;
  -moz-transform: translateX(-50px);
  -moz-transition: 0.5s ease;
  -o-transform: translateX(-50px);
  -o-transition: 0.5s ease;
}

.anim-translate-right.start-animation {
  opacity: 1;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
}

.anim-translate-left {
  opacity: 0;
  transform: translateX(50px);
  transition: 0.5s ease;
  -webkit-transform: translateX(50px);
  -webkit-transition: 0.5s ease;
  -moz-transform: translateX(50px);
  -moz-transition: 0.5s ease;
  -o-transform: translateX(50px);
  -o-transition: 0.5s ease;
}

.anim-translate-left.start-animation {
  opacity: 1;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
}

:root {
  --header-height: 0px;
  --white-60: rgba(255, 255, 255, 0.60);
  --black-white-black: #000;
  --Primary-400: #95DA26;
  --Body-2-Font: "DMSans";
  --H2-Font: "DMSans";
  --Body-2-Number: 14px;
}

.site-main {
  padding-top: 96px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.section-el {
  padding: 120px 0;
}

.section-title-wrap {
  max-width: 492px;
  text-align: center;
  margin: 0 auto 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.section-tag {
  border-radius: 40px;
  background: var(--white-5, rgba(255, 255, 255, 0.05));
  display: inline-block;
  padding: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: var(--white-80, rgba(255, 255, 255, 0.8));
  font-family: var(--Body-2-Font, "DMSans");
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 142.857%;
  position: relative;
}
.section-tag:before {
  position: absolute;
  content: "";
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  top: -1px;
  left: -1px;
  z-index: -1;
  background: linear-gradient(27deg, rgba(0, 0, 0, 0.3) 0%, rgb(255, 255, 255) 50%, rgba(0, 0, 0, 0.3) 100%);
  border-radius: 40px;
}
.section-tag:after {
  position: absolute;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #010103;
  border-radius: 40px;
}

.green {
  color: var(--Primary-400, #95DA26);
}

.btn-primary {
  border-radius: 40px;
  border: 1px solid rgba(24, 39, 7, 0.3);
  background: radial-gradient(52.39% 96.59% at 50% 100%, #5B940A 0%, rgba(1, 1, 3, 0) 100%);
  -webkit-box-shadow: 0px 1px 30px 0px rgba(149, 218, 38, 0.3);
          box-shadow: 0px 1px 30px 0px rgba(149, 218, 38, 0.3);
  padding: 12px 20px;
  position: relative;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  display: inline-block;
}
.btn-primary span {
  color: var(--Primary-400, #95DA26);
  font-family: var(--Body-2-Font, "DMSans");
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 142.857%;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.btn-primary::before {
  position: absolute;
  content: "";
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  top: -1px;
  left: -1px;
  z-index: -1;
  background: linear-gradient(27deg, rgba(24, 39, 7, 0.3) 0%, #95DA26 50%, rgba(24, 39, 7, 0.3) 100%);
  border-radius: 40px;
}
.btn-primary::after {
  position: absolute;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #010103;
  border-radius: 40px;
}

.btn-secondary {
  border-radius: 40px;
  background: var(--Primary-400, #95DA26);
  color: var(--black-white-black, #000);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  padding: 12px;
  display: inline-block;
  text-align: center;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.h1-title {
  color: var(--White-White, #FFF);
  text-align: center;
  font-size: clamp(34px, 8vw, 48px);
  font-style: normal;
  font-weight: 600;
  line-height: 116.667%;
}

.h2-title {
  color: var(--black-white-white, #FFF);
  text-align: center;
  font-size: clamp(24px, 6vw, 32px);
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}

.h2-title-lg {
  color: var(--black-white-white, #FFF);
  text-align: center;
  font-size: clamp(32px, 6vw, 48px);
  font-style: normal;
  font-weight: 600;
  line-height: 116.667%;
}

@media screen and (max-width: 1200px) {
  .site-main {
    padding-top: 73px;
  }
}
@media screen and (max-width: 767px) {
  .section-el {
    padding: 40px 0;
  }
  .section-title-wrap {
    margin: 0 0 24px;
  }
  .section-tag {
    padding: 8px;
    font-size: 12px;
  }
}
@media (hover: hover) {
  .btn-primary:hover {
    border: 1px solid var(--Primary-400, #95DA26);
    background: var(--Primary-400, #95DA26);
    -webkit-box-shadow: 0px 0px 128px 0px #95DA26, 0px 0px 32px 0px #95DA26, 0px 0px 8px 0px #95DA26;
            box-shadow: 0px 0px 128px 0px #95DA26, 0px 0px 32px 0px #95DA26, 0px 0px 8px 0px #95DA26;
  }
  .btn-primary:hover:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 85px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="107" height="85" viewBox="0 0 107 85" fill="none"><circle cx="49.5937" cy="18.7715" r="1.15625" fill="%2395DA26"/><circle cx="52.6562" cy="10.5215" r="1.15625" fill="%2395DA26"/><circle cx="60.6562" cy="14.5215" r="1.15625" fill="%2395DA26"/><circle cx="70.4062" cy="16.459" r="1.15625" fill="%2395DA26"/><circle cx="72.7188" cy="9.52148" r="1.15625" fill="%2395DA26"/><circle cx="77.6562" cy="1.52148" r="1.15625" fill="%2395DA26"/><circle cx="82.6562" cy="17.5215" r="1.15625" fill="%2395DA26"/><circle cx="96.6562" cy="1.52148" r="1.15625" fill="%2395DA26"/><circle cx="91.2188" cy="14.1475" r="1.15625" fill="%2395DA26"/><circle cx="105.094" cy="18.7715" r="1.15625" fill="%2395DA26"/><circle cx="70.4062" cy="69.6465" r="1.15625" fill="%2395DA26"/><circle cx="65.7812" cy="81.209" r="1.15625" fill="%2395DA26"/><circle cx="51.9062" cy="74.2715" r="1.15625" fill="%2395DA26"/><circle cx="44.9687" cy="76.584" r="1.15625" fill="%2395DA26"/><circle cx="38.6562" cy="83.5215" r="1.15625" fill="%2395DA26"/><circle cx="38.0312" cy="74.2715" r="1.15625" fill="%2395DA26"/><circle cx="33.4062" cy="62.708" r="1.15625" fill="%2395DA26"/><circle cx="28.7812" cy="71.959" r="1.15625" fill="%2395DA26"/><circle cx="28.7812" cy="76.584" r="1.15625" fill="%2395DA26"/><circle cx="17.2187" cy="65.0215" r="1.15625" fill="%2395DA26"/><circle cx="10.2812" cy="69.6465" r="1.15625" fill="%2395DA26"/><circle cx="1.65625" cy="64.5215" r="1.15625" fill="%2395DA26"/><circle cx="21.8437" cy="18.7715" r="1.15625" fill="%2395DA26"/><circle cx="31.0937" cy="21.083" r="1.15625" fill="%2395DA26"/><circle cx="35.7187" cy="16.459" r="1.15625" fill="%2395DA26"/></svg>');
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .btn-primary:hover span {
    color: var(--Neutral-900, #1A1A1A);
  }
  .btn-secondary:hover {
    background: var(--Primary-600, #5B940A);
  }
}
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #010103;
  z-index: 100;
}
.header__container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}
.header__content-wrap {
  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;
  padding: 20px 0;
}
.header__logo {
  width: 160px;
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 36px;
  padding: 16px 24px;
  border-radius: 62px;
  border: 1px solid var(--white-10, rgba(255, 255, 255, 0.1));
  background: var(--white-5, rgba(255, 255, 255, 0.05));
}
.header__nav-link {
  color: var(--white-60, rgba(255, 255, 255, 0.6));
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 142.857%;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.header__btn {
  min-width: 100px;
}
.header__mob-cta-wrap {
  display: none;
}
.header__burger {
  display: none;
}

@media (hover: hover) {
  .header__nav-link:hover {
    color: var(--Primary-600, #5B940A);
  }
}
@media screen and (max-width: 1200px) {
  .header__btns-wrap {
    display: none;
  }
  .header__nav-wrap {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100vw;
    height: calc(100dvh - 64px);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 0;
    padding: 38px 16px;
    background: #010103;
    background-image: -webkit-image-set(url("../img/hero-bg-lines.svg") 1x);
    background-image: image-set(url("../img/hero-bg-lines.svg") 1x);
    background-position: bottom right;
    background-repeat: no-repeat;
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    overflow: hidden auto;
  }
  .header__nav-wrap.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    z-index: 100;
  }
  .header__burger {
    display: block;
    position: relative;
    z-index: 101;
    width: 24px;
    height: 16px;
  }
  .header__burger span {
    position: absolute;
    left: 0;
    width: 100%;
    background: var(--Primary-400, #95DA26);
    height: 2px;
    top: 7px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 1px;
  }
  .header__burger:before, .header__burger:after {
    content: "";
    background: var(--Primary-400, #95DA26);
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 1px;
  }
  .header__burger:before {
    top: 0;
  }
  .header__burger:after {
    bottom: 0;
  }
  .header__burger.active span {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  .header__burger.active:before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 7px;
  }
  .header__burger.active:after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    bottom: 7px;
  }
  .header__mob-cta-wrap {
    display: block;
    text-align: center;
    margin-top: 130px;
  }
  .header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: transparent;
    border: none;
    gap: 32px;
  }
  .header__nav-link {
    font-size: 20px;
    color: var(--black-white-white, #FFF);
  }
  .header__mob-cta-title {
    color: var(--black-white-white, #FFF);
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 125%;
    margin-bottom: 28px;
  }
  .header__mob-cta-btn {
    min-width: 240px;
    border: 1px solid var(--Primary-400, #95DA26);
    -webkit-box-shadow: 0px 0px 128px 0px #95DA26, 0px 0px 32px 0px #95DA26, 0px 0px 8px 0px #95DA26;
            box-shadow: 0px 0px 128px 0px #95DA26, 0px 0px 32px 0px #95DA26, 0px 0px 8px 0px #95DA26;
    position: relative;
  }
  .header__mob-cta-btn:before {
    position: absolute;
    content: "";
    width: 105px;
    height: 85px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="107" height="85" viewBox="0 0 107 85" fill="none"><circle cx="49.5937" cy="18.7715" r="1.15625" fill="%2395DA26"/><circle cx="52.6562" cy="10.5215" r="1.15625" fill="%2395DA26"/><circle cx="60.6562" cy="14.5215" r="1.15625" fill="%2395DA26"/><circle cx="70.4062" cy="16.459" r="1.15625" fill="%2395DA26"/><circle cx="72.7188" cy="9.52148" r="1.15625" fill="%2395DA26"/><circle cx="77.6562" cy="1.52148" r="1.15625" fill="%2395DA26"/><circle cx="82.6562" cy="17.5215" r="1.15625" fill="%2395DA26"/><circle cx="96.6562" cy="1.52148" r="1.15625" fill="%2395DA26"/><circle cx="91.2188" cy="14.1475" r="1.15625" fill="%2395DA26"/><circle cx="105.094" cy="18.7715" r="1.15625" fill="%2395DA26"/><circle cx="70.4062" cy="69.6465" r="1.15625" fill="%2395DA26"/><circle cx="65.7812" cy="81.209" r="1.15625" fill="%2395DA26"/><circle cx="51.9062" cy="74.2715" r="1.15625" fill="%2395DA26"/><circle cx="44.9687" cy="76.584" r="1.15625" fill="%2395DA26"/><circle cx="38.6562" cy="83.5215" r="1.15625" fill="%2395DA26"/><circle cx="38.0312" cy="74.2715" r="1.15625" fill="%2395DA26"/><circle cx="33.4062" cy="62.708" r="1.15625" fill="%2395DA26"/><circle cx="28.7812" cy="71.959" r="1.15625" fill="%2395DA26"/><circle cx="28.7812" cy="76.584" r="1.15625" fill="%2395DA26"/><circle cx="17.2187" cy="65.0215" r="1.15625" fill="%2395DA26"/><circle cx="10.2812" cy="69.6465" r="1.15625" fill="%2395DA26"/><circle cx="1.65625" cy="64.5215" r="1.15625" fill="%2395DA26"/><circle cx="21.8437" cy="18.7715" r="1.15625" fill="%2395DA26"/><circle cx="31.0937" cy="21.083" r="1.15625" fill="%2395DA26"/><circle cx="35.7187" cy="16.459" r="1.15625" fill="%2395DA26"/></svg>');
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: -1;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .header__mob-copyrights {
    color: var(--white-50, rgba(255, 255, 255, 0.5));
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-top: 66px;
  }
}
.hero {
  position: relative;
  padding: 60px 0 0;
  overflow: hidden;
}
.hero:before {
  background-image: -webkit-image-set(url("../img/hero-bg-lines.svg") 1x);
  background-image: image-set(url("../img/hero-bg-lines.svg") 1x);
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  width: 100%;
  height: 78%;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.hero:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 160px;
  background: linear-gradient(182deg, rgba(1, 1, 3, 0) 22.63%, rgba(1, 1, 3, 0.8) 87.7%);
  left: 0;
  bottom: 0;
  z-index: 2;
}
.hero__info-wrap {
  max-width: 738px;
  margin: 0 auto 32px;
  text-align: center;
}
.hero__title {
  margin-bottom: 8px;
}
.hero__subtitle {
  color: var(--white-60, rgba(255, 255, 255, 0.6));
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0 auto 24px;
  max-width: 662px;
}
.hero__img-wrap {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.hero__img-wrap:before, .hero__img-wrap:after {
  position: absolute;
  content: "";
  border-radius: 700px;
  opacity: 0.5;
  background: radial-gradient(50% 50% at 50% 50%, #95DA26 0%, rgba(1, 1, 3, 0.01) 100%);
  width: 700px;
  height: 700px;
  aspect-ratio: 1/1;
  z-index: -1;
  bottom: -50%;
}
.hero__img-wrap:before {
  left: -20%;
}
.hero__img-wrap:after {
  right: -20%;
}
.hero__img-mob {
  display: none;
}

@media screen and (max-width: 767px) {
  .hero {
    padding: 100px 0 40px;
  }
  .hero:after {
    display: none;
  }
  .hero__subtitle {
    font-size: 14px;
  }
  .hero__img {
    display: none;
  }
  .hero__img-wrap:before, .hero__img-wrap:after {
    display: none;
  }
  .hero__img-mob {
    display: block;
  }
}
.about__items-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.about__item {
  -ms-flex-preferred-size: calc(33.333% - 13.3333333333px);
      flex-basis: calc(33.333% - 13.3333333333px);
  border-radius: 20px;
  background: var(--Gradient-Radial-cards, radial-gradient(186.81% 141.42% at 100% 100%, rgba(91, 148, 10, 0.2) 0%, rgba(1, 1, 3, 0) 100%));
  padding: 24px;
  position: relative;
}
.about__item:before {
  position: absolute;
  content: "";
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background: linear-gradient(27deg, rgba(24, 39, 7, 0.3) 0%, #95DA26 50%, rgba(24, 39, 7, 0.3) 100%);
  z-index: -2;
  top: -1px;
  left: -1px;
  border-radius: 20px;
}
.about__item:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #010103;
  z-index: -1;
  border-radius: 20px;
}
.about__item-img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 0 24px;
}
.about__item-title {
  color: var(--black-white-white, #FFF);
  font-size: 24px;
  font-weight: 600;
  line-height: 116.667%;
  margin-bottom: 12px;
}
.about__item-text {
  color: var(--white-50, rgba(255, 255, 255, 0.5));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.support {
  margin: 60px auto 0;
}
.support__title {
  color: var(--white-60, rgba(255, 255, 255, 0.6));
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
  margin-bottom: 8px;
}
.support__items-wrap {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.support__items-wrap:nth-child(2) {
  display: none;
}
.support__item {
  width: 178px;
  height: 70px;
}
.support__item-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 992px) {
  .about__item {
    -ms-flex-preferred-size: calc(50% - 10px);
        flex-basis: calc(50% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .about__item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .about__item-img {
    height: 220px;
  }
  .about__item-title {
    font-size: 20px;
  }
  .about__item-text {
    font-size: 14px;
  }
  .support {
    margin: 40px auto 0;
  }
  .support__marquee-wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
  }
  .support__items-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-animation: marquee 20s linear infinite;
            animation: marquee 20s linear infinite;
    gap: 40px;
  }
  .support__items-wrap, .support__items-wrap:nth-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 40px;
  }
  .support__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 178px;
    height: 70px;
  }
  @-webkit-keyframes marquee {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(calc(-50% - 20px));
              transform: translateX(calc(-50% - 20px));
    }
  }
  @keyframes marquee {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(calc(-50% - 20px));
              transform: translateX(calc(-50% - 20px));
    }
  }
}
.metrics {
  position: relative;
  overflow: hidden;
}
.metrics::before {
  width: 720px;
  height: 100%;
  position: absolute;
  content: "";
  background: radial-gradient(27.04% 81.83% at 100% 53.43%, rgba(149, 218, 38, 0.2) 0%, rgba(1, 1, 3, 0) 79.81%);
  top: 0;
  right: 0;
  z-index: -1;
}
.metrics::after {
  width: 720px;
  height: 100%;
  position: absolute;
  content: "";
  background: radial-gradient(27.04% 81.83% at 100% 53.43%, rgba(149, 218, 38, 0.2) 0%, rgba(1, 1, 3, 0) 79.81%);
  top: 0;
  left: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: -1;
}
.metrics__items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 16px;
}
.metrics__item {
  padding: 20px;
  border-radius: 16px;
  background: var(--Gradient-Radial-cards, radial-gradient(186.81% 141.42% at 100% 100%, rgba(91, 148, 10, 0.2) 0%, rgba(1, 1, 3, 0) 100%));
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.metrics__item:before {
  position: absolute;
  content: "";
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background: linear-gradient(27deg, rgba(24, 39, 7, 0.3) 0%, #95DA26 50%, rgba(24, 39, 7, 0.3) 100%);
  z-index: -2;
  top: -1px;
  left: -1px;
  border-radius: 20px;
}
.metrics__item:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #010103;
  z-index: -1;
  border-radius: 20px;
}
.metrics__item-1 {
  grid-row: span 2/span 2;
}
.metrics__item-2 {
  grid-row: span 2/span 2;
}
.metrics__item-5 {
  grid-column-start: 3;
}
.metrics__item-6 {
  grid-column-start: 4;
}
.metrics__item-7 {
  grid-column: span 4/span 4;
  grid-row-start: 3;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 30px;
}
.metrics__item-title {
  color: var(--white-70, rgba(255, 255, 255, 0.7));
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 4px;
  max-width: 74%;
}
.metrics__item-num {
  color: var(--black-white-white, #FFF);
  font-size: 32px;
  font-weight: 700;
  line-height: 125%;
}
.metrics__item-percents {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 3px 10px;
}
.metrics__item-percents.metrics__item-percents-primary {
  border-radius: 40px;
  border: 1px solid var(--Primary-400, #95DA26);
  background: var(--Primary-400, #95DA26);
  color: var(--black-white-black, #000);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}
.metrics__item-percents.metrics__item-percents-secondary {
  border-radius: 40px;
  border: 1px solid var(--white-20, rgba(255, 255, 255, 0.2));
  background: var(--white-5, rgba(255, 255, 255, 0.05));
  color: var(--black-white-white, #FFF);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}
.metrics__subitem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -ms-flex-preferred-size: calc(25% - 22.5px);
      flex-basis: calc(25% - 22.5px);
}
.metrics__subitem .metrics__item-title {
  max-width: 100%;
}
.metrics__subitem-img {
  width: 62px;
  aspect-ratio: 1/1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.metrics__graph-wrap {
  margin-top: 20px;
  padding: 24px;
  position: relative;
  border-radius: 16px;
  background: var(--Gradient-Radial-cards, radial-gradient(186.81% 141.42% at 100% 100%, rgba(91, 148, 10, 0.2) 0%, rgba(1, 1, 3, 0) 100%));
}
.metrics__graph-wrap:before {
  position: absolute;
  content: "";
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background: linear-gradient(27deg, rgba(24, 39, 7, 0.3) 0%, #95DA26 50%, rgba(24, 39, 7, 0.3) 100%);
  z-index: -2;
  top: -1px;
  left: -1px;
  border-radius: 20px;
}
.metrics__graph-wrap:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #010103;
  z-index: -1;
  border-radius: 20px;
}
.metrics__graph-top-info {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.metrics__graph-top-info-col-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.metrics__graph-top-title {
  color: var(--white-50, rgba(255, 255, 255, 0.5));
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 142.857%;
}
.metrics__graph-top-subtitle {
  color: var(--black-white-white, #FFF);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.metrics__graph-top-type {
  color: var(--black-white-white, #FFF);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 142.857%;
  position: relative;
  padding-left: 16px;
}
.metrics__graph-top-type:before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><rect x="1" y="1" width="10" height="10" rx="5" stroke="%2395DA26" stroke-width="2"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 3px;
  left: 0;
  -webkit-box-shadow: 0px 0px 19px 0px rgb(149, 218, 38);
          box-shadow: 0px 0px 19px 0px rgb(149, 218, 38);
  border-radius: 50%;
}
.metrics__graph-img-mob, .metrics__graph-item-y-nums {
  display: none;
}
.metrics__scroll-btn {
  display: none;
}

@media screen and (max-width: 1024px) {
  .metrics::before,
  .metrics::after {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .metrics__items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .metrics__item-1, .metrics__item-2, .metrics__item-3, .metrics__item-4, .metrics__item-5, .metrics__item-6, .metrics__item-7 {
    grid-column: auto;
    grid-row: auto;
  }
  .metrics__item-1, .metrics__item-2 {
    grid-row: span 2;
  }
  .metrics__item-7 {
    grid-column: span 2;
  }
  .metrics__subitem {
    -ms-flex-preferred-size: calc(50% - 15px);
        flex-basis: calc(50% - 15px);
  }
  .metrics__graph-img {
    display: none;
  }
  .metrics__graph-img-mob {
    display: block;
    width: auto;
    padding: 0 0 10px;
    max-width: none;
    min-width: 1121px;
  }
  .metrics__graph-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .metrics__graph-item-y-nums {
    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-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 18px;
  }
  .metrics__graph-item-y-num-item {
    display: block;
    color: var(--white-70, rgba(255, 255, 255, 0.7));
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 19.707px; /* 197.067% */
  }
  .metrics__graph-wrap {
    padding: 0;
    background: none;
  }
  .metrics__graph-wrap::before, .metrics__graph-wrap::after {
    display: none;
  }
  .metrics__graph-top-info {
    gap: 8px;
  }
  .metrics__graph-top-info-col-1 {
    gap: 8px;
  }
  .metrics__graph-top-subtitle {
    font-size: 14px;
  }
  .metrics__graph-top-type {
    font-size: 12px;
  }
  .metrics__graph-item {
    border-top: 1px solid var(--white-20, rgba(255, 255, 255, 0.2));
    border-bottom: 1px solid var(--white-20, rgba(255, 255, 255, 0.2));
    padding: 20px 0;
    width: calc(100% + 32px);
    margin-left: -16px;
  }
  .metrics__graph-item-y-nums {
    padding: 0 8px 18px;
    position: relative;
  }
  .metrics__graph-item-y-nums::before {
    position: absolute;
    content: "";
    width: 1px;
    height: calc(100% + 40px);
    top: -20px;
    right: 0;
    background-color: var(--white-20, rgba(255, 255, 255, 0.2));
  }
  .metrics__graph-item-img-wrap {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #95DA26 #3E650B;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .metrics__graph-item-img-wrap::-webkit-scrollbar {
    height: 8px;
  }
  .metrics__graph-item-img-wrap::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
  }
  .metrics__graph-item-img-wrap::-webkit-scrollbar-thumb {
    background: -webkit-gradient(linear, right top, left top, color-stop(1.99%, #95DA26), to(#3E650B));
    background: linear-gradient(270deg, #95DA26 1.99%, #3E650B 100%);
    border-radius: 10px;
  }
  .metrics__scroll-btn {
    display: block;
    position: absolute;
    right: 8px;
    bottom: 60px;
  }
}
@media screen and (max-width: 500px) {
  .metrics__items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 8px;
  }
  .metrics__item-1 {
    grid-column: span 2/span 2;
    grid-row: span 2/span 2;
  }
  .metrics__item-2 {
    grid-column: span 2/span 2;
    grid-row: span 2/span 2;
    grid-row-start: 3;
  }
  .metrics__item-3 {
    grid-row-start: 5;
  }
  .metrics__item-4 {
    grid-row-start: 5;
  }
  .metrics__item-5 {
    grid-row-start: 6;
  }
  .metrics__item-6 {
    grid-row-start: 6;
  }
  .metrics__item-7 {
    gap: 20px;
  }
  .metrics__item-title {
    font-size: 12px;
  }
  .metrics__item-num {
    font-size: 24px;
  }
  .metrics__subitem {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.how-it-work__items-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.how-it-work__item {
  position: relative;
  padding: 20px;
  border-radius: 20px;
  background: var(--Gradient-Radial-cards, radial-gradient(186.81% 141.42% at 100% 100%, rgba(91, 148, 10, 0.2) 0%, rgba(1, 1, 3, 0) 100%));
  height: 100%;
}
.how-it-work__item:before {
  position: absolute;
  content: "";
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background: linear-gradient(27deg, rgba(24, 39, 7, 0.3) 0%, #95DA26 50%, rgba(24, 39, 7, 0.3) 100%);
  z-index: -3;
  top: -1px;
  left: -1px;
  border-radius: 20px;
}
.how-it-work__item:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #010103;
  z-index: -2;
  border-radius: 20px;
}
.how-it-work__item-img {
  width: 100%;
  height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 16px;
}
.how-it-work__item-step {
  color: var(--Primary-400, #95DA26);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 142.857%;
  margin-bottom: 8px;
}
.how-it-work__item-title {
  color: var(--black-white-white, #FFF);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 8px;
}
.how-it-work__item-text {
  color: var(--white-50, rgba(255, 255, 255, 0.5));
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 142.857%;
}
.how-it-work__item-btn {
  margin-top: 16px;
}

@media screen and (max-width: 992px) {
  .how-it-work__items-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .how-it-work__items-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.packages {
  position: relative;
  overflow: hidden;
}
.packages::before {
  width: 720px;
  height: 100%;
  position: absolute;
  content: "";
  background: radial-gradient(27.04% 81.83% at 100% 53.43%, rgba(149, 218, 38, 0.2) 0%, rgba(1, 1, 3, 0) 79.81%);
  top: 0;
  right: 0;
  z-index: -1;
}
.packages::after {
  width: 720px;
  height: 100%;
  position: absolute;
  content: "";
  background: radial-gradient(27.04% 81.83% at 100% 53.43%, rgba(149, 218, 38, 0.2) 0%, rgba(1, 1, 3, 0) 79.81%);
  top: 0;
  left: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: -1;
}
.packages__items-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 150px;
  background-image: url("../img/packages-bg.png");
  background-repeat: no-repeat;
  background-position: center;
}
.packages__сol-1, .packages__сol-2 {
  -ms-flex-preferred-size: 30.823%;
      flex-basis: 30.823%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.packages__сol-step {
  color: var(--Primary-400, #95DA26);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 142.857%;
  display: inline-block;
}
.packages__сol-title-wrap {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
}
.packages__сol-title {
  color: var(--black-white-white, #FFF);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.packages__cost-item {
  padding: 20px;
  border-radius: 20px;
  background: var(--Gradient-Radial-cards, radial-gradient(186.81% 141.42% at 100% 100%, rgba(91, 148, 10, 0.2) 0%, rgba(1, 1, 3, 0) 100%));
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  position: relative;
}
.packages__cost-item:before {
  position: absolute;
  content: "";
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background: linear-gradient(27deg, rgba(24, 39, 7, 0.3) 0%, #95DA26 50%, rgba(24, 39, 7, 0.3) 100%);
  z-index: -2;
  top: -1px;
  left: -1px;
  border-radius: 20px;
}
.packages__cost-item:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #010103;
  z-index: -1;
  border-radius: 20px;
}
.packages__subscription-items-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.packages__subscription-item {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--white-20, rgba(255, 255, 255, 0.2));
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  opacity: 0.5;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.packages__subscription-item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--Gradient-Radial-cards, radial-gradient(186.81% 141.42% at 100% 100%, rgba(91, 148, 10, 0.2) 0%, rgba(1, 1, 3, 0) 100%));
  top: 0;
  left: 0;
}
.packages__subscription-item.active {
  border: 1px solid var(--Primary-400, #95DA26);
  opacity: 1;
}
.packages__subscription-item-tick {
  position: absolute;
  top: 20px;
  right: 20px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.packages__subscription-item.active .packages__subscription-item-tick {
  opacity: 1;
  visibility: visible;
}
.packages__subscription-item-price-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.packages__subscription-item-price {
  color: var(--black-white-white, #FFF);
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 133.333%;
}
.packages__subscription-item-currency {
  width: 32px;
}
.packages__payment-type {
  color: var(--white-70, rgba(255, 255, 255, 0.7));
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 142.857%;
}
.packages__cost-price-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.packages__cost-price {
  color: var(--black-white-white, #FFF);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 116.667%;
}
.packages__cost-currency {
  width: 36px;
}
.packages__cost-img {
  width: 100%;
  height: 248px;
  -o-object-fit: cover;
     object-fit: cover;
}
.packages__total {
  margin: 32px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--white-20, rgba(255, 255, 255, 0.2));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.packages__total-title {
  color: var(--white-50, rgba(255, 255, 255, 0.5));
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.packages__total-price-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.packages__total-price {
  color: var(--black-white-white, #FFF);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 116.667%;
}
.packages__total-subtitle {
  color: var(--white-80, rgba(255, 255, 255, 0.8));
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 142.857%;
}

@media screen and (max-width: 1024px) {
  .packages::before, .packages::after {
    display: none;
  }
  .packages__сol-1, .packages__сol-2 {
    -ms-flex-preferred-size: calc(50% - 75px);
        flex-basis: calc(50% - 75px);
  }
}
@media screen and (max-width: 767px) {
  .packages__items-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-position: top;
  }
  .packages__сol-title-wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .packages__cost-item {
    padding: 0;
    border: none;
    background: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
  .packages__cost-item::before, .packages__cost-item::after {
    display: none;
  }
  .packages__cost-item .packages__payment-type {
    text-align: center;
  }
  .packages__cost-img {
    display: none;
  }
  .packages__cost-price-wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .packages__total-col-1 {
    text-align: center;
  }
  .packages__total {
    -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: 16px;
  }
  .packages__total-price-wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.calculator__cols-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
}
.calculator__col-1-title {
  color: var(--Primary-400, #95DA26);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 116.667%;
  margin-bottom: 12px;
}
.calculator__col-1-text {
  color: var(--white-50, rgba(255, 255, 255, 0.5));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 32px;
}
.calculator input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: #2a2a2a;
  border-radius: 5px;
  outline: none;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  cursor: pointer;
}
.calculator input[type=range]::-webkit-slider-runnable-track,
.calculator input[type=range]::-moz-range-track {
  height: 6px;
  background: var(--white-20, rgba(255, 255, 255, 0.2));
  border-radius: 5px;
}
.calculator input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: var(--Primary-400, #95DA26);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  -webkit-filter: drop-shadow(0px 0px 20px rgba(149, 218, 38, 0.5)) drop-shadow(0px 0px 6px rgba(149, 218, 38, 0.3));
          filter: drop-shadow(0px 0px 20px rgba(149, 218, 38, 0.5)) drop-shadow(0px 0px 6px rgba(149, 218, 38, 0.3));
}
.calculator input[type=range]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: var(--Primary-400, #95DA26);
  border-radius: 50%;
  cursor: pointer;
  filter: drop-shadow(0px 0px 20px rgba(149, 218, 38, 0.5)) drop-shadow(0px 0px 6px rgba(149, 218, 38, 0.3));
}
.calculator__range-text {
  color: var(--white-50, rgba(255, 255, 255, 0.5));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 4px;
  display: inline-block;
}
.calculator__range-num-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 7px;
}
.calculator__range-num {
  color: var(--black-white-white, #FFF);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 133.333%;
}
.calculator__range-currency-logo {
  width: 36px;
}
.calculator__range-wrap {
  margin-top: 24px;
}
.calculator__range-input-wrap {
  position: relative;
}
.calculator__range-input-wrap span {
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  -webkit-transform: translate(-50%, 0px);
          transform: translate(-50%, 0px);
  cursor: pointer;
  pointer-events: none;
}
.calculator__range-input-wrap span:nth-of-type(1) {
  left: 8px;
}
.calculator__range-input-wrap span:nth-of-type(2) {
  left: calc(11.11% + 7px);
}
.calculator__range-input-wrap span:nth-of-type(3) {
  left: calc(22.22% + 4px);
}
.calculator__range-input-wrap span:nth-of-type(4) {
  left: calc(33.33% + 2px);
}
.calculator__range-input-wrap span:nth-of-type(5) {
  left: 44.44%;
}
.calculator__range-input-wrap span:nth-of-type(6) {
  left: calc(55.55% - 2px);
}
.calculator__range-input-wrap span:nth-of-type(7) {
  left: calc(66.66% - 3px);
}
.calculator__range-input-wrap span:nth-of-type(8) {
  left: calc(77.77% - 5px);
}
.calculator__range-input-wrap span:nth-of-type(9) {
  left: calc(88.88% - 7px);
}
.calculator__range-input-wrap span:nth-of-type(10) {
  left: calc(100% - 8px);
}
.calculator__range-min-max {
  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;
}
.calculator__range-min-max span {
  color: var(--white-70, rgba(255, 255, 255, 0.7));
  font-size: var(--Body-3-Number, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--Body-3-Line-height, 20px); /* 166.667% */
}
.calculator__col-2 {
  border-radius: 28px;
  position: relative;
  padding: 32px;
}
.calculator__col-2:before {
  position: absolute;
  content: "";
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background: linear-gradient(27deg, rgba(24, 39, 7, 0.3) 0%, #95DA26 50%, rgba(24, 39, 7, 0.3) 100%);
  z-index: -3;
  top: -1px;
  left: -1px;
  border-radius: 20px;
}
.calculator__col-2:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #010103;
  z-index: -2;
  border-radius: 20px;
}
.calculator__col-2-title {
  color: var(--black-white-white, #FFF);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 116.667%;
  margin-bottom: 32px;
}
.calculator__total-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 53px;
  margin-bottom: 20px;
}
.calculator__total-title {
  color: var(--Primary-600, #5B940A);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.calculator__total-num-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.calculator span#result {
  color: var(--Primary-400, #95DA26);
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 116.667%;
}
.calculator span#growth {
  color: var(--Primary-400, #95DA26);
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 116.667%;
}
.calculator__total-text {
  color: var(--white-60, rgba(255, 255, 255, 0.6));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 12px;
}

@media screen and (max-width: 1024px) {
  .calculator__cols-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .calculator__cols-wrap {
    gap: 20px;
  }
  .calculator__col-1-title {
    font-size: 16px;
    text-align: center;
  }
  .calculator__col-1-text {
    font-size: 12px;
    text-align: center;
  }
  .calculator__range-text {
    font-size: 12px;
    display: block;
    text-align: center;
  }
  .calculator__range-num-wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .calculator__col-2 {
    border-radius: 16px;
    padding: 20px;
  }
  .calculator__col-2-title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
  }
  .calculator__total-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    margin-bottom: 16px;
  }
  .calculator__total-title {
    text-align: center;
  }
  .calculator__total-text {
    font-size: 12px;
    text-align: center;
    margin-bottom: 32px;
  }
  .calculator__total-btn-wrap {
    text-align: center;
  }
  .calculator span#result {
    font-size: 48px;
  }
  .calculator span#growth {
    font-size: 48px;
  }
}
.footer {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  position: absolute;
  content: "";
  width: 157px;
  height: 1440px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  background: radial-gradient(75.19% 35.73% at 100% 50%, rgba(149, 218, 38, 0.2) 0%, rgba(1, 1, 3, 0.3) 100%);
  bottom: -642px;
  left: 46%;
  z-index: 0;
}
.footer__cols-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.footer__logo {
  width: 160px;
  display: inline-block;
}
.footer__col-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__copyrights {
  color: var(--white-50, rgba(255, 255, 255, 0.5));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.footer__nav-list .menu-item {
  color: var(--Primary-400, #95DA26);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 16px 0;
  }
  .footer__col-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .footer__col-1 {
    margin: 0 auto;
  }
  .footer__logo {
    width: 120px;
  }
}
.privacy {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.privacy::before {
  width: 720px;
  height: 1488px;
  position: absolute;
  content: "";
  background: radial-gradient(27.04% 81.83% at 100% 53.43%, rgba(149, 218, 38, 0.2) 0%, rgba(1, 1, 3, 0) 79.81%);
  top: 0;
  right: 0;
}
.privacy::after {
  width: 720px;
  height: 1488px;
  position: absolute;
  content: "";
  background: radial-gradient(27.04% 81.83% at 100% 53.43%, rgba(149, 218, 38, 0.2) 0%, rgba(1, 1, 3, 0) 79.81%);
  top: 0;
  left: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.privacy__title {
  color: var(--Primary-400, #95DA26);
  font-size: clamp(32px, 6vw, 48px);
  font-style: normal;
  font-weight: 600;
  line-height: 116.667%;
  margin-bottom: 24px;
}
.privacy__date {
  margin-bottom: 16px;
}
.privacy__date span {
  color: var(--black-white-white, #FFF);
  font-weight: 600;
}
.privacy__content-wrap {
  max-width: 800px;
  padding: 0 16px;
  margin: 0 auto;
}
.privacy__content p {
  color: var(--white-60, rgba(255, 255, 255, 0.6));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 24px;
}
.privacy__content h2, .privacy__content h3, .privacy__content h4, .privacy__content h5, .privacy__content h6 {
  color: var(--black-white-white, #FFF);
  font-size: clamp(22px, 7vw, 32px);
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 24px;
}
.privacy__content h3 {
  font-size: clamp(20px, 7vw, 30px);
}
.privacy__content h4 {
  font-size: clamp(18px, 7vw, 28px);
}
.privacy__content h5 {
  font-size: clamp(18px, 7vw, 26px);
}
.privacy__content h6 {
  font-size: clamp(18px, 7vw, 24px);
}
.privacy__content ul, .privacy__content ol {
  color: var(--white-60, rgba(255, 255, 255, 0.6));
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
  padding-left: 20px;
}
.privacy__content ul {
  list-style: disc;
}
.privacy__content ol {
  list-style: auto;
}
.privacy__content a {
  color: var(--Primary-400, #95DA26);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

@media screen and (max-width: 1024px) {
  .privacy::before,
  .privacy::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .privacy {
    padding: 40px 0;
  }
  .privacy__content h2, .privacy__content h3, .privacy__content h4, .privacy__content h5, .privacy__content h6 {
    margin-bottom: 16px;
  }
  .privacy__content p {
    font-size: 14px;
  }
}/*# sourceMappingURL=main.css.map */