:root {
  --color-black: #000;
  --color-white: #fff;
}

.form-input  {
  color: #000 !important;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Extrabold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SFProDisplay-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

body {
  box-sizing: border-box;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

input::-ms-clear {
  display: none;
}

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

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

dl,
ol,
ul {
  margin: 0;
  padding: 0;
}

label {
  margin: 0;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
  margin: 0;
}

input:not([type=checkbox]):not([type=radio]),
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

* {
  font-family: "Gilroy", sans-serif;
}

body {
  background: #181818;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

@media (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}

.page {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.page.scroll-hide {
  height: calc(var(--vh, 1vh) * 100);
}

.page.scroll-hide .header {
  background-color: #fff;
}

img {
  display: block;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
}

.title {
  font-family: "Gilroy";
  font-weight: 700;
  font-size: 32px;
  line-height: 103.17%;
  color: #000;
}

@media (max-width: 767px) {
  .title {
    font-size: 24px;
  }
}

.header {
  padding: 2px 0;
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  background-color: #fff;
  color: #000;
  z-index: 100;
  transition: transform 0.2s linear, background 0.2s linear;
}

@media (max-width: 1023px) {
  .header {
    top: 0;
  }
}

.header.active {
  background-color: #fff;
  transform: translateY(-18px);
}

@media (max-width: 1023px) {
  .header.active {
    transform: translateY(0);
  }
}

@media (max-width: 1023px) {
  .header .nav {
    width: 250px;
    background: #181818;
    border-radius: 0 0 0 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.17);
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    position: absolute;
    top: 66px;
    right: 0;
    transform: translateX(100%);
    transition: transform 0.3s linear;
  }

  .header .nav::before {
    content: "";
    width: 100vw;
    height: 1px;
    opacity: 1;
    transition: 0.2s linear;
    background-color: rgba(255, 255, 255, 0.17);
    position: absolute;
    top: 0;
    right: 0;
  }

  .header .nav.active {
    transform: translateX(0%);
  }

  .header .nav.active::before {
    opacity: 1;
  }

  .header .nav .nav__list {
    padding: 15px 0;
    flex-direction: column;
  }

  .header .nav .nav__item+.nav__item {
    margin-left: 0;
    margin-top: 15px;
  }
}

.nav__item.profile {
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 5px;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
  width: 74.18px;
  height: 71.86px;
}

@media (max-width: 1439px) {
  .header__logo {
    width: 54.18px;
    height: 51.86px;
  }
}

@media (max-width: 1023px) {
  .header__logo {
    width: 44.18px;
    height: 41.86px;
  }
}

.nav__list {
  display: flex;
  align-items: center;
}

.nav__item+.nav__item {
  margin-left: 50px;
}

@media (max-width: 1439px) {
  .nav__item+.nav__item {
    margin-left: 40px;
  }
}

.nav__link {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: #000;
  transition: 0.2s linear;
}

@media (any-hover: hover) {
  .nav__link:hover {
    color: #000;
  }
}

.burger {
  display: none;
  width: 30px;
  height: 25px;
}

@media (max-width: 1023px) {
  .burger {
    display: block;
  }
}

.burger.active .burger__line {
  background-color: transparent;
}

.burger.active .burger__line::before {
  top: 0;
  transform: rotate(45deg);
}

.burger.active .burger__line::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.burger__line {
  height: 2px;
  margin: 0 auto;
  background-color: #FFF;
  transition: 0.2s linear;
  position: relative;
}

.burger__line::before {
  content: "";
  height: 2px;
  width: 30px;
  background-color: #fff;
  transition: 0.2s linear;
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
}

.burger__line::after {
  content: "";
  height: 2px;
  width: 30px;
  background-color: #fff;
  transition: 0.2s linear;
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
}

.intro {
  margin-bottom: 170px;
  position: relative;
  z-index: 20;
}

@media (max-width: 1439px) {
  .intro {
    margin-bottom: 60px;
  }
}

.intro__inner {
  padding-top: 130px;
  position: relative;
}

@media (max-width: 1439px) {
  .intro__inner {
    padding-top: 60px;
  }
}

@media (max-width: 1023px) {
  .intro__inner {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
  }
}

.intro__title {
  max-width: 641px;
  margin-bottom: 30px;
  margin-top: 30px;
  font-family: "SF Pro Display";
  font-weight: 700;
  font-size: 46px;
  line-height: 115%;
  color: #000;
  opacity: 1;
}

@media (max-width: 1439px) {
  .intro__title {
    max-width: 541px;
    font-size: 36px;
  }
}

@media (max-width: 1023px) {
  .intro__title {
    max-width: 471px;
    font-size: 32px;
    order: 2;
  }
}

@media (max-width: 767px) {
  .intro__title {
    max-width: 345px;
    font-size: 24px;
  }
}

.intro__descr {
  max-width: 574px;
  margin-bottom: 30px;
  font-family: "Gilroy";
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #000;
  opacity: 1;
}

@media (max-width: 1023px) {
  .intro__descr {
    order: 3;
  }
}

@media (max-width: 767px) {
  .intro__descr {
    font-size: 17px;
  }
}

.intro__nav {
  display: flex;
  justify-content: space-between;
  max-width: 488px;
  width: 100%;
  opacity: 1;
}

.intro__nav .btn {
  width: calc(50% - 8px);
}

@media (max-width: 767px) {
  .intro__nav .btn {
    width: 100%;
  }

  .intro__nav .btn:last-child {
    margin-top: 15px;
  }
}

@media (max-width: 1023px) {
  .intro__nav {
    order: 4;
  }
}

@media (max-width: 767px) {
  .intro__nav {
    max-width: 100%;
    flex-direction: column;
  }
}

.intro__planet {
  width: 675px;
  height: 673px;
  position: absolute;
  top: 97px;
  right: -93px;
  opacity: 1;
}

@media (max-width: 1439px) {
  .intro__planet {
    width: 455px;
    height: 453px;
    top: 85px;
    right: -46px;
  }
}

@media (max-width: 1023px) {
  .intro__planet {
    width: 555px;
    height: 553px;
    margin: 0 auto 30px;
    order: 1;
    position: relative;
    top: 0;
    right: 0;
  }
}

@media (max-width: 767px) {
  .intro__planet {
    width: 245px;
    height: 345px;
  }
}

.intro__circle {
  width: 640.75px;
  height: 644.88px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 1439px) {
  .intro__circle {
    width: 420.75px;
    height: 424.88px;
  }
}

@media (max-width: 1023px) {
  .intro__circle {
    width: 520.75px;
    height: 524.88px;
  }
}

@media (max-width: 767px) {
  .intro__circle {
    width: 345px;
    height: 345px;
  }
}

.intro__circle img {
  /* -webkit-animation: 18s linear infinite rotate;
  animation: 18s linear infinite rotate; */
}

.intro__circle2 {
  width: 595.37px;
  height: 595px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.intro__circle2 img {
  /* -webkit-animation: 18s linear infinite rotate2;
  animation: 18s linear infinite rotate2; */
}

@media (max-width: 1439px) {
  .intro__circle2 {
    width: 375.37px;
    height: 375px;
  }
}

@media (max-width: 1023px) {
  .intro__circle2 {
    width: 475.37px;
    height: 475px;
  }
}

@media (max-width: 767px) {
  .intro__circle2 {
    width: 315px;
    height: 315px;
  }
}

.intro__planet-img {
  width: 567px;
  height: 567px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 1439px) {
  .intro__planet-img {
    width: 347px;
    height: 347px;
  }
}

@media (max-width: 1023px) {
  .intro__planet-img {
    width: 447px;
    height: 447px;
  }
}

@media (max-width: 767px) {
  .intro__planet-img {
    width: 285px;
    height: 285px;
  }
}

@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rotate2 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@keyframes rotate2 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

/* @keyframes planetAnim {
    0% {
        transform: translateY(-5%);
    }

    100% {
        transform: translateY(5%);
    }
} */
.intro__content {
  width: 339.43px;
  height: 364.3px;
  position: absolute;
  top: 140px;
  left: 174px;
}

@media (max-width: 1439px) {
  .intro__content {
    width: 239.43px;
    height: 264.3px;
    top: 90px;
    left: 104px;
  }
}

@media (max-width: 1023px) {
  .intro__content {
    width: 319.43px;
    height: 344.3px;
    top: 80px;
    left: 114px;
  }
}

@media (max-width: 767px) {
  .intro__content {

    top: 51px;
    left: 0px;
  }
}

@media (max-width: 475px) {
  .intro__content {
width: 100%;
    top: 51px;
    left: 0px;
  }
}

@media (max-width: 375px) {
  .intro__content {
width: 250px;
max-width: 90%;
    top: 51px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.elem6 {
  transform: scale(-1, 1) translate(-96%, -6%) rotate(8deg);
}

.elem16 {
  transform: scale(-1, 1) translate(-160%, 65%) rotate(-50deg);
}

.intro__tooltip {
  display: flex;
  align-items: center;
  padding: 5px 13px 17.5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-image: url("../images/tooltip.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.intro__tooltip--one {
  position: absolute;
  top: -7px;
  right: -4px;
}

@media (max-width: 1439px) {
  .intro__tooltip--one {
    top: -11px;
    right: -13px;
  }
}

@media (max-width: 1023px) {
  .intro__tooltip--one {
    top: -5px;
    right: 0px;
  }
}

@media (max-width: 767px) {
  .intro__tooltip--one {
    top: -15px;
    right: -19px;
  }
}

.intro__tooltip--two {
  position: absolute;
  top: 17px;
  left: 6px;
}

@media (max-width: 1439px) {
  .intro__tooltip--two {
    top: 5px;
    left: -10px;
  }
}

@media (max-width: 1023px) {
  .intro__tooltip--two {
    top: 13px;
    left: 2px;
  }
}

@media (max-width: 767px) {
  .intro__tooltip--two {
    top: -2px;
    left: -17px;
  }
}

.intro__tooltip--three {
  position: absolute;
  bottom: 62px;
  right: 10px;
}

@media (max-width: 1439px) {
  .intro__tooltip--three {
    bottom: 43px;
    right: -7px;
  }
}

@media (max-width: 1023px) {
  .intro__tooltip--three {
    bottom: 59px;
    right: 6px;
  }
}

@media (max-width: 767px) {
  .intro__tooltip--three {
    bottom: 33px;
    right: -14px;
  }
}

.intro__tooltip--four {
  position: absolute;
  bottom: 156px;
  left: 51px;
}

@media (max-width: 1439px) {
  .intro__tooltip--four {
    bottom: 112px;
    left: 23px;
  }
}

@media (max-width: 1023px) {
  .intro__tooltip--four {
    bottom: 148px;
    left: 47px;
  }
}

@media (max-width: 767px) {
  .intro__tooltip--four {
    bottom: 88px;
    left: 9px;
  }
}

.intro__tooltip-circle {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.intro__tooltip-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #000;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 49px;
  width: 100%;
  border: 1px solid #f04836;
  filter: drop-shadow(0px 0px 25px rgba(255, 209, 142, 0.15));
  border-radius: 6px;
  font-family: "Gilroy";
  font-weight: 600;
  font-size: 15px;
  line-height: 150%;
  text-align: center;
  letter-spacing: -0.01em;
  color: #000;
  transition: 0.2s linear;
}

@media (any-hover: hover) {
  .btn:hover {
    background-color: #ffbc5b;
    border-color: #ffbc5b;
    color: #181818;
  }
}

.btn--paint {
  background-color: #f04836;
  color: #181818;
}

.timer {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 114px;
  padding: 18px 68px 21px;
  background: linear-gradient(226.3deg, rgba(255, 255, 255, 0.1231) -0.73%, rgba(255, 255, 255, 0.01) 91.76%, rgba(255, 255, 255, 0.01) 99.67%);
  -webkit-backdrop-filter: blur(21px);
  backdrop-filter: blur(21px);
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 99;
}

@media (max-width: 767px) {
  .timer {
    height: 87px;
    padding: 18px 40px 15px;
  }
}

.timer__title {
  font-family: "Gilroy";
  font-weight: 600;
  font-size: 15px;
  line-height: 150%;
  text-align: center;
  letter-spacing: -0.01em;
  color: #000;
}

.timer__content {
  display: flex;
  justify-content: center;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 150%;
  text-align: center;
  letter-spacing: -0.01em;
  position: absolute;
  top: 57px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .timer__content {
    font-size: 21px;
    top: 46px;
  }
}

.timer__content p {
  -webkit-text-stroke: 1px #fff;
  color: transparent;
}

.timer__content span {
  margin: 0 17px;
}

.project {
  margin-bottom: 120px;
}

@media (max-width: 1023px) {
  .project {
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .project {
    margin-bottom: 40px;
  }
}

.project__inner {
  position: relative;
  padding-top: 100px;
  margin-bottom: 242px;
}

@media (max-width: 1439px) {
  .project__inner {
    margin-bottom: 142px;
  }
}

@media (max-width: 1023px) {
  .project__inner {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .project__inner {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
  }
}

.project__title {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .project__title {
    margin-bottom: 20px;
    order: 2;
  }
}

.project__descr {
  max-width: 440px;
  padding-left: 30px;
  border-left: 3px solid #f04836;
  font-family: "Gilroy";
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #000;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .project__descr {
    padding-left: 20px;
    font-size: 14px;
    order: 3;
  }
}

.project__text {
  max-width: 407.22px;
  font-family: "Gilroy";
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #000;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .project__text {
    font-size: 14px;
    order: 4;
  }
}

.project__ticker {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.project__ticker-text {
  display: inline-block;
  padding: 0 7px;
  font-family: "Montserrat";
  font-weight: 800;
  font-size: 80px;
  line-height: 98px;
  color: transparent;
  flex-wrap: nowrap;
  -webkit-text-stroke: 0.5px #5C5C5C;
  will-change: transform;
  /*     animation: animate 40s -40s linear infinite;

      &:nth-child(2) {
          animation: animate2 40s -20s linear infinite;
      } */
}

@media (max-width: 1439px) {
  .project__ticker-text {
    font-size: 70px;
  }
}

@media (max-width: 1023px) {
  .project__ticker-text {
    font-size: 60px;
  }
}

@media (max-width: 767px) {
  .project__ticker-text {
    font-size: 50px;
  }
}

/* 
@keyframes animate {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes animate2 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-200%);
    }
} */
.project__bubbles {
  width: 543.3px;
  height: 540.41px;
  position: absolute;
  top: 100px;
  right: 36px;
}

@media (max-width: 1439px) {
  .project__bubbles {
    width: 443.3px;
    height: 440.41px;
  }
}

@media (max-width: 1023px) {
  .project__bubbles {
    right: 0;
    width: 343.3px;
    height: 340.41px;
  }
}

@media (max-width: 767px) {
  .project__bubbles {
    position: relative;
    top: 0;
    order: 1;
    margin: 20px auto 20px;
  }
}

.project__bubble {
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(67.29% 67.29% at 50% 62.5%, rgba(255, 255, 255, 0.03) 36.76%, rgba(255, 255, 255, 0.08) 66.74%, rgba(255, 255, 255, 0.42) 100%);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  position: absolute;
  font-weight: 500;
  font-size: 40px;
  line-height: 60px;
  text-align: right;
  color: #000000;
}

.project__bubble img {
  width: 49px;
  height: 49px;
}

@media (max-width: 1023px) {
  .project__bubble img {
    width: 35px;
    height: 35px;
  }
}

.project__bubble:nth-child(1) {
  width: 191.5px;
  height: 191.5px;
  top: 64px;
  left: 0;
}

@media (max-width: 1439px) {
  .project__bubble:nth-child(1) {
    width: 151.5px;
    height: 151.5px;
  }
}

@media (max-width: 1023px) {
  .project__bubble:nth-child(1) {
    width: 101.5px;
    height: 101.5px;
    left: 60px;
  }
}

@media (max-width: 767px) {
  .project__bubble:nth-child(1) {
    left: 0;
  }
}

.project__bubble:nth-child(2) {
  width: 352.96px;
  height: 352.76px;
  top: 101px;
  left: 112px;
}

@media (max-width: 1439px) {
  .project__bubble:nth-child(2) {
    width: 282.96px;
    height: 282.76px;
  }
}

@media (max-width: 1023px) {
  .project__bubble:nth-child(2) {
    width: 162.96px;
    height: 162.76px;
  }
}

.project__bubble:nth-child(2) img {
  width: 105px;
  height: 105px;
}

@media (max-width: 1023px) {
  .project__bubble:nth-child(2) img {
    width: 70px;
    height: 70px;
  }
}

.project__bubble:nth-child(3) {
  width: 157.7px;
  height: 157.62px;
  bottom: 73px;
  right: 0;
}

@media (max-width: 1439px) {
  .project__bubble:nth-child(3) {
    width: 117.7px;
    height: 117.62px;
    bottom: 33px;
  }
}

@media (max-width: 1023px) {
  .project__bubble:nth-child(3) {
    width: 87.7px;
    height: 87.62px;
  }
}

@media (max-width: 767px) {
  .project__bubble:nth-child(3) {
    bottom: 0;
  }
}

.project__bubble:nth-child(4) {
  width: 18.77px;
  height: 18.76px;
  right: 224px;
  top: 0;
}

.project__bubble:nth-child(5) {
  width: 48.81px;
  height: 48.79px;
  top: 80px;
  right: 40px;
}

.project__bubble:nth-child(6) {
  width: 18.77px;
  height: 18.76px;
  left: 75px;
  bottom: 114px;
}

.project__bubble:nth-child(7) {
  width: 46.94px;
  height: 46.91px;
  bottom: 0;
  right: 199px;
}

.benefits {
  margin-bottom: 120px;
}

@media (max-width: 767px) {
  .benefits {
    margin-bottom: 80px;
  }
}

.benefits__title {
  margin-bottom: 86px;
  text-align: center;
}

.benefits__list {
  max-width: 1089px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 80px 40px;
}

@media (max-width: 1023px) {
  .benefits__list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 60px 40px;
  }
}

@media (max-width: 600px) {
  .benefits__list {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 60px;
  }
}

.benefits__item {
  position: relative;
}

.benefits__num {
  font-family: "Gilroy";
  font-weight: 800;
  font-size: 72px;
  line-height: 150%;
  color: transparent;
  -webkit-text-stroke: 1px #2D2D2D;
  position: absolute;
  top: -60px;
  left: -4px;
  z-index: 1;
}

.benefits__text {
  padding-left: 46px;
  font-family: "Gilroy";
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: #000;
  position: relative;
  z-index: 2;
}

.benefits__text::before {
  content: "";
  width: 29px;
  height: 2px;
  background-color: #f04836;
  position: absolute;
  top: 9px;
  left: 0;
}

.scope {
  padding-bottom: 170px;
  position: relative;
}

@media (max-width: 1439px) {
  .scope {
    padding-bottom: 100px;
  }
}

@media (max-width: 1023px) {
  .scope {
    padding-bottom: 60px;
  }
}

.scope::before {
  content: "";
  height: 422px;
  background-image: url("../images/scope-bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.scope__title {
  margin-bottom: 60px;
  text-align: center;
}

@media (max-width: 1439px) {
  .scope__title {
    margin-bottom: 40px;
  }
}

.scope__slider {
  position: relative;
  overflow: unset;
  padding: 0 119px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (max-width: 1439px) {
  .scope__slider {
    padding: 0 69px;
  }
}

@media (max-width: 1023px) {
  .scope__slider {
    padding: 0;
  }
}

.scope__slider-inner {
  height: 448.29px;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .scope__slider-inner {
    height: 388.29px;
  }
}

@media (max-width: 767px) {
  .scope__slider-inner {
    height: auto;
  }
}

.scope__slider-inner .swiper-cube-shadow {
  display: none;
}

.scope__slide {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .scope__slide {
    /* flex-direction: column;
    align-items: center; */
  }
}

.scope__slide-descr {
  padding-top: 105px;
}

@media (max-width: 1023px) {
  .scope__slide-descr {
    padding-top: 40px;
  }
}

@media (max-width: 767px) {
  .scope__slide-descr {
    padding-bottom: 40px;
  }
}

@media (max-width: 600px) {
  .scope__slide-descr {
    padding-top: 10px;
  }
}

.scope__slide-title {
  padding-left: 36px;
  padding-top: 26px;
  margin-bottom: 41px;
  border-left: 3px solid #f04836;
  font-family: "Gilroy";
  font-weight: 700;
  font-size: 32px;
  line-height: 150%;
  color: #000;
  position: relative;
}

@media (max-width: 1023px) {
  .scope__slide-title {
    padding-left: 20px;
  }
}

@media (max-width: 767px) {
  .scope__slide-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.scope__slide-num {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 700;
  font-size: 100px;
  line-height: 150%;
  -webkit-text-stroke: 1px #3A3A3A;
  color: transparent;
  position: absolute;
  bottom: -41px;
  left: 36px;
  z-index: -1;
}

@media (max-width: 1023px) {
  .scope__slide-num {
    left: 20px;
  }
}

@media (max-width: 767px) {
  .scope__slide-num {
    font-size: 80px;
    bottom: -31px;
    left: 15px;
  }
}

.scope__slide-text {
  max-width: 407.22px;
  font-family: "Gilroy";
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: #000;
}

@media (max-width: 767px) {
  .scope__slide-text {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .scope__slide-text {
    max-width: unset;
  }
}

.scope__slide-text+.scope__slide-text {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .scope__slide-text+.scope__slide-text {
    margin-top: 10px;
  }
}

.scope__slide-img {
  width: 518px;
  height: 448.29px;
}

@media (max-width: 1023px) {
  .scope__slide-img {
    width: 378px;
    height: 338.29px;
  }
}

@media (max-width: 600px) {
  .scope__slide-img {
    display: none;
  }
}

.scope__slider-pagination {
  top: unset !important;
  bottom: 0;
  background: #2B2B2B !important;
  width: 408px !important;
  height: 1px !important;
}

@media (max-width: 600px) {
  .scope__slider-pagination {
    width: 100% !important;
  }
}

.scope__slider-pagination .swiper-pagination-progressbar-fill {
  background: #fff !important;
}

.scope__btn-prev,
.scope__btn-next {
  width: 47px;
  height: 47px;
  background: linear-gradient(226.3deg, rgba(255, 255, 255, 0.1231) -0.73%, rgba(255, 255, 255, 0.01) 91.76%, rgba(255, 255, 255, 0.01) 99.67%);
  -webkit-backdrop-filter: blur(58px);
  backdrop-filter: blur(58px);
  border-radius: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: 0.2s linear;
}

@media (any-hover: hover) {

  .scope__btn-prev:hover,
  .scope__btn-next:hover {
    opacity: 0.7;
  }
}

.scope__btn-prev::before,
.scope__btn-next::before {
  content: "";
  width: 7px;
  height: 14px;
  background-image: url("../images/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 1023px) {

  .scope__btn-prev,
  .scope__btn-next {
    display: none;
  }
}

.scope__btn-prev {
  left: 0;
}

.scope__btn-next {
  right: 0;
}

.scope__btn-next::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.scope__slider-counter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 408px;
  position: absolute;
  bottom: 15px;
  left: 0;
  z-index: 2;
}

@media (max-width: 600px) {
  .scope__slider-counter {
    width: 100%;
  }
}

.scope__slide-active {
  font-family: "Gilroy";
  font-weight: 600;
  font-size: 15px;
  line-height: 150%;
  color: #000;
}

.scope__slides-total {
  font-family: "Gilroy";
  font-weight: 600;
  font-size: 15px;
  line-height: 150%;
  color: #5B5B5B;
}

.registration {
  background: linear-gradient(226.3deg, rgba(255, 255, 255, 0.1231) -0.73%, rgba(255, 255, 255, 0.01) 91.76%, rgba(255, 255, 255, 0.01) 99.67%);
  -webkit-backdrop-filter: blur(58px);
  backdrop-filter: blur(58px);
  position: relative;
}

.registration__inner {
  padding: 78px 0;
}

@media (max-width: 1023px) {
  .registration__inner {
    padding: 30px 0;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
}

.registration__form {
  max-width: 389px;
  margin-left: 119px;
}

@media (max-width: 1439px) {
  .registration__form {
    margin-left: 0;
  }
}

.registration__title {
  margin-bottom: 40px;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 130%;
  color: #000;
}

@media (max-width: 1023px) {
  .registration__title {
    font-size: 24px;
    max-width: 350px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .registration__title {
    font-size: 18px;
  }
}

.registration__title span {
  color: #f04836;
}

.registration__input {
  display: block;
  width: 100%;
  padding-bottom: 15px;
  border: none;
  border-bottom: 1px solid #383838;
  background: transparent;
  border-radius: 0;
  font-family: "Gilroy";
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #000;
}

@media (max-width: 1023px) {
  .registration__input {
    padding-bottom: 10px;
  }
}

.registration__input::-moz-placeholder {
  font-family: "Gilroy";
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #000;
}

.registration__input:-ms-input-placeholder {
  font-family: "Gilroy";
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #000;
}

.registration__input::placeholder {
  font-family: "Gilroy";
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #000;
}

.registration__input+.registration__input {
  margin-top: 20px;
}

.registration__group {
  margin-bottom: 40px;
}

@media (max-width: 1023px) {
  .registration__group {
    margin-bottom: 20px;
  }
}

.registration__bg {
  width: 380px;
  position: absolute;
  top: 38px;
  right: 10%;
}

@media (min-width: 1921px) {
  .registration__bg {
    right: 10%;
  }
}

@media (max-width: 1439px) {
  .registration__bg {
    width: 380px;
    height: auto;
    top: 10%;
  }
}

@media (max-width: 1023px) {
  .registration__bg {
    width: 100%;
    position: static;
    margin-bottom: 30px;
  }
}

.partners__inner {
  padding: 130px 0 150px;
  position: relative;
}

@media (max-width: 1439px) {
  .partners__inner {
    padding: 50px 0 120px;
  }
}

@media (max-width: 1023px) {
  .partners__inner {
    padding: 40px 0 90px;
  }
}

@media (max-width: 767px) {
  .partners__inner {
    padding: 30px 0 50px;
  }
}

.partners__inner::before {
  content: "";
  background-image: url("../images/partners-bg.svg");
  position: absolute;
  top: -127px;
  left: 65px;
  right: 65px;
  bottom: -20px;
  z-index: -1;
}

@media (max-width: 1439px) {
  .partners__inner::before {
    background-size: contain;
    background-repeat: no-repeat;
    top: -57px;
    left: 0;
    right: 0;
    bottom: 0px;
  }
}

.partners__title {
  text-align: center;
  margin-bottom: 25px;
}

.partners__descr {
  margin: 0 auto 60px;
  max-width: 559px;
  font-family: "Gilroy";
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  text-align: center;
  color: #000;
}

@media (max-width: 767px) {
  .partners__descr {
    margin-bottom: 30px;
    font-size: 14px;
  }
}

.partners__list {
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px;
}

@media (max-width: 1439px) {
  .partners__list {
    grid-gap: 20px;
  }
}

@media (max-width: 1023px) {
  .partners__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .partners__list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
}

.partners__item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 175px;
  background: linear-gradient(226.3deg, rgba(255, 255, 255, 0.28) -0.73%, rgba(255, 255, 255, 0.01) 75.09%, rgba(255, 255, 255, 0.01) 99.67%);
  border-radius: 20px;
  transform-style: preserve-3d;
  transform: perspective(1000px);
  position: relative;
}

@media (max-width: 1023px) {
  .partners__item {
    height: 145px;
  }
}

@media (max-width: 600px) {
  .partners__item {
    height: 115px;
  }
}

.partners__icon {
  max-width: 164px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateZ(40px) translateX(-50%) translateY(-50%);
}

.partners__icon img {
  pointer-events: none;
}

.about {
  margin-bottom: 150px;
}

@media (max-width: 1439px) {
  .about {
    margin-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .about {
    margin-bottom: 60px;
  }
}

.about__title {
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .about__title {
    margin-bottom: 30px;
  }
}

.about__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 45px 40px;
}

@media (max-width: 1023px) {
  .about__list {
    grid-gap: 25px 20px;
  }
}

@media (max-width: 767px) {
  .about__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .about__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.about__item {
  display: flex;
  flex-direction: column;
  padding-bottom: 5px;
  position: relative;
}

.about__item::before {
  content: "";
  background: linear-gradient(226.3deg, rgba(255, 255, 255, 0.28) -0.73%, rgba(255, 255, 255, 0.01) 75.09%, rgba(255, 255, 255, 0.01) 99.67%);
  border-radius: 10px;
  opacity: 0;
  transition: 0.2s linear;
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
}

@media (any-hover: hover) {
  .about__item:hover::before {
    opacity: 1;
  }
}

.about__img {
  width: 100%;
  height: 185px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
}

.about__img img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media (max-width: 767px) {
  .about__img {
    margin-bottom: 15px;
  }
}

.about__name {
  display: inline-block;
  margin-bottom: 10px;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  color: #000;
  transition: 0.2s linear;
}

@media (any-hover: hover) {
  .about__name:hover {
    opacity: 0.7;
  }
}

@media (max-width: 767px) {
  .about__name {
    font-size: 18px;
  }
}

.about__publisher {
  padding-bottom: 10px;
  margin-bottom: auto;
  font-family: "Gilroy";
  font-weight: 600;
  font-size: 15px;
  line-height: 150%;
  letter-spacing: 0.11em;
  color: #555555;
}

@media (max-width: 767px) {
  .about__publisher {
    font-size: 14px;
  }
}

.about__btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Gilroy";
  font-weight: 600;
  font-size: 15px;
  line-height: 150%;
  color: #f04836;
  overflow: hidden;
  position: relative;
}

.about__btn::before {
  content: "";
  height: 1px;
  background-color: #f04836;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.2s linear;
  transform: translateX(-100%);
}

@media (any-hover: hover) {
  .about__btn:hover::before {
    transform: translateX(0);
  }
}

@media (max-width: 767px) {
  .about__btn {
    font-size: 14px;
  }
}

.faq {
  margin-bottom: 115px;
}

@media (max-width: 1023px) {
  .faq {
    margin-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .faq {
    margin-bottom: 60px;
  }
}

.faq__title {
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .faq__title {
    margin-bottom: 30px;
  }
}

.faq__list {
  max-width: 883px;
  margin: 0 auto;
}

.faq__item {
  width: 100%;
  padding: 15px 10px 20px 30px;
  background: #fff;
  border-radius: 10px;
}

.faq__item+.faq__item {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .faq__item {
    padding: 15px 10px 15px 15px;
  }
}

.faq__question {
  padding-right: 30px;
  font-family: "Gilroy";
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  color: #000;
  transition: 0.3s linear;
  cursor: pointer;
  position: relative;
}

.faq__question::before {
  content: "";
  width: 7px;
  height: 14px;
  background-image: url("../images/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 10px;
  right: 20px;
  transform: rotate(-90deg);
  transition: 0.3s linear;
}

@media (max-width: 767px) {
  .faq__question::before {
    right: 10px;
    top: 4px;
  }
}

.faq__question.active {
  margin-bottom: 20px;
}

.faq__question.active::before {
  transform: rotate(-270deg);
}

@media (max-width: 767px) {
  .faq__question.active {
    margin-bottom: 10px;
  }
}

@media (any-hover: hover) {
  .faq__question:hover {
    opacity: 0.7;
  }
}

@media (max-width: 767px) {
  .faq__question {
    font-size: 16px;
    line-height: 120%;
  }
}

.faq__answer {
  max-height: 0;
  padding-right: 20px;
  overflow: hidden;
  transition: 0.3s linear;
  font-family: "Gilroy";
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #000;
}

@media (max-width: 767px) {
  .faq__answer {
    font-size: 14px;
  }
}

.footer {
  padding-top: 34px;
  padding-bottom: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  background: #1F1F1F;
}

@media (max-width: 767px) {
  .footer {
    padding-bottom: 30px;
  }
}

.footer__inner {
  display: flex;
}

@media (max-width: 1439px) {
  .footer__inner {
    justify-content: space-between;
  }
}

@media (max-width: 1023px) {
  .footer__inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 550px) {
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer__left {
  margin-right: 76px;
}

@media (max-width: 1439px) {
  .footer__left {
    margin-right: 25px;
  }
}

@media (max-width: 1023px) {
  .footer__left {
    order: 1;
  }
}

@media (max-width: 550px) {
  .footer__left {
    margin-bottom: 20px;
  }
}

.footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  width: 74.18px;
  height: 71.86px;
}

@media (max-width: 1439px) {
  .footer__logo {
    width: 54.18px;
    height: 51.86px;
  }
}

@media (max-width: 1023px) {
  .footer__logo {
    width: 44.18px;
    height: 41.86px;
  }
}

.footer__copyright {
  max-width: 100%;
  font-family: "Gilroy";
  font-weight: 400;
  font-size: 10px;
  line-height: 150%;
  color: #F4F4F4;
}

.footer__center {
  display: flex;
  margin-right: 92px;
}

@media (max-width: 1439px) {
  .footer__center {
    margin-right: 15px;
  }
}

@media (max-width: 1023px) {
  .footer__center {
    order: 3;
    width: 100%;
    margin-top: 20px;
    margin-right: 0;
    justify-content: space-between;
  }
}

@media (max-width: 550px) {
  .footer__center {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer__info {
  margin-right: 50px;
}

@media (max-width: 1439px) {
  .footer__info {
    margin-right: 15px;
  }
}

.footer__title {
  margin-bottom: 20px;
  font-family: "Gilroy";
  font-weight: 600;
  font-size: 17px;
  line-height: 150%;
  color: #F4F4F4;
}

.footer__link {
  display: block;
}

.footer__link+.footer__link {
  margin-top: 10px;
}

.footer__office {
  margin-right: 50px;
}

@media (max-width: 1439px) {
  .footer__office {
    margin-right: 15px;
    max-width: 145px;
  }
}

@media (max-width: 550px) {
  .footer__office {
    margin-right: 0;
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 300px;
  }
}

.footer__office-contact {
  font-family: "Gilroy";
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #F4F4F4;
}

.footer__office-contact+.footer__office-contact {
  margin-top: 10px;
}

.footer__office-contact--tel {
  transition: 0.2s linear;
  white-space:nowrap;
}

@media (any-hover: hover) {
  .footer__office-contact--tel:hover {
    color: #f04836;
  }
}

.footer__contacts-list {
  display: flex;
  align-items: center;
}

.footer__contacts-link {
  width: 30px;
  height: 30px;
  transition: 0.2s linear;
}

@media (any-hover: hover) {
  .footer__contacts-link:hover {
    transform: scale(1.2);
  }
}

.footer__contacts-link+.footer__contacts-link {
  margin-left: 12px;
}

@media (max-width: 1023px) {
  .footer__right {
    order: 2;
  }
}

.footer__btn {
  width: 236px;
  margin-bottom: 27px;
}

.footer__board {
  padding: 15px 20px;
  background: #303030;
  border-radius: 7px;
}

.footer__board-item {
  display: flex;
  align-items: center;
}

.footer__board-item+.footer__board-item {
  margin-top: 10px;
}

.footer__board-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.footer__board-name {
  font-family: "Gilroy";
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #F4F4F4;
}

.footer__board-value {
  margin-left: auto;
  font-family: "Gilroy";
  font-weight: 600;
  font-size: 15px;
  line-height: 150%;
  color: #F4F4F4;
}

.popup {
  padding: 40px;
  background: #1F1F1F;
  border-radius: 14px;
  position: fixed;
  z-index: 102;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s linear;
  opacity: 0;
}

@media (max-width: 767px) {
  .popup {
    padding: 20px;
  }
}

.popup.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.popup .registration__input {
  width: 320px;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .popup .registration__input {
    margin-bottom: 15px;
    width: 300px;
  }
}

.popup__title {
  margin-bottom: 25px;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 103.17%;
  text-align: center;
  color: #000;
}

@media (max-width: 767px) {
  .popup__title {
    font-size: 18px;
  }
}

.popup__close {
  width: 15px;
  height: 15px;
  transition: transform 0.2s linear;
  position: absolute;
  top: 0;
  left: calc(100% + 15px);
}

@media (any-hover: hover) {
  .popup__close:hover {
    transform: scale(1.2);
  }
}

@media (max-width: 767px) {
  .popup__close {
    left: unset;
    right: 0;
    top: -25px;
  }
}

.overlay {
  background: #181818;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s linear;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
}

.overlay.active {
  opacity: 0.9;
  visibility: visible;
}

.privacy-policy {
  padding-top: 120px;
  padding-bottom: 120px;
}

.privacy-policy h2 {
  margin-bottom: 60px;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 103.17%;
  text-align: center;
  color: #000;
}

.privacy-policy p {
  margin-bottom: 10px;
  font-family: "Gilroy";
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #000;
}

.privacy-policy h3 {
  margin-bottom: 10px;
  font-family: "Gilroy";
  font-weight: 700;
  font-size: 24px;
  line-height: 103.17%;
  color: #000;
}

.privacy-policy ul {
  margin-bottom: 10px;
}

.privacy-policy li {
  padding-left: 10px;
  font-family: "Gilroy";
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #000;
}

.modal-wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(24, 24, 24, 0.95);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  transition: opacity 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-wrap.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-y: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 16px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-height: 95vh;
  min-width: 458px;
  max-width: 458px;
}

.modal::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.modal__body {
  background: #1F1F1F;
  -webkit-backdrop-filter: blur(21px);
  backdrop-filter: blur(21px);
  border-radius: 14px;
  padding: 40px;
  padding-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}

.modal__close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 36px;
  height: 36px;
  cursor:pointer;
  border-radius: 8px;
  transition: border 0.3s ease-in-out;
}

.modal__close::before {
  content: "";
  position: absolute;
  background-image: url("../images/close.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 12px;
  height: 12px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media (any-hover: hover) {
  .modal__close:hover {
    border: 1px solid #000;
  }
}

.modal__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 103.17%;
  text-align: center;
  color: #000;
  margin-bottom: 30px;
}

.modal__btn {
  width: 100%;
  margin-top: 30px;
}

.modal-withdrawals-wrap {
  width: 100%;
}

.modal-withdrawals-item {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #383838;
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: #000;
}

.modal-withdrawals-item div:first-child {
  margin-right: 30px;
}

.modal-withdrawals-item:nth-child(2) div:first-child {
  font-weight: 400;
}

.modal-withdrawals-item:nth-child(2) div:last-child {
  font-size: 11px;
}

.modal-withdrawals-thanks__text {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  text-align: center;
  color: #000;
}

.modal .payment-method {
  width: 100%;
}

.modal .payment-method .custom-select {
  margin-bottom: 20px;
}

.modal .payment-method__sum {
  font-weight: 400;
  font-size: 15px;
  line-height: 103.17%;
  color: #D1D1D1;
  margin-bottom: 20px;
}

.buy-power-item__info--row {
  margin-bottom: 20px;
}

.rate {
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #000;
  margin-bottom: 10px;
}


.modal .payment-method__sum span {
  font-weight: 600;
  font-size: 15px;
  color: #000;
  padding-left: 10px;
}

.modal-form input {
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  width: 100%;
  color: #000;
  padding-bottom: 15px;
  margin-bottom: 20px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #383838;
  border-radius: 0;
  box-shadow: none;
}

.modal-form input::-moz-placeholder {
  color: #000;
}

.modal-form input:-ms-input-placeholder {
  color: #000;
}

.modal-form input::placeholder {
  color: #000;
}

.modal-form input:last-child {
  margin-bottom: 0;
}

.tab-link-wrapper {
  margin-bottom: 30px;
}

.tab {
  font-weight: 700;
  font-size: 24px;
  line-height: 103.17%;
  color: #555555;
  margin-right: 30px;
}

.tab:hover {
  color: #555555;
}

.tab:last-child {
  margin-right: 0;
}

.tab-active {
  color: #000;
}

.tab-active:hover {
  color: #000;
}

.tabs-content {
  display: none;
}

.tabs-content-active {
  display: block;
}

.modal-thanks .modal__btn {
  margin-top: 0;
}

.checkbox-item {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #000;
  display: flex;
  align-items: center;
}

.checkbox-item input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #f04836;
  border-radius: 2px;
  background-color: #1F1F1F;
  margin-bottom: 0;
  padding: 0;
  margin-right: 10px;
  position: relative;
  cursor: pointer;
}

.checkbox-item input:checked:before {
  opacity: 1;
}

.checkbox-item input:before {
  content: "";
  position: absolute;
  background-image: url("../images/check.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 13px;
  height: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.checkbox-item a {
  color: #f04836;
  padding-left: 5px;
  text-decoration: underline;
}

.modal-form {
  width: 100%;
}

.modal__descr {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  text-align: center;
  color: #000;
  margin-bottom: 30px;
}

.forgot-password {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  color: #f04836;
  margin-left: auto;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.forgot-password:hover {
  text-shadow: 0.5px 0 0 currentColor;
}

.modal-big {
  min-width: 984px;
  max-width: 984px;
}

.modal-big .modal__close {
  right: 10px;
  top: 10px;
}

.power-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.power-modal__img {
  border: 1px solid #2F2F2F;
  border-radius: 9px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.power-modal__img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.power-modal__descr {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #000;
  margin-top: 40px;
}

.power-modal__descr p {
  margin-bottom: 20px;
}

.power-modal__descr p:last-child {
  margin-bottom: 0;
}

.power-modal-table {
  width: 100%;
}

.power-modal-table__item {
  margin-top: 40px;
}

.power-modal-table__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: #000;
}

.power-modal-table__list {
  margin-top: 5px;
}

.power-modal-table__list li {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #2F2F2F;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #000;
}

.power-modal-table__list li div:last-child {
  font-weight: 600;
  margin-left: 40px;
  white-space: nowrap;
}

@media (max-width: 1060px) {
  .modal-big {
    min-width: 90%;
    padding: 30px 0;
  }
}

@media (max-width: 580px) {
  .modal {
    min-width: 90%;
  }

  .modal__body {
    padding: 20px;
    padding-top: 50px;
  }

  .modal__close {
    right: 15px;
    top: 15px;
  }

  .power-modal__descr {
    font-size: 12px;
    margin-top: 20px;
  }

  .power-modal__img {
    padding: 20px;
  }

  .power-modal-table__title {
    font-size: 16px;
  }

  .power-modal-table__list li {
    font-size: 12px;
  }

  .power-modal-table__item {
    margin-top: 20px;
  }

  .tab {
    font-size: 18px;
    margin-right: 20px;
  }
}

input:-internal-autofill-selected{
	color: #fff !important;
	background-color: transparent !important;
}

.custom-select {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.custom-select.custom-select--v1 {
  
}

.custom-select.custom-select--v1 .custom-select__top {
	min-width: 110px;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #000;
  position: relative;
  padding-right: 30px;
  cursor: pointer;
}

.custom-select.custom-select--v1 .custom-select__top.active::before {
  transform: rotateX(180deg);
}

.custom-select.custom-select--v1 .custom-select__top::before {
  content: "";
  position: absolute;
  background-image: url("../images/select.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 11px;
  height: 5px;
  right: 0;
  top: 8px;
  transition: all 0.3s ease-in-out;
}

.custom-select.custom-select--v1 .custom-select__list {
  margin-top: 5px;
  display: none;
}

.custom-select.custom-select--v1 .custom-select-item {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #000;
  padding: 10px;
  cursor: pointer;
}

@media (any-hover: hover) {
  .custom-select.custom-select--v1 .custom-select-item:hover {
    text-shadow: 0.5px 0 0 currentColor;
  }
}

.custom-select.custom-select--v2 {
  position: relative;
}

.custom-select.custom-select--v2 .custom-select__top {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.custom-select.custom-select--v2 .custom-select__top.active::after {
  transform: rotateX(180deg);
}

.custom-select.custom-select--v2 .custom-select__top::after {
  content: "";
  background-image: url("../images/select.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 11px;
  height: 5px;
  display: block;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
}

.custom-select.custom-select--v2 .custom-select-value {
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: #f04836;
}

.custom-select.custom-select--v2 .custom-select__list {
  position: absolute;
  background: #1F1F1F;
  border-radius: 14px;
  padding: 15px;
  top: calc(100% + 5px);
  display: none;
  z-index: 2;
}

.custom-select.custom-select--v2 .custom-select-item {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #000;
  white-space: nowrap;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}

@media (any-hover: hover) {
  .custom-select.custom-select--v2 .custom-select-item:hover {
    color: #f04836;
  }
}

.custom-select.custom-select--v2 .custom-select-item:last-child {
  margin-bottom: 0;
}

.custom-select.custom-select--v1 {
  position: relative;
}

.custom-select.custom-select--v1 .custom-select-item {
  padding: 15px;
}

@media (any-hover: hover) {
  .custom-select.custom-select--v1 .custom-select-item:hover {
    color: #f04836;
  }
}

.custom-select.custom-select--v1 .custom-select__list {
  position: absolute;
  background: #2B2B2B;
  min-width: 100%;
  border-radius: 0 0 15px 15px;
  z-index: 22;
	top: 100%;
	left: -15px;
	right: -7px;
}

.custom-select-value{
	color: #f04836;
}

.formItem{
	position:relative;
}

.password-control {
    position: absolute;
    top: 0;
    right: 6px;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('../images/view.svg') 0 0 no-repeat;
}

.password-control.view {
	background: url('../images/no-view.svg') 0 0 no-repeat;
}

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



.rewiews__name {
  color: #000 !important;
}

.rewiews {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 40px 20px;
  color: #fefdfb;
  background: #fff
}

@media (max-width: 1024px) {
  .rewiews {
    padding: 70px 15px;
  }
}

.rewiews__heading {
  max-width: 840px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 40px;
  color: #000 !important;
  line-height: 48px;
}

@media (max-width: 1024px) {
  .rewiews__heading {
    margin-bottom: 43px;
    font-size: 22px;
    line-height: 26px;
  }
}

.rewiews__about {
  margin-bottom: 64px;
  max-width: 840px;
  font-size: 18px;
  line-height: 22px;
}

@media (max-width: 1024px) {
  .rewiews__about {
    margin-bottom: 60px;
    font-size: 12px;
    line-height: 14px;
  }
}

.rewiews__list {
  position: relative;
  width: 100%;
}

.rewiews__item {
  display: flex;
  flex-direction: column;
  margin: 0 20px;
  padding: 20px;
  background: rgba(84, 84, 84, 0.1);
  border-radius: 20px;
}

@media (max-width: 1024px) {
  .rewiews__item {
    width: 100%;
    margin: 0 5px;
    padding: 10px;
  }
}

.rewiews__author {
  display: flex;
}

.rewiews__avatar {
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 16px;
  border-radius: 50%;
  border: 1px solid #696767;
}

.rewiews__name {
  margin-bottom: 11px;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
}

@media (max-width: 1024px) {
  .rewiews__name {
    font-size: 17px;
    line-height: 21px;
  }
}

.rewiews__time {
  color: #888;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
}

@media (max-width: 1024px) {
  .rewiews__time {
    font-size: 13px;
    line-height: 15px;
  }
}
slick-slide img {
  display: block;
  width: 70px;
  height: 70px;
}
.rewiews__card-wrapper {
  margin-bottom: 16px;
  margin-left: 35px;
  padding-left: 34px;
  border-left: 1px solid #696767;
}

.rewiews__card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  max-width: 308px;
  min-height: 304px;
  margin-bottom: 15px;
  padding: 15px 26px;
  background: #fff;
  color: #000;
  border-radius: 20px;
}

@media (max-width: 1024px) {
  .rewiews__card {
    min-height: 245px;
    padding: 15px;
  }
}

.rewiews__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
}

@media (max-width: 1024px) {
  .rewiews__text {
    font-size: 13px;
  }
}

.rewiews__sum {
  display: flex;
  align-items: center;
}

.rewiews__sum--mb28 {
  margin-bottom: 28px;
}

.rewiews__sum--jc-sa {
  justify-content: space-around;
}

@media (max-width: 1024px) {
  .rewiews__sum--mb28 {
    margin-bottom: 24px;
  }
}

.rewiews__invest {
  margin-right: 25px;
  font-size: 16px;
  color: #f04836 !important;
  line-height: 19px;
}

@media (max-width: 1024px) {
  .rewiews__invest {
    font-size: 14px;
    line-height: 17px;
  }
}

.rewiews__number-wrapper {
  display: flex;
  align-items: center;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 25px;
}

.rewiews__controls-list {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  width: 100%;
  margin-left: 80px;
}

.rewiews__controls-item {
  align-items: center;
  font-family: "Inter", "Arial", sans-serif;
  color: #888;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  display: flex;
}

.rewiews__controls-item span {
  margin-left: 2px;
}



.slick-list {
  overflow: hidden;
}

.slick-track {
  display: flex;
}

.slick-arrow {
  cursor: pointer;
}

.slider {
  position: relative;
  width: 100%;
  margin-top: 60px;
}

@media (max-width: 1024px) {
  .slider {
    margin-top: 36px;
  }
}

.slider__card {
  width: 100%;
}

@media (max-width: 1024px) {
  .slider__card img {
    max-width: 50%;
  }
  .wsj {
    width: 88px;
    height: 30px;
  }
  .bbc {
    width: 96px;
    height: 29px;
  }
  .nyt {
    width: 162px;
    height: 24px;
  }
  .cmc {
    width: 162px;
    height: 30px;
  }
}

.slider__card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 450px;
  margin: 0 auto;
}

.slider__text {
  margin: 16px 0;
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  color: #000;
}

@media (max-width: 1024px) {
  .slider__text {
    padding: 0 55px;
    font-size: 22px;
    line-height: 26px;
  }
}

.slider .slick-arrow {
  z-index: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 58px;
  font-size: 0;
  border: 0;
}

@media (max-width: 1024px) {
  .slider .slick-arrow {
    width: 14px;
    height: 27px;
  }
}

.slider .slick-arrow.slick-prev {
  left: 170px;
  background: no-repeat 0 0/100% url(../images/arrow-prev.svg);
}

@media (max-width: 1024px) {
  .slider .slick-arrow.slick-prev {
    left: 18px;
  }
}

.slider .slick-arrow.slick-next {
  background: no-repeat 0 0/100% url(../images/arrow-next.svg);
  right: 170px;
}

@media (max-width: 1024px) {
  .slider .slick-arrow.slick-next {
    right: 18px;
  }
}

.slider .slick-dots {
  display: flex;
  justify-content: center;
  min-height: 20px;
  margin-top: 10px;
}

.slider .slick-dots li button {
  padding: 0;
  width: 70px;
  height: 0;
  font-size: 0;
  border: 2px solid #dadada;
  background: #dadada;
  transition: all 0.3s;
}

@media (max-width: 1024px) {
  .slider .slick-dots li button {
    display: none;
  }
}

.rewiews .slick-dots li.slick-active button,
.slider .slick-dots li.slick-active button {
  border: 6px solid #f04836;
  border-radius: 6px;
  background: #f04836;
  transition: all 0.3s;
}

@media (max-width: 1024px) {
  .why-to-invest__list .slick-arrow {
    z-index: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0;
    border: 0;
    width: 14px;
    height: 27px;
  }
  .why-to-invest__list .slick-arrow.slick-prev {
    left: 18px;
    background: no-repeat 0 0/100% url(../images/arrow-prev.svg);
  }
  .why-to-invest__list .slick-arrow.slick-next {
    background: no-repeat 0 0/100% url(../images/arrow-next.svg);
    right: 18px;
  }
}

.rewiews .slick-arrow {
  z-index: 1;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 30px;
  height: 58px;
  font-size: 0;
  border: 0;
}

@media (max-width: 1024px) {
  .rewiews .slick-arrow {
    width: 14px;
    height: 27px;
  }
}

.rewiews .slick-arrow.slick-prev {
  left: -20px;
  background: no-repeat 0 0/100% url(../images/arrow-prev.svg);
}

@media (max-width: 1024px) {
  .rewiews .slick-arrow.slick-prev {
    left: 18px;
  }
}

.rewiews .slick-arrow.slick-next {
  background: no-repeat 0 0/100% url(../images/arrow-next.svg);
  right: -20px;
}

@media (max-width: 1024px) {
  .rewiews .slick-arrow.slick-next {
    right: 18px;
  }
}

.rewiews .slick-dots,
.video {
  display: flex;
  justify-content: center;
}

.rewiews .slick-dots {
  min-height: 21px;
  margin-top: 40px;
}

.rewiews .slick-dots li button {
  padding: 0;
  width: 70px;
  height: 0;
  font-size: 0;
  border: 2px solid #dadada;
  background: #dadada;
  transition: all 0.3s;
}
