@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Montserrat:300,regular,500,600,700&display=swap);

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

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

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

body {
    color: #000;
    line-height: 1;
    font-family: 'Montserrat';
    font-size: 1rem;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

button {
    cursor: pointer;
    color: inherit;
    background-color: transparent;
}

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

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}


.lock body {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
    -ms-scroll-chaining: none;
    overscroll-behavior: none;
}

.wrapper {
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
}

@supports (overflow: clip) {
    .wrapper {
        overflow: clip;
    }
}

.wrapper > main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.wrapper > * {
    min-width: 0;
}

[class*='__container'] {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 0.9375rem;
}

.spollers {
    display: -ms-grid;
    display: grid;
    gap: 15px;
}

.spollers__item {
    font-size: 1.25rem;
    padding-bottom: 0.9375rem;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.spollers__title {
    width: 100%;
    cursor: default;
    text-align: left;
    padding: 0.625rem 0.9375rem;
    padding-right: 3.125rem;
    position: relative;
    color: #2f2f2f;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: normal;
}

._spoller-init .spollers__title {
    cursor: pointer;
}

._spoller-init .spollers__title::before,
._spoller-init .spollers__title::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    background-color: #2f2f2f;
    height: 1px;
    width: 25px;
    -webkit-transition: -webkit-transform 0.5s ease 0s;
    transition: -webkit-transform 0.5s ease 0s;
    transition: transform 0.5s ease 0s;
    transition:
        transform 0.5s ease 0s,
        -webkit-transform 0.5s ease 0s;
}

._spoller-init .spollers__title::after {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

._spoller-init .spollers__title._spoller-active::after {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.spollers__body {
    padding: 1.25rem;
    color: #2f2f2f;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: normal;
}

[data-fullscreen] {
    min-height: 100vh;
}

.touch [data-fullscreen] {
    min-height: calc(var(--vh, 1vh) * 100);
}

[class*='-ibg'] {
    position: relative;
}

[class*='-ibg'] img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

[class*='-ibg_contain'] img {
    -o-object-fit: contain;
    object-fit: contain;
}

.button {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.25rem;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 123.646%;
    background-color: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border: 1px solid #2a609d;
}

.button_outline {
    background-color: transparent;
    color: #2a609d;
}

.header {
    position: fixed;
    width: 100%;
    z-index: 100;
    background-color: #fff;
}

.header__container {
    padding-top: 2.875rem;
    padding-bottom: 2.5625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.9375rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header__logo {
    position: relative;
    z-index: 100;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.1875rem;
    flex: 0 0 8.1875rem;
    width: 8.1875rem;
    height: 0.6875rem;
}

.header__logo img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}

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

.menu__link {
    color: #0e0e0e;
    font-size: 18px;
    font-weight: 500;
    line-height: 104.4%;
}

.icon-menu {
    display: none;
}

.footer {
    padding-top: 5.3125rem;
    padding-bottom: 5.3125rem;
    background-color: #fafafa;
}

.footer__container {
    text-align: center;
}

.footer__image-ibg {
    display: inline-block;
    width: 8.1875rem;
    height: 0.6875rem;
}

.footer__image-ibg img {
    -o-object-fit: contain;
    object-fit: contain;
}

.footer__image-ibg:not(:last-child) {
    margin-bottom: 2.375rem;
}

.footer__actions {
    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;
    gap: 1.3125rem;
}

.footer__actions:not(:last-child) {
    margin-bottom: 2.3125rem;
}

.footer__button {
    max-width: 13rem;
}

.menu-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 3rem;
    -moz-column-gap: 3rem;
    column-gap: 3rem;
    row-gap: 0.9375rem;
    position: relative;
    padding-bottom: 1.25rem;
}

.menu-footer::before {
    content: '';
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 50%;
    max-width: 22.125rem;
    -webkit-transform: translate(-50%, 0px);
    -ms-transform: translate(-50%, 0px);
    transform: translate(-50%, 0px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-footer__link {
    color: #0e0e0e;
    line-height: 104.4%;
    text-transform: uppercase;
}

.policy {
    padding-top: 1.25rem;
    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;
    gap: 1.75rem;
}

.policy__link {
    color: #757474;
    line-height: normal;
    text-transform: uppercase;
}

.amount__title {
    text-align: center;
    color: #0e0e0e;
    font-size: 2rem;
    font-weight: 600;
    line-height: 104.4%;
}

.amount__title:not(:last-child) {
    margin-bottom: 1.4375rem;
}

.amount__subtitle {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: normal;
}

.amount__subtitle:not(:last-child) {
    margin-bottom: 3.875rem;
}

.amount__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.amount__actions {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
}

.amount__action {
    display: -ms-grid;
    display: grid;
    margin: 2.5rem 0.3125rem 0 0.3125rem;
    height: 0.75rem;
    position: relative;
}

.amount__action:not(:last-child) {
    margin-bottom: 9.375rem;
}

.amount__labels {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 1.25rem;
    line-height: normal;
}

.amount__full {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #d9d9d9;
}

.amount__to {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #2a609d;
    pointer-events: none;
}

.amount__to::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    width: 1.25rem;
    height: 1.25rem;
    background-color: #fff;
    -webkit-transform: translate(50%, -5px);
    -ms-transform: translate(50%, -5px);
    transform: translate(50%, -5px);
    top: 0;
    right: 0;
    border: 5px solid #2a609d;
    z-index: 10;
    pointer-events: none;
}

.amount__prc {
    color: #fff;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    display: -ms-grid;
    display: grid;
    justify-items: center;
    padding: 0.5rem 1.6875rem;
    padding-bottom: 0.875rem;
    top: 0;
    min-width: 10.3125rem;
    right: 0;
    -webkit-transform: translate(50%, -105%);
    -ms-transform: translate(50%, -105%);
    transform: translate(50%, -105%);
    background-color: #2a609d;
    font-size: 0.75rem;
    font-weight: 300;
    line-height: normal;
}

.amount__prc span {
    font-size: 1rem;
    font-weight: 600;
    padding-left: 0.3125rem;
}

.amount__prc::after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background-color: #fff;
    bottom: 0px;
    left: 50%;
    -webkit-transform: translate(-50%, 60%);
    -ms-transform: translate(-50%, 60%);
    transform: translate(-50%, 60%);
}

#amount{
    overflow: hidden;
}

.amount__input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
}

.amount__information {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;

    padding: 4.125rem;
}

.amount__title-information {
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: normal;
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.amount__title-information:not(:last-child) {
    margin-bottom: 2.75rem;
}

.amount__title-information span {
    color: #fff;
    font-weight: 700;
    line-height: normal;
}

@-webkit-keyframes addRow {
    0% {
        -webkit-transform: translate(-100vw, 0px);
        transform: translate(-100vw, 0px);
    }

    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}

@keyframes addRow {
    0% {
        -webkit-transform: translate(-100vw, 0px);
        transform: translate(-100vw, 0px);
    }

    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}
.table {
    padding-top: 3.4375rem;
    padding-bottom: 2.4375rem
}

.table__list {
    display: -ms-grid;
    display: grid;
    gap: .625rem
}

.table__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: .625rem;
    border-radius: 5px;
    background-color: #f5f5f5
}

.table__item.add {
    -webkit-animation: addRow 1s linear;
    animation: addRow 1s linear
}

.table__item_titles {
    background-color: #d3dde4
}

.table__item_titles:not(:last-child) {
    margin-bottom: .8125rem
}

.table__info {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 104.4%
}

.table__info_title {
    padding: 1.25rem;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 104.4%
}

.table__info_title:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, .17)
}

.table__info_name {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 22.3125rem;
    flex: 0 1 22.3125rem
}



.table__info_city {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 10.875rem;
    flex: 0 1 10.875rem
}

.table__info_earnings {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 12.625rem;
    flex: 0 1 12.625rem
}

.table__info_earnings span {
    display: inline-block;
    padding: .5125rem 0.8rem;
    background-color:#1ee6a6;
    color: #fff;
    font-size: 18px;
    width: 140px;
    font-weight: 700;
    border-radius: 5px;
    line-height: 104.4%
}

.table__info_time {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 8.8125rem;
    flex: 0 1 8.8125rem
}

.table__info_cryptocurrency {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 18.5rem;
    flex: 0 1 18.5rem
}

.table-button {
    margin: 0 auto;
    margin-top: 2.125rem;
    max-width: 18.875rem
}

.about {
    padding-top: 3.4375rem;
    padding-bottom: 3.4375rem;
}

.about__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2.25rem;
}

.about__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
}

.about__title {
    color: #0e0e0e;
    font-size: 32px;
    font-weight: 600;
    line-height: 104.4%;
}

.about__title:not(:last-child) {
    margin-bottom: 1.5rem;
}

.about__info {
    font-size: 16px;
    font-weight: 300;
    line-height: normal;
}

.about__info b {
    font-weight: 500;
}

.about__info:not(:last-child) {
    margin-bottom: 1.5rem;
}

.about__image-ibg {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    width: 50%;
    padding-bottom: 37.8632478632%;
}

.cryptovision {
    padding-top: 3.4375rem;
    padding-bottom: 3.4375rem;
}

.cryptovision__title {
    text-align: center;
    color: #0e0e0e;
    font-size: 2rem;
    font-weight: 600;
    line-height: 104.4%;
}

.cryptovision__title:not(:last-child) {
    margin-bottom: 1.4375rem;
}

.cryptovision__subtitle {
    max-width: 46.9375rem;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    line-height: normal;
}

.cryptovision__subtitle:not(:last-child) {
    margin-bottom: 1.4375rem;
}

.crypto-info {
    background-color: #d3dde4;
}

.crypto-info__image-ibg {
    padding-bottom: 35.9829059829%;
}

.crypto-info__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.4375rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1.625rem;
    padding-top: 3.4375rem;
    padding-bottom: 2.6875rem;
}

.crypto-info__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(33.333% - 1.4375rem);
    flex: 0 0 calc(33.333% - 1.4375rem);
}

.crypto-info__title {
    color: #0e0e0e;
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 104.4%;
}

.crypto-info__title:not(:last-child) {
    margin-bottom: 0.75rem;
}

.crypto-info__info {
    color: #2f2f2f;
    font-weight: 300;
    line-height: normal;
}

.crypto-services {
    padding-top: 6.25rem;
    padding-bottom: 3.4375rem;
}

.crypto-services__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    row-gap: 3.625rem;
    -webkit-column-gap: 1.875rem;
    -moz-column-gap: 1.875rem;
    column-gap: 1.875rem;
}

.crypto-services__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(33.333% - 1.25rem);
    flex: 0 0 calc(33.333% - 1.25rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.25rem;
}

.crypto-services__image {
    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: 4.375rem;
    height: 4.1875rem;
    padding: 0.875rem;
    border-radius: 0.5625rem;
    background-color: #fafafa;
}

.crypto-services__image-ibg {
    width: 2.6875rem;
    height: 2.6875rem;
}

.crypto-services__image-ibg img {
    -o-object-fit: contain;
    object-fit: contain;
}

.crypto-services__title {
    color: #0e0e0e;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 104.4%;
}

.crypto-services__title:not(:last-child) {
    margin-bottom: 0.625rem;
}

.crypto-services__text {
    color: #2f2f2f;
    font-weight: 300;
    line-height: normal;
}

.advantages {
    padding-top: 3.4375rem;
    padding-bottom: 3.4375rem;
}

.advantages__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2.25rem;
}

.advantages__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
}

.advantages__title {
    color: #0e0e0e;
    font-size: 2rem;
    font-weight: 600;
    line-height: 104.4%;
}

.advantages__title:not(:last-child) {
    margin-bottom: 3.4375rem;
}

.advantages__item:not(:last-child) {
    margin-bottom: 2.3125rem;
}

.advantages__button {
    margin-top: 3.4375rem;
    max-width: 18.875rem;
}

.advantages__image-ibg {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    padding-bottom: 57.1794871795%;
}

.item-advantages__title {
    color: #0e0e0e;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 104.4%;
}

.item-advantages__title:not(:last-child) {
    margin-bottom: 0.8125rem;
}

.item-advantages__text {
    color: #2f2f2f;
    font-weight: 300;
    line-height: normal;
}

.reviews {
    background-color: #fafafa;
    padding-top: 5rem;
    padding-bottom: 6.25rem;
}

.reviews__title {
    color: #0e0e0e;
    font-size: 2rem;
    font-weight: 600;
    line-height: 104.4%;
    text-align: center;
}

.reviews__title:not(:last-child) {
    margin-bottom: 4.75rem;
}

.swiper-slide {
    height: 100%;
}

.user-reviews {
    height: 100%;
    max-width: 32.0625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.0625rem;
}

.user-reviews__image-ibg {
    -webkit-box-flex: 0;
  
    padding-bottom: 25.6666666667%;
}

.user-reviews__content {
    line-height: normal;
}

.user-reviews__name {
    font-size: 1.25rem;
    font-weight: 600;
}

.user-reviews__years {
    font-size: 0.875rem;
    font-weight: 500;
}

.user-reviews__years:not(:last-child) {
    margin-bottom: 0.6875rem;
}

.user-reviews__info:not(:last-child) {
    margin-bottom: 0.875rem;
}

.user-reviews__earn {
    color: #005eb8;
    font-size: 1.25rem;
    font-weight: 600;
}

.faq {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
}

.faq__title {
    color: #0e0e0e;
    font-size: 2rem;
    font-weight: 600;
    line-height: 104.4%;
    text-align: center;
}

.faq__title:not(:last-child) {
    margin-bottom: 3.75rem;
}

.no-webp .head {
    background: url('../img/head.png') center center/cover no-repeat;
}

.head {
    padding-bottom: 1.875rem;
}

.head__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.0625rem;
}

.head__video {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
}

.head__form {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 37.52%;
    flex: 1 0 37.52%;
}

.video-head__title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 117.9%;
    max-width: 45rem;
}

.video-head__title:not(:last-child) {
    margin-bottom: 1.8125rem;
}

.video-head__video {
    position: relative;
    max-width: 44.25rem;
    padding-bottom: 53.3333333333%;
}

.video-head__iframe,
.video-head__player {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.video-head__preview-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.video-play .video-head__preview-img {
    display: none;
}

.video-head__button-ibg {
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    width: 2.625rem;
    height: 2.625rem;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.video-head__button-ibg::before,
.video-head__button-ibg::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    z-index: -10;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.video-head__button-ibg::after {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(255, 255, 255, 0.66);
}

.video-head__button-ibg::before {
    width: 4.5rem;
    height: 4.5rem;
    background-color: rgba(255, 255, 255, 0.42);
}

.video-play .video-head__button-ibg {
    display: none;
}



form legend {
    color: #0e0e0e;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    line-height: 104.4%;
}

form legend:not(:last-child) {
    margin-bottom: 1.625rem;
}

form input {
    padding: 0.9375rem 1.25rem;
    border: 1px solid #cbcbcb;
    width: 100%;
}

form input:focus {
    -webkit-box-shadow: 0px 0px 0px 2px rgba(0, 117, 135, 0.25);
    box-shadow: 0px 0px 0px 2px rgba(0, 117, 135, 0.25);
    outline: none;
}

form input:not(:last-child) {
    margin-bottom: 0.5625rem;
}

form input::-webkit-input-placeholder {
    color: #bababa;
    font-size: 15px;
    line-height: 123.646%;
}

form input::-moz-placeholder {
    color: #bababa;
    font-size: 15px;
    line-height: 123.646%;
}

form input:-ms-input-placeholder {
    color: #bababa;
    font-size: 15px;
    line-height: 123.646%;
}

form input::-ms-input-placeholder {
    color: #bababa;
    font-size: 15px;
    line-height: 123.646%;
}

form input::placeholder {
    color: #bababa;
    font-size: 15px;
    line-height: 123.646%;
}

form .input_tel {
    padding-left: 5rem;
}

form .input_checkbox {
    position: absolute;
    top: 1.5rem;
    left: 0.125rem;
    width: 0.8125rem;
    height: 0.8125rem;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}

form .input_checkbox {
    display: none;
}

form .input_checkbox:checked ~ form .label-checkbox::before {
    background: url('../img/check.svg') 0 0 / cover no-repeat;
    border: 1px solid #2a609d;
}

form .submit {
    margin-top: 1.125rem;
}

form checkbox {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

form label-checkbox {
    font-size: 9px;
    font-weight: 300;
    line-height: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1.375rem;
    padding-left: 1.9375rem;
    position: relative;
}

form label-checkbox::before {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 0.9375rem;
    height: 0.9375rem;
    border: 1px solid #c6c6c6;
    background-color: #fff;
}

.iti,
.iti--allow-dropdown,
.iti--separate-dial-code {
    width: 100% !important;
}

.swiper {
    overflow: hidden;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.swiper-vertical .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.swiper-initialized .swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
    display: none !important;
}



@media (min-width: 756px) {
    .table__info_city {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 25.875rem;
        flex: 0 1 25.875rem
    }
}


@media (min-width: 47.99875em) {
    .spollers__item {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }

    .spollers__body {
        padding-top: 3.125rem;
    }
}

@media (min-width: 48em) {
    .amount__title-information span {
        font-size: 4rem;
    }
}

@media (min-width: 62em) {
    .menu__list {
        gap: 3.1875rem;
    }
}

@media (min-width: 75em) {
    .amount {
        padding-top: 6.6875rem;
    }

    .amount {
        padding-bottom: 3.4375rem;
    }

    .amount__content {
        gap: 6.25rem;
    }

    .head {
        padding-top: 16.5625rem;
    }
}

@media (max-width: 48em) {
    .menu__list {
        gap: 1.25rem;
    }
}

@media (max-width: 30em) {
    .amount {
        padding-top: 1.875rem;
    }

    .amount {
        padding-bottom: 1.875rem;
    }

    .amount__content {
        gap: 3.125rem;
    }

    .amount__title-information span {
        font-size: 3.25rem;
    }

    .head {
        padding-top: 8.4375rem;
    }
}

@media (max-width: 25em) {
    .footer__actions {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0.9375rem;
    }
}

@media (max-width: 79.6875em) {
    .amount__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        width: 100%;
    }

    .amount__actions {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        width: 100%;
        padding: 0 2.5rem;
    }

    .amount__information {
        padding: 2.125rem;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        width: 100%;
    }
}

@media (max-width: 61.99875em) {
    .about__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .about__title {
        text-align: center;
    }

    .crypto-info__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .crypto-services__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 1.25rem);
        flex: 0 0 calc(50% - 1.25rem);
    }

    .advantages__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .advantages__title {
        text-align: center;
    }

    .advantages__button {
        margin: 0 auto;
        margin-top: 3.4375rem;
    }

    .advantages__image-ibg {
        width: 100%;
    }

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

@media (max-width: 47.99875em) {
    .touch [data-fullscreen] {
        -webkit-transition: height 0.2s;
        transition: height 0.2s;
    }

    .menu__body {
        padding-top: 6.5625rem;
        background-color: #fff;
        position: fixed;
        z-index: 50;
        width: 100%;
        height: 100%;
        left: -100%;
        top: 0;
        -webkit-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        overflow: auto;
    }

    .menu__body::before {
        content: '';
        position: fixed;
        width: 100%;
        height: 6.5625rem;
        top: 0;
        left: 0;
        background-color: #fff;
    }

    .menu-open .menu__body {
        left: 0;
    }

    .menu__list {
        -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;
        padding-top: 1.25rem;
        padding-bottom: 2.5rem;
    }

    .icon-menu {
        display: block;
        position: relative;
        width: 1.875rem;
        height: 1.125rem;
        z-index: 150;
    }

    .icon-menu span,
    .icon-menu::before,
    .icon-menu::after {
        content: '';
        -webkit-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        right: 0;
        position: absolute;
        width: 100%;
        height: 0.125rem;
        background-color: #000;
    }

    .icon-menu::before {
        top: 0;
    }

    .icon-menu::after {
        bottom: 0;
    }

    .icon-menu span {
        top: calc(50% - 0.0625rem);
    }

    .menu-open .icon-menu span {
        width: 0;
    }

    .menu-open .icon-menu::before {
        top: calc(50% - 0.0625rem);
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .menu-open .icon-menu::after {
        bottom: calc(50% - 0.0625rem);
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .crypto-services__item {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }
}

@media (max-width: 47.99875em) and (any-hover: none) {
    .icon-menu {
        cursor: default;
    }
}

@media (min-width: 48em) and (max-width: 62em) {
    @supports (
        gap: clamp(1.25rem, -5.3928571429rem + 13.8392857143vw, 3.1875rem)
    ) {
        .menu__list {
            gap: clamp(1.25rem, -5.3928571429rem + 13.8392857143vw, 3.1875rem);
        }
    }

    @supports not (
        gap: clamp(1.25rem, -5.3928571429rem + 13.8392857143vw, 3.1875rem)
    ) {
        .menu__list {
            gap: calc(1.25rem + 1.9375 * (100vw - 48rem) / 14);
        }
    }
}

@media (min-width: 30em) and (max-width: 75em) {
    @supports (
        padding-top:
            clamp(1.875rem, -1.3333333333rem + 10.6944444444vw, 6.6875rem)
    ) {
        .amount {
            padding-top: clamp(
                1.875rem,
                -1.3333333333rem + 10.6944444444vw,
                6.6875rem
            );
        }
    }

    @supports not (
        padding-top:
            clamp(1.875rem, -1.3333333333rem + 10.6944444444vw, 6.6875rem)
    ) {
        .amount {
            padding-top: calc(1.875rem + 4.8125 * (100vw - 30rem) / 45);
        }
    }

    @supports (
        padding-bottom:
            clamp(1.875rem, 0.8333333333rem + 3.4722222222vw, 3.4375rem)
    ) {
        .amount {
            padding-bottom: clamp(
                1.875rem,
                0.8333333333rem + 3.4722222222vw,
                3.4375rem
            );
        }
    }

    @supports not (
        padding-bottom:
            clamp(1.875rem, 0.8333333333rem + 3.4722222222vw, 3.4375rem)
    ) {
        .amount {
            padding-bottom: calc(1.875rem + 1.5625 * (100vw - 30rem) / 45);
        }
    }

    @supports (
        gap: clamp(3.125rem, 1.0416666667rem + 6.9444444444vw, 6.25rem)
    ) {
        .amount__content {
            gap: clamp(3.125rem, 1.0416666667rem + 6.9444444444vw, 6.25rem);
        }
    }

    @supports not (
        gap: clamp(3.125rem, 1.0416666667rem + 6.9444444444vw, 6.25rem)
    ) {
        .amount__content {
            gap: calc(3.125rem + 3.125 * (100vw - 30rem) / 45);
        }
    }

    @supports (
        padding-top:
            clamp(8.4375rem, 3.0208333333rem + 18.0555555556vw, 16.5625rem)
    ) {
        .head {
            padding-top: clamp(
                8.4375rem,
                3.0208333333rem + 18.0555555556vw,
                16.5625rem
            );
        }
    }

    @supports not (
        padding-top:
            clamp(8.4375rem, 3.0208333333rem + 18.0555555556vw, 16.5625rem)
    ) {
        .head {
            padding-top: calc(8.4375rem + 8.125 * (100vw - 30rem) / 45);
        }
    }
}


@media (min-width: 30em) and (max-width: 48em) {
    @supports (font-size: clamp(3.25rem, 2rem + 4.1666666667vw, 4rem)) {
        .amount__title-information span {
            font-size: clamp(3.25rem, 2rem + 4.1666666667vw, 4rem);
        }
    }

    @supports not (font-size: clamp(3.25rem, 2rem + 4.1666666667vw, 4rem)) {
        .amount__title-information span {
            font-size: calc(3.25rem + 0.75 * (100vw - 30rem) / 18);
        }
    }
}

@media (any-hover: hover) {
    .button:hover {
        background-color: transparent;
        color: #2a609d;
    }

    .button_outline:hover {
        color: #fff;
        background-color: #2a609d;
    }

    .video-head__button-ibg:hover {
        -webkit-transform: translate(-50%, -50%) scale(1.2);
        -ms-transform: translate(-50%, -50%) scale(1.2);
        transform: translate(-50%, -50%) scale(1.2);
    }

    .video-head__button-ibg:hover::before,
    .video-head__button-ibg:hover::after {
        -webkit-transform: translate(-50%, -50%) scale(1.1);
        -ms-transform: translate(-50%, -50%) scale(1.1);
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.webp .head {
    background: url(../img/head.webp) center center/cover no-repeat;
}
