@charset "UTF-8";

@-webkit-keyframes dropdown-display {
  0% {
    opacity: 0;
    -webkit-transform: scale(.98) translateY(-.6em);
    transform: scale(.98) translateY(-.6em)
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0)
  }
}

@keyframes dropdown-display {
  0% {
    opacity: 0;
    -webkit-transform: scale(.98) translateY(-.6em);
    transform: scale(.98) translateY(-.6em)
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0)
  }
}

@-webkit-keyframes dropdown-display-up {
  0% {
    opacity: 0;
    -webkit-transform: scale(.98) translateY(.6em);
    transform: scale(.98) translateY(.6em)
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0)
  }
}

@keyframes dropdown-display-up {
  0% {
    opacity: 0;
    -webkit-transform: scale(.98) translateY(.6em);
    transform: scale(.98) translateY(.6em)
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0)
  }
}

@-webkit-keyframes loadingSpin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}

@keyframes loadingSpin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}

@-webkit-keyframes ss-valueIn {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }
}

@keyframes ss-valueIn {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }
}

@-webkit-keyframes ss-valueOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }

  to {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0
  }
}

@keyframes ss-valueOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }

  to {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0
  }
}

@-webkit-keyframes bounce {

  0%,
  to {
    -webkit-transform: translateY(-25%);
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(.8, 0, 1, 1);
    animation-timing-function: cubic-bezier(.8, 0, 1, 1)
  }

  50% {
    -webkit-transform: none;
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0, 0, .2, 1);
    animation-timing-function: cubic-bezier(0, 0, .2, 1)
  }
}

@keyframes bounce {

  0%,
  to {
    -webkit-transform: translateY(-25%);
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(.8, 0, 1, 1);
    animation-timing-function: cubic-bezier(.8, 0, 1, 1)
  }

  50% {
    -webkit-transform: none;
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0, 0, .2, 1);
    animation-timing-function: cubic-bezier(0, 0, .2, 1)
  }
}

:root {
  --body-font-size: 16px;
  --body-font: "Istok", system-ui, -apple-system, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  --body-font-alt: Georgia, Times, Times New Roman, serif;
  --body-line-height: 161%;
  --body-color: #0B0334;
  --body-background: #FFF;
  --table-header-font-weight: 700;
  --table-cell-padding: 5px 10px;
  --heading-font-weight: 700;
  --heading-line-height: 1.2;
  --heading-margin: 0 0 1em;
  --paragraph-margin: 0 0 1em;
  --list-margin: 1em 0;
  --h1: 28px;
  --h2: 24px;
  --h3: 20px;
  --h4: 18px;
  --h5: 16px;
  --bold-font-weight: 700;
  --text-small: 14px;
  --main: var(--body-color);
  --red: #4D4D4D;
  --link-color: #203735;
  --link-color-hover: #37605C;
  --swiper-theme-color: var(--main);
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial
}

@font-face {
  font-family: Mulish;
  src: url(../fonts/Mulish-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Mulish;
  src: url(../fonts/Mulish-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Mulish;
  src: url(../fonts/Mulish-SemiBold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Mulish;
  src: url(../fonts/Mulish-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Mulish;
  src: url(../fonts/Mulish-ExtraBold.woff2) format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%
}

aside,
details,
footer,
header,
main,
nav,
section {
  display: block
}

hr,
img {
  border: 0
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  overflow: visible;
  display: block;
  height: 1px;
  margin: 30px 0;
  background: #dedede
}

pre {
  font-family: monospace, monospace;
  font-size: 1em
}

a {
  background-color: transparent;
  -webkit-tap-highlight-color: transparent
}

abbr[title] {
  border-bottom: none;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted
}

b,
strong {
  font-weight: 700
}

small {
  font-size: 80%
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline
}

sub {
  bottom: -.25em
}

sup {
  top: -.5em
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top
}

button,
input,
optgroup {
  font-size: 100%;
  line-height: 1.15
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  margin: 0
}

button,
input {
  overflow: visible
}

button,
select {
  text-transform: none
}

[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: button;
  -webkit-tap-highlight-color: transparent;
  outline: 0
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: 0
}

fieldset {
  padding: 0
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal
}

[type=checkbox],
[type=radio],
legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit
}

summary {
  display: list-item
}

[hidden],
template {
  display: none
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

body,
html {
  min-height: 100%
}

body {
  font-family: var(--body-font);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 320px;
  margin: 0;
  padding: 0;
  color: var(--body-color);
  background: var(--body-background)
}

svg {
  max-height: 100%
}

select:not([multiple]) {
  vertical-align: middle
}

table {
  width: 100%;
  max-width: 100%;
  border-spacing: 0;
  border-collapse: separate
}

td,
th {
  line-height: inherit;
  padding: var(--table-cell-padding)
}

th {
  font-weight: var(--table-header-font-weight);
  text-align: left;
  vertical-align: bottom
}

button {
  cursor: pointer
}

td {
  vertical-align: top
}

a {
  text-decoration: underline;
  color: var(--link-color);
  outline: 0
}

a:hover {
  text-decoration: none;
  color: var(--link-color-hover)
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--heading-font-weight);
  line-height: var(--heading-line-height);
  margin: var(--heading-margin)
}

p {
  margin: var(--paragraph-margin)
}

p:last-child {
  margin-bottom: 0
}

dl,
ol,
ul {
  margin: var(--list-margin)
}

ol {
  list-style: decimal
}

h1 {
  font-size: var(--h1)
}

h2 {
  font-size: var(--h2)
}

h3 {
  font-size: var(--h3)
}

h4 {
  font-size: var(--h4)
}

h5 {
  font-size: var(--h5)
}

::-moz-focus-inner {
  padding: 0;
  border: 0
}

.hidden-box {
  display: none;
  visibility: hidden
}

iframe {
  border: 0;
  outline: 0
}

.videoWrapper {
  position: relative;
  height: 0;
  padding-bottom: 56.25%
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.text-center {
  text-align: center
}

blockquote {
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  line-height: 189%;
  position: relative;
  max-width: 830px;
  margin: 42px 0;
  padding-left: 27px;
  color: #000
}

@media screen and (min-width:681px) {
  blockquote {
    margin: 28px 0
  }
}

@media screen and (min-width:1200px) {
  blockquote {
    margin: 48px 0
  }
}


blockquote:after {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;
  width: 3px;
  background: #000
}

.icon-figure-3 {
  background: url(../images/sprite.svg?v1697124313362) 0 0 no-repeat;
  width: 226px;
  height: 278px;
  display: inline-block
}

input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
select {
  height: auto
}
/*
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
select,
textarea {
  color: #141414;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
  -webkit-transition: border-color .3s ease;
  -o-transition: border-color .3s ease;
  transition: border-color .3s ease;
  border: 0;
  outline: 0;
  -webkit-appearance: none;
  height: 34px;
  padding: 10px 15px;
  border-radius: 20px;
  background: #FFF;
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.30);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.30);
}*/

input[type=email]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  font-weight: 700;
  color: #8A8A8A
}

input[type=email]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=text]::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
  font-weight: 700;
  color: #8A8A8A
}

input[type=email]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  font-weight: 700;
  color: #8A8A8A
}

input[type=email]::-ms-input-placeholder,
input[type=number]::-ms-input-placeholder,
input[type=password]::-ms-input-placeholder,
input[type=search]::-ms-input-placeholder,
input[type=tel]::-ms-input-placeholder,
input[type=text]::-ms-input-placeholder,
select::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  font-weight: 700;
  color: #8A8A8A
}

input[type=email]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=text]::placeholder,
select::placeholder,
textarea::placeholder {
  font-weight: 700;
  color: #8A8A8A
}

input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
select:focus,
textarea:focus {
  border-color: #b1b1b1
}

input[type=email].error,
input[type=number].error,
input[type=password].error,
input[type=search].error,
input[type=tel].error,
input[type=text].error,
select.error,
textarea.error {
  color: var(--red);
  border-color: var(--red)
}

input[type=email].disabled,
input[type=email][disabled],
input[type=email][readonly],
input[type=number].disabled,
input[type=number][disabled],
input[type=number][readonly],
input[type=password].disabled,
input[type=password][disabled],
input[type=password][readonly],
input[type=search].disabled,
input[type=search][disabled],
input[type=search][readonly],
input[type=tel].disabled,
input[type=tel][disabled],
input[type=tel][readonly],
input[type=text].disabled,
input[type=text][disabled],
input[type=text][readonly],
select.disabled,
select[disabled],
select[readonly],
textarea.disabled,
textarea[disabled],
textarea[readonly] {
  cursor: default;
  color: #939393;
  border-color: #bcbcbc;
  background-color: #f9f9f9
}

select {
  padding-right: 35px;
  background-image: url(../images/select.svg);
  background-repeat: no-repeat;
  background-position: 100% 50%
}

input[type=checkbox],
input[type=radio] {
  display: inline-block;
  vertical-align: middle
}

textarea {
  overflow: auto;
  height: auto
}

.error-message {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  margin-top: 5px;
  color: var(--red)
}

.checkbox-style,
label.checkbox-style {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: 0;
  -webkit-tap-highlight-color: transparent;
  -ms-flex-negative: 0;
  flex-shrink: 0
}

.checkbox-style>span,
label.checkbox-style>span {
  position: relative;
  display: inline-block;
  padding: 2px 0 2px 28px;
  vertical-align: top;
  color: #a7a8b1
}

.checkbox-style>span:before,
label.checkbox-style>span:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  -webkit-transition: border-color .3s ease, background-color .3s ease;
  -o-transition: border-color .3s ease, background-color .3s ease;
  transition: border-color .3s ease, background-color .3s ease;
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .15);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .15);
  background: #fff;
  border-radius: 5px
}

.checkbox-style>span:after,
label.checkbox-style>span:after {
  content: "";
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
  opacity: 0;
  border-radius: 5px;
  background-image: url(../images/hero/checkbox.svg);
  background-repeat: no-repeat;
  background-size: cover
}

.checkbox-style input[type=checkbox],
.radio-style input[type=radio],
label.checkbox-style input[type=checkbox],
label.radio-style input[type=radio] {
  position: absolute;
  top: 0;
  left: -30px;
  width: 1px;
  height: 1px;
  outline: 0;
  -webkit-tap-highlight-color: transparent
}

.checkbox-style input[type=checkbox]:checked~span:after,
label.checkbox-style input[type=checkbox]:checked~span:after {
  opacity: 1
}

.checkbox-style input[type=checkbox].disabled~span:after,
.checkbox-style input[type=checkbox][disabled]~span:after,
label.checkbox-style input[type=checkbox].disabled~span:after,
label.checkbox-style input[type=checkbox][disabled]~span:after {
  background: #e3e3e3
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0
}

input[type=number] {
  -moz-appearance: textfield
}

.checkbox-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px
}

.checkbox-wrap__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #000
}

.radio-style>span,
label.radio-style>span {
  position: relative;
  width: 100%;
  font-weight: 700;
  font-size: 12px;
  line-height: 120%;
  text-align: start;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  z-index: 2;
  cursor: pointer;
  padding: 0 10px
}

.radio-style>span span,
label.radio-style>span span {
  color: #FF8300;
  position: relative;
  z-index: 3
}

.radio-style>span:after,
.radio-style>span:before,
label.radio-style>span:after,
label.radio-style>span:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  -webkit-transition: border-color .3s ease, background-color .3s ease;
  -o-transition: border-color .3s ease, background-color .3s ease;
  transition: border-color .3s ease, background-color .3s ease;
  border: 0;
  cursor: pointer;
  height: 34px;
  padding: 10px 15px;
  border-radius: 20px;
  background: #FFF;
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.30);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.30);
}

.radio-style input[type=radio]:checked~span:after,
label.radio-style input[type=radio]:checked~span:after {
  opacity: 1;
  border-radius: 20px;
  background: #FF8300;
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.30);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.30);
  color: #fff
}

.radio-style input[type=radio]:checked~span span,
label.radio-style input[type=radio]:checked~span span {
  color: #fff
}

.radio {
  width: 100%;
  height: 34px;
  position: relative
}

.radio--questions {
  width: auto;
  height: 24px
}

.radio--questions:not(:last-child) {
  margin-bottom: 10px
}

.radio--questions .radio-style>span,
.radio--questions label.radio-style>span {
  position: relative;
  width: auto;
  text-align: center;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  z-index: 2;
  cursor: pointer;
  padding: 0 10px
}

@media screen and (min-width:1200px) {

  .radio--questions .radio-style>span,
  .radio--questions label.radio-style>span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
  }
}

.radio--questions .radio-style>span,
.radio--questions label.radio-style>span {
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  color: #191919
}

.radio--questions .radio-style>span span,
.radio--questions label.radio-style>span span {
  color: #000;
  position: relative;
  background: unset;
  -webkit-text-fill-color: unset;
  z-index: 3;
  text-shadow: 0 2px 4px 0 rgba(0, 0, 0, .25)
}

.radio--questions .radio-style>span:after,
.radio--questions .radio-style>span:before,
.radio--questions label.radio-style>span:after,
.radio--questions label.radio-style>span:before {
  padding: 0
}

.form__row {
  position: relative
}

.form__row:not(:last-child) {
  margin-bottom: 18px
}

.form_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form__row:first-child {
  margin-top: 0
}

.form__input.active .form__error,
.form__row.active .form__error {
  margin-top: 10px;
  visibility: visible;
  opacity: 1;
  height: auto
}

.form__row.active .form__input input {
  background: #ffeaea
}

.form__input.active input::-webkit-input-placeholder,
.form__row.active .form__input input::-webkit-input-placeholder {
  color: #4D4D4D
}

.form__input.active input::-moz-placeholder,
.form__row.active .form__input input::-moz-placeholder {
  color: #4D4D4D
}

.form__input.active input:-ms-input-placeholder,
.form__row.active .form__input input:-ms-input-placeholder {
  color: #4D4D4D
}

.form__input.active input::-ms-input-placeholder,
.form__row.active .form__input input::-ms-input-placeholder {
  color: #4D4D4D
}

.form__input.active input::placeholder,
.form__row.active .form__input input::placeholder {
  color: #4D4D4D
}

.form__row.active .radio-style>span:after,
.form__row.active .radio-style>span:before,
.form__row.active label.radio-style>span:after,
.form__row.active label.radio-style>span:before {
  opacity: 1;
  background: #ffefef;
  color: #ff2e37
}

.form__row.active .radio-style>span span,
.form__row.active label.radio-style>span span {
  color: #ff2e37;
  background: unset;
  -webkit-text-fill-color: unset
}

.form__row input[type=email],
.form__row input[type=number],
.form__row input[type=password],
.form__row input[type=search],
.form__row input[type=tel],
.form__row input[type=text],
.form__row select,
.form__row textarea {
  width: 100%;
  vertical-align: top
}

.form__row>label:not(.checkbox-style) {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 0 10px;
  cursor: pointer;
  color: #a7a8b1
}

.form__row>label:not(.checkbox-style)>span {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0
}

.form__row>label:not(.checkbox-style) .error-message {
  margin-top: 0;
  margin-left: 10px
}

.form__row>label:not(.checkbox-style) .error-message+span {
  color: var(--red)
}

.form__input {
  position: relative;
  z-index: 1;
  width: 100%
}

.form__input input {
  width: 100%
}

.form__input.active input {
  background: #ffeaea
}

.form__input--triple {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px
}

@media screen and (min-width:1200px) {
  .form__input--triple {
    gap: 20px
  }
}

@media screen and (min-width:681px) {
  .form__input--triple input:last-child {
    min-width: 274px
  }
}

.form__name {
  font-weight: 700;
  font-size: 12px;
  line-height: 120%;
  color: #141414;
  text-align: center;
  margin-bottom: 10px;
}

.form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px
}

@media screen and (min-width:1200px) {
  .form__group {
    gap: 20px
  }
}

.form__hint {
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  position: relative;
  z-index: 2;
  margin: 5px 0 0;
  color: #444
}

.form__error {
  font-weight: 700;
  font-size: 12px;
  line-height: 120%;
  color: #4D4D4D;
  height: 0;
  opacity: 0;
  visibility: hidden;
  margin-top: 0
}

.form__text {
  color: #141414;
  text-align: center;
}

.form__text,
.form__text .btn-text--light {
  font-weight: 400
}

.form__about,
.form__text,
.form__title {
  font-size: 11px;
  line-height: 120%
}

.form__about {
  font-weight: 400;
  text-align: right;
  color: #141414
}

.form__title {
  color: #0F0F0F;
  text-align: center;
  font-weight: 700;
  line-height: 120%;
  font-size: 14px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

@media screen and (min-width:1200px) {
  .form__title {
    font-size: 18px;
    margin-bottom: 40px
  }
}

.form__wrap:not(:last-child) {
  margin-bottom: 10px
}

@media screen and (min-width:1200px) {
  .form__wrap:not(:last-child) {
    margin-bottom: 20px
  }
}

.form-password {
  position: relative
}

.form-password input[type=password],
.form-password input[type=text] {
  position: relative;
  z-index: 1;
  padding-right: 50px
}

.form-password__button,
.form-password__button:after {
  position: absolute;
  z-index: 10;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease
}

.form-password__button {
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 42px;
  padding: 0;
  cursor: pointer;
  vertical-align: middle;
  opacity: .3;
  border: 0;
  outline: 0;
  background: 0 0;
  -webkit-tap-highlight-color: transparent
}

.b-btn,
.form-password__button i {
  position: relative;
  vertical-align: middle
}

.form-password__button i {
  z-index: 1
}

.form-password__button:after {
  content: "";
  top: 24px;
  left: 9px;
  display: block;
  width: 24px;
  height: 1px;
  -webkit-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  transform: rotate(-30deg);
  border-top: 1px solid #fff;
  background: #000
}

@media screen and (min-width:1200px) {
  .form-password__button:hover {
    opacity: 1
  }
}

.form-password__button.active {
  opacity: 1
}

.form-password__button.active:after {
  opacity: 0
}

.b-btn {
  line-height: 1.25;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 39px;
  padding: 10px 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: background .3s ease, color .3s ease, border-color .3s ease;
  -o-transition: background .3s ease, color .3s ease, border-color .3s ease;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 20px;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  gap: 10px
}

.b-btn.focus,
.b-btn:focus-within,
.b-btn:hover {
  outline: 0
}

.b-btn.disabled,
.b-btn:disabled {
  cursor: default;
  opacity: .45;
  background: inherit;
  -webkit-box-shadow: none;
  box-shadow: none
}

.b-btn>svg {
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto
}

.b-btn--big {
  font-size: 18px;
  min-height: 59px;
  padding: 4px 30px
}

.b-btn--small {
  font-size: 15px;
  min-height: 39px;
  padding: 4px 16px
}

.b-btn--primary,
.b-btn--primary span {
  font-weight: 700;
  line-height: 120%;
  color: #fff
}

.b-btn--primary {
  border-radius: 10px;
  background: radial-gradient(48.72% 50.19% at 50% 51.28%, #414141 0%, #070707 100%);
  font-size: 12px;
  width: 100%
}

@media screen and (min-width:1200px) {
  .b-btn--primary {
    font-size: 12px;
    line-height: 120%
  }
}

.b-btn--primary span {
  font-size: 14px;
  text-align: center;
  display: block
}

@media screen and (min-width:1200px) {
  .b-btn--primary span {
    font-size: 20px;
    line-height: 120%
  }
}

.buttons-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.b-btn--secondary,
.b-btn--secondary span {
  font-weight: 700;
  line-height: 120%;
  text-align: center
}

.b-btn--secondary {
  border: 0;
  color: #070707;
  text-align: center;
  font-family: Mulish;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: 120%;
  /* 19.2px */
  background: transparent;
  width: 257px;
  margin: 0 auto;
  padding: 10px 15px;
  border-radius: 10px;
  border: 1px solid #070707;
}

.b-btn--secondary:hover {
  background: #070707;
  color: #fff;
}

.b-btn--secondary span {
  font-size: 14px;
  color: #fff;
  display: block
}

.primary_3 {
  width: 257px;
  margin: 0 auto;
  display: block;
  padding: 10px 15px;
}

@media screen and (min-width:1200px) {
  .b-btn--secondary span {
    font-size: 20px;
    line-height: 120%
  }
}

.b-btn--loading:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 10px;
  margin-left: -15px;
  -webkit-transition: border .3s ease;
  -o-transition: border .3s ease;
  transition: border .3s ease;
  -webkit-animation: loadingSpin 1s infinite linear;
  animation: loadingSpin 1s infinite linear;
  vertical-align: middle;
  border-radius: 50%
}

.b-btn--loading.outline:before {
  border: 3px solid rgba(0, 0, 0, .2);
  border-top-color: #000
}

.b-btn--loading.outline:hover:before,
.b-btn--loading:before {
  border: 3px solid rgba(255, 255, 255, .6);
  border-top-color: #fff
}

.b-btn--full-size {
  display: block;
  width: 100%
}

.b-btn--full-size+.full-size {
  margin-right: 5px
}


.b-btn-grouping {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex
}

.b-btn-grouping .b-btn {
  margin-right: 0;
  border-radius: 0
}

.b-btn-grouping .b-btn:first-child {
  border-radius: 6pc 0 0 6pc
}

.b-btn-grouping .b-btn:last-child {
  border-radius: 0 6pc 6pc 0
}

.b-btn-grouping .b-btn.outline {
  z-index: 1;
  margin-left: -1px
}

.b-btn-grouping .b-btn.outline:hover {
  z-index: 2
}

.b-btn-grouping .b-btn.outline.active {
  z-index: 3
}

.b-btn-grouping .b-btn.outline:first-child {
  margin-left: 0
}

a.b-btn.disabled,
fieldset[disabled] a.b-btn {
  pointer-events: none
}

input[type=button].full-size,
input[type=reset].full-size,
input[type=submit].full-size {
  width: 100%
}

:root {
  --ss-primary-color: #5897FB;
  --ss-bg-color: #FFF;
  --ss-font-color: #4D4D4D;
  --ss-font-placeholder-color: #8D8D8D;
  --ss-disabled-color: #DCDEE2;
  --ss-border-color: #DCDEE2;
  --ss-highlight-color: #4D4D4D;
  --ss-success-color: #00B755;
  --ss-error-color: #4D4D4D;
  --ss-focus-color: #5897FB;
  --ss-main-height: 30px;
  --ss-content-height: 300px;
  --ss-spacing-l: 7px;
  --ss-spacing-m: 5px;
  --ss-spacing-s: 3px;
  --ss-animation-timing: 0.2s;
  --ss-border-radius: 4px
}

.ss-hide {
  display: none !important
}

.ss-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: var(--ss-font-color);
  min-height: var(--ss-main-height);
  width: 100%;
  padding: var(--ss-spacing-s);
  cursor: pointer;
  border: 1px solid var(--ss-border-color);
  border-radius: var(--ss-border-radius);
  background-color: var(--ss-bg-color);
  outline: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: background-color var(--ss-animation-timing);
  -o-transition: background-color var(--ss-animation-timing);
  transition: background-color var(--ss-animation-timing);
  overflow: hidden
}

.ss-content .ss-search input:focus,
.ss-main:focus {
  -webkit-box-shadow: 0 0 5px var(--ss-focus-color);
  box-shadow: 0 0 5px var(--ss-focus-color)
}

.ss-main.ss-disabled {
  background-color: var(--ss-disabled-color);
  cursor: not-allowed
}

.ss-main.ss-disabled .ss-values .ss-disabled {
  color: var(--ss-font-color)
}

.ss-main.ss-disabled .ss-values .ss-value .ss-value-delete {
  cursor: not-allowed
}

.ss-main.ss-open-below {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0
}

#phone-hint {
  padding-top: 10px;
}

.ss-main .ss-values .ss-placeholder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto 0;
  line-height: 1em;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  color: var(--ss-font-placeholder-color);
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap
}

.primary_step {
  height: auto;
  gap: 0;
}

.ss-main .ss-values .ss-max {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  color: var(--ss-bg-color);
  line-height: 1;
  padding: var(--ss-spacing-s) var(--ss-spacing-m);
  background-color: var(--ss-primary-color);
  border-radius: var(--ss-border-radius)
}

.ss-main .ss-values .ss-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto 0 auto var(--ss-spacing-s)
}

.ss-main .ss-values .ss-value,
.ss-main .ss-values .ss-value.ss-value-out {
  -webkit-animation-duration: var(--ss-animation-timing);
  animation-duration: var(--ss-animation-timing);
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out
}

.ss-main .ss-values .ss-value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--ss-primary-color);
  border-radius: var(--ss-border-radius);
  -webkit-animation-name: ss-valueIn;
  animation-name: ss-valueIn;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both
}

.ss-main .ss-values .ss-value.ss-value-out {
  -webkit-animation-name: ss-valueOut;
  animation-name: ss-valueOut
}

.ss-main .ss-values .ss-value .ss-value-text {
  font-size: 12px;
  color: var(--ss-bg-color);
  line-height: 1;
  padding: var(--ss-spacing-s) var(--ss-spacing-m)
}

.ss-main .ss-values .ss-value .ss-value-delete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: var(--ss-spacing-s) var(--ss-spacing-m);
  cursor: pointer;
  border-left: solid 1px var(--ss-bg-color);
  -webkit-box-sizing: content-box;
  box-sizing: content-box
}

.ss-main .ss-values .ss-value .ss-value-delete,
.ss-main .ss-values .ss-value .ss-value-delete svg {
  height: var(--ss-spacing-l);
  width: var(--ss-spacing-l)
}

.ss-main .ss-deselect svg path,
.ss-main .ss-values .ss-value .ss-value-delete svg path {
  fill: none;
  stroke: var(--ss-bg-color);
  stroke-width: 18;
  stroke-linecap: round;
  stroke-linejoin: round
}

.ss-main .ss-deselect {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  margin: 0 var(--ss-spacing-m) 0 var(--ss-spacing-m)
}

.ss-main .ss-deselect svg {
  width: 8px;
  height: 8px
}

.ss-main .ss-deselect svg path {
  stroke: var(--ss-font-color);
  stroke-width: 20
}

.ss-main .ss-arrow,
.ss-main .ss-deselect {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable .ss-arrow path,
.ss-main .ss-arrow path {
  fill: none;
  stroke: FF8300;
  stroke-width: 18;
  stroke-linecap: round;
  stroke-linejoin: round;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition: var(--ss-animation-timing);
  -o-transition: var(--ss-animation-timing);
  transition: var(--ss-animation-timing)
}

.ss-content {
  max-height: var(--ss-content-height);
  border: solid 1px var(--ss-border-color);
  background-color: var(--ss-bg-color)
}

.ss-content.ss-relative {
  position: relative;
  height: 100%
}

.ss-content.ss-open-above {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  opacity: 1;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
  border-top-left-radius: var(--ss-border-radius);
  border-top-right-radius: var(--ss-border-radius)
}

.ss-content.ss-open-below {
  border-bottom-left-radius: var(--ss-border-radius);
  border-bottom-right-radius: var(--ss-border-radius)
}

.ss-content .ss-search {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: var(--ss-spacing-l) var(--ss-spacing-l) var(--ss-spacing-m) var(--ss-spacing-l)
}

.ss-content .ss-search input {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: inherit;
  line-height: inherit;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  padding: var(--ss-spacing-m) var(--ss-spacing-l);
  margin: 0;
  border: 1px solid var(--ss-border-color);
  border-radius: var(--ss-border-radius);
  background-color: var(--ss-bg-color);
  outline: 0;
  text-align: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.ss-content .ss-search input::-webkit-input-placeholder {
  color: var(--ss-font-placeholder-color);
  vertical-align: middle
}

.ss-content .ss-search input::-moz-placeholder {
  color: var(--ss-font-placeholder-color);
  vertical-align: middle
}

.ss-content .ss-search input:-ms-input-placeholder {
  color: var(--ss-font-placeholder-color);
  vertical-align: middle
}

.ss-content .ss-search input::-ms-input-placeholder {
  color: var(--ss-font-placeholder-color);
  vertical-align: middle
}

.ss-content .ss-search input::placeholder {
  color: var(--ss-font-placeholder-color);
  vertical-align: middle
}

.ss-content .ss-search .ss-addable {
  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;
  cursor: pointer;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  height: auto;
  margin: 0 0 0 var(--ss-spacing-m);
  border: 1px solid var(--ss-border-color);
  border-radius: var(--ss-border-radius)
}

.ss-content .ss-search .ss-addable svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 12px;
  height: 12px;
  margin: auto var(--ss-spacing-m) auto var(--ss-spacing-m)
}

.ss-content .ss-search .ss-addable svg path {
  fill: none;
  stroke: var(--ss-font-color);
  stroke-width: 18;
  stroke-linecap: round;
  stroke-linejoin: round
}

.ss-content .ss-list {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto
}

.ss-content .ss-list .ss-error {
  color: var(--ss-error-color);
  padding: var(--ss-spacing-l)
}

.ss-content .ss-list .ss-searching {
  color: var(--ss-font-color);
  padding: var(--ss-spacing-l)
}

.ss-content .ss-list .ss-optgroup.ss-close .ss-option {
  display: none !important
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: var(--ss-spacing-m) var(--ss-spacing-l) var(--ss-spacing-m) var(--ss-spacing-l)
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-label-text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  font-weight: 700;
  color: var(--ss-font-color)
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label:has(.ss-arrow) {
  cursor: pointer
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: var(--ss-spacing-m)
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  cursor: pointer
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall:hover {
  opacity: .5
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall.ss-selected svg path {
  stroke: var(--ss-error-color)
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall span {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  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;
  font-size: 60%;
  text-align: center;
  padding: 0 var(--ss-spacing-s) 0 0
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 13px;
  height: 13px
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg path {
  fill: none;
  stroke: var(--ss-success-color);
  stroke-linecap: round;
  stroke-linejoin: round
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg:first-child {
  stroke-width: 5
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg:last-child {
  stroke-width: 11
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  cursor: pointer
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable .ss-arrow {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 10px;
  height: 10px
}

.ss-content .ss-list .ss-optgroup .ss-option {
  padding: var(--ss-spacing-s) var(--ss-spacing-s) var(--ss-spacing-s) calc(var(--ss-spacing-l)*3)
}

.ss-content .ss-list .ss-option {
  padding: var(--ss-spacing-m) var(--ss-spacing-l) var(--ss-spacing-m) var(--ss-spacing-l);
  color: var(--ss-font-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 700;
  font-size: 12px;
  line-height: 120%;
  color: #83383a;
  border: 1px solid transparent;
  border-radius: 10px
}

.ss-content .ss-list .ss-option:hover {
  color: var(--ss-bg-color);
  background-color: var(--ss-primary-color)
}

.ss-content .ss-list .ss-option.ss-highlighted,
.ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected {
  color: var(--ss-bg-color);
  background-color: var(--ss-primary-color)
}

.ss-content .ss-list .ss-option.ss-disabled {
  cursor: not-allowed;
  background-color: var(--ss-disabled-color)
}

.ss-content .ss-list .ss-option.ss-disabled:hover {
  color: var(--ss-font-color)
}

.ss-content .ss-list .ss-option .ss-search-highlight {
  background-color: var(--ss-highlight-color)
}

.modal,
.modal-content {
  width: 100%;
  padding: 10px
}

.modal {
  position: fixed;
  z-index: 8888;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  overflow-y: auto;
  -webkit-box-align: normal;
  -ms-flex-align: normal;
  align-items: normal;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: normal;
  -ms-flex-pack: normal;
  justify-content: normal;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: none
}

.modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.modal-content {
  border-radius: 10px;
  margin: auto;
  max-width: 608px;
  height: 417px;
  position: relative;
  border-radius: 10px;
  background: #F5F6FF;
  box-shadow: 0 2px 10px 0 rgba(129, 129, 129, 0.50);
}

@media screen and (min-width:1200px) {
  .modal-content {
    height: 517px;
    padding: 20px
  }
}

.modal__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.modal-close {
  background: 0 0;
  border: 0;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: -40px;
  right: 0
}

.modal__title {
  color: #141414;
  font-family: Mulish;
  font-size: 12px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 10px;
}

.modal__wrap {
  max-height: 339px;
  overflow-y: auto;
  margin-bottom: 15px
}

@media screen and (min-width:1200px) {
  .modal__wrap {
    max-height: 417px
  }
}

.modal__wrap::-webkit-scrollbar {
  width: 4px;
  height: 10px
}

.modal__wrap::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px
}

.modal__wrap::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px
}

.modal__group:not(:last-child) {
  margin-bottom: 15px
}

.modal__buttons button,
.modal__name,
.modal__text {
  font-weight: 400;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .25)
}

.modal__name {
  margin-bottom: 10px;
  font-size: 16px;
  color: #0e0e0e
}

.modal__buttons button,
.modal__text {
  font-size: 12px;
  line-height: 120%;
  color: #000
}

.modal--contacts .modal__wrap {
  overflow-y: unset;
  max-height: unset
}

.modal--contacts .modal-content {
  height: unset
}

.modal--hier .modal__title {
  margin-bottom: 10px
}

@media screen and (min-width:1200px) {
  .modal--hier .modal__title {
    margin-bottom: 30px
  }
}

.modal--achtung .modal-content {
  background-image: url(../images/hero/form-bg.png);
  background-repeat: no-repeat;
  background-size: cover
}

.modal--achtung .modal__title {
  text-align: center;
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #83383a), to(#83383a));
  background: -o-linear-gradient(bottom, #83383a 0, #83383a 100%);
  background: linear-gradient(0deg, #83383a 0, #83383a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 5px rgba(0, 0, 0, .3)
}

@media screen and (min-width:1200px) {
  .modal--achtung .modal__title {
    margin-bottom: 25px;
    font-size: 20px
  }
}

.modal--achtung .modal__text,
.tab-btn span {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #83383a), to(#83383a));
  background: -o-linear-gradient(bottom, #83383a 0, #83383a 100%);
  background: linear-gradient(0deg, #83383a 0, #83383a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.modal--achtung .modal__text {
  text-align: center;
  padding: 0 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, .3)
}

@media screen and (min-width:1200px) {
  .modal--achtung .modal__text {
    margin-bottom: 25px
  }
}

.modal--achtung .modal__text--unset {
  background: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset
}

.modal__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.modal__buttons button {
  background-color: transparent;
  padding: 0;
  border: 0;
  font-weight: 700;
  text-align: center
}

.modal__text--head {
  border-bottom: 1px solid #b1b1b1;
  padding: 10px 0;
  margin-bottom: 15px
}

.modal__subtext {
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  color: #b1b1b1;
  margin-top: 10px
}

.tab-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

@media screen and (min-width:1200px) {
  .tab-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px
  }
}

.tab-btn,
.tab-btn.active {
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .15);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .15)
}

.tab-btn {
  cursor: pointer;
  text-align: center;
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 15px 10px;
  background: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .25)
}

.tab-btn span {
  font-weight: 700;
  font-size: 14px;
  line-height: 120%
}

.tab-btn.active {
  background: #b8e6c4
}

.tab-content {
  display: none
}

.tab-content.active {
  display: block
}

.modal--tabs .modal-content {
  height: 626px
}

@media screen and (min-width:1200px) {
  .modal--tabs .modal-content {
    height: 517px
  }
}

.modal--tabs .modal__wrap {
  max-height: 262px
}

.page-wrapper {
  overflow: hidden
}

.container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 1148px;
  max-width: 100%;
  margin: auto;
  padding: 0 12px
}

.list-reset {
  padding: 0;
  list-style: none;
  margin: 0
}

.scroll {
  overflow: hidden;
  position: fixed;
  width: 100%
}

.hero {
  background: #FFBBCE;
  padding: 5px 0
}


@media screen and (min-width:1200px) {
  .hero {
    padding: 5px 0
  }
}

.hero__wrapper {
  position: relative
}

.hero__img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 148px
}

@media screen and (min-width:1200px) {
  .hero__img {
    width: 345px
  }
}

.hero__text {
  font-weight: 600;
  font-size: 12px;
  line-height: 120%;
  text-transform: uppercase;
  color: #fe0000;
  margin-bottom: 10px;
  max-width: 172px
}

@media screen and (min-width:1200px) {
  .hero__text {
    font-size: 28px;
    line-height: 120%;
    margin-bottom: 15px;
    max-width: unset
  }
}

.hero__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 120%;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(52.88%, #fff), to(#999));
  background: -o-linear-gradient(top, #fff 52.88%, #999 100%);
  background: linear-gradient(180deg, #fff 52.88%, #999 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px
}

@media screen and (min-width:1200px) {
  .hero__title {
    font-weight: 800;
    font-size: 110px;
    line-height: 120%
  }
}

.date__text {
  font-weight: 500;
  font-size: 11px;
  line-height: 120%;
  color: #fff;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background: rgba(0, 0, 0, .29);
  display: inline-block;
  border: 1px solid #fe0000;
  border-radius: 10px;
  padding: 5px 10px
}

@media screen and (min-width:1200px) {
  .date__text {
    font-size: 16px
  }
}

.date__img {
  border: 1px solid #ff6e00;
  border-radius: 10px;
  padding: 5px 10px;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background: rgba(0, 0, 0, .29)
}

.main {
  padding: 30px 0
}

@media screen and (min-width:1200px) {
  .main {
    padding: 80px 0
  }
}

.main__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 20px
}

@media screen and (min-width:1200px) {
  .main__wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr
  }
}

.main__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px
}

@media screen and (min-width:1200px) {
  .main__left {
    display: block
  }
}

.main__img {
  width: 178px
}

@media screen and (min-width:1200px) {
  .main__img {
    width: 608px
  }
}

.alert__icon svg,
.main__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.alert__icon svg {
  max-width: 50px;
}

.ball {
  max-width: 155px
}

.ball__text {
  font-weight: 700;
  font-size: 12px;
  line-height: 120%;
  text-align: center;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #83383a), to(#83383a));
  background: -o-linear-gradient(bottom, #83383a 0, #83383a 100%);
  background: linear-gradient(0deg, #83383a 0, #83383a 100%);
  background-clip: text;
  margin-bottom: 10px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 5px 0 rgba(0, 0, 0, .3)
}

@media screen and (min-width:1200px) {
  .ball__text {
    font-size: 14px;
    line-height: 120%
  }
}

.ball__img {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  -webkit-animation: bounce 1s infinite;
  animation: bounce 1s infinite
}

@media screen and (min-width:1200px) {
  .ball__img {
    width: 81px;
    height: 81px
  }
}

.form-wrapper {
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .25);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, .25);
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.45);
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.50);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.50);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.form-wrapper__title {
  color: #FF8300;
  text-align: center;
  font-family: Mulish;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 24px */
  text-transform: uppercase;
  margin-bottom: 10px;
}

@media screen and (min-width:1200px) {
  .form-wrapper__title {
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 10px
  }
}

.form__valid {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  right: 0;
}

.btn-text {
  font-weight: 700;
  font-size: 12px;
  line-height: 120%;
  color: #FF8300;
  padding: 0;
  border: 0;
  background-color: transparent
}

.form--two .b-btn--primary,
.ss-content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.ss-content {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  width: auto;
  max-height: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: opacity var(--ss-animation-timing), -webkit-transform var(--ss-animation-timing);
  transition: opacity var(--ss-animation-timing), -webkit-transform var(--ss-animation-timing);
  -o-transition: transform var(--ss-animation-timing), opacity var(--ss-animation-timing);
  transition: transform var(--ss-animation-timing), opacity var(--ss-animation-timing);
  transition: transform var(--ss-animation-timing), opacity var(--ss-animation-timing), -webkit-transform var(--ss-animation-timing);
  opacity: 0;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: center top;
  -ms-transform-origin: center top;
  transform-origin: center top;
  overflow: hidden;
  z-index: 10000;
  border-radius: 20px;
  background: #fff;
  padding: 8px;
  border: 1px solid #b1b1b1
}

.ss-content .ss-list .ss-option.ss-highlighted,
.ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected {
  background: #b8e6c4;
  color: #83383a
}

.ss-content .ss-list .ss-option:hover {
  background: #b8e6c4;
  color: #83383a
}

.ss-main .ss-arrow path {
  stroke: #FF8300
}

.ss-main,
.ss-main.ss-open-below {
  border-radius: 5px
}

.ss-main.ss-open-below .ss-placeholder {
  color: var(--white-color)
}

.ss-main {
  border: 0;
  border-radius: 20px;
  background: #FFF;
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.30);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.30);
  height: 34px;
  padding: 10px 15px;
  margin-bottom: 10px;
}

.ss-content .ss-search input:focus,
.ss-main:focus {
  -webkit-box-shadow: unset;
  box-shadow: unset
}

.ss-main.ss-open-above {
  border-top-left-radius: unset;
  border-top-right-radius: unset
}

.ss-main.ss-open-above .ss-arrow path {
  fill: #83383a
}

.ss-main .ss-arrow {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 18px;
  height: 17px;
}

.ss-content.ss-open-above {
  margin-bottom: 10px !important;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px
}

.ss-content.ss-open-below {
  opacity: 1;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: center top;
  -ms-transform-origin: center top;
  transform-origin: center top;
  border-radius: 5px;
  border: 0;
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .15);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .15)
}

.ss-main .ss-values {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: var(--ss-spacing-m);
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  font-weight: 700;
  font-size: 12px;
  line-height: 120%;
  color: #8A8A8A
}

.ss-content .ss-list .ss-option:not(:last-child) {
  margin-bottom: 10px
}

.questions {
  border-radius: 10px;
  background: linear-gradient(107deg, #F5F6FF 0%, #AFC9FE 100%);
  box-shadow: 0 2px 10px 0 rgba(129, 129, 129, 0.50);
  padding: 20px;
}

.security {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

}

@media screen and (min-width:1200px) {
  .security {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 40px
  }
}

.questions__title,
.security__item {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  text-align: center
}

.security__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  background: radial-gradient(100% 50% at 50.24% 1.11%, #414141 0%, #070707 100%);
  box-shadow: 0 2px 10px 0 rgba(129, 129, 129, 0.50);
  padding: 5px 15px;
  gap: 5px;
  width: 245px;
  color: #FFF;
  text-align: center;
  font-family: Mulish;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  /* 14.4px */
}

.security__item::before {
  content: "";
  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: 16px;
  height: 16px;
  background: url("../images/hero/lock-icon.webp") no-repeat center center;
}

.questions__title {
  color: #141414;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px 0 rgba(0, 0, 0, .3)
}

.questions__title_5 {
  color: #0F0F0F;
  text-align: center;
  font-family: Mulish;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  /* 21.6px */
  text-transform: uppercase;
}

.questions__title_4 {
  margin-bottom: 0;
  text-align: left;
}

@media screen and (min-width:1200px) {
  .questions__title {
    margin-bottom: 40px;
    font-size: 20px;
    line-height: 120%
  }

  .questions__title_4 {
    margin-bottom: 0;
  }
}

.questions__title span {
  color: #070707;
}

@media screen and (min-width:1200px) {
  .form--questions .b-btn--primary {
    display: block;
    margin-top: 0px;
    width: 164px;
    margin: 0 auto;
  }
}

.form--questions .b-btn--primary {
  display: block;
  margin-top: 0px;
  width: 164px;
  margin: 0 auto;
}

.highlight_title {
  margin-bottom: 40px;
  display: block;
  color: #0F0F0F;
  text-align: center;
  font-family: Mulish;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  /* 19.2px */
  text-transform: uppercase;
}

.highlight_subtitle {
  margin-bottom: 40px;
  color: #0F0F0F;
  text-align: center;
  font-family: Mulish;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  /* 21.6px */
  text-transform: uppercase;
}

.highlight-special {
  margin-bottom: 40px !important;
  color: #0F0F0F;
  text-align: center;
  font-family: Mulish;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  /* 19.2px */
  text-transform: uppercase;
}

.bmr_team {
  max-width: 708px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  border-radius: 20px;
  background: -webkit-gradient(linear, left bottom, left top, from(#FF82A5), to(#076FC2));
  background: -o-linear-gradient(bottom, #FF82A5 0%, #076FC2 100%);
  background: linear-gradient(0deg, #FF82A5 0%, #076FC2 100%);
  margin-bottom: 20px;
}

.bmr_team__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}

.bmr_team__images {
  max-width: 220px;
  width: 100%;
}

.bmr_team__logo {
  margin-bottom: 0px;
}

.bmr_team__content {
  max-width: 428px;
  width: 100%;
}

.bmr_team__header {
  color: #FFF;
  text-align: center;
  font-family: Mulish;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 20px;
}

.bmr_team__info{
  color: #FFF;
  text-align: center;
  font-family: Mulish;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 19.2px */
  margin-bottom: 20px;
}

.bmr_team__bonus {
  color: #FFF;
  text-align: center;
  font-family: Mulish;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.alert {
  padding: 10px 15px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 2px 10px 0 rgba(129, 129, 129, 0.50);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

@media screen and (min-width:1200px) {
  .alert {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
  }
}

.alert__icon {
  width: 50px;
  height: 50px
}

@media screen and (min-width:1200px) {
  .alert__icon {
    width: 50px;
    height: 50px
  }
}

.alert__title {
  color: #070707;
  font-family: Mulish;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 14.4px */
  margin-bottom: 5px;
}

@media screen and (min-width:1200px) {
  .alert__title {
    text-align: left
  }
}

.alert__about {
  color: #141414;
  font-family: Mulish;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 5px;
}

@media screen and (min-width:1200px) {
  .alert__about {
    text-align: left
  }
}

.alert__wrap {
  color: #141414;
  font-family: Mulish;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

@media screen and (min-width:1200px) {
  .alert__wrap {
    text-align: left
  }
}

.alert__txt {
  color: #070707;
  font-family: Mulish;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 14.4px */
  margin-bottom: 10px
}

@media screen and (min-width:1200px) {
  .alert__txt {
    display: inline;
    text-align: left;
    margin-bottom: 0
  }
}

.footer {
  background: #F5F6FF;
  box-shadow: 0 0 10px 0 rgba(129, 129, 129, 0.50);
  padding: 20px 0;
  margin-bottom: 70px;
}

@media screen and (min-width:1200px) {
  .footer {
    padding: 20px 0
  }
}

.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  max-width: 1236px;
  margin: 0 auto
}

.footer__text {
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  text-align: center;
  color: #141414
}

.footer__buttons button,
.footer__text button {
  padding: 0;
  border: 0;
  background-color: transparent;
  font-weight: 700;
  font-size: 12px;
  line-height: 120%;
  color: #141414
}

.footer__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
}

@media screen and (min-width:1200px) {
  .footer__buttons {
    gap: 50px
  }
}

.footer__buttons button {
  text-align: center
}

.section {
  margin: 42px 0
}

@media screen and (min-width:681px) {
  .section {
    margin: 62px 0
  }
}

@media screen and (min-width:1200px) {
  .section {
    margin: 105px 0
  }
}

.section__title {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 134.7%;
  letter-spacing: .1em;
  color: #466562;
  margin-bottom: 45px
}

@media screen and (min-width:681px) {
  .section__title {
    margin-bottom: 54px
  }
}

@media screen and (min-width:1200px) {
  .section__title {
    margin-bottom: 74px
  }
}

.b-btn--primary:disabled {
  border-radius: 20px;
  background: #FFD1A1;
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.30);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.30);
  color: #fff !important;
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.b-btn--primary:not(:disabled):hover {
  opacity: 1;
  -webkit-filter: brightness(1.1);
  filter: brightness(1.1);
}

input[type="date"] {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  -webkit-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  color: #83383a;
  border: 0;
  border-radius: 5px;
  outline: 0;
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
  background: #cccccc;
}

input[type="date"]::-webkit-input-placeholder {
  font-weight: 700;
  color: #b1b1b1;
}

input[type="date"]::-moz-placeholder {
  font-weight: 700;
  color: #b1b1b1;
}

input[type="date"]:-ms-input-placeholder {
  font-weight: 700;
  color: #b1b1b1;
}

input[type="date"]::-ms-input-placeholder {
  font-weight: 700;
  color: #b1b1b1;
}

input[type="date"]::placeholder {
  font-weight: 700;
  color: #b1b1b1;
}

input[type="date"]:focus {
  border-color: #b1b1b1;
}

input[type="date"].error {
  color: var(--red);
  border-color: var(--red);
}

.bmr-team-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 20px 0;
}

.bmr-team-img img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.relative-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .relative-container {
    max-width: 900px;
    /* шире на ПК */
  }
}

.ticket-background {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}

.jumping-ball-wrapper {
  position: absolute;
  top: 5%;
  left: 70%;
  width: 81px;
  height: 81px;
  -webkit-animation: bounce 1.6s infinite;
  animation: bounce 1.6s infinite;
  z-index: 10;
}

@media screen and (min-width: 1024px) {
  .jumping-ball-wrapper {
    width: 110px;
    height: 110px;
    top: 5%;
    left: 70%;
  }
}

.ball-image {
  width: 100%;
  height: auto;
  display: block;
}

.ball-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: white;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  pointer-events: none;
  width: 75%;
}

@media screen and (min-width: 1024px) {
  .ball-text {
    font-size: 14px;
  }
}

@keyframes bounce {

  0%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
  }
}

.hero__title2 {
  font-weight: 800;
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(52.88%, #fff), to(#999));
  background: -o-linear-gradient(top, #fff 52.88%, #999 100%);
  background: linear-gradient(180deg, #fff 52.88%, #999 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0px
}

@media screen and (min-width:1200px) {
  .hero__title2 {
    font-weight: 800;
    font-size: 50px;
    line-height: 120%
  }
}

.date__text {
  font-weight: 500;
  font-size: 11px;
  line-height: 120%;
  color: #fff;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background: rgba(0, 0, 0, .29);
  display: inline-block;
  border: 1px solid #fe0000;
  border-radius: 10px;
  padding: 5px 10px
}

@media screen and (min-width:1200px) {
  .date__text {
    font-size: 16px
  }
}

.hero__title3 {
  font-weight: 800;
  font-size: 30px;
  line-height: 120%;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(52.88%, #fff), to(#999));
  background: -o-linear-gradient(top, #fff 52.88%, #999 100%);
  background: linear-gradient(180deg, #fff 52.88%, #999 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0px
}

@media screen and (min-width:1200px) {
  .hero__title3 {
    font-weight: 800;
    font-size: 100px;
    line-height: 120%
  }
}

.date__text {
  font-weight: 500;
  font-size: 11px;
  line-height: 120%;
  color: #fff;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background: rgba(0, 0, 0, .29);
  display: inline-block;
  border: 1px solid #fe0000;
  border-radius: 10px;
  padding: 5px 10px
}

@media screen and (min-width:1200px) {
  .date__text {
    font-size: 16px
  }
}


.main {
  position: relative;
  overflow: hidden;
}

.main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/hero/hero74-desktop.webp") no-repeat center center;
  background-size: cover;
  z-index: 0;
}

@media screen and (min-width: 768px) {
  .main::before {
    background: url("../images/hero/hero74-desktop.webp") no-repeat center center;
    background-size: cover;
  }
}

@media screen and (max-width: 768px) {

}



.main>.container {
  position: relative;
  z-index: 1;
}

.google_or {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  font-weight: bold;
  margin: 14px 0;
  text-transform: uppercase;
  font-size: 12px;
  color: #141414;
  position: relative;
}

.google_or::before,
.google_or::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60%;
  height: 1px;
  background-color: #141414;
}

.google_or::before {
  left: 24px;
}

.google_or::after {
  right: 24px;
}

.google__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 39px;
  padding: 10px 15px;
  border-radius: 20px;
  background: #FF8300;
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.30);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.30);
  color: #FFF;
  text-align: center;
  font-family: Mulish;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 16.8px */
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  gap: 10px;
}

.google__btn:hover {
  -webkit-filter: brightness(0.95);
  filter: brightness(0.95);
  cursor: pointer;
}

.google__btn a {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  text-decoration: none;
  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;
  gap: 10px;
  width: 100%;
}

.google__btn img {
  height: 20px;
  width: 20px;
}

.main {
  position: relative;
  overflow: hidden;
}

.main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/hero/hero74-desktop.webp") no-repeat center center;
  background-size: cover;
  z-index: 0;
}

@media screen and (min-width: 768px) {
  .main::before {
    background: url("../images/hero/hero74-desktop.webp") no-repeat center center;
    background-size: cover;
  }
}

.main>.container {
  position: relative;
  z-index: 1;
}

.hidden {
  display: none !important;
}

.b-btn--primary[style*="display: none"] {
  visibility: hidden;
  /* невидима и не занимает место */
}

/* --- spacing & mobile Safari fix --- */
.b-btn--primary+.alert {
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .b-btn--primary+.alert {
    margin-top: 6rem;
  }
}

.form__input input {
  /* отменяем авто-zoom */
  font-size: 12px;
}


/* === PRELOADER === */
.preloader {
  position: fixed;
  inset: 0;
  background: #000;
  /* full black */
  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;
  font-family: Mulish, sans-serif;
  color: #fff;
  z-index: 10000;
  /* поверх всего */
  -webkit-transition: opacity .35s ease;
  -o-transition: opacity .35s ease;
  transition: opacity .35s ease;
}

/* Внутренний контейнер для центрирования всех элементов */
.preloader__inner {
  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;
  gap: 1.2rem;
  /* вертикальный шаг между элементами */
}

.preloader__msg {
  font-size: 1.25rem;
}

.preloader__count {
  font-size: 1rem;
  opacity: .75;
  margin-top: .25rem;
  /* небольшой отступ от сообщения */
}

.preloader__spinner {
  width: 290px;
  height: 290px;
  /* аккуратный размер */
  margin-top: .8rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.preloader--hide {
  opacity: 0;
  pointer-events: none;
}

/* =============== */

/* === DOB (MM / TT / JJJJ) — растянуть в одну линию и выровнять по всей ширине === */
.form__row .form__input--triple {
  width: 100%;
}

/* 1) Контейнер трёх полей — используем grid на всю ширину */
.form__row .form__input--triple .dob-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px auto 10px 1fr 10px auto 10px 1fr;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  /* MM / / TT / / JJJJ */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  width: 100%;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  /* защита, если где-то переопределили display:flex */
  white-space: nowrap;
}

/* 2) Сами инпуты — занимают всю ширину своей колонки (равномерно) */
.form__row .form__input--triple .dob-input {
  width: 100% !important;
  /* переопределяем прежние width:56px/84px */
  min-width: 0;
  /* разрешаем ужиматься внутри grid/flex */
  text-align: center;
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
  /* на случай старого flex-лейаута */
}

/* год теперь такой же по ширине, как и остальные (равномерность) */
.form__row .form__input--triple .dob-input--yyyy {
  width: 100% !important;
  -ms-flex-preferred-size: auto !important;
  flex-basis: auto !important;
}

/* разделители «/» — фиксированной ширины, не прыгают */
.form__row .form__input--triple .dob-sep {
  width: 12px;
  text-align: center;
  opacity: .6;
}

/* более плотный зазор на очень узких экранах */
@media (max-width: 480px) {
  .form__row .form__input--triple .dob-grid {
    -webkit-column-gap: 8px;
    -moz-column-gap: 8px;
    column-gap: 8px;
  }
}

/* iOS Safari: не зумить при фокусе на поле телефона */
@media (max-width: 1024px) {

  /* более специфичный селектор, чтобы перебить общий инпут-стиль */
  .form__row .form__input #phone {
    font-size: 16px !important;
    /* ключ к отключению зума на iOS */
    line-height: 1.25;
    /* чтобы высота строки осталась аккуратной */
  }
}

/* Доп. фильтр только для iOS WebKit, если хочешь ещё точнее таргетировать */
@supports (-webkit-touch-callout: none) {
  .form__row .form__input #phone {
    font-size: 16px !important;
  }
}

/* ===== Privacy Modal Styles ===== */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 9999;
}

.modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0%);
  cursor: default;
}

.modal__content {
  position: relative;
  z-index: 10000;
  padding: 20px;
  width: 100%;
  max-width: 598px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.80);
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.50);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.50);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.modal__body {
  margin-bottom: 20px;
}

.modal__footer {
  text-align: center;
}

.modal__footer .btn {
  margin: 0.25rem;
}

.footer__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 1rem;
  gap: 1rem;
}

.footer__buttons button {
  background: none;
  border: none;
  color: #0F0F0F;
  font-size: 12px;
  cursor: pointer;
  padding: 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.footer__buttons button:hover {
  opacity: 0.5;
}

/* === Modal Overlay: light with blur === */
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  /* светлый прозрачный фон */
  backdrop-filter: blur(3px);
  /* лёгкий блюр под попапом */
  -webkit-backdrop-filter: blur(3px);
  cursor: default;
}

/* === Center modal buttons === */
.modal__footer {
  text-align: center;
}

.modal__footer .b-btn--modal-primary,
.modal__footer .b-btn--modal-secondary {
  display: inline-block;
}

.modal__footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.footer__content{
    text-decoration: none;
    background: none;
    border: none;
    color: #0F0F0F;
    font-size: 12px;
    cursor: pointer;
    padding: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    font-weight: 700;
}


@media (max-width: 575px) {
  .modal__footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .footer__buttons {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
  }

  .modal__content {
    padding: 10px;
  }
}

/* === Modal buttons style === */
.b-btn--modal-primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 39px;
  padding: 10px 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background: #FF8300;
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.30);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.30);
  color: #FFF;
  text-align: center;
  font-family: Mulish;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 16.8px */
  border: none;
  width: 100%;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.b-btn--modal-primary:hover {
  background: #9a4447;
}

.b-btn--modal-secondary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 39px;
  padding: 10px 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  border: 1px solid #FF8300;
  background: #FFF;
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.30);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.30);
  color: #FF8300;
  text-align: center;
  font-family: Mulish;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 16.8px */
  width: 100%;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.b-btn--modal-secondary:hover {
  background: #000;
  color: #fff;
}

/* === Footer modal links === */
.footer__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  margin-top: 0px;
}

.page_fixed {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.page_fixed__wrap {
  max-width: 1148px;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 2px 10px 0 rgba(129, 129, 129, 0.50);
}

.page_fixed__text {
  color: #070707;
  text-align: center;
  font-family: Mulish;
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
}

/* ===== SPECIAL STYLE: Privacy Modal Background ===== */
.modal--privacy .modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  cursor: default;
  -webkit-transition: background 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  transition: background 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  -o-transition: backdrop-filter 0.3s ease, background 0.3s ease;
  transition: backdrop-filter 0.3s ease, background 0.3s ease;
  transition: backdrop-filter 0.3s ease, background 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}

/* Можно немного подправить z-index для уверенности */
.modal--privacy {
  z-index: 9999;
}

.form__name_main_button {
  color: #141414;
  text-align: right;
  font-family: Mulish;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 20px;
}

.form__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  max-width: 642px;
  margin: 0 auto;
}

.form__buttons button {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 2px 10px 0 rgba(129, 129, 129, 0.50);
  border: none;
  padding: 5px 15px;
  height: 37px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #070707;
  text-align: center;
  font-family: Mulish;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.form__buttons button:hover {
  background: #f3f3f3;
}

.form__buttons button.active {
  background: #83383a;
  color: #fff;
  border-color: #83383a;
}

.mob {
  display: none;
}

.containers {
  border-radius: 10px;
  background: #F5F6FF;
  box-shadow: 0 2px 10px 0 rgba(129, 129, 129, 0.50);
  padding: 20px;
  text-align: center;
  max-width: 564px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 80px;
}

.question__title {
  color: #0F0F0F;
  text-align: center;
  font-family: Mulish;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.question__text {
  color: #0F0F0F;
  text-align: center;
  font-family: Mulish;
  font-size: 18px;
  font-weight: 800;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.question__btn {
  color: #FFF;
  text-align: center;
  font-family: Mulish;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: radial-gradient(48.72% 50.19% at 50% 51.28%, #414141 0%, #070707 100%);
  border: 1px solid #070707;
  cursor: pointer;
  transition: 0.4s;
}

.question__btn:hover {
  background: #fff;
  color: #000;
  transition: 0.4s;
}

.grid-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.progress-container {
  margin-top: 20px;
  background: #ddd;
  border-radius: 8px;
  height: 8px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: #000;
  width: 0%;
  transition: width 2s ease-in-out;
}

.hiddens {
  display: none;
}

.header {
  background: url("../images/hero/hero74-desktop.webp") no-repeat center;
  background-size: cover;
  padding: 40px 20px 0 20px;
  padding-bottom: 80px;
  position: relative;
  margin-bottom: 160px;
}

.header-3{
  padding: 40px 20px 0 20px;
  height: 320px;
}
.tops_height{
  height: auto;
}
.header__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.header__title {
  color: #FFF;
  text-align: center;
  font-family: Mulish;
  font-size: 40px;
  font-weight: 900;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.title_2{
  font-size: 24px;
}

.header__subtitle {
  color: #FFF;
  text-align: center;
  font-family: Mulish;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
}

.header_wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header__pay {
  width: 312px;
  height: 179px;
  background: url("../images/hero/card.webp") no-repeat center;
  margin-bottom: 5px;
}

.header__sup {
  color: #000;
  text-align: center;
  font-family: Mulish;
  font-size: 10px;
  font-weight: 600;
  line-height: 120%; /* 12px */
  text-transform: uppercase;
}

.header__icon {
  width: 100px;
  height: 100px;
  background: url("../images/hero/available.webp") no-repeat center;
  position: absolute;
  top: 20px;
  left: 20px;
}

.how {
  padding: 20px 20px 0 20px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(107deg, #F5F6FF 0%, #AFC9FE 100%);
  box-shadow: 0 2px 10px 0 rgba(129, 129, 129, 0.50);
}

.how__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.how__content {
  max-width: 836px;
  width: 100%;
}

.how__head {
  color: #070707;
  font-family: Mulish;
  font-size: 20px;
  font-weight: 900;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.how__subtitle {
  color: #070707;
  font-family: Mulish;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 20px;
}

.how__link {
  display: flex;
  width: 257px;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: radial-gradient(48.72% 50.19% at 50% 51.28%, #414141 0%, #070707 100%);
  color: #FFF;
  text-align: center;
  font-family: Mulish;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: 120%; /* 19.2px */
  text-decoration: none;
  border: 1px solid #070707;
  transition: 0.4s;
}

.how__link:hover {
  transition: 0.4s;
  background: #FFF;
  color: #000
}

.how__image {
  width: 252px;
  height: 246px;
  background: url("../images/hero/how-phone.webp") no-repeat center;
}

.how__inner{
  margin-bottom: 20px;
}

.explore {
  padding: 20px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(107deg, #3C3C3C 0%, #0B0B0B 100%);
  box-shadow: 0 2px 10px 0 rgba(129, 129, 129, 0.50);
  margin-bottom: 80px;
}

.explore__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.explore__content {
  max-width: 811px;
}

.explore__title {
  color: #FFF;
  font-family: Mulish;
  font-size: 20px;
  font-weight: 900;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.explore__inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.explore__text {
  color: #FFF;
  font-family: Mulish;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 0; 
}

.explore__link {
  color: #FFF;
  text-align: center;
  font-family: Mulish;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: 120%;
  /* 19.2px */
  display: flex;
  width: 257px;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #FFF;
  text-decoration: none;
  transition: 0.4s;
  background: transparent;
}

.explore__link:hover {
  transition: 0.4s;
  background: #FFF;
  color: #000
}

.faq {
  padding: 20px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 2px 10px 0 rgba(129, 129, 129, 0.50);
  margin-bottom: 40px;
}

.faq__title {
  color: #070707;
  text-align: center;
  font-family: Mulish;
  font-size: 20px;
  font-weight: 900;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.faq__head {
  color: #070707;
  text-align: center;
  font-family: Mulish;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 10px;
}

.faq__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq__text {
  color: #070707;
  text-align: center;
  font-family: Mulish;
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
}
.sign_email{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}
.sign_email::before{
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 201px;
  height: 201px;
  background: url("../images/hero/delete-message.webp")
}
.sign_phone{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}
.sign_phone::before{
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 201px;
  height: 201px;
  background: url("../images/hero/phone-deleted.webp")
}


.sign_email__wrap{
  width: 100%;
}

.sign_email__text{
  color: #0F0F0F;
  text-align: center;
  font-family: Mulish;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 14.4px */
}

.sign__wrapper {
  max-width: 564px;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  background: #F5F6FF;
  box-shadow: 0 2px 10px 0 rgba(129, 129, 129, 0.50);
  margin: 0 auto;
  margin-bottom: 40px;
}

.sign__wrapper_email{
  margin-bottom: 20px;
}
.sign__head {
  color: #0F0F0F;
  text-align: center;
  font-family: Mulish;
  font-size: 18px;
  font-weight: 800;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.sign_form {
  width: 100%;
}
.sign__label {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  position: relative;
}
.sign__input {
  color: #AAA;
  font-family: Mulish;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 16.8px */
  width: 100%;
  padding: 10px 0;
  border: none;
  background: transparent;
  border-bottom: 1px solid #070707;
}
.sign__icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
}
.sign__sub {
  color: #070707;
  font-family: Mulish;
  font-size: 12px;
  font-weight: 700;
  line-height: 120%; /* 14.4px */
  margin-bottom: 40px;
}
.sign__bold{
  color: #0F0F0F;
  font-family: Mulish;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.sign__text {
  color: #0F0F0F;
  font-family: Mulish;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 12px */
  margin-bottom: 40px;
}
.sign__button {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: radial-gradient(48.72% 50.19% at 50% 51.28%, #414141 0%, #070707 100%);
  width: 257px;
  border: 1px solid #070707;
  margin: 0 auto;
  color: #FFF;
  text-align: center;
  font-family: Mulish;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 19.2px */
  transition: 0.4s;
}

.sign__button:hover {
  transition: 0.4s;
  background: #FFF;
  color: #000
}

/* Общие настройки */
.forms {
	padding: 20px;
  border-radius: 10px;
  background: #F5F6FF;
  box-shadow: 0 2px 10px 0 rgba(129, 129, 129, 0.50);
	max-width: 564px;
	margin: 20px auto;
  margin-bottom: 40px;
}

.forms__wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Стили для полей ввода */
.forms__label {
	display: block;
	margin-bottom: 20px;
	position: relative;
}

.forms__label span {
  color: #070707;
  font-family: Mulish;
  font-size: 12px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 10px;
}

.forms__input {
  padding: 10px 0;
  width: 100%;
  border: none;
  background: transparent;
  border-bottom: 1px solid #070707;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 16.8px */
}

.just-validate-error-label{
  font-size: 10px;
}


.forms__icon {
	position: absolute;
	right: 0px;
	top: 70%;
	transform: translateY(-50%);
	pointer-events: none;
}

.forms__сorrect {
  display: none;
	position: absolute;
	right: 0px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}

.forms__leeg {
  display: none;
	position: absolute;
	right: 0px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}

.сorrect_email{
  top: 70%;
}

.forms__input.just-validate-success-field+.forms__сorrect {
    display: block;
}
.forms__input.just-validate-success-field+.forms__leeg {
    display: block;
}
/* Группы полей */
.forms__group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.forms__name-fields,
.forms__address-fields,
.forms__dob-fields {
	display: flex;
	gap: 20px;
}

.forms__name-fields > .forms__label,
.forms__address-fields > .forms__label,
.forms__dob-fields > .forms__label {
	flex: 1;
}

.forms__label-text{
  color: #070707;
  font-family: Mulish;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 14.4px */
}

/* Радио-кнопки */
.forms__radio-label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	font-size: 14px;
	color: #212529;
	margin-right: 20px;
}

.forms__radio {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 16px;
	height: 16px;
	border: 2px solid #adb5bd;
	border-radius: 50%;
	background-color: #fff;
	cursor: pointer;
	position: relative;
}

.forms__radio:checked {
	background-color: #007bff;
	border-color: #007bff;
}

.forms__radio:checked::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 6px;
	height: 6px;
	background-color: white;
	border-radius: 50%;
}

/* Чекбокс согласия */
.forms__checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 14px;
	color: #212529;
	line-height: 1.4;
}

.forms__checkbox {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 18px;
	height: 18px;
	border: 2px solid #adb5bd;
	border-radius: 4px;
	background-color: #fff;
	cursor: pointer;
	position: relative;
	margin-top: 2px;
}

.forms__checkbox:checked {
	background-color: #007bff;
	border-color: #007bff;
}

.forms__checkbox:checked::after {
	content: '✓';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 12px;
	font-weight: bold;
}

/* Подписи и ссылки */
.forms__bold {
	background: none;
	border: none;
	text-decoration: underline;
  color: #0F0F0F;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  padding: 0;
}

.forms__bold:hover {
	text-decoration: none;
	color: #0056b3;
}

.forms__sub {
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 14.4px */
	margin: 8px 0 0 0;
}

.captcha {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.captcha__wrapper {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 2px 10px 0 rgba(129, 129, 129, 0.50);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 564px;
  margin: 0 auto;
}

.captcha__form {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.captcha__checkbox {
  display: flex;
  align-items: center;
  gap: 20px;
}

.captcha__input {
  width: 24px;
  height: 24px;
  border-radius: 2px;
  border: 1px solid #000;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
}

.captcha__input:checked {
  background-color: #000;
  border-color: #000;
}

.captcha__input:checked::after {
  content: '✓';
  color: white;
  font-size: 12px;
  display: block;
  text-align: center;
  line-height: 18px;
}

.captcha__label {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  cursor: pointer;
  user-select: none;
}

.captcha__image {
  width: 100px;
  height: 100px;
  background: url("../images/hero/recaptcha.webp") no-repeat center center;
}

.captcha__image svg {
  width: 48px;
  height: 48px;
}

.captcha__logo-text {
  font-size: 10px;
  color: #70757a;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.sign_email__info{
  text-align: center;
  margin-bottom: 15px;
  font-size: 12px;
  display: none;
}
.sign_email__info.active {
	display: block;
}
/* Скрываем оригинальный чекбокс */
.visually-hidden {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	padding: 0 !important;
	border: 0 !important;
	height: 1px !important;
	width: 1px !important;
	overflow: hidden;
}

/* Стиль для галочки, которая появится вместо чекбокса */
.captcha__label::before {
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
  border-radius: 2px;
  border: 1px solid #000;
	margin-right: 0px;
	vertical-align: middle;
	background-color: #fff;
}

/* Стиль для галочки после прохождения каптчи */
.captcha__label.verified::before {
	content: '✓';
	display: flex;
  justify-content: center;
  align-items: center;
	width: 24px;
	height: 24px;
  border: none;
	vertical-align: middle;
	background-color: #fff;
	color: #007500;
	text-align: center;
	line-height: 16px;
	font-size: 20px;
	font-weight: bold;
}

/* Кнопка */
.forms__button {
	width: 100%;
	padding: 12px;
	background-color: #6c757d;
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s ease;
	margin-top: 16px;
}

.forms__consent__info{
  color: #0F0F0F;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 14.4px */
  max-width: 90%;
}

.forms__button:hover {
	background-color: #5a6268;
}

.forms__button:active {
	background-color: #495057;
}

/* Гендерные опции */
.forms__gender-options {
	display: flex;
	gap: 16px;
}

.forms__gender-label {
	flex: 1;
	position: relative;
	cursor: pointer;
	padding-bottom: 20px;
}

.forms__gender-label span {
	display: block;
  color: #AAA;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%; /* 16.8px */
	margin-bottom: 10px;
  margin-top: 10px;
}

.forms__gender-line {
	height: 2px;
	background-color: #ced4da;
	transition: background-color 0.2s ease;
}

/* Активный (выбранный) элемент */
.forms__gender-label.active .forms__gender-line {
	background-color: #1cf870 !important;;
}

.forms__gender-label.active span {
	color: #1cf870 !important;;
	font-weight: 600 !important;;
}

.forms__consent__text{
  margin-bottom: 10px;
  display: block;
  color: #041C27;
  font-size: 12px;
  font-weight: 400;
  line-height: 120%; /* 14.4px */
}

.header__top {
  display: flex;
  width: 100%;
  max-width: 564px;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: radial-gradient(48.72% 50.19% at 50% 51.28%, #414141 0%, #070707 100%);
  margin: 0 auto;
  margin-bottom: 40px;
}
.header__info {
  color: #FFF;
  text-align: center;
  font-family: Mulish;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
}

/* Зелёная галочка рядом с email (ваше изображение) */
/* Если нужно имитировать "галочку" при валидации — можно добавить JS, но пока просто статичный вид */
/* В вашем примере — это просто иконка, поэтому оставляем как есть */

/* Адаптивность */
@media (max-width: 500px) {
	.forms__name-fields,
	.forms__address-fields,
	.forms__dob-fields {
	}

  .header__info{
    font-size: 12px;
  }

  .header__top{
    padding: 10px 15px;
    margin-bottom: 20px;
    width: 100%;
  }

  .header-3{
    padding: 10px 10px 0 10px;
  }
  

  .header-3{
    height: 250px;
  }

  .tops_height{
  height: auto;
}

  .forms__input{
    font-size: 12px;
  }

  .forms__gender-label span{
    font-size: 12px;
  }
}

@media (max-width: 1199px) {

  .how__wraps{
    max-width: 100%;
  }

  .how__content{
    width: 100%;
    max-width: 100%;
  }

  .how__image{
    display: none;
  }

  .how{
    padding: 10px;
  }

  .how__mob{
    width: 100%;
    max-width: 104px;
    height: 176px;
    background: url("../images/hero/how-phone-mob.webp") no-repeat center;
  }

  .how__inner{
    display: flex;
    align-items: center;
    width: 100%;
    gap: 20px;
  }

  .header__title{
    font-size: 30px;
  }
}

.buttons__text {
  color: #A7A7A7 !important;
}

@media screen and (max-width: 900px) {
  .bmr_team__header {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .bmr_team__info{
    font-size: 15px;
  }

  .bmr_team__bonus {
    font-size: 25px;
  }

  .bmr_team__logo {
    margin-bottom: 0px;
  }

  .footer {
    margin-bottom: 100px;
  }

  .bmr_team__images{
    max-width: 180px;
  }
}

@media screen and (max-width: 767px) {
  .security__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .security__item {
    max-width: 150px;
    width: 100%;
  }

  .security__item_4 {
    max-width: 200px;
  }

  .explore__box{
    flex-direction: column;
  }

  .explore__link{
    width: 100%;
  }

  .explore__right{
    width: 100%;
  }

  .explore__title{
    margin-bottom: 10px;
  }

  .how__wraps{
    max-width: 70vw;
  }

  .header__icon {
    width: 64px;
    height: 64px;
    background: url(../images/hero/available.webp) no-repeat center;
    background-size: 64px;
    top: 0px;
    left: 0px;
}
}

@media screen and (max-width: 575px) {

  .b-btn--primary {
    width: 100%;
  }

  .form_btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
  }

  .google_or {
    margin: 0;
  }

  .form-wrapper__title {
    font-size: 14px;
  }

  .form-wrapper {
    padding: 10px;
  }

  .form__row:not(:last-child) {
    margin-bottom: 10px;
  }

  .form__row .form__input--triple .dob-grid {
    -webkit-column-gap: 0px;
    -moz-column-gap: 0px;
    column-gap: 0px;
  }

  .form__name_main_button {
    margin-bottom: 10px;
  }

  .b-btn--primary {
    font-size: 12px;
    padding: 10px 5px;
    height: auto;
  }

  .google__btn {
    font-size: 12px;
    padding: 10px 5px;
    height: auto;
  }

  .modal__body {
    margin-bottom: 10px;
  }

  .footer__buttons {
    padding-top: 10px;
  }

  .modal__title {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .footer__buttons {
    gap: 10px;
  }
/*
  input[type=email],
  input[type=number],
  input[type=password],
  input[type=search],
  input[type=tel],
  input[type=text],
  select,
  textarea {
    height: 24px;
  }*/

  .radio-style>span:after,
  .radio-style>span:before,
  label.radio-style>span:after,
  label.radio-style>span:before {
    height: 24px;
  }

  .radio {
    height: 24px;
  }

  .footer {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .main {
    padding: 20px 0;
  }

  .ss-main {
    height: 24px;
    min-height: 24px;
    padding: 5px 15px;
  }

  .security__item {
    font-size: 9px;
  }

  .security__item {
    max-width: 98px;
    border-radius: 10px;
    padding: 5px;
  }

  .security__item_4 {
    max-width: 129px;
  }

  .form__buttons {
    gap: 10px;
  }

  .alert {
    margin-top: 20px;
  }

  .alert__icon svg {
    width: 100%;
    max-width: 50px;
  }

  .alert__wrapper {
    max-width: 60vw;
  }

  .security {
    gap: 5px;
  }

  .alert__about {
    font-size: 10px;
  }

  .alert__title {
    font-size: 10px;
  }

  .alert__txt {
    font-size: 10px;
  }

  .alert__wrap {
    font-size: 10px;
  }

  .highlight_title {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .highlight_subtitle {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .highlight-special {
    font-size: 12px;
    margin-bottom: 20px !important;
  }

  .bmr_team {
    padding: 10px;
    border-radius: 10px;
  }

  .bmr_team__wrapper {
    gap: 10px;
  }



  .bmr_team__content {
    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-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bmr_team__header {
    font-size: 10px;
  }

  .bmr_team__bonus {
    font-size: 10px;
  }

  .questions {
    padding: 10px;
  }

  .desc {
    display: none;
  }

  .mob {
    display: block;
  }

  .bmr_team__images {
    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;
  }

  .bmr_team {
    max-width: 330px;
  }

  .b-btn--secondary {
    width: 100%;
  }

  .footer {
    margin-bottom: 130px;
  }

  .header{
    padding: 10px 10px 0 10px;
    padding-bottom: 60px;
  }

  .header__title{
    font-size: 16px;
    max-width: 162px;
    margin-bottom: 10px;
  }

  .header__subtitle{
    font-size: 10px;
  }

  .header__pay {
    width: 263px;
    height: 150px;
    background: url(../images/hero/card.webp) no-repeat center;
    background-size: 263px;
    margin-bottom: 5px;
}

.header__wrapper{
  margin-bottom: 20px;
}

.header{
  padding-bottom: 25px;
}

.containers{
  margin-bottom: 40px;
  padding: 10px;
}

.question__text{
  margin-bottom: 20px;
}

.question__title{
  font-size: 10px;
}

.question__text{
  font-size: 10px;
}

.question__btn{
  font-size: 12px;
}

.how__head{
  font-size: 12px;
  margin-bottom: 10px;
}

.how__subtitle{
  font-size: 10px;
}

.how__inner{
  gap: 10px;
}

.how__link{
  width: 100%;
}
  .how__wraps {
      max-width: 52vw;
  }

  .explore{
    padding: 10px;
    margin-bottom: 40px;
  }

  .explore__title{
    font-size: 12px;
  }

  .explore__text{
    font-size: 10px;
  }

  .explore__link{
    border-radius: 10px;
    font-size: 12px
  }

  .faq{
    padding: 10px;
  }

  .faq__title{
    font-size: 12px;
  }

  .faq__head{
    font-size: 10px;
  }

  .faq__text{
    font-size: 10px;
  }

  .sign__wrapper{
    padding: 10px;
  }

  .sign__head{
    font-size: 10px;
    margin-bottom: 20px;
  }

  .sign__input {
    font-size: 12px;
  }

  .sign__sub{
    font-size: 10px;
    margin-bottom: 20px;
  }

  .sign__text{
    margin-bottom: 20px;
  }

  .sign__button{
    font-size: 12px;
  }

  .page_fixed__text{
    font-size: 10px;
  }

  .forms{
    padding: 10px;
  }

  .bmr_team__header {
    font-size: 10px;
    margin-bottom: 7px;
  }

  .bmr_team__info{
    font-size: 7px;
    margin-bottom: 7px;
  }

  .bmr_team__bonus {
    font-size: 12px;
    margin-bottom: 7px;
  }

  .bmr_team__logo{
    margin-bottom: 0px;
  }

  .bmr_team__content{
    max-width: 160px;
  }

  .bmr_team__logo {
    max-width: 152px;
  }

  .bmr_team__images {
      max-width: 122px;
  }

  .sign_email::before {
    width: 100px;
    height: 100px;
    background: url(../images/hero/delete-message.webp);
    background-size: 100px;
}
.sign_phone::before{
  width: 100px;
  height: 100px;
  background: url("../images/hero/phone-deleted.webp");
  background-size: 100px;
}



.header__top{
  margin-bottom: 20px;
}

.sign_email{
  gap: 20px;
}

.captcha__image {
    width: 50px;
    height: 50px;
    background: url(../images/hero/recaptcha.webp) no-repeat center center;
    background-size: 50px;
}

.captcha__wrapper{
  padding: 10px;
}

}