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

:focus,
:active {
  outline: none;
}

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

a {
  text-decoration: none;
}

body {
  -webkit-box-sizing: border-box;
  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;
}

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;
}

:root {
  --base: #0372E5;
  --white: #FFFFFF;
  --black: #020D1B;
  --orange: #F46B25;
  --gray: #333;
  --light-gray: #737373;
  --padding: 50px;
  --bg: #F5F7F9;
}

body {
  background-color: var(--bg);
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  line-height: 150%;
  padding-top: 100px;
}

.wrapper {
  min-height: 100vh;
  overflow: hidden;
}

section {
  margin-top: 100px;
}

h1,
h2,
h3 {
  line-height: normal;
  margin-bottom: 20px;
}

h1 {
  font-size: 60px;
  font-weight: 800;
}

h2 {
  font-size: 50px;
  font-weight: 700;
  color: var(--black);
}

h3 {
  font-size: 36px;
  font-weight: 700;
}

b {
  font-weight: 700;
}

p {
  margin-bottom: 15px;
}

p:last-child {
  margin-bottom: 0;
}

li {
  margin-bottom: 15px;
}

li:last-child {
  margin-bottom: 0;
}

h2 .orange,
.title .orange {
  color: var(--orange);
}

h2 .blue,
.title .blue {
  color: var(--base);
}

img {
  display: block;
}

.container {
  max-width: 1430px;
  padding: 0 15px;
  margin: 0 auto;
}

.box-shadow {
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  background: #FFF;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}

.text-center {
  text-align: center;
}

.btn {
  border-radius: 8px;
  -webkit-box-shadow: 0px 3px 10px 0px rgba(46, 115, 196, 0.25);
  box-shadow: 0px 3px 10px 0px rgba(46, 115, 196, 0.25);
  font-size: 20px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 30px;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}

.btn.btn--blue {
  background-color: var(--base);
  color: var(--white);
}

@media (any-hover: hover) {
  .btn.btn--blue:hover {
    background: #1485FB;
  }
}

.btn.btn--blue:active {
  background: #016EDE;
}

.btn.btn--center {
  margin: 50px auto 0 auto;
  width: 300px;
  height: 64px;
}

@media (max-width: 1320px) {
  h2 {
    font-size: 40px;
  }

  body {
    font-size: 16px;
  }

  section {
    margin-top: 80px;
  }

  h3 {
    font-size: 24px;
  }

  .container {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .btn {
    padding: 8px 15px;
    font-size: 12px;
  }

  body {
    padding-top: 83px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 22px;
  }

  .btn.btn--center {
    margin-top: 30px;
    font-size: 20px;
  }

  section {
    margin-top: 60px;
  }
}

.header {
  background: #FFF;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  padding: 25px 0;
  z-index: 100;
  -webkit-transition: padding 0.3s ease-in-out;
  transition: padding 0.3s ease-in-out;
}

.header.header-scroll {
  padding: 10px 0;
}

.header__top-text {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 5px;
  color: var(--black);
  text-align: center;
  font-size: 8px;
  font-weight: 400;
  opacity: 0.5;
}

.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 227px;
}

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

.lang-wrap {
  margin-left: auto;
  width: 125px;
  height: 35px;
  margin-right: 50px;
  position: relative;
  color: var(--Black);
  font-size: 18px;
  font-weight: 500;
}

.lang-wrap a {
  color: var(--Black);
}

.lang-wrap .lang {
  width: calc(100% + 2px);
  border-radius: 5px;
  border: 2px solid var(--base);
  position: absolute;
  top: -2px;
  left: 0;
  background: var(--white);
}

.lang-wrap .lang.active .lang__active::after {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.lang-wrap .lang__active {
  width: 125px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.lang-wrap .lang__active::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath stroke='%23020D1B' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m1 1 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  width: 14px;
  height: 8px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.lang-wrap .lang__list {
  padding: 10px 10px 15px 15px;
  display: none;
}

.lang-wrap .lang__list li {
  margin-bottom: 10px;
}

.lang-wrap .lang__list li:last-child {
  margin-bottom: 0;
}

@media (any-hover: hover) {
  .lang-wrap .lang__list a:hover {
    font-weight: 700;
  }
}

.burger {
  height: 16px;
  width: 34px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 350;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: none;
  position: relative;
}

.burger span {
  position: absolute;
  background: #2c39b9;
  height: 3px;
  width: 34px;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 5px;
}

.burger span:nth-child(1) {
  top: 16px;
}

.burger span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.burger span:nth-child(3) {
  bottom: 16px;
}

.burger.active span:nth-child(1) {
  top: 6px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  bottom: 7px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media (max-width: 767px) {
  .logo {
    width: 150px;
  }

  .header__top-text {
    top: -3px;
  }

  .header__wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .header {
    padding-bottom: 15px;
  }

  .header.header-scroll {
    padding-top: 25px;
  }

  .lang-wrap {
    display: none;
  }
}

.form__item {
  width: 100%;
  position: relative;
  border-radius: 20px;
  border-radius: 20px;
  background: rgba(245, 247, 249, 0.7);
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
  max-width: 666px;
  padding: 50px;
}

.preloader {
  display: none;
  background: white;
  position: absolute;
  top: 0%;
  bottom: 0;
  left: 0%;
  right: 0;
  z-index: 9995;
  background-image: url(../images/preloader.gif);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  opacity: 0.5;
  border-radius: 20px;
}

.form__title {
  text-align: center;
  margin-bottom: 30px;
}

.form__content {
  margin-bottom: 30px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.form__row .form__input-wrapper {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

.form__input-wrapper {
  width: 100%;
  position: relative;
}

.form__input {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--Black, #020D1B);
  padding: 20px;
  color: var(--Black, #020D1B);
  font-size: 18px;
  line-height: normal;
}

.form__input::-webkit-input-placeholder {
  color: var(--Black, #020D1B);
  font-size: 18px;
  line-height: normal;
}

.form__input::-moz-placeholder {
  color: var(--Black, #020D1B);
  font-size: 18px;
  line-height: normal;
}

.form__input:-ms-input-placeholder {
  color: var(--Black, #020D1B);
  font-size: 18px;
  line-height: normal;
}

.form__input::-ms-input-placeholder {
  color: var(--Black, #020D1B);
  font-size: 18px;
  line-height: normal;
}

.form__input::placeholder {
  color: var(--Black, #020D1B);
  font-size: 18px;
  line-height: normal;
}

.form__input.error {
  border: 1px solid #FF2633;
  background: rgba(255, 38, 51, 0.2);
}

label.error {
  position: absolute;
  z-index: 2;
  top: calc(100% - 11px);
  left: 0px;
  width: 100%;
  max-width: 500px;
  background: #FF2633;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 900;
  font-size: 14px;
  line-height: 18px;
  color: #FFF;
  padding: 7px 12px;
}

label.error::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 15px;
  height: 15px;
  background: #FF2633;
  border-radius: 2px;
  -webkit-transform: translateZ(-1px) rotate(45deg);
  transform: translateZ(-1px) rotate(45deg);
  top: -6px;
  left: 10px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.form__input.valid {
  border: 1px solid #84E4A4;
  background: rgba(132, 228, 164, 0.2);
}

.intl-tel-input .selected-flag {
  padding: 20px 8px 20px 20px !important;
}

.selected-flag-line {
  position: absolute;
  right: 0;
  width: 1px;
  height: calc(100% - 40px);
  background-color: #000000;
}

.form__submit {
  width: 100%;
}

.form__description {
  margin-top: 30px;
  color: #020D1B;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.checkbox input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 25px;
  min-width: 25px;
  height: 25px;
  border: 1px solid #000;
  position: relative;
  border-radius: 2px;
  cursor: pointer;
}

.checkbox input::before {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='11' fill='none'%3E%3Cpath fill='%23fff' d='m13 1-8.25 9L1 5.91'/%3E%3Cpath stroke='%23020D1B' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m13 1-8.25 9L1 5.91'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.checkbox input:checked {
  background-color: #FFF;
}

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

.form__btn {
  width: 100%;
  margin-top: 30px;
  height: 64px;
}

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

  .form__title {
    margin-bottom: 20px;
  }

  .form__content {
    row-gap: 20px;
    margin-bottom: 20px;
  }

  .form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .form__input {
    font-size: 16px;
  }

  .form__input::-webkit-input-placeholder {
    font-size: 16px;
  }

  .form__input::-moz-placeholder {
    font-size: 16px;
  }

  .form__input:-ms-input-placeholder {
    font-size: 16px;
  }

  .form__input::-ms-input-placeholder {
    font-size: 16px;
  }

  .form__input::placeholder {
    font-size: 16px;
  }
}

.promo {
  position: relative;
  padding: 100px 0;
  margin-top: 0;
}

.promo__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}

.promo__content {
  max-width: 685px;
}

.promo__form {
  min-width: 650px;
}

.promo__title {
  color: var(--white);
  font-weight: 800;
  font-size: 60px;
}

.promo__text {
  color: var(--white);
  font-size: 22px;
  font-weight: 500;
  margin-top: 15px;
}

@media (max-width: 1320px) {
  .promo__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .promo__content {
    max-width: 100%;
    text-align: center;
  }

  .promo__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .promo {
    padding: 80px 0;
  }

  .promo__title {
    font-size: 50px;
  }

  .promo__text {
    font-size: 20px;
  }
}

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

  .promo {
    padding: 60px 0;
  }

  .promo__text {
    font-size: 16px;
  }

  .promo__form {
    min-width: 100%;
  }

  .form__btn {
    font-size: 20px;
  }
}

.news-slider {
  padding: 20px 0;
  background-color: var(--white);
}

.news-slider .swiper-slide {
  color: var(--gray);
  font-family: Merriweather;
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
  padding: 0 15px;
}

@media (any-hover: hover) {
  .news-slider .swiper-slide:hover div {
    text-shadow: 0.5px 0 0 currentColor;
  }
}

.news-slider .swiper-slide span {
  color: var(--light-gray);
  font-size: 12px;
  display: block;
  font-family: Montserrat;
  font-weight: 400;
  margin-bottom: 5px;
}

.news-slider .swiper-slide div {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow-y: hidden;
  -webkit-transition: text-shadow 0.3s ease-in-out;
  transition: text-shadow 0.3s ease-in-out;
}

.news-slider__wrapper {
  position: relative;
  padding: 0 50px;
}

.news-slider__wrapper::before {
  position: absolute;
  content: "";
  background: -webkit-gradient(linear, right top, left top, from(#FFF), color-stop(97.06%, rgba(255, 255, 255, 0)));
  background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0) 97.06%);
  width: 100px;
  height: 100%;
  right: 50px;
  z-index: 2;
}

.swiper-button-next,
.swiper-button-prev {
  border-radius: 18px;
  opacity: 0.7;
  background: rgba(51, 51, 51, 0.4);
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}

@media (any-hover: hover) {

  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background: rgba(51, 51, 51, 0.8);
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 0;
  width: 16px;
  height: 16px;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-next::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' fill='none'%3E%3Cpath fill='%23fff' d='m8.4 4.767 3.067 3.066H2v1.334h9.467L8.4 12.233l.933.934L14 8.5 9.333 3.833l-.933.934Z'/%3E%3C/svg%3E");
}

.swiper-button-prev {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  left: 0;
}

.swiper-button-prev::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' fill='none'%3E%3Cpath fill='%23fff' d='m8.4 4.767 3.067 3.066H2v1.334h9.467L8.4 12.233l.933.934L14 8.5 9.333 3.833l-.933.934Z'/%3E%3C/svg%3E");
}

@media (max-width: 767px) {
  .news-slider__wrapper {
    padding: 0;
    width: calc(100% + 10px);
    margin-left: -10px;
  }

  .news-slider__wrapper .swiper-button-next,
  .news-slider__wrapper .swiper-button-prev {
    display: none;
  }

  .news-slider__wrapper::before {
    right: 0;
  }

  .news-slider .swiper-slide {
    font-size: 12px;
    padding: 0 10px;
  }

  .news-slider {
    padding: 15px 0;
  }

  .news-slider .swiper-slide span {
    font-size: 10px;
    margin-bottom: 0;
  }
}

.about__wrapper {
  padding: var(--padding);
}

.about__top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.about__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.about__left h2 {
  margin-bottom: 0;
}

.about__right img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.about__bottom {
  margin-top: 30px;
}

@media (max-width: 1320px) {
  .about__top {
    grid-template-columns: 1fr;
  }

  .about__left {
    gap: 20px;
  }
}

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

.invest__title {
  max-width: 1162px;
  margin: 0 auto;
}

.invest__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  gap: 32px;
}

.invest__imeges {
  width: 565px;
  min-width: 565px;
  position: relative;
}

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

.invest__img {
  position: absolute;
  -webkit-transition: all 0.4s cubic-bezier(0.55, 1.17, 0.58, 1.47);
  transition: all 0.4s cubic-bezier(0.55, 1.17, 0.58, 1.47);
}

.invest__img--back {
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
  right: 160px;
  top: 18px;
  z-index: -1;
  height: 560px;
}

.invest__img--front {
  right: 0;
}

.invest__bottom {
  font-size: 24px;
  line-height: 150%;
  margin-top: 30px;
}

@media (max-width: 1320px) {
  .invest__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .invest__imeges {
    height: 629.384px;
    margin: 0 auto;
    min-width: 540px;
    width: 540px;
  }

  .invest__bottom {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .invest__imeges {
    height: 340px;
    min-width: unset;
    width: 270px;
  }

  .invest__img--back {
    right: 90px;
    top: 20px;
    height: 310px;
  }

  .invest__bottom {
    font-size: 20px;
  }

  .scam {
    padding: 60px 0;
    margin-top: 60px;
  }
}

.partners {
  padding: 30px 0;
  background-color: var(--white);
}

.partners .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.partners .swiper-slide {
  margin-bottom: 0;
  height: auto;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.partners .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.reviews__subtitle {
  text-align: center;
}

.reviews__wrapper {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.reviews-item {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

@media (any-hover: hover) {
  .reviews-item:hover {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }
}

.reviews-item__left {
  width: 190px;
  min-width: 190px;
}

.reviews-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.reviews-item__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}

.reviews-item__name {
  font-size: 20px;
  font-weight: 700;
  margin-right: 5px;
  padding-right: 5px;
  position: relative;
}

.reviews-item__name::before {
  position: absolute;
  content: "";
  border-right: 1px solid rgba(2, 13, 27, 0.1843137255);
  right: 0;
  height: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.reviews-item__year {
  font-size: 16px;
}

.reviews-item__text {
  font-size: 16px;
  line-height: 130%;
}

.reviews-item__text p {
  opacity: 0.8;
}

.reviews-item__text h3 {
  font-size: 24px;
}

@media (max-width: 1320px) {
  .reviews__wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .reviews-item {
    -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;
    text-align: center;
    padding: 30px 20px;
  }

  .reviews-item__info {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .reviews-item__img {
    height: 118px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .reviews-item__img img {
    width: unset;
  }

  .reviews-item__text h3 {
    font-size: 20px;
  }

  .reviews-item__text {
    font-size: 14px;
  }
}

.faq {
  margin-bottom: 100px;
}

.faq__wrapper {
  margin-top: 50px;
}

.faq__item {
  background: #FFF;
  border-bottom: 1px solid rgba(2, 13, 27, 0.0862745098);
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__item--title {
  font-size: 24px;
  font-weight: 700;
  padding: 50px 130px 50px 50px;
  position: relative;
  cursor: pointer;
}

.faq__item--title.active::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.faq__item--title::before {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' fill='none'%3E%3Crect width='48' height='48' y='.002' fill='%230372E5' rx='24'/%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M25 17.002h-2v6h-6v2h6v6h2v-6h6v-2h-6v-6Z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  width: 48px;
  height: 48px;
  right: 50px;
  /* top: 38px; */
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.faq__item--descr {
  margin-top: 24px;
  padding: 0 130px 50px 50px;
  display: none;
}

@media (max-width: 767px) {
  .faq__item--title {
    padding: 30px 90px 30px 20px;
    font-size: 18px;
  }

  .faq__item--title::before {
    right: 20px;
  }

  .faq__item--descr {
    margin-top: 0;
    padding: 0 20px 30px 20px;
  }
}

.scam {
  padding: 100px 0;
  position: relative;
}

.scam__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  -o-object-fit: cover;
  object-fit: cover;
}

.scam__title {
  color: #fff;
}

.scam__wrapper {
  margin-top: 50px;
}

.scam__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  gap: 30px;
}

.scam__item:last-child {
  margin-bottom: 0;
}

@media (min-width: 1320px) {
  .scam__item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

.scam__item--text,
.scam__item--img {
  width: calc(50% - 15px);
}

.scam__item--text {
  color: #fff;
  font-weight: 700;
}

.scam__item--img {
  border-radius: 20px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

@media (max-width: 1320px) {
  .scam {
    padding: 80px 0;
  }

  .scam__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .scam__item--text,
  .scam__item--img {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .scam__item--img img {
    width: 100%;
  }
}

.secure {
  padding: 100px 0;
  background-color: var(--white);
}

.secure__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
}

.secure__img {
  width: 825px;
  min-width: 825px;
  margin-left: -260px;
}

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

@media (max-width: 1320px) {
  .secure__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .secure__img {
    width: auto;
    min-width: unset;
    margin: 0 -15px;
  }

  .secure {
    padding-top: 0;
    padding-bottom: 50px;
  }
}

.steps__title {
  max-width: 1162px;
  margin: 0 auto;
}

.steps__line {
  margin-top: 110px;
  position: relative;
  height: 1px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 95px;
}

.steps__line::before {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1180' height='2' fill='none'%3E%3Cpath stroke='url(%23a)' stroke-width='2' d='M1180 1H0'/%3E%3Cdefs%3E%3ClinearGradient id='a' x1='1180' x2='0' y1='0' y2='.046' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F46B25' stop-opacity='0'/%3E%3Cstop offset='.5' stop-color='%23F46B25'/%3E%3Cstop offset='1' stop-color='%23F46B25' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 2px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.steps__wrapper {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 95px;
}

.steps__col {
  text-align: center;
  padding-top: 20px;
  cursor: pointer;
  opacity: 0.4;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  max-width: 330px;
  margin: 0 auto;
}

.steps__col.active {
  opacity: 1;
}

.steps__col .steps__col--top {
  display: none;
}

.steps__col--top {
  color: var(--orange);
  font-size: 28px;
  text-transform: capitalize;
  margin-bottom: 100px;
  position: relative;
  padding-bottom: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: -55px;
}

.steps__col--top::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background-color: var(--orange);
  border-radius: 50%;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.steps__col--img {
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.steps__col--text {
  margin-top: 30px;
}

.steps__col--text h3 {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

@media (max-width: 1320px) {
  .steps__wrapper {
    grid-template-columns: 1fr;
    margin-top: 80px;
  }

  .steps__line {
    display: none;
  }

  .steps__col {
    opacity: 1;
    max-width: 390px;
  }

  .steps__col--img {
    height: unset;
  }

  .steps__col .steps__col--top {
    display: block;
    margin-bottom: 40px;
    position: relative;
  }

  .steps__col .steps__col--top::after {
    content: "";
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1180' height='2' fill='none'%3E%3Cpath stroke='url(%23a)' stroke-width='2' d='M1180 1H0'/%3E%3Cdefs%3E%3ClinearGradient id='a' x1='1180' x2='0' y1='0' y2='.046' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F46B25' stop-opacity='0'/%3E%3Cstop offset='.5' stop-color='%23F46B25'/%3E%3Cstop offset='1' stop-color='%23F46B25' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 730px;
    height: 2px;
    left: 50%;
    top: 87%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 767px) {
  .steps__col--top {
    font-size: 20px;
  }

  .steps__col--top::after {
    width: 386px;
  }

  .steps__wrapper {
    gap: 75px;
  }
}

.understand__top {
  margin-top: 50px;
  border-radius: 20px;
  overflow: hidden;
}

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

.understand__top--text {
  padding: 30px;
}

.understand__cols {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.understand__col {
  padding: 30px;
}

.understand__col--icon {
  border-radius: 8px;
  width: 80px;
  height: 80px;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--orange);
}

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

.understand__col--text {
  margin-top: 20px;
}

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

  .understand__cols {
    grid-template-columns: 1fr;
  }

  .understand__col--icon {
    width: 60px;
    height: 60px;
  }
}

.footer {
  padding: 100px 0;
  background: #FFF;
}

.footer__top {
  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;
}

.soc-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.soc-wrap a {
  border-radius: 8.471px;
  background-color: var(--base);
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .soc-wrap a:hover {
    opacity: 0.7;
  }
}

.footer__text {
  margin-top: 30px;
  opacity: 0.5;
  font-size: 12px;
  line-height: 150%;
}

.nav {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(2, 13, 27, 0.2);
}

.nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 40px;
}

.nav ul li {
  margin-bottom: 0;
}

.nav ul a {
  font-size: 16px;
  font-weight: 700;
  opacity: 0.5;
  color: var(--black);
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .nav ul a:hover {
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }

  .footer .logo {
    width: 227px;
  }

  .footer {
    padding: 60px 0;
  }

  .footer__text {
    text-align: center;
  }

  .nav ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 20px;
  }
}

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