@charset "UTF-8";
@import"https://fonts.googleapis.com/css2?family=Montserrat+Alternates&display=swap";
@import"https://fonts.googleapis.com/css2?family=Manrope&display=swap";

:root {
  --el-color-white: #ffffff;
  --el-color-black: #000000;
  --el-color-primary-rgb: 64, 158, 255;
  --el-color-success-rgb: 103, 194, 58;
  --el-color-warning-rgb: 230, 162, 60;
  --el-color-danger-rgb: 245, 108, 108;
  --el-color-error-rgb: 245, 108, 108;
  --el-color-info-rgb: 144, 147, 153;
  --el-font-size-extra-large: 20px;
  --el-font-size-large: 18px;
  --el-font-size-medium: 16px;
  --el-font-size-base: 14px;
  --el-font-size-small: 13px;
  --el-font-size-extra-small: 12px;
  --el-font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  --el-font-weight-primary: 500;
  --el-font-line-height-primary: 24px;
  --el-index-normal: 1;
  --el-index-top: 1000;
  --el-index-popper: 2000;
  --el-border-radius-base: 4px;
  --el-border-radius-small: 2px;
  --el-border-radius-round: 20px;
  --el-border-radius-circle: 100%;
  --el-transition-duration: .3s;
  --el-transition-duration-fast: .2s;
  --el-transition-function-ease-in-out-bezier: cubic-bezier(.645, .045, .355, 1);
  --el-transition-function-fast-bezier: cubic-bezier(.23, 1, .32, 1);
  --el-transition-all: all var(--el-transition-duration) var(--el-transition-function-ease-in-out-bezier);
  --el-transition-fade: opacity var(--el-transition-duration) var(--el-transition-function-fast-bezier);
  --el-transition-md-fade: transform var(--el-transition-duration) var(--el-transition-function-fast-bezier), opacity var(--el-transition-duration) var(--el-transition-function-fast-bezier);
  --el-transition-fade-linear: opacity var(--el-transition-duration-fast) linear;
  --el-transition-border: border-color var(--el-transition-duration-fast) var(--el-transition-function-ease-in-out-bezier);
  --el-transition-box-shadow: box-shadow var(--el-transition-duration-fast) var(--el-transition-function-ease-in-out-bezier);
  --el-transition-color: color var(--el-transition-duration-fast) var(--el-transition-function-ease-in-out-bezier);
  --el-component-size-large: 40px;
  --el-component-size: 32px;
  --el-component-size-small: 24px;
  color-scheme: light;
  --el-color-primary: #409eff;
  --el-color-primary-light-3: rgb(121.3, 187.1, 255);
  --el-color-primary-light-5: rgb(159.5, 206.5, 255);
  --el-color-primary-light-7: rgb(197.7, 225.9, 255);
  --el-color-primary-light-8: rgb(216.8, 235.6, 255);
  --el-color-primary-light-9: rgb(235.9, 245.3, 255);
  --el-color-primary-dark-2: rgb(51.2, 126.4, 204);
  --el-color-success: #67c23a;
  --el-color-success-light-3: rgb(148.6, 212.3, 117.1);
  --el-color-success-light-5: rgb(179, 224.5, 156.5);
  --el-color-success-light-7: rgb(209.4, 236.7, 195.9);
  --el-color-success-light-8: rgb(224.6, 242.8, 215.6);
  --el-color-success-light-9: rgb(239.8, 248.9, 235.3);
  --el-color-success-dark-2: rgb(82.4, 155.2, 46.4);
  --el-color-warning: #e6a23c;
  --el-color-warning-light-3: rgb(237.5, 189.9, 118.5);
  --el-color-warning-light-5: rgb(242.5, 208.5, 157.5);
  --el-color-warning-light-7: rgb(247.5, 227.1, 196.5);
  --el-color-warning-light-8: rgb(250, 236.4, 216);
  --el-color-warning-light-9: rgb(252.5, 245.7, 235.5);
  --el-color-warning-dark-2: rgb(184, 129.6, 48);
  --el-color-danger: #f56c6c;
  --el-color-danger-light-3: rgb(248, 152.1, 152.1);
  --el-color-danger-light-5: rgb(250, 181.5, 181.5);
  --el-color-danger-light-7: rgb(252, 210.9, 210.9);
  --el-color-danger-light-8: rgb(253, 225.6, 225.6);
  --el-color-danger-light-9: rgb(254, 240.3, 240.3);
  --el-color-danger-dark-2: rgb(196, 86.4, 86.4);
  --el-color-error: #f56c6c;
  --el-color-error-light-3: rgb(248, 152.1, 152.1);
  --el-color-error-light-5: rgb(250, 181.5, 181.5);
  --el-color-error-light-7: rgb(252, 210.9, 210.9);
  --el-color-error-light-8: rgb(253, 225.6, 225.6);
  --el-color-error-light-9: rgb(254, 240.3, 240.3);
  --el-color-error-dark-2: rgb(196, 86.4, 86.4);
  --el-color-info: #909399;
  --el-color-info-light-3: rgb(177.3, 179.4, 183.6);
  --el-color-info-light-5: rgb(199.5, 201, 204);
  --el-color-info-light-7: rgb(221.7, 222.6, 224.4);
  --el-color-info-light-8: rgb(232.8, 233.4, 234.6);
  --el-color-info-light-9: rgb(243.9, 244.2, 244.8);
  --el-color-info-dark-2: rgb(115.2, 117.6, 122.4);
  --el-bg-color: #ffffff;
  --el-bg-color-page: #f2f3f5;
  --el-bg-color-overlay: #ffffff;
  --el-text-color-primary: #303133;
  --el-text-color-regular: #606266;
  --el-text-color-secondary: #909399;
  --el-text-color-placeholder: #a8abb2;
  --el-text-color-disabled: #c0c4cc;
  --el-border-color: #dcdfe6;
  --el-border-color-light: #e4e7ed;
  --el-border-color-lighter: #ebeef5;
  --el-border-color-extra-light: #f2f6fc;
  --el-border-color-dark: #d4d7de;
  --el-border-color-darker: #cdd0d6;
  --el-fill-color: #f0f2f5;
  --el-fill-color-light: #f5f7fa;
  --el-fill-color-lighter: #fafafa;
  --el-fill-color-extra-light: #fafcff;
  --el-fill-color-dark: #ebedf0;
  --el-fill-color-darker: #e6e8eb;
  --el-fill-color-blank: #ffffff;
  --el-box-shadow: 0px 12px 32px 4px rgba(0, 0, 0, .04), 0px 8px 20px rgba(0, 0, 0, .08);
  --el-box-shadow-light: 0px 0px 12px rgba(0, 0, 0, .12);
  --el-box-shadow-lighter: 0px 0px 6px rgba(0, 0, 0, .12);
  --el-box-shadow-dark: 0px 16px 48px 16px rgba(0, 0, 0, .08), 0px 12px 32px rgba(0, 0, 0, .12), 0px 8px 16px -8px rgba(0, 0, 0, .16);
  --el-disabled-bg-color: var(--el-fill-color-light);
  --el-disabled-text-color: var(--el-text-color-placeholder);
  --el-disabled-border-color: var(--el-border-color-light);
  --el-overlay-color: rgba(0, 0, 0, .8);
  --el-overlay-color-light: rgba(0, 0, 0, .7);
  --el-overlay-color-lighter: rgba(0, 0, 0, .5);
  --el-mask-color: rgba(255, 255, 255, .9);
  --el-mask-color-extra-light: rgba(255, 255, 255, .3);
  --el-border-width: 1px;
  --el-border-style: solid;
  --el-border-color-hover: var(--el-text-color-disabled);
  --el-border: var(--el-border-width) var(--el-border-style) var(--el-border-color);
  --el-svg-monochrome-grey: var(--el-border-color)
}

:root {
  --el-popup-modal-bg-color: var(--el-color-black);
  --el-popup-modal-opacity: .5
}

:root {
  --el-loading-spinner-size: 42px;
  --el-loading-fullscreen-spinner-size: 50px
}

:root {
  --el-menu-active-color: var(--el-color-primary);
  --el-menu-text-color: var(--el-text-color-primary);
  --el-menu-hover-text-color: var(--el-color-primary);
  --el-menu-bg-color: var(--el-fill-color-blank);
  --el-menu-hover-bg-color: var(--el-color-primary-light-9);
  --el-menu-item-height: 56px;
  --el-menu-sub-item-height: calc(var(--el-menu-item-height) - 6px);
  --el-menu-horizontal-height: 60px;
  --el-menu-horizontal-sub-item-height: 36px;
  --el-menu-item-font-size: var(--el-font-size-base);
  --el-menu-item-hover-fill: var(--el-color-primary-light-9);
  --el-menu-border-color: var(--el-border-color);
  --el-menu-base-level-padding: 20px;
  --el-menu-level-padding: 20px;
  --el-menu-icon-width: 24px
}

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

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  padding: 0;
  font-family: Montserrat Alternates, sans-serif;
  background-color: #070b0a
}

header,
main,
footer {
  max-width: 1920px;
  margin: 0 auto
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0
}

button {
  border: none;
  outline: none;
  cursor: pointer
}

button:active,
button:focus,
button:hover,
button:focus-within {
  border: none;
  outline: none
}

html.dark {
  --el-color-primary: #03ed66;
  --el-select-bg-color: #000;
  --el-text-color-regular: #fff;
  --el-fill-color-light: #111;
  --el-border-radius-base: #050607;
  --el-bg-color-overlay: #050607;
  --el-border-color-light: #050607;
  --el-text-color-placeholder: #414141;
}

.header {
  border-bottom: 1.5px solid #0d120f;
  background: #050607;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
  gap: 10px;
}

.header__logo {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__logo img {
  width: 100%;
}

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

.header__text span {
  color: #fff;
  font-family: Montserrat Alternates;
  font-size: 18.182px;
  font-style: normal;
  font-weight: 700;
  line-height: 17.273px;
}

.button-money {
  text-decoration: none;
  padding: 12px 16px;
  position: relative;
  border-radius: 60px;
  background: #03ed66;
  box-shadow: 2px 1px 13.4px #15f07217;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-money:hover .money {
  transform: scale(1.06);
}

.button-money:hover .button-money__arrow {
  transform: scaleY(1.2);
  transform-origin: bottom;
}

@media only screen and (min-width: 744px) {
  .button-money {
    padding: 12px 20px;
    gap: 12px;
  }
}

@media only screen and (min-width: 1024px) {
  .button-money {
    padding: 16px 40px;
    gap: 16px;
  }
}

.button-money .money {
  position: absolute;
  width: 59px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -33px;
  left: 12px;
  transition: all 0.4s ease;
}

@media only screen and (min-width: 1024px) {
  .button-money .money {
    top: -49px;
    left: 21px;
    width: 81px;
  }
}

.button-money .money img {
  width: 100%;
}

.button-money__text {
  color: #050607;
  text-align: center;
  font-family: Montserrat Alternates;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

@media only screen and (min-width: 744px) {
  .button-money__text {
    font-size: 14px;
  }
}

@media only screen and (min-width: 1024px) {
  .button-money__text {
    font-size: 24px;
  }
}

.button-money__arrow {
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

@media only screen and (min-width: 1024px) {
  .button-money__arrow {
    width: 36px;
  }
}

.button-money__arrow svg {
  width: 100%;
}

.form-message {
  border-radius: 40px;
  background: #050607e0;
  box-shadow: 2px 2px 3.8px #0000001a, 5px 6px 10px #0000001f;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 40px 20px;
}

@media only screen and (min-width: 744px) {
  .form-message {
    padding: 40px 32px;
  }
}

.form-message .el-form-item {
  margin-bottom: 22px;
}

.form-message .el-form-item__label {
  color: #fff;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.form-message .el-input__wrapper {
  border-radius: 24px;
  border: 1.5px solid rgba(229, 229, 229, 0.07);
  background: var(--black, #050607);
  box-shadow: none;
  padding: 4px 14px;
  transition: all 0.4s ease;
}

.form-message .el-input__wrapper.is-focus,
.form-message .el-input__wrapper:hover {
  border-color: #03ed6666;
}

.form-message .el-textarea__inner {
  border-radius: 24px;
  border: 1.5px solid rgba(229, 229, 229, 0.07);
  background: var(--black, #050607);
  box-shadow: none;
  padding: 10px 14px;
  transition: all 0.4s ease;
  color: #fff;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}

.form-message .el-textarea__inner::placeholder {
  color: #414141;
}

.form-message .el-textarea__inner.is-focus,
.form-message .el-textarea__inner:hover {
  border-color: #03ed6666;
}

.form-message .el-input__inner {
  color: #fff;
  font-family: Manrope;
  font-style: normal;
  font-weight: 600;
}

.form-message .el-input__inner::placeholder {
  color: #414141;
}

.form-message .el-select__wrapper {
  border-radius: 24px;
  border: 1.5px solid rgba(229, 229, 229, 0.07);
  background: var(--black, #050607);
  box-shadow: none;
  padding: 12px 14px;
  transition: all 0.4s ease;
}

.form-message .el-select__wrapper .el-select__suffix svg {
  width: 14px;
  height: 14px;
}

.form-message .el-select__wrapper .el-select__suffix svg path {
  fill: #fff !important;
}

.form-message .el-select__wrapper.is-focused {
  border-color: #03ed6666;
}

.form-message .el-select__wrapper.is-hovering {
  border-color: #03ed6666;
  box-shadow: none;
}

.form-message .el-input__prefix {
  color: #fff;
  margin-right: 10px;
}

.form-message .el-select__selected-item span {
  font-family: Manrope;
  font-style: normal;
  font-weight: 600;
}

.form-message .el-radio__label {
  padding-left: 16px;
  color: #fff;
  font-family: Manrope;
  font-style: normal;
  font-weight: 500;
  line-height: 1.42;
}

.form-message .el-radio__input.is-checked+.el-radio__label {
  color: #fff;
}

.form-message .el-radio__inner {
  width: 24px;
  height: 24px;
}

.form-message .el-radio__input .el-radio__inner {
  background: #050607;
  border-color: #e5e5e512;
}

.form-message .el-radio__input.is-checked .el-radio__inner {
  background: #03ed66;
  border-color: #050607;
}

.form-message .el-radio__input.is-checked .el-radio__inner:after {
  transform: translate(-50%, -50%) scale(1);
}

.form-message .el-radio__inner:after {
  background-color: #050607;
  content: "";
  height: 14px;
  width: 14px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.15s ease-in;
}

.form-message__button {
  border-radius: 24px;
  background: #03ed66;
  box-shadow: 2px 1px 13.4px #15f0721a;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 12px;
  margin-top: 32px;
  gap: 16px;
}

.form-message__button:hover span {
  transform: skew(-10deg);
}

.form-message__button span {
  color: #050607;
  font-family: Montserrat Alternates;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: all 0.2s ease;
  will-change: transform;
}

.form-message__button:disabled {
  opacity: 0.5;
}

.form-message__button:disabled span {
  transform: none;
}

.slider-marks[data-v-6b917489] {
  display: flex;
  justify-content: space-between;
  padding-top: 11px;
}

@media only screen and (min-width: 744px) {
  .slider-marks[data-v-6b917489] {
    font-size: 13px;
  }
}

.slider-marks__item[data-v-6b917489] {
  color: #414141;
  font-family: Manrope;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  width: 28px;
  white-space: nowrap;
  text-align: center;
}

.slider-marks__item[data-v-6b917489]:first-child {
  text-align: left;
}

.slider-marks__item[data-v-6b917489]:last-child {
  text-align: right;
}

@media only screen and (min-width: 430px) {
  .slider-marks__item[data-v-6b917489] {
    font-size: 11px;
  }
}

@media only screen and (min-width: 744px) {
  .slider-marks__item[data-v-6b917489] {
    min-width: 46px;
    font-size: 12px;
  }
}

@media only screen and (min-width: 1280px) {
  .slider-marks__item[data-v-6b917489] {
    min-width: 50px;
  }
}

.slider-wrapper[data-v-6b917489] {
  border-radius: 12px;
  color: #fff;
}

.slider-value[data-v-6b917489] {
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media only screen and (min-width: 744px) {
  .slider-value[data-v-6b917489] {
    margin-bottom: 14px;
  }
}

.slider-value__label[data-v-6b917489] {
  color: #fff;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}

@media only screen and (min-width: 744px) {
  .slider-value__label[data-v-6b917489] {
    font-size: 16px;
  }
}

.slider-value__count[data-v-6b917489] {
  color: #fff;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

@media only screen and (min-width: 744px) {
  .slider-value__count[data-v-6b917489] {
    font-size: 16px;
  }
}

[data-v-6b917489] .el-slider__runway {
  background-color: #3a3a3a;
  height: 10px;
  border-radius: 100px;
}

[data-v-6b917489] .el-slider__bar {
  background-color: #03ed66;
  height: 10px;
  border-radius: 100px;
}

[data-v-6b917489] .el-slider__button-wrapper {
  transform: translate(-50%, 2px);
}

[data-v-6b917489] .el-slider__button {
  width: 10px;
  height: 20px;
  background-color: #03ed66;
  border: none;
  border-radius: 42px;
}

[data-v-6b917489] .el-slider__marks-text {
  margin-top: 26px;
  color: #414141;
  font-family: Manrope;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.33;
  text-transform: uppercase;
}

@media only screen and (min-width: 430px) {
  [data-v-6b917489] .el-slider__marks-text {
    font-size: 12px;
  }
}

[data-v-6b917489] .el-slider__stop {
  display: none;
}

.counter-calculator {
  border-radius: 40px;
  background: #050607;
  box-shadow: 2px 2px 3.8px #0000001a, 5px 6px 10px #0000001f;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

@media only screen and (min-width: 430px) {
  .counter-calculator {
    padding: 20px;
    gap: 28px;
  }
}

@media only screen and (min-width: 744px) {
  .counter-calculator {
    padding: 32px 40px;
    gap: 40px;
  }
}

.counter-calculator__title {
  color: #fff;
  text-align: center;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.42;
}

@media only screen and (min-width: 430px) {
  .counter-calculator__title {
    font-size: 16px;
  }
}

@media only screen and (min-width: 744px) {
  .counter-calculator__title {
    font-size: 20px;
  }
}

@media only screen and (min-width: 1280px) {
  .counter-calculator__title {
    margin: 0 auto;
    max-width: 834px;
  }
}

@media only screen and (min-width: 1920px) {
  .counter-calculator__title {
    font-size: 24px;
    max-width: 1154px;
  }
}

.counter-calculator__sliders {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

@media only screen and (min-width: 744px) {
  .counter-calculator__sliders {
    gap: 44px;
  }
}

@media only screen and (min-width: 1280px) {
  .counter-calculator__sliders {
    margin: 0 auto;
    max-width: 594px;
  }
}

@media only screen and (min-width: 1440px) {
  .counter-calculator__sliders {
    max-width: none;
    flex-direction: row;
    gap: 60px;
  }
}

@media only screen and (min-width: 1920px) {
  .counter-calculator__sliders {
    gap: 174px;
  }
}

.counter-calculator__slider {
  width: 100%;
  flex: 1 0 100%;
}

@media only screen and (min-width: 1440px) {
  .counter-calculator__slider {
    flex: 1 0 50%;
    max-width: calc(50% - 30px);
  }
}

@media only screen and (min-width: 1920px) {
  .counter-calculator__slider {
    flex: 1 0 50%;
    max-width: calc(50% - 87px);
  }
}

.counter-calculator__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-decoration: none;
}

@media only screen and (min-width: 744px) {
  .counter-calculator__bottom {
    flex-direction: row;
    gap: 20px;
  }
}

.counter-calculator__bottom:hover .counter-calculator__header,
.counter-calculator__bottom:hover .counter-calculator__count span {
  transform: skew(-10deg);
}

.counter-calculator__earnings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

@media only screen and (min-width: 430px) {
  .counter-calculator__earnings {
    gap: 16px;
  }
}

@media only screen and (min-width: 744px) {
  .counter-calculator__earnings {
    gap: 20px;
  }
}

.counter-calculator__img {
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (min-width: 430px) {
  .counter-calculator__img {
    width: 24px;
  }
}

.counter-calculator__img img {
  width: 100%;
}

.counter-calculator__header {
  color: #fff;
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  transition: all 0.2s ease;
  will-change: transform;
}

@media only screen and (min-width: 430px) {
  .counter-calculator__header {
    font-size: 24px;
  }
}

.counter-calculator__line {
  width: 16px;
  height: 2px;
  background-color: #fff;
}

.counter-calculator__count {
  text-decoration: none;
  border-radius: 24px;
  border: 1.5px solid #03ed66;
  box-shadow: 2px 1px 13.4px #15f0721a;
  padding: 10px 20px;
  min-width: 198px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-calculator__count span {
  color: #fff;
  text-align: center;
  font-family: Montserrat Alternates;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: all 0.2s ease;
  will-change: transform;
}

.el-dialog {
  padding: 0;
}

.el-dialog__header {
  display: none;
}

.modal-window {
  background-color: #08090a;
  border-radius: 50px;
  border: 1px solid #0e1012;
  box-shadow: 2px 2px 3.8px #0000001a, 5px 6px 10px #0000001f;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.modal-window:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #08090ab3;
  border-radius: inherit;
}

.modal-window--success {
  background-image: url(/img/hero/success-modal-bg.jpg);
  background-size: cover;
  background-position: center center;
}

.modal-window__content {
  padding: 32px;
  position: relative;
  min-width: 282px;
}

@media only screen and (min-width: 1024px) {
  .modal-window__content {
    min-width: 560px;
  }
}

.modal-window__img {
  margin: 0 auto 16px;
  width: 52.708px;
}

.modal-window__img img {
  width: 100%;
}

.modal-window__title {
  margin-bottom: 4px;
  color: #fff;
  text-align: center;
  font-family: Montserrat Alternates;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
}

.modal-window__text {
  margin-bottom: 40px;
  color: #fff;
  text-align: center;
  font-family: Montserrat Alternates;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
}

.modal-window__button {
  border-radius: 24px;
  background: var(--green-accent, #03ed66);
  box-shadow: 2px 1px 13.4px #15f0721a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 51px;
  margin: 0 auto;
  min-width: 216px;
  color: #050607;
  text-align: center;
  font-family: Montserrat Alternates;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.hero__desktop-wrap {
  display: none;
}

@media only screen and (min-width: 1280px) {
  .hero__desktop-wrap {
    display: block;
  }
}

.hero__mobile-wrap {
  display: block;
  padding-top: 30px;
}

@media only screen and (min-width: 1280px) {
  .hero__mobile-wrap {
    display: none;
  }
}

.hero__bg-gradient {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__bg-gradient:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgb(8, 16, 13) 12%, transparent 100%);
}

.hero__bg-gradient:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(270deg, rgb(8, 16, 13) 0%, transparent 100%);
}

.hero__bottom-fade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, #050607 0%, transparent 100%);
}

.hero {
  background-image: url(../images/hero-bg-2xl.webp);
  background-size: 70%;
  background-position: 0px -190px;
}

.hero__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
  margin: 0 auto;
  max-width: 90%;
  gap: 80px;
  padding: 62px 0 52px;
}

@media only screen and (min-width: 430px) {
  .hero__container {
    max-width: 90%;
    gap: 80px;
    padding: 80px 0 60px;
  }
}

@media only screen and (min-width: 744px) {
  .hero__container {
    max-width: 660px;
    gap: 85px;
    padding: 82px 0 58px;
  }
}

@media only screen and (min-width: 1024px) {
  .hero__container {
    max-width: 660px;
    gap: 79px;
    padding: 78px 0 58px;
  }
}

@media only screen and (min-width: 1280px) {
  .hero__container {
    flex-direction: row;
    max-width: 1160px;
    gap: 46px;
    padding: 20px 0 28px;
  }
}

@media only screen and (min-width: 1440px) {
  .hero__container {
    max-width: 1300px;
    gap: 36px;
    padding: 28px 0 87px;
  }
}

@media only screen and (min-width: 1920px) {
  .hero__container {
    max-width: 1600px;
    gap: 46px;
    padding: 28px 0 143px;
  }
}

.hero__offer,
.hero__form {
  flex: 1 1 auto;
  width: 100%;
}

@media only screen and (min-width: 1280px) {

  .hero__offer,
  .hero__form {
    flex: 1 1 50%;
    max-width: calc(50% - 18px);
  }
}

@media only screen and (min-width: 1440px) {

  .hero__offer,
  .hero__form {
    flex: 1 1 50%;
    max-width: calc(50% - 18px);
  }
}

@media only screen and (min-width: 1920px) {

  .hero__offer,
  .hero__form {
    max-width: calc(50% - 170px);
  }
}

.hero__header {
  margin-bottom: 10px;
  color: #fff;
  font-family: Manrope;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media only screen and (min-width: 430px) {
  .hero__header {
    margin-bottom: 24px;
    letter-spacing: 1px;
    max-width: 328px;
    font-size: 32px;
  }
}

@media only screen and (min-width: 744px) {
  .hero__header {
    letter-spacing: 1px;
    max-width: 519px;
    font-size: 52px;
  }
}

@media only screen and (min-width: 1024px) {
  .hero__header {
    letter-spacing: 1.2px;
    max-width: 540px;
    font-size: 52px;
  }
}

@media only screen and (min-width: 1280px) {
  .hero__header {
    letter-spacing: 1.2px;
    max-width: 540px;
    font-size: 52px;
  }
}

@media only screen and (min-width: 1440px) {
  .hero__header {
    letter-spacing: 2px;
    max-width: none;
    font-size: 62px;
  }
}

.hero__header span {
  color: #03ed66;
}

.hero__description {
  margin-bottom: 10px;
  color: #fff;
  font-family: Montserrat Alternates;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
}

.hero__description span {
  font-weight: 700;
}

.hero__cost {
  margin-bottom: 91px;
  color: #fff;
  font-family: Montserrat Alternates;
  font-size: 24px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.83;
}

.hero__cost span {
  color: #03ed66;
}

.hero__button {
  max-width: 181px;
}

@media only screen and (min-width: 744px) {
  .hero__button {
    max-width: 181px;
  }
}

@media only screen and (min-width: 1024px) {
  .hero__button {
    max-width: none;
    width: 84%;
  }
}

@media only screen and (min-width: 1280px) {
  .hero__button {
    width: 100%;
  }
}

@media only screen and (min-width: 1440px) {
  .hero__button {
    width: 100%;
  }
}

.work-platform__container {
  margin: 0 auto;
  max-width: 90%;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 64px 0 112px;
}

@media only screen and (min-width: 430px) {
  .work-platform__container {
    max-width: 90%;
  }
}

@media only screen and (min-width: 744px) {
  .work-platform__container {
    max-width: 660px;
    padding: 64px 0 155px;
  }
}

@media only screen and (min-width: 1024px) {
  .work-platform__container {
    max-width: 660px;
    padding: 64px 0 172px;
  }
}

@media only screen and (min-width: 1280px) {
  .work-platform__container {
    gap: 105px;
    flex-direction: row;
    max-width: 1160px;
  }
}

@media only screen and (min-width: 1440px) {
  .work-platform__container {
    gap: 60px;
    max-width: 1300px;
  }
}

@media only screen and (min-width: 1920px) {
  .work-platform__container {
    gap: 126px;
    max-width: 1600px;
  }
}

.work-platform__first,
.work-platform__second {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media only screen and (min-width: 1280px) {
  .work-platform__first {
    max-width: calc(50% - 51px);
  }
}

@media only screen and (min-width: 1440px) {
  .work-platform__first {
    max-width: calc(43% - 30px);
  }
}

@media only screen and (min-width: 1920px) {
  .work-platform__first {
    flex: 1 1 50%;
    max-width: calc(50% - 63px);
  }
}

@media only screen and (min-width: 1280px) {
  .work-platform__second {
    flex: 1 1 50%;
    max-width: calc(50% - 51px);
  }
}

@media only screen and (min-width: 1440px) {
  .work-platform__second {
    max-width: calc(57% - 30px);
  }
}

@media only screen and (min-width: 1920px) {
  .work-platform__second {
    flex: 1 1 50%;
    max-width: calc(50% - 63px);
  }
}

.work-platform__title {
  margin-bottom: 24px;
  color: #fff;
  font-family: Montserrat Alternates;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.14;
}

@media only screen and (min-width: 744px) {
  .work-platform__title {
    margin-bottom: 32px;
    font-size: 28px;
  }
}

.work-platform__description {
  color: #fff;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

@media only screen and (min-width: 744px) {
  .work-platform__description {
    font-size: 24px;
  }
}

.work-platform__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

@media only screen and (min-width: 744px) {
  .work-platform__list {
    gap: 32px;
  }
}

@media only screen and (min-width: 1280px) {
  .work-platform__list {
    gap: 30px;
  }
}

.work-platform__item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.work-platform__img {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-platform__img img {
  width: 100%;
}

.work-platform__text {
  color: #fff;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

@media only screen and (min-width: 744px) {
  .work-platform__text {
    font-size: 20px;
  }
}

.perspective-card {
  border-radius: 40px;
  background: #050607;
  box-shadow: 2px 2px 3.8px #0000001a, 5px 6px 10px #0000001f;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px 32px;
}

@media only screen and (min-width: 430px) {
  .perspective-card {
    border-radius: 80px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 32px;
    padding: 32px;
  }
}

@media only screen and (min-width: 744px) {
  .perspective-card {
    padding: 24px 32px;
  }
}

.perspective-card__img {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  max-width: 80px;
  max-height: 80px;
  padding: 14px;
  background-color: #03ed66;
  flex-shrink: 0;
}

.perspective-card__img img {
  width: 100%;
}

.perspective-card__text {
  color: #fff;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
}

.perspective-card__text .big {
  font-size: 28px;
  font-weight: 700;
}

.perspective-card__text .middle {
  font-weight: 800;
}

@media only screen and (min-width: 430px) {
  .perspective-card__text {
    text-align: left;
  }
}

@media only screen and (min-width: 744px) {
  .perspective-card__text {
    font-size: 20px;
  }

  .perspective-card__text .big {
    font-size: 32px;
    font-weight: 700;
  }

  .perspective-card__text .middle {
    font-size: 24px;
  }
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

@media only screen and (min-width: 744px) {
  .divider {
    gap: 49px;
  }
}

.divider__line {
  width: 100%;
  height: 1.5px;
  background: #fff;
}

.divider__text {
  color: #fff;
  text-align: center;
  font-family: Montserrat Alternates;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  flex: 1 0 auto;
  max-width: 100%;
}

@media only screen and (min-width: 744px) {
  .divider__text {
    font-size: 28px;
  }
}

.perspective__container {
  margin: 0 auto;
  max-width: 90%;
  padding: 60px 0 40px;
}

@media only screen and (min-width: 430px) {
  .perspective__container {
    padding: 60px 0 40px;
    max-width: 90%;
  }
}

@media only screen and (min-width: 744px) {
  .perspective__container {
    padding: 60px 0;
    max-width: 660px;
  }
}

@media only screen and (min-width: 1024px) {
  .perspective__container {
    padding: 60px 0;
    max-width: 660px;
  }
}

@media only screen and (min-width: 1280px) {
  .perspective__container {
    padding: 60px 0 70px;
    max-width: 1160px;
  }
}

@media only screen and (min-width: 1440px) {
  .perspective__container {
    padding: 60px 0 80px;
    max-width: 1300px;
  }
}

@media only screen and (min-width: 1920px) {
  .perspective__container {
    padding: 60px 0 80px;
    max-width: 1600px;
  }
}

.perspective__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

@media only screen and (min-width: 430px) {
  .perspective__list {
    gap: 28px;
  }
}

@media only screen and (min-width: 744px) {
  .perspective__list {
    gap: 32px;
  }
}

@media only screen and (min-width: 1280px) {
  .perspective__list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.perspective__item {
  width: 100%;
  flex: 1;
}

@media only screen and (min-width: 1280px) {
  .perspective__item {
    flex: 1 1 50%;
    max-width: calc(50% - 16px);
  }
}

.stats-card {
  border-radius: 40px;
  background: #050607eb;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

@media only screen and (min-width: 430px) {
  .stats-card {
    padding: 20px;
    border-radius: 60px;
  }
}

@media only screen and (min-width: 744px) {
  .stats-card {
    padding: 32px;
    gap: 40px;
    border-radius: 60px;
  }
}

.stats-card__count {
  color: #03ed66;
  text-align: center;
  font-family: Manrope;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

@media only screen and (min-width: 430px) {
  .stats-card__count {
    font-size: 56px;
  }
}

@media only screen and (min-width: 744px) {
  .stats-card__count {
    font-size: 64px;
  }
}

@media only screen and (min-width: 1440px) {
  .stats-card__count {
    font-size: 74px;
  }
}

.stats-card__text {
  color: #fff;
  text-align: center;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.stats {
  position: relative;
}

.stats__container {
  position: relative;
  margin: 0 auto;
  max-width: 90%;
  padding: 40px 0 60px;
}

@media only screen and (min-width: 430px) {
  .stats__container {
    padding: 40px 0 60px;
    max-width: 90%;
  }
}

@media only screen and (min-width: 744px) {
  .stats__container {
    padding: 60px 0;
    max-width: 660px;
  }
}

@media only screen and (min-width: 1024px) {
  .stats__container {
    padding: 60px 0;
    max-width: 660px;
  }
}

@media only screen and (min-width: 1280px) {
  .stats__container {
    padding: 70px 0 60px;
    max-width: 1160px;
  }
}

@media only screen and (min-width: 1440px) {
  .stats__container {
    padding: 80px 0 60px;
    max-width: 1300px;
  }
}

@media only screen and (min-width: 1920px) {
  .stats__container {
    padding: 70px 0 60px;
    max-width: 1600px;
  }
}

.stats__cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media only screen and (min-width: 1280px) {
  .stats__cards {
    flex-direction: row;
  }
}

.stats__card {
  flex: 1 1 auto;
  width: 100%;
}

@media only screen and (min-width: 1280px) {
  .stats__card {
    flex: 1 1 33%;
    max-width: calc(33% - 16px);
  }
}

.stacks {
  background-color: #050607;
  position: relative;
}

.stacks__container {
  margin: 0 auto;
  max-width: 90%;
  padding: 40px 0 20px;
}

@media only screen and (min-width: 430px) {
  .stacks__container {
    padding: 40px 0 20px;
    max-width: 90%;
  }
}

@media only screen and (min-width: 744px) {
  .stacks__container {
    padding: 60px 0 32px;
    max-width: 660px;
  }
}

@media only screen and (min-width: 1024px) {
  .stacks__container {
    padding: 60px 0 32px;
    max-width: 660px;
  }
}

@media only screen and (min-width: 1280px) {
  .stacks__container {
    padding: 60px 0 32px;
    max-width: 1160px;
  }
}

@media only screen and (min-width: 1440px) {
  .stacks__container {
    padding: 60px 0 32px;
    max-width: 1300px;
  }
}

@media only screen and (min-width: 1920px) {
  .stacks__container {
    padding: 60px 0 32px;
    max-width: 1600px;
  }
}

.stacks__list {
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

@media only screen and (min-width: 430px) {
  .stacks__list {
    margin-bottom: 40px;
    gap: 28px;
  }
}

@media only screen and (min-width: 744px) {
  .stacks__list {
    margin-bottom: 40px;
    gap: 40px;
  }
}

@media only screen and (min-width: 1280px) {
  .stacks__list {
    gap: 44px;
  }
}

@media only screen and (min-width: 1920px) {
  .stacks__list {
    margin-bottom: 44px;
  }
}

.stacks__item {
  height: 32px;
}

.stacks__item img {
  height: 100%;
}

.stacks__text {
  color: #fff;
  text-align: center;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.stacks .money {
  display: none;
}

@media only screen and (min-width: 1024px) {
  .stacks .money {
    position: absolute;
    top: 122px;
    right: 0;
    width: 299px;
    display: block;
    z-index: 3;
  }
}

@media only screen and (min-width: 1280px) {
  .stacks .money {
    top: 79px;
  }
}

@media only screen and (min-width: 1440px) {
  .stacks .money {
    top: 86px;
  }
}

.stacks .money img {
  width: 100%;
}

.stacks .money .money-lg {
  display: block;
}

@media only screen and (min-width: 1440px) {
  .stacks .money .money-lg {
    display: none;
  }
}

.stacks .money .money-xl {
  display: none;
}

@media only screen and (min-width: 1440px) {
  .stacks .money .money-xl {
    display: block;
  }
}

.counter {
  position: relative;
  padding: 80px 0 28px;
  display: none;
}

@media only screen and (min-width: 430px) {
  .counter {
    padding: 80px 0 28px;
  }
}

@media only screen and (min-width: 744px) {
  .counter {
    padding: 120px 0 28px;
  }
}

@media only screen and (min-width: 1024px) {
  .counter {
    padding: 120px 0 28px;
  }
}

@media only screen and (min-width: 1280px) {
  .counter {
    padding: 140px 0 28px;
    display: block;
  }
}

@media only screen and (min-width: 1440px) {
  .counter {
    padding: 160px 0 28px;
  }
}

@media only screen and (min-width: 1920px) {
  .counter {
    padding: 160px 0 28px;
  }
}

.counter__container {
  margin: 0 auto;
  max-width: 90%;
  padding: 32px 0 112px;
}

@media only screen and (min-width: 430px) {
  .counter__container {
    padding: 32px 0 112px;
    max-width: 90%;
  }
}

@media only screen and (min-width: 744px) {
  .counter__container {
    padding: 32px 0 152px;
    max-width: 660px;
  }
}

@media only screen and (min-width: 1024px) {
  .counter__container {
    padding: 32px 0 152px;
    max-width: 660px;
  }
}

@media only screen and (min-width: 1280px) {
  .counter__container {
    padding: 32px 0 172px;
    max-width: 1160px;
  }
}

@media only screen and (min-width: 1440px) {
  .counter__container {
    padding: 32px 0 192px;
    max-width: 1300px;
  }
}

@media only screen and (min-width: 1920px) {
  .counter__container {
    padding: 32px 0 192px;
    max-width: 1600px;
  }
}

.comment-card {
  background: #050607e0;
  box-shadow: 2px 2px 3.8px #0000001a, 5px 6px 10px #0000001f;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  padding: 32px;
  gap: 32px;
}

.comment-card__avatar {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}

.comment-card__avatar img {
  width: 100%;
}

.comment-card__info {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.comment-card__name {
  color: #03ed66;
  text-align: center;
  font-family: Montserrat Alternates;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.comment-card__proffession {
  color: #97989d;
  text-align: center;
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.6;
  text-transform: capitalize;
}

.comment-card__description {
  color: #fff;
  text-align: center;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.comments {
  background-image: url(../images/comment-bg.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.comments__bg-gradient {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.comments__bg-gradient:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(5, 6, 7, 0.7) 12%, transparent 80%);
}

.comments__bg-gradient:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(270deg, rgba(5, 6, 7, 0.7) 12%, transparent 80%);
}

.comments__top-fade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgb(5, 6, 7) 0%, transparent 100%);
}

.comments__bottom-fade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, rgb(5, 6, 7) 0%, transparent 100%);
}

.comments__container {
  margin: 0 auto;
  max-width: 90%;
  padding: 16px 0 80px;
}

@media only screen and (min-width: 430px) {
  .comments__container {
    padding: 32px 0 120px;
    max-width: 90%;
  }
}

@media only screen and (min-width: 744px) {
  .comments__container {
    padding: 32px 0 120px;
    max-width: 660px;
  }
}

@media only screen and (min-width: 1024px) {
  .comments__container {
    padding: 32px 0 120px;
    max-width: 660px;
  }
}

@media only screen and (min-width: 1280px) {
  .comments__container {
    padding: 32px 0 148px;
    max-width: 1160px;
  }
}

@media only screen and (min-width: 1440px) {
  .comments__container {
    padding: 32px 0 148px;
    max-width: 1300px;
  }
}

@media only screen and (min-width: 1920px) {
  .comments__container {
    padding: 32px 0 120px;
    max-width: 1600px;
  }
}

.comments__list {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

@media only screen and (min-width: 744px) {
  .comments__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (min-width: 1280px) {
  .comments__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer {
  background-color: #050607;
}

.footer__container {
  margin: 0 auto;
  max-width: 90%;
  padding: 60px 0 28px;
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 430px) {
  .footer__container {
    padding: 60px 0 28px;
    max-width: 90%;
  }
}

@media only screen and (min-width: 744px) {
  .footer__container {
    padding: 60px 0 44px;
    max-width: 660px;
  }
}

@media only screen and (min-width: 1024px) {
  .footer__container {
    padding: 60px 0 44px;
    max-width: 864px;
  }
}

@media only screen and (min-width: 1280px) {
  .footer__container {
    max-width: 1160px;
  }
}

@media only screen and (min-width: 1440px) {
  .footer__container {
    max-width: 1300px;
  }
}

@media only screen and (min-width: 1920px) {
  .footer__container {
    max-width: 1600px;
  }
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media only screen and (min-width: 1024px) {
  .footer__info {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer__info>div {
    flex: 0 0 auto;
  }

  .footer__info>div:last-child {
    width: 100%;
  }
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media only screen and (min-width: 744px) {
  .footer__top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media only screen and (min-width: 1024px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer .footer-logo__logo-img {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .footer-logo__logo-img img {
  width: 100%;
}

.footer .footer-logo__logo-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

.footer .footer-logo__logo-text span {
  color: #fff;
  font-family: Montserrat Alternates;
  font-size: 18.182px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.footer .office {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.footer .office__name {
  color: #fff;
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}

.footer .office__location {
  color: #fff;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.footer .certified {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer .certified__img {
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .certified__img img {
  width: 100%;
}

.footer .contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer .contact-support {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  border: 1.5px solid #03ed66;
  gap: 10px;
  padding: 8px 24px;
  text-decoration: none;
  width: max-content;
}

.footer .contact-support:hover span {
  transform: skew(-10deg);
}

.footer .contact-support svg {
  width: 20px;
}

.footer .contact-support span {
  color: #fff;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  transition: all 0.2s ease;
  will-change: transform;
}

.footer .contact-telegram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  transition: all 0.2s ease;
  will-change: transform;
}

.footer .contact-telegram:hover {
  transform: scale(1.05);
}

.footer .contact-telegram svg {
  width: 100%;
}

.footer__divider {
  display: block;
  margin-block-start: 28px;
  margin-block-end: 28px;
  overflow: hidden;
  border-color: #e5e5e512;
  border-width: 1.5px;
  width: 100%;
}

.footer__copywriter {
  color: #fff;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

@media only screen and (min-width: 744px) {
  .footer__links {
    flex-direction: row;
    justify-content: flex-start;
  }
}

.footer .user-agreement,
.footer .privacy-policy {
  color: #fff;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.wrap-money {
  background-image: url(../images/stats-bg.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.wrap-money__bg-gradient {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.wrap-money__bg-gradient:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(5, 6, 7, 0.8) 12%, transparent 80%);
}

.wrap-money__bg-gradient:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(270deg, rgba(5, 6, 7, 0.8) 12%, transparent 80%);
}

.wrap-money__top-fade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgb(7, 11, 10) 0%, transparent 100%);
}

.wrap-money__bottom-fade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(5, 6, 7, 0.8) 0%, transparent 100%);
}

.form__protect {
  display: flex;
  align-items: center;
  column-gap: 13px;
  padding: 10px 25px 25px 25px;
}

.form__protect-icon {
  width: 35.021px;
  height: 25px;
  flex-shrink: 0;
}

.form__protect-title {
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
}

.form__protect-description {
  color: #fff;
  font-size: 6px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}


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

button,
input,
select,
textarea {
  font: inherit
}

.wf {
  background-color: var(--reg-form-background-background-color, #fff);
  padding: var(--reg-form-background-padding, 32px);
  box-shadow: 0 0 var(--reg-form-background-shadow-blur, 25px) 0 var(--reg-form-background-shadow-color, rgba(0, 0, 0, .1));
  border-style: solid;
  border-width: var(--reg-form-background-border-width, 0);
  border-color: var(--reg-form-background-border-color, #fff);
  border-radius: var(--reg-form-background-border-radius, 16px);
  font-family: var(--reg-form-general-font-family, "Inter"), sans-serif;
  color: #fff
}

.wf__inputs-margin {
  margin-bottom: 10px
}

.wf__inputs-code {
  margin-bottom: 20px
}

.wf__title {
  display: flex;
  justify-content: center;
  margin-top: 0;
  margin-bottom: var(--reg-form-title-margin-bottom, 12px);
  font-size: var(--reg-form-title-size, 22px);
  font-weight: var(--reg-form-title-weight, 700);
  line-height: 1.4;
  color: var(--reg-form-title-color, #0d1985)
}

.wf__title-content {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: var(--reg-form-title-width, 100%);
  display: block;
  text-align: center
}

.wf__subtitle {
  display: flex;
  justify-content: center;
  margin-top: 0;
  margin-bottom: var(--reg-form-subtitle-margin-bottom, 24px);
  font-size: var(--reg-form-subtitle-size, 18px);
  font-weight: var(--reg-form-subtitle-weight, 500);
  line-height: 1.2;
  color: var(--reg-form-subtitle-color, #000)
}

.wf__subtitle-content {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: var(--reg-form-subtitle-width, 100%);
  display: block;
  text-align: center
}

.wf__confirmation {
  margin-bottom: 20px
}

.wf__checkbox-wrapper {
  padding: 6px 0
}

.wf__checkbox-wrapper:first-child {
  padding-top: 0
}

.wf__checkbox-wrapper:last-child {
  padding-bottom: 0
}

.wf__checkbox {
  padding: 0 15px
}

.wf-fields {
  display: flex;
  flex-direction: row;
  row-gap: var(--reg-form-field-row-gap, 4px);
  -moz-column-gap: var(--reg-form-field-column-gap, 16px);
  column-gap: var(--reg-form-field-column-gap, 16px);
  flex-wrap: wrap
}

.wf-fields__item {
  width: calc(100%/var(--reg-form-field-column, 1) - (var(--reg-form-field-column, 1) - 1)*var(--reg-form-field-column-gap, 16px)/var(--reg-form-field-column, 1));
  flex-grow: 1
}

@media(max-width:600px) {
  .wf-fields__item {
    width: 100%
  }
}

.phone .phone__input-container {
  width: 100%;
  display: flex
}

.phone.wf-input .wf-input__control {
  padding-left: 0;
  align-items: stretch
}

.phone input {
  padding-left: 56px !important
}

.phone .iti__selected-flag {
  padding-left: 15px
}

.phone .wf-input__control-label .iti__selected-flag {
  padding-top: 14px
}

.phone .iti__country-list {
  line-height: 1.25
}

.iti__country-name {
  color: var(--reg-form-country-list-text-color, #000)
}

.code {
  display: flex;
  align-items: center;
  margin-top: 4px
}

.code__input {
  max-width: 150px
}

.code__btn {
  height: 40px;
  margin: 0 0 0 8px;
  padding: 0 12px;
  border-style: none;
  background: transparent;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: underline;
  transition: color .15s ease;
  cursor: pointer;
  color: var(--reg-form-verify-button-text-color, rgba(0, 0, 0, .6))
}

.code__btn:hover {
  color: var(--reg-form-verify-button-text-color-hover, #000)
}

.code__btn[dir=rtl] {
  margin: 0 8px 0 0
}

.wf-btn {
  width: 100%;
  height: var(--reg-form-button-height, 60px);
  background-color: var(--reg-form-button-color, #0d1985);
  padding: 0 20px;
  box-shadow: 0 0 var(--reg-form-button-shadow-blur, 25px) 0 var(--reg-form-button-shadow-color, rgba(0, 0, 0, .1));
  font-size: var(--reg-form-button-size, 20px);
  font-weight: var(--reg-form-button-weight, 700);
  color: var(--reg-form-button-text-color, #fff);
  border-width: var(--reg-form-button-border-width, 0);
  border-style: solid;
  border-color: var(--reg-form-button-border-color, transparent);
  border-radius: var(--reg-form-button-border-radius, 100px);
  cursor: pointer
}

.wf-btn--disabled {
  pointer-events: none;
  background: #959595 !important;
  color: #d6d6d6 !important
}

.wf-btn:hover {
  background-color: var(--reg-form-button-color-hover, #253091)
}

.wf-btn:active {
  background-color: var(--reg-form-button-color-active, #0d1985)
}

