@charset "UTF-8";

:root {
  --color-white: #fff;
  --color-white-100: #f3fafe;
  --color-black: #000;
  --color-blue: #005fbb;
  --color-blue-100: #2483df;
  --color-red: #a00b20;
  --color-green: #52a155;
  --color-yellow: #ffb229;
  --color-gray: #e9e9e9;
  --transition-normal: all 0.3s ease 0s;
  --radius: 20px;
  --block-margin: 100px;
  --gutter: 20px;
}

/*Обнуление*/

* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

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

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

html,
body {
  height: 100%;
  width: 100%;
  min-width: 360px;
}

input,
button,
textarea {
  font-family: inherit;
}

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

button {
  cursor: pointer;
}

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

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

a:hover {
  text-decoration: none;
  cursor: pointer;
}

img {
  vertical-align: top;
}

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

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

ol,
ul {
  padding-left: 19px;
}

/*Обнуление*/

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

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

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Light.woff2") format("woff2"), url("../fonts/Manrope-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-SemiBold.woff2") format("woff2"), url("../fonts/Manrope-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

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

body {
  color: var(--color-black);
  font-size: 16px;
  line-height: normal;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  zoom: 0.75;
}

body.inner {
  zoom: normal;
}

body.lock {
  overflow: hidden;
}

.container {
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  margin: 0 auto;
  max-width: 1480px;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: clip;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 20px;
}

/* плавное изменение прозрачности  placeholder-а при фокусе */

input::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #b5b5b5;
}

input::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #b5b5b5;
}

input:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #b5b5b5;
}

input:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #b5b5b5;
}

input:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #b5b5b5;
}

input:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #b5b5b5;
}

input:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #b5b5b5;
}

input:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #b5b5b5;
}

textarea::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #b5b5b5;
}

textarea::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #b5b5b5;
}

textarea:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #b5b5b5;
}

textarea:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #b5b5b5;
}

textarea:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #b5b5b5;
}

textarea:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #b5b5b5;
}

textarea:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #b5b5b5;
}

textarea:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  color: #b5b5b5;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-bottom: var(--block-margin);
}

.main:before {
  content: "";
  display: block;
  width: calc(100% - 40px);
  height: 950px;
  border-radius: 30px;
  background: rgba(135, 223, 255, 0.05);
  position: absolute;
  left: 20px;
  top: 20px;
  pointer-events: none;
}

.main .container {
  position: relative;
  z-index: 3;
}

h2 {
  color: inherit;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  color: inherit;
  font-size: 40px;
  font-weight: 600;
  line-height: 150%;
}

.block-margin {
  margin-top: var(--block-margin);
  margin-bottom: var(--block-margin);
}

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

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

.offset-block {
  margin-left: calc(((100vw - 1480px) / 2 + 30px + ((100vw / 3) / 2)) * -1);
  margin-right: calc(((100vw - 1480px) / 2 + 30px + ((100vw / 3) / 2)) * -1);
  padding-left: calc((100vw - 1480px) / 2 + 30px + ((100vw / 3) / 2));
  padding-right: calc((100vw - 1480px) / 2 + 30px + ((100vw / 3) / 2));
}

.footer {
  background: var(--color-white-100);
  padding-top: 65px;
  padding-bottom: 65px;
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 calc((var(--gutter) / 2) * -1);
}

.footer__left {
  padding: 0 calc(var(--gutter) / 2);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 5px;
}

.footer__box {
  padding-left: 50px;
}

.footer__logo {
  width: 209px;
}

.footer__logo img {
  max-width: 100%;
}

.footer__copy {
  text-align: center;
  color: var(--color-black);
  font-size: 14px;
  font-weight: 300;
  margin-top: 36px;
}

.footer__center {
  padding: 0 calc(var(--gutter) / 2);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
}

.footer__right {
  padding: 0 calc(var(--gutter) / 2);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 5px;
}

.footer__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 30px;
}

.footer__block .btn {
  min-width: 220px;
  height: 44px;
  font-size: 16px;
}

.footer__info {
  padding: 0 calc(var(--gutter) / 2);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin-top: 25px;
}

.footer__text {
  border-top: 1px solid #d2dce2;
  border-bottom: 1px solid #d2dce2;
  color: var(--color-black);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.875;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer__bottom {
  padding: 0 calc(var(--gutter) / 2);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin-top: 30px;
}

.footer__bottom-links {
  display: grid;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.footer__bottom-link {
  color: #636f77;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.footer-menu {
  padding: 0;
  list-style: none;
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.footer-menu li {
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid-column;
}

.footer-menu li:not(:last-child) {
  margin-bottom: 30px;
}

.footer-menu li a {
  color: var(--color-black);
  font-size: 18px;
  line-height: 1;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  height: 50px;
  padding: 10px 20px;
  color: var(--color-white);
  font-size: 18px;
  line-height: 150%;
  background: var(--color-blue);
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
  border-radius: 100px;
  cursor: pointer;
}

.btn svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  max-width: 100%;
  height: 24px;
  fill: currentColor;
}

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

.btn.btn-yellow {
  background: #f3ba2f;
  color: var(--color-white);
}

.btn.btn-black {
  background: #263238;
  color: var(--color-white);
}

.btn.btn-outline-blue {
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
  background: transparent;
}

.btn.btn-light-blue {
  color: var(--color-black);
  background: #cff2ff;
}

.social-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}

.social-block__item {
  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;
  cursor: pointer;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.social-block__item img {
  width: 30px;
  height: 30px;
}

.block-bottom__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: calc((var(--gutter) / 2) * -1);
}

.block-bottom__col {
  padding: calc(var(--gutter) / 2);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
}

.block-bottom__col:nth-child(2) .block-bottom__text {
  max-width: 365px;
}

.block-bottom__item {
  background: var(--color-white-100);
  border-radius: var(--radius);
  padding: 36px 50px 36px;
  height: 100%;
}

.block-bottom__title {
  color: var(--color-black);
  font-size: 40px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 18px;
}

.block-bottom__text {
  color: var(--color-black);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 35px;
}

.block-bottom__btn .btn {
  min-width: 230px;
}

.block-bottom__img {
  margin-top: 30px;
  text-align: center;
}

.block-bottom__img img {
  max-width: 100%;
}

.faq-block__title {
  margin-bottom: 26px;
  text-align: center;
}

.faq-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: calc((var(--gutter) / 2) * -1);
}

.faq-block__left {
  padding: calc(var(--gutter) / 2);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
}

.faq-block__item {
  border: 1px solid transparent;
  border-radius: 10px;
}

.faq-block__item:not(:last-child) {
  margin-bottom: 8px;
}

.faq-block__item.active {
  border: 1px solid #d9d9d9;
  background: var(--color-white);
}

.faq-block__item.active .faq-block__top {
  background: transparent;
}

.faq-block__item.active .faq-block__arrow svg {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.faq-block__top {
  border-radius: 10px;
  background: var(--color-white-100);
  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;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  padding: 10px 30px;
  min-height: 75px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.faq-block__heading {
  color: var(--color-black);
  font-size: 20px;
  font-weight: 600;
}

.faq-block__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 30px;
  max-width: 100%;
  height: 30px;
  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;
  color: inherit;
}

.faq-block__arrow svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.faq-block__body {
  display: none;
  padding: 0 30px 51px;
  margin-top: -8px;
}

.faq-block__body.active {
  display: block;
}

.faq-block__text {
  color: #263238;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875;
}

.faq-block__right {
  padding: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
}

.block-icons {
  border-radius: var(--radius);
  border: 1px solid var(--color-blue);
  background: var(--color-white-100);
  padding: 21px 40px;
}

.block-icons__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -20px;
}

.block-icons__col {
  padding: 0 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  max-width: 100%;
}

.block-icons__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  min-height: 99px;
}

.block-icons__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 52px;
  max-width: 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;
}

.block-icons__icon img,
.block-icons__icon svg {
  width: 52px;
  height: 52px;
}

.block-icons__text {
  color: var(--color-blue);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.33333;
}

.affiliate-program__title {
  color: var(--color-black);
  text-align: center;
  margin-bottom: 10px;
}

.affiliate-program__subtitle {
  text-align: center;
  margin-bottom: 47px;
  color: var(--color-black);
  font-size: 24px;
  font-weight: 300;
}

.affiliate-program__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: calc((var(--gutter) / 2) * -1);
}

.affiliate-program__col {
  padding: calc(var(--gutter) / 2);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
}

.affiliate-program__col:nth-child(1) .affiliate-program__img {
  margin-top: -66px;
}

.affiliate-program__col:nth-child(2) .affiliate-program__heading {
  margin-bottom: 25px;
}

.affiliate-program__col:nth-child(2) .affiliate-program__btn {
  margin-top: 66px;
}

.affiliate-program__col:nth-child(2) .affiliate-program__img {
  margin-top: 15px;
  position: relative;
}

.affiliate-program__col:nth-child(2) .affiliate-program__img:before {
  content: "";
  display: block;
  width: 756px;
  height: 756px;
  border-radius: 756px;
  background: rgba(83, 209, 255, 0.7);
  -webkit-filter: blur(72px);
          filter: blur(72px);
  position: absolute;
  top: -137px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.affiliate-program__col:nth-child(2) .affiliate-program__img img {
  position: relative;
  z-index: 2;
}

.affiliate-program__item {
  border-radius: var(--radius);
  background: rgba(226, 244, 251, 0.4);
  color: var(--color-black);
  padding: 40px 50px 18px;
  height: 100%;
  overflow: hidden;
}

.affiliate-program__item.inner {
  background: var(--color-blue);
  color: var(--color-white);
  padding: 40px 50px 55px;
}

.affiliate-program__heading {
  color: inherit;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.38889;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.affiliate-program__text {
  color: inherit;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.18182;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.affiliate-program__list {
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 2;
}

.affiliate-program__list li {
  padding-left: 10px;
  color: inherit;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.18182;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.affiliate-program__list li:not(:last-child) {
  margin-bottom: 25px;
}

.affiliate-program__list li:before {
  content: "";
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 14px;
  max-width: 100%;
  height: 14px;
  border-radius: 50%;
  background: var(--color-blue);
  margin-right: 20px;
  margin-top: 5px;
}

.affiliate-program__btn {
  margin-top: 45px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  position: relative;
  z-index: 2;
}

.affiliate-program__btn .btn {
  min-width: 230px;
}

.affiliate-program__btn .btn svg {
  width: 20px;
  height: 20px;
}

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

.affiliate-program__img img {
  max-width: 100%;
}

.affiliate-program__desc {
  color: inherit;
  font-size: 20px;
  line-height: 1.85;
  position: relative;
  z-index: 2;
}

.affiliate-program__desc:not(:last-child) {
  margin-bottom: 26px;
}

.affiliate-program__desc strong,
.affiliate-program__desc b {
  font-weight: 700;
}

.subscription-block {
  padding-top: 85px;
  padding-bottom: 80px;
  background: var(--color-white-100);
  position: relative;
  overflow: hidden;
}

.subscription-block__title {
  margin-bottom: 35px;
  text-align: center;
}

.subscription-block__slider {
  margin-left: calc(((100vw - 1480px) / 2 + 30px + ((100vw / 3) / 2)) * -1);
  margin-right: calc(((100vw - 1480px) / 2 + 30px + ((100vw / 3) / 2)) * -1);
}

.subscription-block__bottom {
  margin-top: 160px;
}

.subscription-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
}

.subscription-block__left {
  padding: 0 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66.666%;
  max-width: 100%;
  position: relative;
  z-index: 3;
}

.subscription-block__heading {
  margin-bottom: 29px;
}

.subscription-block__text {
  color: var(--color-black);
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 45px;
}

.subscription-block__text strong {
  font-weight: 700;
}

.subscription-block__btn .btn {
  min-width: 230px;
}

.subscription-block__right {
  padding: 0 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.333%;
  max-width: 100%;
  position: relative;
}

.subscription-block__img {
  position: absolute;
  top: 31%;
  left: 35%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.subscription-slider {
  position: relative;
  padding: 0 20%;
}

.subscription-slider:before {
  content: "";
  display: block;
  width: 20%;
  height: calc(100% + 26px);
  background: -webkit-gradient(linear, right top, left top, from(rgba(243, 250, 254, 0)), color-stop(45.15%, #f3fafe));
  background: linear-gradient(270deg, rgba(243, 250, 254, 0) 0%, #f3fafe 45.15%);
  position: absolute;
  left: 0;
  top: -2px;
  z-index: 3;
  pointer-events: none;
}

.subscription-slider:after {
  content: "";
  display: block;
  width: 20%;
  height: calc(100% + 26px);
  background: -webkit-gradient(linear, left top, right top, from(rgba(243, 250, 254, 0)), color-stop(45.15%, #f3fafe));
  background: linear-gradient(90deg, rgba(243, 250, 254, 0) 0%, #f3fafe 45.15%);
  position: absolute;
  right: 0;
  top: -2px;
  z-index: 3;
  pointer-events: none;
}

.subscription-slider__slide {
  height: auto;
  width: 340px;
}

.subscription-slider__prev {
  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-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 80px;
  max-width: 100%;
  height: 80px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid #f4f4f4;
  -webkit-filter: drop-shadow(0px 6px 10px rgba(0, 95, 187, 0.1));
          filter: drop-shadow(0px 6px 10px rgba(0, 95, 187, 0.1));
  color: rgba(153, 153, 153, 0.3);
  position: absolute;
  top: 50%;
  left: 11%;
  z-index: 4;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.subscription-slider__prev.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

.subscription-slider__prev.swiper-button-lock {
  display: none;
}

.subscription-slider__prev svg {
  width: 44px;
  height: 44px;
  fill: currentColor;
}

.subscription-slider__next {
  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-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 80px;
  max-width: 100%;
  height: 80px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid #f4f4f4;
  -webkit-filter: drop-shadow(0px 6px 10px rgba(0, 95, 187, 0.1));
          filter: drop-shadow(0px 6px 10px rgba(0, 95, 187, 0.1));
  color: rgba(153, 153, 153, 0.3);
  position: absolute;
  top: 50%;
  right: 11%;
  z-index: 4;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.subscription-slider__next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

.subscription-slider__next.swiper-button-lock {
  display: none;
}

.subscription-slider__next svg {
  width: 44px;
  height: 44px;
  fill: currentColor;
}

.item-subscription {
  border-radius: var(--radius);
  border: 2px solid var(--color-blue);
  background: var(--color-white);
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 95, 187, 0.1);
          box-shadow: 0px 10px 20px 0px rgba(0, 95, 187, 0.1);
  position: relative;
  overflow: hidden;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.item-subscription.inner {
  border-color: var(--color-green);
}

.item-subscription.inner .item-subscription__top {
  background: var(--color-green);
}

.item-subscription.inner .item-subscription__price {
  color: var(--color-green);
  font-size: 24px;
  line-height: 1.66667;
}

.item-subscription__top {
  background: var(--color-blue);
  padding: 22px 16px 15px;
  text-align: center;
  color: var(--color-white);
}

.item-subscription__title {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}

.item-subscription__subtitle {
  font-size: 22px;
  font-weight: 500;
}

.item-subscription__body {
  padding: 28px 20px 30px;
  background: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.item-subscription__list {
  list-style: none;
  padding: 0;
}

.item-subscription__list li {
  color: var(--color-black);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.11111;
  padding-left: 30px;
  position: relative;
}

.item-subscription__list li strong {
  font-size: 20px;
  font-weight: 800;
}

.item-subscription__list li:not(:last-child) {
  margin-bottom: 20px;
}

.item-subscription__list li:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/check-green.svg") center/20px 20px no-repeat;
}

.item-subscription__items {
  margin-top: 35px;
}

.item-subscription__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.item-subscription__item:not(:last-child) {
  margin-bottom: 9px;
}

.item-subscription__item-name {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 150px;
  max-width: 100%;
  color: var(--color-black);
  text-align: right;
  font-size: 16px;
  font-weight: 300;
}

.item-subscription__item-value {
  color: var(--color-black);
  font-size: 18px;
  font-weight: 800;
}

.item-subscription__labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 5px;
  margin-top: 33px;
}

.item-subscription__label {
  border-radius: 100px;
  background: #b446b1;
  padding: 3px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 300;
  height: 36px;
}

.item-subscription__label span {
  font-size: 18px;
  font-weight: 800;
}

.item-subscription__price {
  color: var(--color-black);
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.33333;
  padding-top: 20px;
  margin-top: auto;
}

.item-subscription__btn {
  margin-top: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.item-subscription__btn .btn {
  min-width: 230px;
}

.how-works__title {
  text-align: center;
  margin-bottom: 10px;
}

.how-works__subtitle {
  text-align: center;
  margin-bottom: 50px;
  color: var(--color-black);
  font-size: 24px;
  font-weight: 300;
}

.how-works__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: calc((var(--gutter) / 2) * -1);
}

.how-works__col {
  padding: calc(var(--gutter) / 2);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
}

.how-works__item {
  border-radius: var(--radius);
  background: var(--color-white-100);
  height: 100%;
  padding: 43px 50px 64px;
}

.how-works__heading {
  color: var(--color-black);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.33333;
  margin-bottom: 24px;
}

.how-works__text {
  margin-bottom: 60px;
  color: var(--color-black);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
}

.how-works__text p:not(:last-child) {
  margin-bottom: 20px;
}

.how-works__text li:not(:last-child) {
  margin-bottom: 20px;
}

.how-works__text ul:not(:last-child),
.how-works__text ol:not(:last-child) {
  margin-bottom: 20px;
}

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

.how-works__img img {
  max-width: 100%;
}

.block-steps__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -20px;
}

.block-steps__col {
  padding: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  max-width: 100%;
}

.block-steps__item {
  border-radius: var(--radius);
  border: 1px solid #d9d9d9;
  padding: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.block-steps__icon {
  height: 52px;
  text-align: center;
  margin-bottom: 15px;
}

.block-steps__icon img {
  max-width: 100%;
  max-height: 100%;
}

.block-steps__text {
  color: var(--color-black);
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.33333;
  margin-bottom: 15px;
}

.block-steps__btn {
  margin-top: auto;
}

.block-steps__btn.inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.block-steps__btn.inner .btn {
  min-width: 130px;
}

.block-steps__btn .btn {
  height: 44px;
  font-size: 16px;
  min-width: 202px;
}

.invest-block__title {
  text-align: center;
  margin-bottom: 10px;
}

.invest-block__subtitle {
  margin-bottom: 45px;
  text-align: center;
  color: var(--color-black);
  font-size: 24px;
  font-weight: 300;
}

.invest-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: calc((var(--gutter) / 2) * -1);
}

.invest-block__col {
  padding: calc(var(--gutter) / 2);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.333%;
  max-width: 100%;
}

.invest-block__item {
  height: 100%;
  padding: 42px 50px 0;
  border-radius: var(--radius);
  background: var(--color-white-100);
}

.invest-block__heading {
  color: var(--color-black);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.33333;
  margin-bottom: 25px;
}

.invest-block__text {
  color: var(--color-black);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.44444;
  margin-bottom: 20px;
}

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

.invest-block__img img {
  max-width: 100%;
}

.easier-block__title {
  text-align: center;
  margin-bottom: 10px;
}

.easier-block__subtitle {
  text-align: center;
  margin-bottom: 45px;
  color: var(--color-black);
  text-align: center;
  font-size: 24px;
  font-weight: 300;
}

.easier-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: calc((var(--gutter) / 2) * -1);
}

.easier-block__col {
  padding: calc(var(--gutter) / 2);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.333%;
  max-width: 100%;
}

.easier-block__item {
  height: 100%;
  padding: 42px 50px 30px;
  border-radius: var(--radius);
  background: var(--color-white-100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.easier-block__heading {
  color: var(--color-black);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.33333;
  margin-bottom: 28px;
}

.easier-block__text {
  color: var(--color-black);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.44444;
  margin-bottom: 24px;
}

.easier-block__img {
  text-align: center;
  margin-top: auto;
}

.easier-block__img img {
  max-width: 100%;
}

.easier-block__bottom {
  padding: calc(var(--gutter) / 2);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
}

.easier-block__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  border-radius: var(--radius);
  background: var(--color-blue);
  position: relative;
  padding: 31px 25px 33px 50px;
  overflow: hidden;
}

.easier-block__block-box {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 53%;
  max-width: 100%;
  padding: 10px 0 10px;
}

.easier-block__block-title {
  color: var(--color-white);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.33333;
  margin-bottom: 24px;
}

.easier-block__block-text {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.44444;
}

.easier-block__block-info {
  margin-top: 64px;
  color: var(--color-white);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.08333;
}

.easier-block__block-img {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  position: relative;
}

.easier-block__block-img:before {
  content: "";
  display: block;
  width: 460px;
  height: 460px;
  border-radius: 460px;
  background: rgba(83, 209, 255, 0.7);
  -webkit-filter: blur(72px);
          filter: blur(72px);
  position: absolute;
  top: -35px;
  right: -109px;
}

.easier-block__block-img img {
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.how-money__title {
  text-align: center;
  margin-bottom: 10px;
}

.how-money__subtitle {
  color: var(--color-black);
  text-align: center;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 45px;
}

.how-money__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: calc((var(--gutter) / 2) * -1);
}

.how-money__col {
  padding: calc(var(--gutter) / 2);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
}

.how-money__col:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
}

.how-money__col:first-child .how-money__item {
  padding-bottom: 50px;
}

.how-money__col:first-child .how-money__heading {
  padding-right: 400px;
}

.how-money__col:first-child .how-money__img {
  margin-top: -60px;
  margin-right: 7%;
  width: 300px;
}

.how-money__col:nth-child(2) .how-money__img {
  margin-top: 23px;
}

.how-money__col:nth-child(3) .how-money__img {
  margin-top: -23px;
}

.how-money__item {
  border-radius: var(--radius);
  background: var(--color-white-100);
  height: 100%;
  padding: 42px 40px 20px 50px;
}

.how-money__heading {
  color: var(--color-black);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 30px;
  padding-right: 30px;
}

.how-money__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.how-money__list {
  list-style: none;
  padding: 0;
  max-width: 715px;
}

.how-money__list li {
  position: relative;
  padding-left: 27px;
  color: var(--color-black);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.44444;
}

.how-money__list li:not(:last-child) {
  margin-bottom: 19px;
}

.how-money__list li:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #a1bad2;
  position: absolute;
  top: 5px;
  left: 0;
}

.how-money__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 250px;
  max-width: 100%;
  margin-left: auto;
}

.how-money__img img {
  max-width: 100%;
}

.about-platform {
  padding-bottom: 44px;
}

.about-platform__title {
  text-align: center;
  margin-bottom: 10px;
}

.about-platform__subtitle {
  text-align: center;
  margin-bottom: 45px;
  color: var(--color-black);
  font-size: 24px;
  font-weight: 300;
}

.about-platform__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: calc((var(--gutter) / 2) * -1);
}

.about-platform__left {
  padding: calc(var(--gutter) / 2);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 58.333%;
  max-width: 100%;
}

.about-platform__box {
  position: relative;
}

.about-platform__box-title {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-black);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.about-platform__video {
  display: block;
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 5px solid var(--color-white);
  -webkit-box-shadow: 0px 10px 70px 0px rgba(0, 95, 187, 0.65);
          box-shadow: 0px 10px 70px 0px rgba(0, 95, 187, 0.65);
  background: rgba(191, 224, 255, 0.9);
}

.about-platform__img {
  display: block;
  width: 100%;
  height: 370px;
  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;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
}

.about-platform__img:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: radial-gradient(100.65% 57.43% at 5.95% 5.6%, rgba(35, 93, 150, 0.9) 0%, rgba(6, 36, 66, 0.9) 100%);
}

.about-platform__img img {
  position: relative;
  max-width: 100%;
  max-height: 100%;
}

.about-platform__play {
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
  width: 135px;
  height: 135px;
  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;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
}

.about-platform__play img {
  max-width: 100%;
  max-height: 100%;
}

.about-platform__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.about-platform__right {
  padding: calc(var(--gutter) / 2);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.333%;
  max-width: 100%;
  position: relative;
  z-index: 3;
}

.about-platform__body {
  border-radius: var(--radius);
  background: var(--color-white-100);
  padding: 30px 20px 40px;
}

.about-platform__heading {
  color: var(--color-black);
  font-size: 28px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
}

.about-platform__item:not(:last-child) {
  margin-bottom: 44px;
}

.about-platform__item-title {
  color: var(--color-black);
  text-align: center;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.2;
}

.about-platform__item-text {
  color: var(--color-black);
  text-align: center;
  font-size: 20px;
  font-weight: 300;
}

.calc-block {
  border-radius: var(--radius);
  background: #e2ecf6;
  padding: 35px 58px 50px;
}

.calc-block__title {
  text-align: center;
  margin-bottom: 47px;
}

.calc-block__check-top {
  margin-top: 57px;
  margin-bottom: 43px;
}

.calc-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.calc-block__col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 350px;
  max-width: 100%;
}

.calc-block__check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 24px;
  padding: 10px 0;
}

.calc-block__bottom {
  margin-top: 56px;
}

.calc-block__check-bottom {
  margin-top: 108px;
  margin-bottom: 30px;
}

.calc-block__bottom-heading {
  color: #263238;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 40px;
}

.calc-block__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  position: relative;
}

.calc-block__items:before {
  content: "";
  display: block;
  width: calc(100% - 140px);
  height: 5px;
  background: var(--color-white);
  position: absolute;
  bottom: 40px;
  left: 70px;
  z-index: 1;
}

.calc-block__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 140px;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.calc-block__item-title {
  color: #263238;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33333;
  white-space: nowrap;
}

.calc-block__item-title span {
  font-weight: 400;
  display: block;
}

.calc-block__item-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20px;
  max-width: 100%;
  height: 20px;
  border-radius: 50%;
  background: var(--color-blue);
  border: 3px solid var(--color-white);
  margin-top: 10px;
  margin-bottom: 10px;
}

.calc-block__item-text {
  color: #263238;
  font-size: 16px;
  font-weight: 300;
}

.calc-block__btn {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.calc-block__btn .btn {
  height: 70px;
  font-size: 21px;
  -webkit-box-shadow: 0px 20px 34px 0px rgba(0, 95, 187, 0.2);
          box-shadow: 0px 20px 34px 0px rgba(0, 95, 187, 0.2);
  min-width: 380px;
}

.item-checkbox {
  display: block;
}

.item-checkbox label {
  cursor: pointer;
  display: inline-block;
  margin: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.item-checkbox label input {
  display: none;
}

.item-checkbox label input:checked + span:before {
  background: var(--color-blue) url("../img/check-white.svg") center/20px 20px no-repeat;
  border-color: var(--color-blue);
}

.item-checkbox label span {
  color: #263238;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.33333;
  position: relative;
  padding-left: 39px;
  display: block;
}

.item-checkbox label span:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  border: 1px solid #d1d0cf;
  background: var(--color-white);
  position: absolute;
  left: 0;
  top: 0;
}

.item-no-ui__title {
  color: #263238;
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 65px;
}

.item-no-ui__title strong {
  font-weight: 600;
}

.item-no-ui__bottom {
  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;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin-top: 20px;
}

.item-no-ui__price {
  color: #263238;
  font-size: 14px;
  font-weight: 300;
}

.no-ui-slider {
  padding-left: 9px;
  padding-right: 12px;
  position: relative;
}

.no-ui-slider:before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #c3d2e0;
  position: absolute;
  left: -1px;
  top: -4.5px;
  pointer-events: none;
  z-index: 2;
}

.no-ui-slider:after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #c3d2e0;
  position: absolute;
  right: -1px;
  top: -4.5px;
  pointer-events: none;
  z-index: 2;
}

.no-ui-slider.noUi-target {
  background: #87dfff;
  border-radius: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.no-ui-slider.noUi-target.noUi-horizontal {
  height: 5px;
}

.no-ui-slider.noUi-target.noUi-horizontal .noUi-tooltip {
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: 700;
  padding: 0;
}

.no-ui-slider.noUi-target .noUi-base {
  z-index: 3;
}

.no-ui-slider.noUi-target .noUi-connects {
  border-radius: 0;
  background: transparent;
  z-index: 3;
}

.no-ui-slider.noUi-target .noUi-connects .noUi-connect {
  background: var(--color-white);
  border-radius: 0;
}

.no-ui-slider.noUi-target .noUi-handle {
  cursor: pointer;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--color-blue);
  -webkit-box-shadow: none;
          box-shadow: none;
  right: -12px;
  top: -9px;
  border: none;
  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;
}

.no-ui-slider.noUi-target .noUi-handle:before {
  display: none;
}

.no-ui-slider.noUi-target .noUi-handle:after {
  display: none;
}

.no-ui-slider.noUi-target .noUi-handle .noUi-touch-area {
  display: none;
}

.header {
  position: relative;
  z-index: 5;
  padding-top: 33px;
  padding-bottom: 33px;
}

.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -30px;
}

.header__left {
  padding: 0 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.header__cemter {
  padding: 0 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
}

.header__right {
  padding: 0 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  position: relative;
}

.header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.header__languages {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.header__btn-1 .btn {
  min-width: 202px;
  height: 44px;
  font-size: 16px;
}

.header__btn-2 .btn {
  min-width: 106px;
  height: 44px;
  font-size: 16px;
}

.header__menu-icon {
  display: none;
}

.header__social {
  position: absolute;
  right: 26px;
  top: calc(100% + 30px);
  z-index: 5;
}

.header__social-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 32px;
  max-width: 100%;
  height: 32px;
  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;
}

.header__social-item:not(:last-child) {
  margin-bottom: 22px;
}

.header__social-item img,
.header__social-item svg {
  width: 24px;
  height: 24px;
}

.icon-menu {
  cursor: pointer;
  width: 32px;
  height: 32px;
  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;
  position: relative;
}

.icon-menu.open .icon-menu__body span {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.icon-menu.open .icon-menu__body span:first-child {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 9px;
}

.icon-menu.open .icon-menu__body span:last-child {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  bottom: 9px;
}

.icon-menu__body {
  width: 24px;
  height: 21px;
  position: relative;
}

.icon-menu__body span {
  position: absolute;
  top: 8px;
  width: 65%;
  height: 3px;
  right: 0;
  background: var(--color-black);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.icon-menu__body span:first-child {
  top: 0;
  width: 100%;
}

.icon-menu__body span:last-child {
  top: auto;
  bottom: 0;
  width: 100%;
}

.logo {
  display: inline-block;
  width: 209px;
}

.logo img {
  max-width: 100%;
}

.menu__top {
  display: none;
  margin-bottom: 35px;
}

.menu__btn-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: auto;
  max-width: 100%;
  display: none;
}

.menu__btn-1 .btn {
  width: 100%;
}

.menu__btn-2 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: auto;
  max-width: 100%;
}

.menu__btn-2 .btn {
  width: 100%;
}

.menu__list {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 35px;
     -moz-column-gap: 35px;
          column-gap: 35px;
  row-gap: 5px;
}

.menu__link {
  color: var(--color-black);
  font-size: 18px;
  line-height: 150%;
  display: inline-block;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
}

.menu__soc {
  margin-top: 30px;
  display: none;
}

.languages-block {
  position: relative;
}

.languages-block:hover .languages-block__top {
  background: #e5f2ff;
}

.languages-block:hover .languages-block__arrow svg {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.languages-block:hover .languages-block__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.languages-block__top {
  padding: 5px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px 5px 0 0;
}

.languages-block__top.open {
  background: #e5f2ff;
}

.languages-block__top.open .languages-block__arrow svg {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.languages-block__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  max-width: 100%;
  height: 24px;
  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;
}

.languages-block__icon img,
.languages-block__icon svg {
  max-width: 100%;
  max-height: 100%;
}

.languages-block__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20px;
  max-width: 100%;
  height: 20px;
  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;
  color: var(--color-black);
}

.languages-block__arrow svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
}

.languages-block__body {
  background: #e5f2ff;
  border-radius: 0 0 5px 5px;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 5;
  padding: 5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 5px;
}

.languages-block__body.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.languages-block__item {
  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: 28px;
  height: 24px;
  border-radius: 3px;
  background: var(--color-white);
}

.languages-block__item img,
.languages-block__item svg {
  max-width: 100%;
  max-height: 100%;
}

.offer-block {
  margin-bottom: -128px;
}

.offer-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
}

.offer-block__left {
  padding: 0 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 58.333%;
  max-width: 100%;
}

.offer-block__block {
  padding-top: 128px;
}

.offer-block__title {
  color: var(--color-black);
  font-size: 40px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 50px;
}

.offer-block__title strong {
  font-weight: 800;
  display: inline-block;
}

.offer-block__title span {
  font-size: 60px;
  font-weight: 800;
  color: var(--color-blue);
  line-height: 1;
  display: inline-block;
}

.offer-block__text {
  color: var(--color-black);
  font-size: 24px;
  font-weight: 300;
}

.offer-block__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin-top: 20px;
  row-gap: 15px;
}

.offer-block__info-text {
  color: var(--color-black);
  font-size: 20px;
  font-weight: 300;
}

.offer-block__info-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  row-gap: 10px;
}

.offer-block__info-img img {
  max-width: 100%;
}

.offer-block__btn {
  margin-top: 70px;
}

.offer-block__btn .btn {
  min-width: 320px;
  height: 70px;
  font-size: 21px;
}

.offer-block__right {
  padding: 0 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 41.666%;
  max-width: 100%;
}

.offer-block__box {
  position: relative;
  margin-right: -67px;
}

.offer-block__box .users-block {
  position: absolute;
  left: -8px;
  bottom: 223px;
  z-index: 3;
}

.offer-block__img {
  position: relative;
  pointer-events: none;
}

.offer-block__img:before {
  content: "";
  display: block;
  border-radius: 433px;
  background: rgba(163, 230, 255, 0.9);
  -webkit-filter: blur(150px);
          filter: blur(150px);
  width: 433px;
  height: 433px;
  border-radius: 50%;
  position: absolute;
  right: 60px;
  bottom: 90px;
  pointer-events: none;
}

.offer-block__img img {
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.users-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0px 20px 34px 0px rgba(123, 167, 206, 0.3);
          box-shadow: 0px 20px 34px 0px rgba(123, 167, 206, 0.3);
  -webkit-backdrop-filter: blur(8.5px);
          backdrop-filter: blur(8.5px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.users-block__text {
  color: var(--color-black);
  font-size: 18px;
  font-weight: 300;
  white-space: nowrap;
}

.users-block__text strong {
  font-weight: 800;
}

.users-block__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
}

.users-block__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 70px;
  max-width: 100%;
  height: 70px;
  border-radius: 50%;
  background: #87dfff;
  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;
  text-align: center;
  color: var(--color-black);
  font-size: 22px;
  line-height: 1.09091;
  padding: 3px;
}

.users-block__item:not(:first-child) {
  margin-left: -20px;
}

.users-block__item img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: block;
}

.page-login {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 20px;
}

.page-login__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.page-login__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-top: 67px;
  padding-bottom: 67px;
  padding-left: 7.5%;
  padding-right: 7.5%;
}

.page-login__body {
  width: 100%;
  max-width: 460px;
}

.page-login__logo {
  width: 280px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

.page-login__logo img {
  max-width: 100%;
}

.page-login__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page-login__link {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
  width: 100%;
  max-width: 100%;
  height: 50px;
  padding: 10px;
  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;
  text-align: center;
  color: var(--color-blue);
  font-size: 18px;
  font-weight: 500;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
  border-bottom: 1px solid var(--color-blue);
  border-radius: 10px 10px 0px 0px;
  -webkit-transition: var(--transition-normal);
  transition: var(--transition-normal);
  cursor: pointer;
}

.page-login__link.active {
  pointer-events: none;
  color: #263238;
  border-top: 1px solid var(--color-blue);
  border-right: 1px solid var(--color-blue);
  border-left: 1px solid var(--color-blue);
  border-bottom: 1px solid transparent;
}

.page-login__wrap-item {
  display: none;
}

.page-login__wrap-item.active {
  display: block;
}

.page-login__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  max-width: 100%;
}

.page-login__block {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-height: calc(100vh - 20px);
}

.page-login__box {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  height: calc(100% - 70px);
  width: 100%;
}

.page-login__images {
  position: relative;
  height: 100%;
}

.page-login__images .users-block {
  position: absolute;
  bottom: 47%;
  left: 41%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
}

.page-login__img {
  height: 100%;
  text-align: center;
  position: relative;
  pointer-events: none;
}

.page-login__img img {
  max-width: 100%;
  max-height: 100%;
  position: relative;
  top: -15px;
  left: -5px;
}

.page-login__social {
  position: absolute;
  bottom: 22.5%;
  left: 0;
  width: 100%;
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}

.page-login__social-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 32px;
  max-width: 100%;
  height: 32px;
  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;
  cursor: pointer;
}

.page-login__social-item img,
.page-login__social-item svg {
  width: 32px;
  height: 32px;
}

.login-tg {
  margin-top: 65px;
}

.login-tg__title {
  text-align: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: var(--color-black);
  font-size: 24px;
  font-weight: 700;
}

.login-tg__title svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  max-width: 100%;
  height: 24px;
  fill: var(--color-blue);
  display: inline-block;
  margin-left: 10px;
  position: relative;
  top: 3px;
}

.login-tg__text {
  color: var(--color-black);
  text-align: center;
  font-size: 18px;
  line-height: 1.66667;
  margin-top: 17px;
}

.login-tg__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 15px;
  margin-bottom: 15px;
}

.login-tg__img {
  width: 230px;
  height: 230px;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  background: var(--color-white);
  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;
}

.login-tg__img img {
  max-width: 100%;
  max-height: 100%;
}

.login-tg__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.login-tg__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: var(--color-blue);
  font-size: 20px;
  line-height: 1.5;
}

.login-tg__link span {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.login-tg__link svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  max-width: 100%;
  height: 24px;
  fill: currentColor;
}

.form-login {
  margin-top: 25px;
}

.form-login__title {
  color: var(--color-black);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
  text-align: center;
}

.form-login__group:not(:last-child) {
  margin-bottom: 25px;
}

.form-login__group-label {
  color: var(--color-black);
  font-size: 20px;
  margin-bottom: 15px;
}

.form-login__group-input {
  position: relative;
}

.form-login__group-input input {
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  background: var(--color-white);
  height: 60px;
  width: 100%;
  padding: 10px 20px 10px 54px;
  color: var(--color-black);
  font-size: 20px;
  font-weight: 400;
}

.form-login__group-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 24px;
  max-width: 100%;
  height: 24px;
  color: var(--color-blue);
  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;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  left: 20px;
}

.form-login__group-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.form-login__btn {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.form-login__btn .btn {
  font-size: 20px;
  height: 60px;
  min-width: 280px;
  -webkit-box-shadow: 0px 20px 34px 0px rgba(0, 95, 187, 0.2);
          box-shadow: 0px 20px 34px 0px rgba(0, 95, 187, 0.2);
}

.fancybox__backdrop {
  background: rgba(247, 252, 255, 0.85);
  -webkit-backdrop-filter: blur(3.5px);
          backdrop-filter: blur(3.5px);
}

.main-popup {
  display: none;
}

.main-popup.fancybox__content {
  width: 100%;
  max-width: 690px;
  border-radius: 10px;
  background: var(--color-white);
  -webkit-box-shadow: 0px 4px 24px 0px rgba(48, 101, 153, 0.3);
          box-shadow: 0px 4px 24px 0px rgba(48, 101, 153, 0.3);
  padding: 50px 50px 50px;
}

.main-popup.fancybox__content .f-button.is-close-btn {
  top: 10px;
  right: 10px;
  color: var(--color-black);
}

.main-popup__title {
  text-align: center;
  color: var(--color-black);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.main-popup__text {
  text-align: center;
  color: var(--color-black);
  font-size: 18px;
  font-weight: 300;
}

.main-popup__buttons {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.main-popup__buttons .btn {
  padding-left: 27px;
  padding-right: 27px;
  height: 44px;
  font-size: 16px;
}

.fancybox__track {
  -webkit-transform: none !important;
      -ms-transform: none !important;
          transform: none !important;
}

@media (min-width: 1199.98px) and (max-height: 1000px) {
  .page-login__images .users-block {
    bottom: 30%;
  }
}

@media (max-width: 1600px) {
  .subscription-slider {
    padding: 0 15%;
  }

  .subscription-slider:before {
    width: 15%;
  }

  .subscription-slider:after {
    width: 15%;
  }

  .subscription-slider__prev {
    left: 5%;
  }

  .subscription-slider__next {
    right: 5%;
  }
}

@media (max-width: 1500px) {
  .menu__list {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}

@media (max-width: 1479.98px) {
  .offset-block {
    margin-left: calc(((100vw - 1480px) / 2 + 30px + ((100vw / 3) / 2)) * -1);
    margin-right: calc(((100vw - 1480px) / 2 + 30px + ((100vw / 3) / 2)) * -1);
    padding-left: calc((100vw - 1480px) / 2 + 30px + ((100vw / 3) / 2));
    padding-right: calc((100vw - 1480px) / 2 + 30px + ((100vw / 3) / 2));
  }

  .subscription-block__slider {
    margin-left: calc(((100vw - 1480px) / 2 + 30px + ((100vw / 3) / 2)) * -1);
    margin-right: calc(((100vw - 1480px) / 2 + 30px + ((100vw / 3) / 2)) * -1);
  }
}

@media (max-width: 1439.98px) {
  .footer__box {
    padding-left: 0;
  }

  .footer__right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .block-icons {
    padding: 21px 30px;
  }

  .block-icons__row {
    margin: 0 -15px;
  }

  .block-icons__col {
    padding: 0 15px;
  }

  .block-icons__icon {
    width: 46px;
  }

  .block-icons__icon img,
  .block-icons__icon svg {
    width: 46px;
    height: 46px;
  }

  .block-icons__text {
    font-size: 16px;
  }

  .subscription-slider {
    padding: 0 10%;
  }

  .subscription-slider:before {
    width: 10%;
  }

  .subscription-slider:after {
    width: 10%;
  }

  .subscription-slider__prev {
    width: 60px;
    height: 60px;
    left: 2%;
  }

  .subscription-slider__prev svg {
    width: 36px;
    height: 36px;
  }

  .subscription-slider__next {
    width: 60px;
    height: 60px;
    right: 2%;
  }

  .subscription-slider__next svg {
    width: 36px;
    height: 36px;
  }

  .block-steps__btn.inner .btn {
    min-width: 100px;
  }

  .how-money__img {
    width: 200px;
  }

  .about-platform__right {
    width: 41.666%;
  }

  .calc-block__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: calc((100% - 80px) / 3);
    max-width: 100%;
  }

  .header__row {
    margin: 0 -15px;
  }

  .header__left {
    padding: 0 15px;
  }

  .header__cemter {
    padding: 0 15px;
  }

  .header__right {
    padding: 0 15px;
  }

  .header__social {
    right: 15px;
  }

  .offer-block__title {
    font-size: 36px;
  }

  .offer-block__title span {
    font-size: 54px;
  }

  .offer-block__box .users-block .users-block__item {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .offer-block__box .users-block .users-block__item:not(:first-child) {
    margin-left: -15px;
  }

  .offer-block__box .users-block .users-block__item img {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 1439.98px) and (max-width: 767.98px) {
  .offer-block__box .users-block .users-block__item {
    font-size: 14px;
  }

  .offer-block__box .users-block .users-block__item:not(:first-child) {
    margin-left: -20px;
  }
}

@media (max-width: 1199.98px) {
  .offset-block {
    margin-left: -30px;
    margin-right: -30px;
    padding-right: 30px;
    padding-left: 30px;
  }

  .footer__bottom-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .block-bottom__item {
    padding: 26px 30px;
  }

  .block-bottom__title {
    font-size: 32px;
  }

  .block-icons {
    padding: 21px 40px;
  }

  .block-icons__row {
    margin: -20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .block-icons__col {
    padding: 20px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .block-icons__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 14px;
  }

  .block-icons__icon {
    width: 52px;
  }

  .block-icons__icon img,
  .block-icons__icon svg {
    width: 52px;
    height: 52px;
  }

  .block-icons__text {
    text-align: center;
    line-height: 1.5;
  }

  .affiliate-program__col:nth-child(1) .affiliate-program__img {
    margin-top: -30px;
  }

  .affiliate-program__item {
    padding: 30px 30px 18px;
  }

  .affiliate-program__item.inner {
    padding: 30px 30px 30px;
  }

  .affiliate-program__heading {
    font-size: 32px;
  }

  .subscription-block__slider {
    margin-left: -30px;
    margin-right: -30px;
  }

  .subscription-slider {
    padding: 0 20px;
  }

  .subscription-slider:before {
    display: none;
  }

  .subscription-slider:after {
    display: none;
  }

  .subscription-slider__prev {
    display: none;
  }

  .subscription-slider__next {
    display: none;
  }

  .how-works__item {
    padding: 30px 30px 30px;
  }

  .how-works__text p:not(:last-child) {
    margin-bottom: 15px;
  }

  .how-works__text li:not(:last-child) {
    margin-bottom: 15px;
  }

  .how-works__text ul:not(:last-child),
  .how-works__text ol:not(:last-child) {
    margin-bottom: 15px;
  }

  .block-steps__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
  }

  .block-steps__btn.inner .btn {
    min-width: 130px;
  }

  .invest-block__col {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    width: 100%;
    max-width: 100%;
    min-width: 50%;
  }

  .invest-block__item {
    padding: 30px 30px 30px;
  }

  .easier-block__col {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    width: 100%;
    max-width: 100%;
    min-width: 50%;
  }

  .easier-block__item {
    padding: 30px 30px 30px;
  }

  .easier-block__block {
    padding: 30px 25px 30px 30px;
  }

  .how-money__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .how-money__item {
    padding: 30px 30px 20px;
  }

  .how-money__img {
    width: 300px;
    margin-right: 7%;
  }

  .about-platform__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .about-platform__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-top: 60px;
  }

  .calc-block {
    padding: 42px 30px 50px;
  }

  .calc-block__items {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .calc-block__item-title {
    font-size: 16px;
  }

  .calc-block__item-text {
    font-size: 14px;
  }

  .header__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .header__left {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    width: 100%;
    max-width: 100%;
  }

  .header__cemter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 20px;
  }

  .header__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    position: static;
  }

  .header__social {
    top: 100%;
  }

  .offer-block {
    margin-bottom: 0;
  }

  .offer-block__block {
    padding-top: 60px;
  }

  .offer-block__title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .offer-block__title span {
    font-size: 40px;
  }

  .offer-block__text {
    font-size: 20px;
  }

  .offer-block__info-images {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }

  .offer-block__btn {
    margin-top: 40px;
  }

  .offer-block__box .users-block {
    bottom: 100px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 10px;
  }

  .users-block__text {
    font-size: 16px;
  }

  .page-login__left {
    padding-left: 2.5%;
    padding-right: 2.5%;
  }

  .page-login__images .users-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 5px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    bottom: 20%;
  }
}

@media (max-width: 1100px) {
  .easier-block__block-box {
    width: 55%;
  }
}

@media (max-width: 991.98px) {
  :root {
    --radius: 20px;
  }

  :root {
    --block-margin: 75px;
  }

  :root {
    --gutter: 20px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .wrapper {
    padding-top: 0;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 36px;
    line-height: 1.125;
  }

  .offset-block {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .footer__center {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 30px;
  }

  .footer__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
    max-width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .footer__info {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .footer__bottom {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .block-bottom__title {
    font-size: 26px;
  }

  .block-bottom__text {
    font-size: 21px;
  }

  .block-icons {
    padding: 21px 30px;
  }

  .block-icons__row {
    margin: -15px;
  }

  .block-icons__col {
    padding: 15px;
  }

  .affiliate-program__subtitle {
    font-size: 22px;
  }

  .affiliate-program__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .affiliate-program__heading {
    font-size: 28px;
  }

  .affiliate-program__list li {
    font-size: 20px;
  }

  .subscription-block__slider {
    margin-left: -20px;
    margin-right: -20px;
  }

  .subscription-block__text {
    font-size: 22px;
  }

  .how-works__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .how-works__heading {
    font-size: 28px;
  }

  .how-works__text {
    font-size: 18px;
  }

  .invest-block__heading {
    font-size: 28px;
  }

  .easier-block__heading {
    font-size: 28px;
  }

  .easier-block__block {
    display: block;
    padding: 30px 25px 0 30px;
  }

  .easier-block__block-box {
    width: auto;
  }

  .easier-block__block-title {
    font-size: 28px;
  }

  .easier-block__block-img {
    text-align: center;
  }

  .easier-block__block-img:before {
    width: 460px;
    height: 517.421px;
    border-radius: 517.421px;
    top: 35px;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .how-money__col:first-child .how-money__heading {
    padding-right: 300px;
  }

  .how-money__col:first-child .how-money__img {
    margin-right: 0;
  }

  .how-money__heading {
    font-size: 28px;
  }

  .how-money__img {
    margin-right: 0;
  }

  .about-platform {
    padding-bottom: 0;
  }

  .about-platform__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .calc-block__top {
    max-width: 600px;
    margin: 0 auto;
  }

  .calc-block__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .calc-block__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .calc-block__col:not(:last-child) {
    margin-bottom: 54px;
  }

  .calc-block__check-bottom {
    margin-top: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .calc-block__bottom-heading {
    font-size: 28px;
  }

  .calc-block__items {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }

  .calc-block__item {
    width: 120px;
  }

  .item-no-ui__title {
    margin-bottom: 50px;
  }

  .header__social {
    top: calc(100% - 25px);
  }

  .offer-block__title {
    font-size: 24px;
  }

  .offer-block__title span {
    font-size: 32px;
  }

  .offer-block__info-text {
    font-size: 18px;
  }

  .offer-block__box .users-block {
    bottom: 0;
  }

  .offer-block__img:before {
    bottom: 0;
  }

  .page-login__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-login__logo {
    width: 208px;
    margin-bottom: 30px;
  }

  .page-login__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .page-login__block {
    max-height: none;
  }

  .page-login__box {
    padding: 0;
    height: auto;
  }

  .page-login__images {
    margin-right: -13%;
  }

  .page-login__images .users-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    bottom: 41%;
    left: 46%;
  }

  .page-login__social {
    bottom: 17% !important;
  }
}

@media (max-width: 767.98px) {
  :root {
    --radius: 20px;
  }

  :root {
    --block-margin: 50px;
  }

  :root {
    --gutter: 20px;
  }

  body {
    zoom: normal;
  }

  .fancybox-slide {
    padding: 30px 15px;
  }

  .main:before {
    display: none;
  }

  h2 {
    font-size: 32px;
    line-height: 1.125;
  }

  h3 {
    font-size: 32px;
  }

  .footer {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .btn {
    height: 50px;
    font-size: 18px;
  }

  .block-bottom {
    margin-left: -20px;
    margin-right: -20px;
  }

  .block-bottom__row {
    margin: 0;
  }

  .block-bottom__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .block-bottom__col:not(:last-child) {
    margin-bottom: 20px;
  }

  .block-bottom__col:first-child .block-bottom__img {
    margin-top: 139px;
  }

  .block-bottom__col:nth-child(2) .block-bottom__text {
    max-width: 295px;
  }

  .block-bottom__col:nth-child(2) .block-bottom__img {
    padding: 0 40px;
  }

  .block-bottom__item {
    padding: 42px 20px 40px;
  }

  .block-bottom__title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 23px;
  }

  .block-bottom__text {
    font-size: 20px;
    max-width: 335px;
    margin-left: auto;
    margin-right: auto;
    line-height: 150%;
    margin-bottom: 32px;
  }

  .block-bottom__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .block-bottom__img {
    padding: 0 20px;
    margin-top: 95px;
  }

  .faq-block__title {
    margin-bottom: 42px;
  }

  .faq-block__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .faq-block__top {
    -webkit-column-gap: 0px;
       -moz-column-gap: 0px;
            column-gap: 0px;
  }

  .faq-block__body {
    margin-top: 0;
    padding: 5px 30px 20px;
  }

  .faq-block__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .block-icons {
    padding: 20px;
  }

  .block-icons__row {
    margin: -17px -10px;
  }

  .block-icons__col {
    padding: 17px 10px;
  }

  .affiliate-program {
    margin-left: -20px;
    margin-right: -20px;
  }

  .affiliate-program__title {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 18px;
  }

  .affiliate-program__subtitle {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 43px;
  }

  .affiliate-program__col:nth-child(1) .affiliate-program__img {
    margin-top: 54px;
    padding: 0 20px;
  }

  .affiliate-program__col:nth-child(2) .affiliate-program__heading {
    margin-bottom: 38px;
  }

  .affiliate-program__col:nth-child(2) .affiliate-program__img:before {
    width: 420px;
    height: 420px;
    border-radius: 420px;
    top: 0;
  }

  .affiliate-program__col:nth-child(2) .affiliate-program__img {
    padding: 0 40px;
    margin-top: 84px;
  }

  .affiliate-program__item {
    padding: 43px 20px 30px;
  }

  .affiliate-program__item.inner {
    padding: 43px 20px 68px;
  }

  .affiliate-program__heading {
    text-align: center;
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 29px;
  }

  .affiliate-program__text {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .affiliate-program__list li {
    font-size: 18px;
    line-height: 1.44444;
  }

  .affiliate-program__list li:not(:last-child) {
    margin-bottom: 22px;
  }

  .affiliate-program__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .affiliate-program__desc {
    font-size: 18px;
    line-height: 1.44444;
  }

  .affiliate-program__desc:not(:last-child) {
    margin-bottom: 38px;
  }

  .subscription-block {
    padding-top: 42px;
    padding-bottom: 20px;
  }

  .subscription-block__title {
    margin-bottom: 53px;
  }

  .subscription-block__bottom {
    margin-top: 41px;
  }

  .subscription-block__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .subscription-block__heading {
    text-align: center;
    margin-bottom: 36px;
  }

  .subscription-block__text {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 42px;
  }

  .subscription-block__btn {
    padding: 0 10px;
  }

  .subscription-block__btn .btn {
    width: 100%;
  }

  .subscription-block__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
  }

  .subscription-block__img {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    text-align: center;
    height: 370px;
  }

  .subscription-block__img img {
    position: absolute;
    top: 50%;
    left: 51%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 870px;
  }

  .subscription-slider {
    padding: 0 10px;
  }

  .subscription-slider__slide {
    width: 320px;
  }

  .item-subscription__top {
    padding: 20px 16px 15px;
  }

  .item-subscription__body {
    padding: 28px 10px 30px;
  }

  .item-subscription__list li:not(:last-child) {
    margin-bottom: 23px;
  }

  .how-works {
    margin-left: -20px;
    margin-right: -20px;
  }

  .how-works__title {
    padding: 0 20px;
    margin-bottom: 16px;
  }

  .how-works__title h2 {
    font-size: 36px;
  }

  .how-works__subtitle {
    font-size: 22px;
    padding: 0 20px;
    margin-bottom: 42px;
  }

  .how-works__col:nth-child(2) .how-works__img {
    margin-top: -10px;
  }

  .how-works__item {
    padding: 42px 20px 50px;
  }

  .how-works__heading {
    font-size: 24px;
    text-align: center;
  }

  .how-works__text {
    font-size: 16px;
    line-height: 1.875;
  }

  .how-works__text p:not(:last-child) {
    margin-bottom: 20px;
  }

  .how-works__text li:not(:last-child) {
    margin-bottom: 20px;
  }

  .how-works__text ul:not(:last-child),
  .how-works__text ol:not(:last-child) {
    margin-bottom: 20px;
  }

  .how-works__img {
    padding: 0 16px;
  }

  .block-steps__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .invest-block {
    margin-left: -20px;
    margin-right: -20px;
  }

  .invest-block__title {
    padding: 0 20px;
    margin-bottom: 13px;
  }

  .invest-block__title h2 {
    font-size: 36px;
  }

  .invest-block__subtitle {
    font-size: 22px;
    padding: 0 20px;
  }

  .invest-block__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    min-width: auto;
  }

  .invest-block__col:nth-child(1) .invest-block__img {
    padding-bottom: 20px;
  }

  .invest-block__col:nth-child(2) .invest-block__img {
    padding-top: 17px;
  }

  .invest-block__col:nth-child(3) .invest-block__img {
    padding-top: 11px;
  }

  .invest-block__col:nth-child(3) .invest-block__item {
    padding-bottom: 20px;
  }

  .invest-block__item {
    padding: 42px 20px 30px;
  }

  .invest-block__heading {
    margin-bottom: 28px;
    text-align: center;
    font-size: 24px;
    line-height: 1.25;
  }

  .invest-block__text {
    margin-bottom: 40px;
  }

  .invest-block__img {
    padding: 0 20px;
  }

  .easier-block {
    margin-left: -20px;
    margin-right: -20px;
  }

  .easier-block__title {
    padding: 0 40px;
    margin-bottom: 17px;
  }

  .easier-block__title h2 {
    font-size: 36px;
  }

  .easier-block__subtitle {
    font-size: 22px;
    padding: 0 20px;
    margin-bottom: 42px;
  }

  .easier-block__col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    min-width: auto;
  }

  .easier-block__col:nth-child(1) .easier-block__img {
    margin-top: 16px;
  }

  .easier-block__col:nth-child(2) .easier-block__img {
    margin-top: 68px;
    padding: 0 10px 16px;
  }

  .easier-block__col:nth-child(3) .easier-block__img {
    margin-top: 42px;
  }

  .easier-block__item {
    padding: 42px 20px 30px;
  }

  .easier-block__heading {
    text-align: center;
    font-size: 24px;
    line-height: 1.25;
  }

  .easier-block__block {
    padding: 45px 20px 0 20px;
  }

  .easier-block__block-box {
    padding: 0;
  }

  .easier-block__block-title {
    text-align: center;
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 28px;
  }

  .easier-block__block-info {
    margin-top: 17px;
  }

  .easier-block__block-info p:not(:last-child) {
    margin-bottom: 20px;
  }

  .easier-block__block-img {
    margin-top: 30px;
    padding-right: 32px;
  }

  .how-money {
    margin-left: -20px;
    margin-right: -20px;
  }

  .how-money__title {
    padding: 0 20px;
    margin-bottom: 15px;
  }

  .how-money__title h2 {
    font-size: 36px;
  }

  .how-money__subtitle {
    font-size: 22px;
    padding: 0 20px;
  }

  .how-money__col:first-child .how-money__item {
    padding-bottom: 33px;
  }

  .how-money__col:first-child .how-money__heading {
    padding-right: 0;
  }

  .how-money__col:first-child .how-money__img {
    margin-top: 35px;
    margin-left: 0;
  }

  .how-money__col:nth-child(2) .how-money__img {
    margin-top: -8px;
    margin-left: 27px;
  }

  .how-money__col:nth-child(3) .how-money__img {
    margin-top: 23px;
    margin-left: 27px;
  }

  .how-money__col:nth-child(3) .how-money__item {
    padding-bottom: 7px;
  }

  .how-money__item {
    padding: 42px 20px 31px;
  }

  .how-money__heading {
    font-size: 24px;
    line-height: 1.25;
    text-align: center;
    padding-right: 0;
  }

  .how-money__body {
    display: block;
  }

  .how-money__img {
    margin-left: 0;
    width: 250px;
  }

  .about-platform__title {
    margin-bottom: 16px;
  }

  .about-platform__title h2 {
    font-size: 36px;
  }

  .about-platform__subtitle {
    font-size: 22px;
    margin-bottom: 34px;
  }

  .about-platform__box-title {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 25px;
  }

  .about-platform__img {
    height: 300px;
  }

  .about-platform__bg {
    top: 65%;
  }

  .about-platform__right {
    margin-top: 60px;
  }

  .about-platform__body {
    margin-left: -20px;
    margin-right: -20px;
    padding: 42px 20px 17px;
  }

  .about-platform__heading {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 35px;
  }

  .about-platform__item-title {
    font-size: 40px;
    margin-bottom: 4px;
  }

  .calc-block {
    padding: 42px 20px 50px;
    margin-left: -20px;
    margin-right: -20px;
  }

  .calc-block__title {
    margin-bottom: 41px;
  }

  .calc-block__top {
    max-width: 500px;
  }

  .calc-block__check-top {
    margin-bottom: 37px;
    margin-top: 37px;
  }

  .calc-block__check-bottom {
    max-width: 280px;
    margin-bottom: 46px;
  }

  .calc-block__bottom-heading {
    font-size: 26px;
    line-height: 1.15385;
  }

  .calc-block__bottom-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .calc-block__items {
    display: block;
  }

  .calc-block__items:before {
    width: 5px;
    height: calc(100% - 30px);
    left: 7.5px;
    top: 10px;
    bottom: auto;
  }

  .calc-block__item {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }

  .calc-block__item:not(:last-child) {
    margin-bottom: 21px;
  }

  .calc-block__item-title {
    font-size: 14px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 140px;
    max-width: 100%;
  }

  .calc-block__item-title span {
    margin-top: 5px;
  }

  .calc-block__item-icon {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0;
  }

  .calc-block__item-text {
    font-size: 16px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100px;
    max-width: 100%;
    text-align: left;
  }

  .calc-block__btn {
    margin-top: 50px;
  }

  .calc-block__btn .btn {
    min-width: 315px;
    font-size: 18px;
    height: 60px;
  }

  .item-checkbox label span {
    font-size: 16px;
  }

  .item-checkbox label span:before {
    top: -2px;
  }

  .item-no-ui__title {
    margin-bottom: 63px;
  }

  .header {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .header__row {
    margin: 0 -7.5px;
  }

  .header__left {
    padding: 0 7.5px;
    position: relative;
    z-index: 12;
  }

  .header__cemter {
    margin-top: 0;
    padding: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .header__right {
    padding: 0 7.5px;
  }

  .header__languages {
    position: relative;
    z-index: 12;
  }

  .header__btn-1 {
    position: relative;
    z-index: 12;
  }

  .header__btn-1 .btn {
    height: 38px;
    min-width: auto;
    font-size: 14px;
  }

  .header__btn-2 {
    position: relative;
    z-index: 12;
  }

  .header__btn-2 .btn {
    height: 38px;
    min-width: auto;
    font-size: 14px;
  }

  .header__menu-icon {
    display: block;
    position: relative;
    z-index: 12;
  }

  .header__social {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }

  .header__social-item:not(:last-child) {
    margin-bottom: 0;
  }

  .header__social-item img,
  .header__social-item svg {
    width: 32px;
    height: 32px;
  }

  .logo {
    width: 125px;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: var(--color-white);
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transition: var(--transition-normal);
    transition: var(--transition-normal);
  }

  .menu:before {
    content: "";
    display: block;
    width: 100%;
    height: 80px;
    background: var(--color-white);
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 11;
    -webkit-transition: var(--transition-normal);
    transition: var(--transition-normal);
  }

  .menu.open {
    right: 0;
  }

  .menu.open:before {
    right: 0;
  }

  .menu__list {
    display: block;
  }

  .menu__item:not(:last-child) {
    margin-bottom: 26px;
  }

  .menu__soc {
    display: block;
  }

  .offer-block {
    margin-bottom: -50px;
  }

  .offer-block__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .offer-block__block {
    padding-top: 23px;
  }

  .offer-block__title {
    font-size: 22px;
    margin-bottom: 33px;
  }

  .offer-block__title span {
    font-size: 26px;
  }

  .offer-block__text {
    line-height: 1.2;
  }

  .offer-block__info-images {
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }

  .offer-block__btn {
    margin-top: 50px;
  }

  .offer-block__btn .btn {
    width: 100%;
    min-width: auto;
  }

  .offer-block__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-top: 26px;
  }

  .offer-block__box {
    margin-right: 0;
  }

  .offer-block__box .users-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    bottom: 136px;
    left: calc(50% - 25px);
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .offer-block__img {
    margin-left: -20px;
    margin-right: -20px;
  }

  .offer-block__img:before {
    width: 313px;
    height: 313px;
    border-radius: 313px;
    bottom: 0;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .users-block {
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }

  .users-block:before {
    content: "";
    display: block;
    width: 180px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0.7);
    -webkit-box-shadow: 0px 20px 34px 0px rgba(123, 167, 206, 0.3);
            box-shadow: 0px 20px 34px 0px rgba(123, 167, 206, 0.3);
    -webkit-backdrop-filter: blur(8.5px);
            backdrop-filter: blur(8.5px);
    border-radius: var(--radius);
  }

  .users-block__text {
    position: relative;
    z-index: 2;
    font-size: 13px;
    line-height: 1.23077;
  }

  .users-block__items {
    margin-top: -12px;
    margin-bottom: -12px;
    margin-right: -70px;
  }

  .users-block__item {
    width: 50px;
    height: 50px;
    font-size: 14px;
  }

  .users-block__item img {
    width: 44px;
    height: 44px;
  }

  .page-login__left {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .page-login__logo {
    width: 125px;
  }

  .page-login__link {
    font-size: 16px;
  }

  .page-login__images {
    margin-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .page-login__images .users-block {
    left: 43%;
    bottom: 43%;
  }

  .page-login__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 540px;
    max-width: none;
    margin-top: -22px;
    margin-left: -69px;
    position: relative;
    left: 12%;
  }

  .login-tg__title {
    font-size: 24px;
    line-height: 1.25;
  }

  .login-tg__text {
    font-size: 16px;
    margin-top: 22px;
  }

  .login-tg__images {
    margin-bottom: 18px;
  }

  .login-tg__link {
    font-size: 18px;
  }

  .main-popup.fancybox__content {
    padding: 70px 17px 40px;
  }

  .main-popup__buttons {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}

@media (max-width: 578px) {
  .main-popup.fancybox__content .f-button.is-close-btn {
    background: transparent;
  }
}

@media (max-width: 575.98px) {
  .footer__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    margin-top: 35px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .footer__copy {
    margin-top: 35px;
  }

  .footer__center {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 0;
  }

  .footer__right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 37px;
  }

  .footer__block .btn {
    height: 60px;
    min-width: 280px;
    font-size: 20px;
  }

  .footer__info {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 40px;
  }

  .footer__text {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .footer__bottom {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    margin-top: 40px;
  }

  .footer__bottom-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    row-gap: 36px;
  }

  .footer-menu {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
    text-align: center;
  }

  .about-platform__img {
    height: 195px;
  }

  .header__btn-1 {
    z-index: 2;
  }

  .header__btn-1 .btn {
    height: 44px;
    font-size: 16px;
  }

  .menu__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}

@media (max-width: 479.98px) {
  .header__btn-2 .btn {
    height: 44px;
    font-size: 16px;
  }
}

@media (max-width: 424.98px) {
  .about-platform__bg img {
    width: 440px;
  }

  .header__buttons {
    display: none;
  }

  .header__btn-2 {
    z-index: 2;
  }

  .menu__btn-1 {
    display: block;
  }
}

@media (max-width: 374.98px) {
  .block-icons__icon {
    width: 46px;
  }

  .block-icons__icon img,
  .block-icons__icon svg {
    width: 46px;
    height: 46px;
  }

  .block-icons__text {
    font-size: 14px;
  }
}

@media (any-hover: hover) {
  .footer__bottom-link:hover {
    color: var(--color-black);
  }

  .footer-menu li a:hover {
    color: var(--color-blue);
  }

  .btn:hover {
    background: var(--color-blue-100);
  }

  .btn.btn-blue:hover {
    background: var(--color-blue-100);
  }

  .btn.btn-yellow:hover {
    background: #ffde8d;
  }

  .btn.btn-black:hover {
    background: #576369;
  }

  .btn.btn-outline-blue:hover {
    color: #2483df;
    border-color: #2483df;
    background: transparent;
  }

  .btn.btn-light-blue:hover {
    background: #beebfc;
  }

  .social-block__item:hover {
    opacity: 0.83;
  }

  .item-subscription:hover {
    -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 95, 187, 0.4);
            box-shadow: 0px 10px 30px 0px rgba(0, 95, 187, 0.4);
  }

  .about-platform__video:hover .about-platform__play {
    width: 125px;
    height: 125px;
  }

  .menu__link:hover {
    color: var(--color-blue);
  }

  .page-login__link:hover {
    color: #263238;
  }

  .login-tg__link:hover span {
    text-decoration: none;
  }
}

@media (max-height: 1000px) {
  .page-login__social {
    bottom: 10%;
  }
}

@media (max-height: 578px) {
  .main-popup.fancybox__content .f-button.is-close-btn {
    background: transparent;
  }
}

.topMenuFixed {
  position: sticky;
  top: 0;
  background-color: #fff;
}