@charset "UTF-8";

@font-face {
  font-family: "Gotham";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Gotham Book"), url(../fonts/Gotham-Book.woff2) format("woff2"),
    url(../fonts/Gotham-Book.woff) format("woff"),
    url(../fonts/Gotham-Book.ttf) format("truetype");
}

@font-face {
  font-family: "Gotham";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Gotham Medium"), url(../fonts/Gotham-Medium.woff2) format("woff2"),
    url(../fonts/Gotham-Medium.woff) format("woff"),
    url(../fonts/Gotham-Medium.ttf) format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Inter Regular"), url(../fonts/Inter-Regular.woff2) format("woff2"),
    url(../fonts/Inter-Regular.woff) format("woff"),
    url(../fonts/Inter-Regular.ttf) format("truetype");
}

html {
  scroll-behavior: smooth;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

blockquote,
h1,
h2,
h3,
p,
ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

.btn,
a {
  cursor: pointer;
}

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

.btn {
  font-family: "Gotham", "Arial", sans-serif;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn:hover,
a:hover {
  opacity: 0.8;
}

.btn:active,
.main-nav--closed .main-nav__toggle:hover::before,
a:active {
  opacity: 0.6;
}

@media (min-width: 1024px) {
  .mobile-only {
    display: none;
  }
}

.desktop-only {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-only {
    display: block;
  }
}

.page-body {
  margin: 0;
  font-family: "Gotham", "Arial", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #171a20;
}

@media (min-width: 1024px) {
  .page-body {
    max-width: 1920px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 18px;
  }
}

.page-header {
  display: flex;
  flex-direction: column;
  color: #fefdfb;
  background: #141414 no-repeat url(../images/header-bcg.png);
   background-size: cover;
  background-position: center;
}

@media (max-width: 1024px) {
  .page-header {
    background: #141414 no-repeat url(../images/header-bcg-mob.png);
  }
}

.header__top {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 96px;
  background-color: rgba(116, 116, 114, 0.15);
}

@media (max-width: 1024px) {
  .header__top {
    align-items: baseline;
    justify-content: start;
    height: 55px;
    padding: 18px 16px;
  }
}

.header__bottom {
  padding: 70px 96px;
}

@media (max-width: 1024px) {
  .header__bottom {
    padding: 25px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }
}

.header__heading {
  max-width: 640px;
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
}

@media (max-width: 1024px) {
  .header__heading {
    /* margin: 20px 18px 492px; */
    font-size: 24px;
    line-height: 29px;
    text-shadow: #000 2px 0 10px;
  }
}

.page-header .form {
  max-width: 375px;
}

.page-footer {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 92px;
  padding: 15px;
  background: #222223;
}

.main-nav__item button,
.page-footer__about {
  font-size: 16px;
  line-height: 19px;
  color: #fefdfb;
  background: none;
}

.page-footer__about {
  margin-top: 15px;
}

.main-nav {
  display: flex;
  align-items: center;
}

@media (max-width: 1024px) {
  .main-nav {
    box-sizing: border-box;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    min-height: 370px;
    min-width: 300px;
    padding: 55px 44px;
    background: #353535;
    color: #fff;
  }

  .main-nav--closed {
    min-width: unset;
    padding: 0;
  }

  .main-nav--closed .main-nav__list {
    display: none;
  }
}

.main-nav--nojs .main-nav__toggle {
  display: none;
}

@media (max-width: 1024px) {
  .main-nav--nojs .main-nav__list {
    display: block;
  }
}

.main-nav__list {
  display: flex;
  align-items: center;
  gap: 34px;
}

@media (max-width: 1024px) {
  .main-nav__list {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav__item {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    min-height: 28px;
  }
}

.main-nav__item a {
  font-weight: 400;
}

@media (max-width: 1024px) {
  .main-nav__item a {
    font-size: 18px;
    line-height: 21px;
  }
}

.main-nav__item a:hover {
  opacity: 0.7;
}

.main-nav__item a:active {
  opacity: 0.5;
}

.main-nav__toggle {
  position: absolute;
  top: 10px;
  right: 30px;
  display: none;
  z-index: 2;
  padding: 0;
  border: 0;
  background: transparent;
}

@media (max-width: 1024px) {
  .main-nav__toggle {
    width: 40px;
    height: 40px;
    display: block;
  }
}

.main-nav--closed .main-nav__toggle::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 8px;
  width: 26px;
  height: 2px;
  background-color: #fff;
  box-shadow: 0 9px 0 0 #fff, 0 18px 0 0 #fff;
}

.main-nav--closed .main-nav__toggle:active::before {
  opacity: 0.3;
}

.main-nav--opened .main-nav__toggle::after,
.main-nav--opened .main-nav__toggle::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 4px;
  width: 32px;
  height: 3px;
  background-color: #656565;
}

.main-nav--opened .main-nav__toggle::before {
  transform: rotate(45deg);
  box-shadow: none;
}

.main-nav--opened .main-nav__toggle::after {
  transform: rotate(-45deg);
}

.main-nav--opened .main-nav__toggle:hover::after,
.main-nav--opened .main-nav__toggle:hover::before {
  opacity: 0.6;
}

.main-nav--opened .main-nav__toggle:active::after,
.main-nav--opened .main-nav__toggle:active::before {
  opacity: 0.3;
}

.form {
  display: flex;
  flex-direction: column;
}

.form input,
.form input:hover {
  background: rgb(255, 255, 255);
}

.form,
.form input {
  color: rgb(0, 0, 0);
  box-sizing: border-box;
  font-size: 16px;
}

.form input {
  width: 100%;
  height: 48px;
  margin-top: 20px;
  padding: 10px;
  border-radius: 15px;
}

.last-input {
  margin-bottom: 20px;
}

.form input:hover {
  border: 1px solid #fefdfb;
  box-shadow: 0 2px 30px rgba(243, 243, 236, 0.6);
}

.form input:active {
  background: rgba(245, 245, 245, 0.2);
  border: 2px solid #fefdfb;
}

.form__heading {
  margin-bottom: 15px;
  color: #fef6f7;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}

@media (max-width: 1024px) {
  .form__heading {
    margin-bottom: 0;
    font-size: 12px;
    line-height: 14px;
    text-shadow: #000 2px 0 10px;
  }
}

.btn__submit,
.btn__submit:hover {
  background: #cc0000;
}

.btn__submit {
  width: 100%;
  height: 48px;
  margin-top: 15px;
  padding: 9px;
  justify-content: space-around;
  color: rgb(255, 255, 255);
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  border-radius: 15px;
}

.btn__submit:hover {
  border: 1px solid #A020F0;
  box-shadow: 0 2px 30px rgba(255, 255, 255, 0.7);
}

.btn__submit,
.btn__submit:active {
  border: 1px solid #171a20;
  box-shadow: 0 2px 30px rgba(255, 255, 255, 0.4);
}

.btn__submit:active {
  background: #9b2a21;
}

.btn__submit svg {
  fill: none;
}

.revolution {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
}

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

.revolution-wrapper {
  padding: 30px 0;
  background: radial-gradient(61.17% 61.17% at 50% 50%,
      rgba(217, 217, 217, 0) 0%,
      rgba(224, 224, 224, 0) 33.36%,
      rgba(231, 231, 231, 0) 63.41%,
      #efefef 100%);
}

.revolution__circles-wrapper,
.smartphone__platform-item a {
  display: flex;
  align-items: center;
  -moz-column-gap: 50px;
  column-gap: 50px;
}

@media (max-width: 1024px) {
  .revolution__circles-wrapper {
    flex-direction: column;
    -moz-column-gap: unset;
    column-gap: unset;
    justify-content: space-around;
  }
}

.revolution__heading {
  max-width: 510px;
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
}

@media (max-width: 1024px) {
  .revolution__heading {
    margin: 0 25px 37px;
    font-size: 22px;
    line-height: 26px;
  }
}

.revolution__circles {
  display: flex;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.revolution__circle {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 274px;
  height: 274px;
  font-weight: 500;
  font-size: 64px;
  line-height: 77px;
  border-radius: 50%;
  border: 15px solid #171a20;
  filter: drop-shadow(6px 6px 25px rgba(0, 0, 0, 0.25));
}

@media (max-width: 1024px) {
  .revolution__circle {
    box-sizing: unset;
    width: 150px;
    height: 150px;
    font-size: 35px;
    line-height: 42px;
    border: 6px solid #171a20;
  }
}

.revolution__anotacion {
  margin-top: 37px;
  font-size: 18px;
  line-height: 22px;
}

.revolution__anotacion--maxw274 {
  max-width: 274px;
}

.revolution__anotacion--maxw305 {
  max-width: 305px;
}

@media (max-width: 1024px) {
  .revolution__anotacion {
    margin-top: 20px;
    font-size: 14px;
    line-height: 16px;
  }
}

.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(../fonts/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(../fonts/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 #e9463b;
  border-radius: 6px;
  background: #e9463b;
  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(../fonts/arrow-prev.svg);
  }

  .why-to-invest__list .slick-arrow.slick-next {
    background: no-repeat 0 0/100% url(../fonts/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(../fonts/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(../fonts/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;
}

.video {
  position: relative;
  align-items: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: #171a20 no-repeat url(../images/video-bcg.jpg);
}

@media (max-width: 1024px) {
  .video {
    min-height: 208px;
    background-size: cover;
  }
}

.video__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 130px;
  border: 0;
  border-radius: 50%;
  background: 0 0;
}

@media (max-width: 1024px) {
  .video__play-btn {
    top: 40%;
    width: 72px;
    height: 72px;
  }
}

.smartphone {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 800px;
  padding-top: 100px;
  color: #fefdfb;
  background: #141414 no-repeat url(../images/phone-bcg.png);
  background-size: cover;
}

@media (max-width: 1024px) {
  .smartphone {
    padding: 40px;
    background: 50% #141414 no-repeat url(../images/line.png);
    min-height: auto;
  }
}

.smartphone-slider {
  display: none;
}

@media (max-width: 1024px) {
  .smartphone-slider {
    flex-grow: 1;
    display: block;
  }

  .smartphone .slick-arrow {
    z-index: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0;
    border: none;
    width: 14px;
    height: 27px;
  }

  .smartphone .slick-arrow.slick-prev {
    left: 5px;
    background: no-repeat 0 0 / 100% url(../fonts/arrow-prev.svg);
  }

  .smartphone .slick-arrow.slick-next {
    background: no-repeat 0 0 / 100% url(../fonts/arrow-next.svg);
    right: 5px;
  }

  .smartphone__phone1 {
    height: 600px;
    background-image: no-repeat 50% 50px url(../images/phone1.png);
    background-size: auto;
  }

  .smartphone__phone2 {
    height: 600px;
    background-image: url(../images/phone2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50px;
  }

  .smartphone__phone3 {
    height: 600px;
    background-image: no-repeat 50% 50px url(../images/phone3.png);
    background-size: auto;
  }
}

.smartphone__text-wrapper {
  max-width: 665px;
}

.smartphone__heading {
  margin-bottom: 14px;
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
}

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

.smartphone__about {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 22px;
}

.smartphone__about span {
  color: #e9463b;
}

@media (max-width: 1024px) {
  .smartphone__about {
    margin-bottom: 40px;
    font-size: 14px;
    line-height: 16px;
  }
}

.smartphone__action {
  margin-bottom: 30px;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .smartphone__action {
    display: none;
  }
}

.smartphone__platform-list {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
  column-gap: 20px;
  color: #fff;
}

@media (max-width: 1024px) {
  .smartphone__platform-list {
    row-gap: 17px;
    justify-content: space-around;
  }
}

.smartphone__platform-item {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  min-height: 56px;
  max-width: 189px;
  font-family: "Inter", "Arial", sans-serif;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid #efeff1;
  border-radius: 15px;
}

.smartphone__platform-item a {
  -moz-column-gap: 10px;
  column-gap: 10px;
  padding: 6px 10px 6px 24px;
}

.smartphone__platform-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid #efeff1;
  box-shadow: 0 2px 30px rgba(243, 243, 236, 0.6);
}

.smartphone__platform-item:active {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid #efeff1;
}

@media (max-width: 1024px) {
  .smartphone__platform-item {
    max-width: 155px;
    min-height: 55px;
    font-size: 14px;
    line-height: 17px;
  }
}

.benefits {
  position: relative;
}

.benefits__header-wrapper {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  padding: 15px;
}

@media (max-width: 1024px) {
  .benefits__header-wrapper {
    min-height: 140px;
  }
}

.benefits__heading {
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
}

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

.benefits__list__wrapper {
  min-height: 370px;
  padding: 0 30px;
  color: #fff;
  background: linear-gradient(180deg, #121210 0, #272727 100%);
}

@media (max-width: 1024px) {
  .benefits__list__wrapper {
    margin-left: 40px;
    padding: 40px 30px;
    border-radius: 15px 0 0 15px;
  }
}

.benefits__list {
  display: flex;
  justify-content: space-around;
}

@media (max-width: 1024px) {
  .benefits__list {
    flex-direction: column;
  }
}

.benefits__list__item {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 285px;
  min-height: 215px;
  margin-top: 68px;
  padding: 50px 12px;
  background: linear-gradient(90deg,
      rgba(92, 92, 88, 0) 0,
      rgba(200, 201, 201, 0.052) 100%);
  filter: drop-shadow(4px 4px 15px rgba(0, 0, 0, 0.25));
  border-radius: 15px;
}

@media (max-width: 1024px) {
  .benefits__list__item {
    min-height: unset;
    margin-top: 18px;
    padding: 10px;
  }

  .benefits__list__item:first-child {
    margin-top: 0;
  }
}

.benefits__img-wrapper {
  position: absolute;
  top: -43%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #4a4a4a;
}

@media (max-width: 1024px) {
  .benefits__img-wrapper {
    top: 50%;
    left: -19%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
  }

  .benefits__icon {
    width: 39px;
    height: 39px;
  }
}

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

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

.benefits__about {
  font-size: 18px;
}

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

.benefits__extra-img {
  position: absolute;
  right: 450px;
  bottom: 40px;
}

.why-to-invest {
  display: flex;
  flex-direction: column;
  padding: 50px 10px;
}

@media (max-width: 1024px) {
  .why-to-invest {
    padding: 40px 15px 10px;
  }
}

.why-to-invest__heading {
  margin: 0 260px 20px;
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
}

@media (max-width: 1024px) {
  .why-to-invest__heading {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 26px;
  }
}

.why-to-invest__list {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.why-to-invest__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 350px;
  margin: 0 60px;
  padding-top: 40px;
}

.why-to-invest__item .why-to-invest__item-more {
  display: none;
}

.why-to-invest__item--active .why-to-invest__item-more {
  position: absolute;
  top: 7%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 380px;
  min-height: 200px;
  padding: 43px 15px;
  background: rgba(46, 45, 46, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
}

@media (max-width: 1024px) {
  .why-to-invest__item--active .why-to-invest__item-more {
    top: 44px;
    padding: 30px 15px;
    width: calc(100% + 40px);
    min-height: unset;
  }

  .why-to-invest__item {
    position: relative;
  }
}

.why-to-invest__item-more-btn {
  display: none;
}

@media (max-width: 1024px) {
  .why-to-invest__item-more-btn {
    z-index: 1;
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    fill: none;
    cursor: pointer;
  }

  .why-to-invest__item-more-btn:hover {
    opacity: 0.8;
  }

  .why-to-invest__item-more-btn:active {
    opacity: 0.6;
  }
}

.why-to-invest__portret-wrapper {
  box-sizing: border-box;
  overflow: hidden;
  width: 280px;
  height: 280px;
  margin-bottom: 12px;
  border-radius: 50%;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

@media (max-width: 1024px) {
  .why-to-invest__portret-wrapper {
    width: 240px;
    height: 240px;
    filter: unset;
  }
}

.why-to-invest__portret {
  scale: 1.26;
  border-radius: 50%;
}

.why-to-invest__quote {
  align-self: flex-start;
  margin: 12px 0;
  font-size: 23px;
  line-height: 28px;
}

@media (max-width: 1024px) {
  .why-to-invest__quote {
    font-size: 18px;
    line-height: 22px;
  }
}

.why-to-invest__cite {
  font-style: normal;
  font-size: 20px;
  line-height: 24px;
}

@media (max-width: 1024px) {
  .why-to-invest__cite {
    font-size: 18px;
    line-height: 22px;
  }
}

.why-to-invest__about {
  color: #fff;
  font-size: 20px;
  line-height: 24px;
}

@media (max-width: 1024px) {
  .why-to-invest__about {
    font-size: 18px;
    line-height: 22px;
  }
}

.rewiews {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 40px 20px;
  color: #fefdfb;
  background: radial-gradient(78.62% 78.62% at 50% 21.37%,
      #353536 0,
      #141312 100%);
}

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

.rewiews__heading {
  max-width: 840px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 40px;
  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;
  }
}

.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: rgba(84, 84, 84, 0.6);
  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;
  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;
}

.action {
  box-sizing: border-box;
  display: flex;
  min-height: 800px;
  padding: 85px;
  display: flex;
  justify-content: flex-end;
  background: #141414 no-repeat url(../images/action-bcg.png);
}

.action .form {
  align-self: flex-end;
  margin-bottom: 115px;
  margin-left: auto;
  max-width: 411px;
}

@media (max-width: 1024px) {
  .action {
    min-height: 812px;
    padding: 15px;
    background: #141414 no-repeat url(../images/action-bcg-mob.png);
  }

  .action .form{
    margin: 0 auto;
  }
}


@media (max-width: 1024px) {
  .action .form {
    align-self: flex-start;
    width: 100%;
  }
}

._link {
  background: transparent;
  color: inherit;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.btn__link-two {
  display: flex;
  align-items: center;
  gap: 5px;
}