@charset "utf-8";

:root {
    --main-bg: #fff;
    --second-bg: #393185;
    --main-txt: #333333;
    --second-txt: #fff;
    --accent-txt: #583fb7;
    --first-btn-bg: #7e0cb8;
    --second-btn-bg: #901e87;
    --light-border: #fff;
    --active--bg: #f33971;
    --page-block--bg: #EDECF4;
    --page-border: #BEB5D0;
    --page-link: #BEB5D0;
}
@media screen and (min-width: 768px) {
    html {
        scroll-behavior: smooth;
    }
}
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.2;
    columns: var(--main-txt);
    position: relative;
    overflow-x: hidden;
    overflow-y: scroll;
    /* background: url(/img/numberscharts.webp); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #5b2e82;
}

body.menu_open {
    overflow: hidden;
}
@media screen and (min-width: 768px) {
    body::-webkit-scrollbar {
        width: 12px;
        height: 5px;
        background: rgb(255 255 255);
    }
    body::-webkit-scrollbar-thumb {
        background: #b8d5d3;
    }
    body:hover::-webkit-scrollbar-thumb {
        background: #90aba9;
    }
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}
img.lazy:not(.loaded) {
    position: relative;
    overflow: hidden;
}

img.lazy:not(.loaded):before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(242 239 250);
    border-radius: 8px;
    background-image: url(../img/preloader.gif);
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (min-width: 480px) {
    .container {
        width: 480px;
    }
}

@media screen and (min-width: 768px) {
    .container {
        width: 768px;
    }
}

@media screen and (min-width: 1364px) {
    .container {
        width: 1250px;
        z-index: 1;
    }
}

.section {
    padding-top: 20px;
    padding-bottom: 50px;
    position: relative;
}

@media screen and (min-width: 768px) {
    .section {
        padding-top: 75px;
        padding-bottom: 75px;
    }
}
@media screen and (min-width: 1364px) {
    .section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    margin-top: 0;
    margin-bottom: 0;
}

ul {
    list-style: none;
    padding: 0;
}

/* header */
.header {
    width: 100%;
    z-index: 10;
    top: 0;
    position: relative;
}

.header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 80px;
}
@media screen and (min-width: 768px) {
    .header__container {
        min-height: 100px;
    }
}
@media screen and (min-width: 1364px) {
    .header__container {
        min-height: 160px;
    }
}

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

.header__logo_img {
    max-width: 60px;
}

@media screen and (min-width: 1364px) {
    .header__logo_img {
        max-width: 90px;
    }
}

/* header__mobile */
.header__mobile_btn {
    width: 30px;
    height: 20px;
    background-color: transparent;
    border: none;
    position: relative;
    padding: 0;
}
.header__mobile_btn.is-active {
    position: absolute;
    right: 20px;
    z-index: 12;
}
@media screen and (min-width: 768px) {
    .header__mobile_btn {
        display: none;
    }
}
@media screen and (min-width: 1364px) {
    .header__mobile_btn {
        display: none;
    }
}

.header__mobile_line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--main-bg);
    transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.is-active .header__mobile_line {
    transform: rotate(45deg);
}

.header__mobile_line::before,
.header__mobile_line::after {
    content: '';

    height: 2px;
    width: 100%;
    background-color: var(--main-bg);

    position: absolute;
    left: 0;
}
.header__mobile_line::before {
    top: 0;
    transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.is-active .header__mobile_line::before {
    transform: rotate(90deg);
}
.header__mobile_line::after {
    bottom: 0;
}
/* end header__mobile */
@media screen and (max-width: 767px) {
    .header__nav {
        opacity: 0;
        position: absolute;
        overflow-y: scroll;
        z-index: 10;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        padding: 48px 40px;
        text-align: left;
        /* background-color: rgba(57, 49, 133, 0.95); */
        background-image: linear-gradient(to bottom, var(--first-btn-bg), var(--second-btn-bg));
        visibility: hidden;
        -webkit-transition: visibility 250ms cubic-bezier(0.4, 0, 0.2, 1),
            opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
        transition: visibility 250ms cubic-bezier(0.4, 0, 0.2, 1),
            opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }

    .header__nav.is-open {
        opacity: 1;
        position: fixed;
        top: 0;
        left: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        visibility: visible;
        pointer-events: initial;
    }
}

@media screen and (min-width: 768px) {
    .header__nav {
        display: block;
    }
}

.header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
@media screen and (min-width: 768px) {
    .header__menu {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        display: flex;
        align-items: center;
    }
}

.header__item + .header__item {
    margin-left: 45px;
}
@media screen and (max-width: 767px) {
    .header__item {
        margin-bottom: 30px;
    }
    .header__item + .header__item {
        margin-left: 0;
    }
}
@media screen and (min-width: 768px) and (max-width: 1363px) {
    .header__item + .header__item {
        margin-left: 25px;
    }
}
.header__link {
    display: inline-block;
    font-size: 22px;
    font-weight: 600;
    color: var(--second-txt);
    text-decoration: none;
}
@media screen and (min-width: 767px) {
.header__link--order {
    background-color: #f73c6c;
    padding: 15px 23px;
    border-radius: 31px;
    box-shadow: 0px 20px 30px -15px #5a2477;
    display: inline-block;
    position: relative;
    z-index: 999;
}
}

.header__link::after {
    content: '';
    display: block;
    border-bottom: 2px solid transparent;
    transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
        transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.5);
}

.header__link:hover::after {
    border-color: var(--light-border);
    transform: scale(1);
}
@media screen and (min-width: 768px) {
    .header__link {
        font-size: 16px;
    }
}
@media screen and (min-width: 1364px) {
    .header__link {
        font-size: 18px;
    }
}

/* hero */
.hero {
    /* padding-top: 90px; */
    position: relative;
}
@media screen and (min-width: 768px) {
    .hero {
        display: flex;
        align-content: center;
        align-items: center;
        max-height: 1080px;
        flex-direction: column;
    }
}
@media screen and (min-width: 1364px) {
    .hero {
        padding: 10px 0 70px;
    }
}

.hero__title {
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 600;
    color: var(--second-txt);
    text-align: center;
    z-index: 1;
}

@media screen and (min-width: 768px) {
    .hero__title {
        font-size: 50px;
    }
}

.hero__desc {
    margin-bottom: 40px;
    font-size: 18px;
    font-weight: 600;
    color: var(--second-txt);
    text-align: center;
    z-index: 1;
}
@media screen and (min-width: 768px) {
    .hero__desc {
        margin-bottom: 40px;
        font-size: 24px;
    }
}
.hero__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    flex-direction: column;
}

.hero__currencies_wrap {
    margin-top: 35px;

    margin-left: 20px;
    margin-right: 20px;
    overflow: hidden;

    position: relative;
}

@media screen and (min-width: 768px) {
    .hero__currencies_wrap {
        width: 768px;
        max-width: 1364px;
    }
}
@media screen and (min-width: 1364px) {
    .hero__currencies_wrap {
        width: 1250px;
        margin-top: 120px;
    }
}
.hero__currencies {
    max-width: 480px;
    min-width: 100%;
    width: 100%;
    position: relative;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
}

.hero__wrapper {
    position: relative;
    /* width: 100%; */
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
    flex-direction: row;
}
.hero__currencies .slick-track {
    display: inline-block;
}
@media screen and (min-width: 768px) {
    .hero__currencies {
        max-width: 768px;
    }
}
@media screen and (min-width: 1364px) {
    .hero__currencies {
        max-width: 1364px;
    }
}
.hero__cell {
    display: inline-block;

    vertical-align: bottom;
    width: 33%;
}
.hero__item {
    min-width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    vertical-align: bottom;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
@media screen and (min-width: 768px) {
    .hero__item {
        min-width: 20%;
    }
}
@media screen and (min-width: 1363px) {
    .hero__item {
       min-width: 14.3%;
    }
}
.hero__box {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 7px;
    position: relative;
    display: inline-block;
}

.hero__img {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
@media screen and (min-width: 768px) {
    .hero__box {
        width: 100px;
        height: 100px;
    }
    .hero__img {
        width: 70px;
        height: 70px;
    }
}
.hero__currency {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--second-txt);
    text-align: center;
    display: inline-block;
}

@media screen and (min-width: 1364px) {
    .hero__currency {
        font-size: 20px;
        width: auto;
    }
}
/*- order -*/
.order {
    padding-top: 0px;
    padding-bottom: 0px;
}

/* service */
.service {
    background: #fff;
    position: relative;
}

.service__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-txt);
    text-align: center;

    margin-bottom: 10px;
}

.service__desk {
    font-size: 32px;
    font-weight: 600;
    text-align: center;

    margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
    .service__desk {
        font-size: 40px;
    }
}

@media screen and (min-width: 768px) {
    .service__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
@media screen and (min-width: 768px) and (max-width: 1363px) {
    .service__list {
        justify-content: space-around;
    }
}

.service__item {
    margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
    .service__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: flex-start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-preferred-size: calc((100% - 2 * 120px) / 2);
        flex-basis: calc((100% - 2 * 120px) / 2);
        margin-bottom: 60px;
    }
}
@media screen and (min-width: 1364px) {
    .service__item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        margin-right: 60px;
        margin-left: 60px;
        margin-bottom: 100px;
    }
}
@media screen and (max-width: 768px) {
    .service__item:last-child {
        margin-bottom: 0;
    }
}
@media screen and (min-width: 768px) {
    .service__item:nth-last-child(-n + 2) {
        margin-bottom: 0;
    }
}
.service__img {
    display: block;
}
@media screen and (max-width: 1364px) {
    .service__img {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px;
    }
}

.service__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
}
@media screen and (min-width: 1364px) {
    .service__box {
        margin-left: 70px;
        text-align: left;
    }
}
.service__subtitle {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}
@media screen and (min-width: 1364px) {
    .service__subtitle {
        font-size: 24px;
        margin-bottom: 30px;
    }
}
.service__txt {
    font-weight: 400;
    line-height: 1.2;
    font-size: 16px;
}

/* reviews */

.reviews__title {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    color: var(--second-txt);
    z-index: 1;
    position: relative;
}
@media screen and (min-width: 768px) {
    .reviews__title {
        font-size: 40px;
    }
}
.reviews__desc {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    color: var(--second-txt);
    margin-bottom: 50px;
    z-index: 1;
    position: relative;
}
@media screen and (min-width: 1364px) {
    .reviews__desc {
        max-width: 55%;
        margin-left: auto;
        margin-right: auto;
    }
}

.reviews__list {
    height: 100%;
    position: relative;
    scroll-behavior: smooth;
    overflow: hidden;
    overflow: hidden;
}
.reviews__wrapper {
    z-index: 1;
    transition-property: transform;
    white-space: nowrap;
    height: 100%;
    word-spacing: -3.39pt;
    vertical-align: top;
}

@media screen and (min-width: 768px) {
    .reviews__wrapper {
        white-space: inherit;
        width: 100%;
        flex-direction: column;
        height: 473px;
        display: flex;
        flex-wrap: wrap;
    }
}
.reviews__item {
    word-spacing: initial;
    width: 100%;
    display: inline-block;
    background-color: #fff;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0px 30px 50px -20px #483a81;
    vertical-align: top;
}
.swiper-slide-active{
    z-index:5
}
@media screen and (min-width: 768px) {
    .reviews__item {
        padding: 40px 40px 0;
        
    }
}
.reviews__item:hover{
    z-index:5
}
@media screen and (min-width: 768px) {
    .reviews__item {
        display: block;
        width: calc(50% - 20px);
        margin-right: 30px;
        margin-bottom: 30px;
        height: calc(50% - 15px);
        /* height: 100%; */
    }
}
@media screen and (min-width: 1364px) {
    .reviews__item {
        display: block;
        width: calc(33.333% - 20px);
        margin-right: 30px;
        margin-bottom: 30px;
    }
}
.swiper-initialized .reviews__item {
    margin-bottom: 0px;
}

@media screen and (min-width: 768px) {
    .reviews__item {
        padding: 40px 35px;
    }
}

.reviews__row {
    margin-bottom: 25px;
    position: relative;
    vertical-align: top;
}
.reviews__row img {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
}
.reviews__user {
    padding-left: 80px;
    padding-top: 6px;
}

.reviews__name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
@media screen and (min-width: 1364px) {
    .reviews__name {
        margin-bottom: 6px;
    }
}

.reviews__date {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-txt);
}

.reviews__comment {
    font-size: 16px;
    font-weight: 400;
    white-space: normal;
    display: block;
}
@media screen and (min-width: 1364px) {
    .reviews__comment {
        height: 60px;
        overflow: hidden;
        padding: 0 35px 35px;
        margin: 0 -35px 35px;
        background-color:#fff;
        border-radius: 25px;
        position: relative;
    }
    .reviews__item:hover .reviews__comment{
        height: auto;
        box-shadow: 0 13px 12px -4px #493b9678;
        min-height: 102px;
        margin-bottom: 0;
    }
    .reviews__comment:after {
        content: '';
        display: block;
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 22px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    }
    .reviews__item:hover .reviews__comment:after{
       display:none;
    }
}

/* slick */
.slick-current div {
    /* display: inline-block; */
}

.slick-dots {
    display: block;
    width: 100%;
    text-align: center;
    line-height: 0.3;
    margin-top: 15px;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 10px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    height: 15px;
    width: 15px;
    border-radius: 10px;
    border: none;
    background-color: var(--main-bg);
    cursor: pointer;
}

.slick-dots li.slick-active button {
    background-color: var(--active--bg);
}
/* end slick */

/* about */
.about {
    background-image: url(../img/bg_about.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #fff;
}

@media screen and (min-width: 1364px) {
    .about {
        background-position: -70% 40%;
        padding: 150px 20px;
        background-size: inherit;
    }
}

@media screen and (min-width: 1364px) {
    .about__container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: flex-start;
        align-items: flex-start;
        padding-left: 200px;
        padding-right: 100px;
    }
}

.about__right_side {
    text-align: center;
}
@media screen and (min-width: 1364px) {
    .about__right_side {
        text-align: left;
    }
}

@media screen and (min-width: 1364px) {
    .about__right_side {
        margin-left: 50px;
    }
}

.about__img {
    display: none;
}
@media screen and (min-width: 1364px) {
    .about__img {
        display: block;
        /* width: 200px; */
        /* height: 200px; */
    }
}
.about__title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}
@media screen and (min-width: 1364px) {
    .about__title {
        font-size: 40px;
        text-align: left;
    }
}
.about__desc {
    font-size: 16px;
    font-weight: 400;
    height: 173px;
    overflow: hidden;
}

.about__btn {
    margin-top: 40px;
    padding: 20px 50px;
    display: inline-block;
    background-color: rgb(126, 11, 182);
    background-image: -moz-linear-gradient(
        31deg,
        rgba(126, 11, 182, 1) 0%,
        rgba(143, 30, 136, 1) 100%
    );
    background-image: -webkit-linear-gradient(
        31deg,
        rgba(126, 11, 182, 1) 0%,
        rgba(143, 30, 136, 1) 100%
    );
    background-image: linear-gradient(31deg, rgba(126, 11, 182, 1) 0%, rgba(143, 30, 136, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#7e0bb6", endColorstr="#8f1e88", GradientType=1);
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    color: var(--second-txt);
    border-radius: 10px;
    box-shadow: 0px 15px 30px -10px #59097c9e;
}

.about__btn:hover {
    background-color: rgb(145, 0, 236);
    background-image: -moz-linear-gradient(
        31deg,
        rgba(145, 0, 236, 1) 0%,
        rgba(171, 12, 159, 1) 100%
    );
    background-image: -webkit-linear-gradient(
        31deg,
        rgba(145, 0, 236, 1) 0%,
        rgba(171, 12, 159, 1) 100%
    );
    background-image: linear-gradient(31deg, rgba(145, 0, 236, 1) 0%, rgba(171, 12, 159, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9100ec", endColorstr="#ab0c9f", GradientType=1);
}

@media screen and (min-width: 1364px) {
    .about__btn {
        padding: 18px 45px;
        font-size: 20px;
    }
}

/* footer */
.footer {
    padding-top: 50px;
    background-position: top;
}
@media screen and (min-width: 1364px) {
    .footer {
        padding-top: 100px;
    }
}

.footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 1;
    position: relative;
}

.footer__top {
    margin-bottom: 40px;
}

@media screen and (min-width: 768px) and (max-width: 1363px) {
    .footer__top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer__top:nth-child(odd) {
        margin-right: 0;
    }
}
@media screen and (min-width: 1364px) {
    .footer__top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
.footer__box {
    text-align: center;
    margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
    .footer__box {
        margin-right: 80px;
        text-align: left;
    }
}
@media screen and (min-width: 1364px) {
    .footer__box {
        margin-bottom: 0;
        margin-right: 0;
    }
}
@media screen and (min-width: 1364px) {
    .footer__box + .footer__box {
        margin-left: 80px;
    }
}

.footer__title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--second-txt);
    margin-bottom: 20px;
    text-align: center;
}
@media screen and (min-width: 768px) {
    .footer__title {
        text-align: left;
    }
}
@media screen and (min-width: 1364px) {
    .footer__title {
        margin-bottom: 25px;
    }
}

.footer__item {
    margin-bottom: 10px;
}

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

.footer__link {
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    color: var(--second-txt);
}
.footer__link::after {
    content: '';
    display: block;
    border-bottom: 1px solid var(--light-border);
    transition: 0.3s;
    transform: scale(0.5);
    opacity: 0;
}

.footer__link:hover::after {
    opacity: 1;
    transform: scale(1);
}
.footer__link--under::after {
    border-color: transparent;
}

.footer__feedback {
    border: 1px solid var(--light-border);
    padding: 20px;
    border-radius: 25px;
}
@media screen and (min-width: 768px) and (max-width: 1363px) {
    .footer__feedback {
        margin-right: auto;
    }
}
@media screen and (min-width: 1364px) {
    .footer__feedback {
        margin-left: auto;
        padding: 45px 80px 45px 45px;
        transform: translateY(-17%);
    }
}
.footer__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.footer__row + .footer__row {
    margin-top: 30px;
}

.footer__row::before {
    content: '';

    position: absolute;
    left: 0;
}
@media screen and (min-width: 768px) {
    .footer__row::before {
        left: 10px;
    }
}
.footer__row--email::before {
    background-image: url(../img/email.png);
    width: 32px;
    height: 24px;
}

.footer__row--telegram::before {
    background-image: url(../img/telegram.png);
    width: 34px;
    height: 30px;
}

.footer__contact {
    padding-left: 60px;
}
@media screen and (min-width: 768px) {
    .footer__contact {
        padding-left: 75px;
    }
}
.footer__subtitle {
    display: block;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
    color: var(--second-txt);
}
@media screen and (min-width: 768px) {
    .footer__subtitle {
        margin-bottom: 10px;
    }
}
.footer__info {
    font-size: 16px;
    font-weight: 700;
    color: var(--second-txt);
    text-decoration: none;
}

.footer__copyright {
    font-size: 18px;
    font-weight: 400;
    color: var(--second-txt);
    text-align: center;
}

/*- checkout -*/
.checkout {
    width: 100%;
    overflow: hidden;
    max-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    flex-wrap: nowrap;
    display: flex;
    flex-direction: row;
}
.checkout__step {
    width: 100%;
    min-width: 100%;
    display: none;
    opacity: 0;
    animation-duration: 0.3s;
    animation-timing-function: ease-in-out;
}

.checkout-step_1 .checkout__step:nth-child(1) {
    animation-name: checkout_step_open;
    display: block;
    opacity: 1;
}
.checkout-step_2 .checkout__step:nth-child(2) {
    animation-name: checkout_step_open;
    display: block;
    opacity: 1;
}
@keyframes checkout_step_open {
    0% {
        display: none;
        opacity: 0;
    }
    1% {
        display: block;
    }
    100% {
        opacity: 1;
    }
}
/*- end checkout -*/

/*- form -*/

.form {
    max-width: 100%;
    padding: 20px;
    border-radius: 20px;
    position: relative;
}
@media screen and (min-width: 768px) {
    .form {
        padding: 40px;
    }
}

.form__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: -5px;
}
@media screen and (min-width: 768px) {
    .form__title {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 20px;
        margin-top: -12px;
    }
}
.form-exchange {
    width: 600px;
    /* max-width: 94%; */
    margin-left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    box-shadow: 0px 40px 55px -20px #483a81;
}
.form__aftersand{
    position:
    absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    opacity: 0;
    z-index: 999;
    background-color: #fff;
    border-radius: 30px;
}

.form__iconsand {
    width: 200px;
    height: 200px;
    border-radius: 100%;
    background-image: url(../img/email-send.gif);
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f0eaf8;
    margin: 0 auto 30px;
}

.form__aftermsg p {
    font-size: 25px;
    font-weight: 600;
    max-width: 250px;
    text-align: center;
    margin: 0 auto;
}
.form__beforesand--checked {visibility: hidden;}
.form__beforesand--checked + .form__aftersand{
    display: block;
    opacity: 1;
    animation-name: checkout_step_open;
}

.form-checkout {
    width: 750px;

    margin: 0 auto;

    background-color: #fff;
    box-shadow: 0px 40px 55px -20px #483a81;
}
.form__row {
    margin-bottom: 20px;
}

.form__note {
    text-align: center;
}

.form__status {
    font-size: 16px;
    margin-bottom: 20px;
}

.status {
    border-radius: 5px;
    padding: 3px 10px 5px;
    display: inline-block;
    margin-top: 5px;
    font-size: 14px;
}
@media screen and (min-width: 768px) {
    .status {
        margin-top: 0px;
        margin-left: 10px;
        font-size: 16px;
        color: #fff;
    }
}
.status-green {
    background-color: #079d07;
}
.status-yellow {
    background-color: #ff9800;
}
.status-balck {
    background-color: #4e4e4e;
}
.status-blue {
    background-color: #2196f3;
}
.status-turquoise {
    background-color: turquoise;
    color: #333;
}
.form__row-hidden {
    display: none;
}
.form__row:last-child {
    margin-bottom: 0;
}

.form__groupe {
    position: relative;
    background-color: #ecf1f7;
    border-radius: 10px;
    height: 60px;
}

.form__groupe select {
    display: none;
}

.form__groupe-vertical {
    display: flex;

    flex-direction: column;
    flex-wrap: nowrap;
}
.form__groupe-size_big{
    height: auto;
}
@media screen and (min-width: 768px) {
    .form__groupe-vertical {
        display: flex;
    }
}
.form__label {
    font-size: 12px;
    color: #6b6c6e;
    z-index: 3;
    transition: 0.2s;
    top: 25%;
    position: absolute;
    left: 12px;
    transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
    .form__label {
        font-size: 14px;
        top: 50%;
        position: absolute;
        left: 25px;
        transform: translateY(-50%);
    }
}

.form__input {
    padding: 0 15px;
    background: #f1f0f9;
    border: 0;
    outline: 0;
    border-radius: 10px;
    height: 100%;
    font-size: 18px;
    width: 100%;
    z-index: 2;
    position: relative;
    transition: 0.2s;
    color: #000000;

    display: block;
    font-weight: 600;
}

@media screen and (min-width: 768px) {
    .form__input {
        padding: 0 25px;
    }
}

.form__input:not([disabled]):hover {
    background: #eae9f6;
}
.form__input:not([disabled]):active,
.form__input:not([disabled]):focus {
    background: #fbfafd;
    box-shadow: inset 0 0 0 2px #eae9f6;
}

.form__textarea{
    padding: 0 15px;
    background: #f1f0f9;
    border: 0;
    outline: 0;
    border-radius: 10px;
    font-size: 18px;
    width: 100%;
    z-index: 2;
    position: relative;
    transition: 0.2s;
    color: #000000;

    display: block;
    font-weight: 600;

    resize: none;
}

@media screen and (min-width: 768px) {
    .form__textarea {
        padding: 0 25px;
    }
}

.form__textarea:not([disabled]):hover {
    background: #eae9f6;
}

.form__textarea:not([disabled]):active,
.form__textarea:not([disabled]):focus {
    background: #fbfafd;
    box-shadow: inset 0 0 0 2px #eae9f6;
}

.form__label--textarea{
    top: 10%;
    transform: translateY(-20%);
}
@media screen and (min-width: 768px) {
    .form__label--textarea {
        top: 20%;
    }
}
.form__textarea-vertical {
    padding-top: 35px;
    font-size: 18px;
}


.form__textarea-vertical:active+label,
.form__textarea-vertical:focus+label {
    top: 17px;
}


.form__input-vertical {
    padding-top: 17px;
    font-size: 18px;
}
.form__label-active,
.form__input-vertical:active + label,
.form__input-vertical:focus + label {
    top: 17px;
}
.form__error {
    font-size: 14px;
    transform: translateY(-100%);
    padding: 6px 15px;
    position: absolute;
    left: 0;
    z-index: 3;
    background-color: #e66a6a;
    color: #fff;
    width: 70%;
    min-height: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px -6px #ae4545;
    display: none;
    text-align: center;
}

.form__error a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}
.form__errorW {
    font-size: 14px;
    transform: translateY(-100%);
    padding: 6px 15px;
    position: absolute;
    left: 0;
    z-index: 3;
    background-color: #e66a6a;
    color: #fff;
    width: 30%;
    min-height: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 50px -6px #ae4545;
    display: none;
    text-align: center;
}

.form__errorW a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}
.form__input-select {
    padding: 11px 12px 0;
    width: 60%;
    border-radius: 10px 0 0 10px;
    box-shadow: inset -2px 0 0 0 #e1e0ee;
}
@media screen and (min-width: 768px) {
    .form__input-select {
        text-align: right;
        padding: 0 15px;
        width: 70%;
        border-radius: 10px 0 0 10px;
    }
}

.form__preloader {
    width: 60px;
    height: 60px;
    background-color: #ecf1f7;
    right: 40%;
    margin-right: 2px;
    position: absolute;
    z-index: 2;
    background-image: url(../img/preloader.gif);
    background-position: center;
    background-repeat: no-repeat;
    display: none;
}
@media screen and (min-width: 768px) {
    .form__preloader {
        right: 30%;
    }
}
.form__preloader-visible {
    display: block;
}

.form__checkbox {
}
.form__checkbox input[type='checkbox'] {
    display: none;
}
.form__checkbox label {
    position: relative;
    padding: 6px 10px 6px 35px;
    display: inline-block;

    cursor: pointer;
    font-size: 14px;
}

.form__checkbox label:hover {
    color: #674cdf;
}
@media screen and (min-width: 768px) {
    .form__checkbox label {
        font-size: 16px;
    }
}
.form__checkbox label::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    border: 2px solid #b1b9c2;
    left: 5px;
    top: 5px;
    border-radius: 5px;
}
.form__checkbox label::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 18px;
    transform: rotateZ(221deg);
    left: 13px;
    top: -5px;
    color: #6645de;
    border-top-style: solid;

    border-left-style: solid;
    border-width: 0px;
    transition: 0.2s;
    box-shadow: 0 0 0 0 #8d1c8d;
}

.form__checkbox input[type='checkbox']:checked + label::after {
    border-top-width: 3px;

    border-left-width: 3px;
    box-shadow: -3px -2px 6px -3px #8d1c8d;
    top: 1px;
}

.form__button {
    width: 100%;
    height: 60px;
    display: table-row-group;
    border: none;
    font-size: 20px;
    color: #fff;
    border-radius: 10px;
    background: rgb(126, 11, 182);
    background: -moz-linear-gradient(31deg, rgba(126, 11, 182, 1) 0%, rgba(143, 30, 136, 1) 100%);
    background: -webkit-linear-gradient(
        31deg,
        rgba(126, 11, 182, 1) 0%,
        rgba(143, 30, 136, 1) 100%
    );
    background: linear-gradient(31deg, rgba(126, 11, 182, 1) 0%, rgba(143, 30, 136, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#7e0bb6",endColorstr="#8f1e88",GradientType=1);
    cursor: pointer;
    box-shadow: 0px 15px 30px -10px #59097c9e;
}

.form__button:hover {
    background: rgb(145, 0, 236);
    background: -moz-linear-gradient(31deg, rgba(145, 0, 236, 1) 0%, rgba(171, 12, 159, 1) 100%);
    background: -webkit-linear-gradient(31deg, rgba(145, 0, 236, 1) 0%, rgba(171, 12, 159, 1) 100%);
    background: linear-gradient(31deg, rgba(145, 0, 236, 1) 0%, rgba(171, 12, 159, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9100ec",endColorstr="#ab0c9f",GradientType=1);
}

.form__swap {
    width: 100%;
    height: 0;
    background-color: #333;
    position: relative;
}
.form__swap button {
    width: 41px;
    height: 40px;
    background-color: #fffeff;
    background-image: url(../img/swap-arrows.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 13px;
    position: absolute;
    right: -33px;
    top: -31px;
    border-radius: 50px;
    border: none;
    box-shadow: 0px 15px 30px -10px #6e57789e;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    z-index: 99;
}

@media screen and (min-width: 768px) {
    .form__swap button {
        width: 60px;
        height: 60px;
        right: -70px;
        top: -32px;
        background-size: 16px;
    }
}
.form__swap button:hover {
    background-color: #f4f7fb;
    margin-top: 2px;
}

/*- end form  -*/

/*- exchange_info -*/
.exchange_info {
    padding: 6px;
    border: 2px solid #e7edf3;
    border-radius: 10px;
    display: flex;
    justify-content: space-around;

    min-height: 60px;
    position: relative;
    background-color: #fbfcfd;
}

.form_exchange__edit {
    right: -20px;
    top: 50%;
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50px;
    background-image: url(../img/icon-edit.jpg);
    background-position: center;
    box-shadow: 0px 5px 13px -5px #654fa67d;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0.7;
}
.form_exchange__edit:hover {
    opacity: 1;
}
.exchange_info__col {
    display: flex;
    align-items: center;
}

.form_exchange__img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    display: none;
}
@media screen and (min-width: 768px) {
    .form_exchange__img {
        display: block;
    }
}
@media screen and (min-width: 768px) {
    .exchange_info {
        background-image: url(../img/arrows.jpg);
        background-position: center;
        background-repeat: no-repeat;
    }
}

.exchange_info__label {
    font-size: 12px;
    color: #596895;
    margin: 0;
}
@media screen and (min-width: 768px) {
    .exchange_info__label {
        font-size: 14px;
    }
}
.exchange_info__value {
    display: inline-block;
    color: #653edd;
    font-weight: bold;
    font-size: 14px;
}
.exchange_info__currency {
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
}
@media screen and (min-width: 768px) {
    .exchange_info__currency,
    .exchange_info__value {
        font-size: 16px;
    }
}
/*- end -*/

/*- select2 -*/
.select__state {
    position: relative;
    display: flex;
    height: 100%;
    width: 100%;
}
.select__state-selection {
    padding: 20px 25px 20px 10px;
    background-image: url(../img/down-arrow.png);
    background-position: 90% center;
    background-repeat: no-repeat;
}
@media screen and (min-width: 993px) {
    .select__state-selection {
        padding: 15px 40px 15px 15px;
        background-position: 85% center;
    }
}
.select__state-result {
    height: 30px;
}
.select__state_img {
    margin-right: 5px;
}
@media screen and (min-width: 768px) {
    .select__state_img {
        margin-right: 10px;
    }
}
.select__state_img img {
    height: 100%;
}

.select__img img {
    max-height: 100%;
}
.select__state_name {
    font-size: 16px;
    display: flex;
    align-items: center;
    font-weight: 600;
}
@media screen and (min-width: 768px) {
    .select__state_name {
        font-size: 20px;
    }
}
.select__state_name-full {
    font-size: 16px;
    margin-left: 20px;
    color: #696585;
    font-weight: 500;
}
.select2-dropdown {
    background-color: #fefeff;
    display: block;
    position: relative;
    border-radius: 0 0 10px 10px;
    box-shadow: 0px 15px 30px -10px #2509329e;
}
.select2-results__options {
    margin: 0;
    padding: 0;
    list-style: none;
    max-height: 300px;
    overflow: hidden;
    overflow-y: scroll;
}
.select2-results__options li {
    padding: 10px 25px;
    border-bottom: 1px solid #d5dce6;
    cursor: pointer;
}
.select2-results__options li:hover {
    background: #f4f6fa;
}

.select2-results__option--disabled {
    display: none;
}
.selection {
    position: absolute;
    left: 0;
    top: 0;
    padding-left: 60%;
    width: 100%;
}
@media screen and (min-width: 768px) {
    .selection {
        position: absolute;
        left: 0;
        top: 0;
        padding-left: 70%;
        width: 100%;
    }
}
.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    user-select: none;
    -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    outline: none;
}
.select2-hidden-accessible {
    display: none;
}
.select2.select2-container.select2-container--default {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100%;
    z-index: 1;
    background-color: #f1f0f9;
    transition: 0.2s;
    border-radius: 10px;
}
.select2.select2-container.select2-container--default:hover {
    background-color: #eae9f6;
}
.select2.select2-container.select2-container--default.select2-container--open {
    border-radius: 10px 10px 0 0;
    background-color: #eae9f6;
}

.select2-selection__rendered {
    height: 60px;
}
.select2-search.select2-search--dropdown {
    position: absolute;
    left: 0;
    top: -60px;
    height: 60px;
    width: 60%;
}
@media screen and (min-width: 768px) {
    .select2-search.select2-search--dropdown {
        width: 70%;
    }
}
.select2-search__field {
    width: 100%;
    height: 100%;
    border: none;
    background-color: #eae9f6;

    border-radius: 10px 0 0 0;
    box-shadow: inset -2px 0 0 0 #e1e0ee;
    outline: none;
    transition: 0.3s;
    font-size: 18px;
    font-weight: 600;
    padding: 0 10px;
}

@media screen and (min-width: 993px) {
    .select2-search__field {
        font-size: 20px;
        padding: 0 25px;
    }
}
.select2-search__field:hover {
    background: #f1f0f9;
}

.select2-search__field:focus {
    background: #fbfafd;

    box-shadow: inset 0 0 0 2px #eae9f6;
}
.select2-search__field::placeholder {
    font-size: 14px;
    color: #6b6c6e;
    font-weight: 400;
}
@media screen and (min-width: 768px) {
    .select2-search__field::placeholder {
        font-size: 14px;
    }
}
.form__attention {
    border: 2px solid #ffd461;
    border-radius: 10px;
    padding: 14px;

    background-color: #fef7ea;
    color: #ee9500;
    font-size: 14px;
    font-weight: 600;

    margin-bottom: 20px;
}
.form__attentionT {
    border: 2px solid #FF0000;
    border-radius: 10px;
    padding: 14px;

    background-color: #fef7ea;
    color: #FF0000;
    font-size: 14px;
    font-weight: 600;

    margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
    .form__attention {
        padding: 20px;
        background-image: url(../img/icon-attention.png);
        background-position: 24px center;
        background-repeat: no-repeat;
        padding-left: 80px;
    }
}
@media screen and (min-width: 768px) {
    .form__attentionT {
        padding: 20px;
        background-image: url(../img/icon-attention.png);
        background-position: 24px center;
        background-repeat: no-repeat;
        padding-left: 80px;
    }
}
.form__attention-hidden {
    display: none;
}
.form__attentionT-hidden {
    display: none;
}
.form__attention:last-child {
    margin-bottom: 0;
}
.form__attentionT:last-child {
    margin-bottom: 0;
}
.select2-container.select2-container--default.select2-container--open {
    z-index: 99;
}
:root {
    -moz-tab-size: 4;
    tab-size: 4;
}
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
}
body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif,
        'Apple Color Emoji', 'Segoe UI Emoji';
}
hr {
    height: 0;
    color: inherit;
}
abbr[title] {
    text-decoration: underline dotted;
}
b,
strong {
    font-weight: bolder;
}
code,
kbd,
pre,
samp {
    font-family: ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 1em;
}
small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
table {
    text-indent: 0;
    border-color: inherit;
}
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}
button,
select {
    text-transform: none;
}
[type='button'],
[type='reset'],
[type='submit'],
button {
    -webkit-appearance: button;
}
::-moz-focus-inner {
    border-style: none;
    padding: 0;
}
:-moz-focusring {
    outline: 1px dotted ButtonText;
}
:-moz-ui-invalid {
    box-shadow: none;
}
legend {
    padding: 0;
}
progress {
    vertical-align: baseline;
}
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
    height: auto;
}
[type='search'] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}
::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}
summary {
    display: list-item;
}
/*- end select2 -*/

/*- wallet -*/
.wallet {
    border: 2px solid #edf1f6;
    border-radius: 10px;
    padding: 13px;
    background-color: #fbfcfd;
    margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
    .wallet {
        padding: 20px;
    }
}
.wallet__itm {
    width: 100%;
    display: flex;
    border-bottom: 2px solid #edf1f6;
    padding: 0 0 20px;
    margin-bottom: 20px;
}
.wallet__itm:last-child {
    border-bottom: none;
    padding: 0;
    margin-bottom: 0;
}

.wallet__img {
    width: 20%;
    min-width: 20%;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-content: center;
    padding: 0px 15px;
    display: none;
}
@media screen and (min-width: 768px) {
    .wallet__img {
        display: block;
    }
}
.for .wallet__note {
    width: calc(75% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wallet__label {
    font-size: 16px;
    margin-bottom: 10px;
}

.wallet__namber {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    word-break: break-all;
}

.wallet__text {
    font-size: 14px;
    color: #596895;
}
/*- end wallet -*/

.sPreloader {
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    z-index: 9999;

    top: 0;
    left: 0;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    background-attachment: fixed;
    align-items: center;
    justify-content: center;
    background: rgb(60, 52, 139);
    background: -moz-linear-gradient(
        150deg,
        rgba(60, 52, 139, 1) 0%,
        rgba(90, 62, 174, 1) 26%,
        rgba(133, 56, 134, 1) 91%
    );
    background: -webkit-linear-gradient(
        150deg,
        rgba(60, 52, 139, 1) 0%,
        rgba(90, 62, 174, 1) 26%,
        rgba(133, 56, 134, 1) 91%
    );
    background: linear-gradient(
        150deg,
        rgba(60, 52, 139, 1) 0%,
        rgba(90, 62, 174, 1) 26%,
        rgba(133, 56, 134, 1) 91%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3c348b",endColorstr="#853886",GradientType=1);
}
.sPreloader__logo_box {
    display: flex;
    align-items: center;
}
.sPreloader__logo {
    margin-right: 20px;
}
.sPreloader__deckript {
    width: 180px;
    overflow: hidden;
    animation-name: animation_deckript;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: 1;

    padding: 10px 0;
    border-right: 0px solid #fff;
}
.sPreloader__deckript img {
    width: 180px;

    min-width: 180px;
}

.sPreloader__logo img {
    animation-name: animation_logo;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    transform: rotateZ(0deg);
    width: 60px;
}
@keyframes animation_deckript {
    0% {
        width: 0px;
        border-right: 2px solid #ffffff9c;
    }
    100% {
        width: 180px;
        border-right: 2px solid #ffffff9c;
    }
}
@keyframes animation_logo {
    0% {
        transform: rotateZ(360deg);
    }
    50% {
        transform: rotateZ(180deg);
    }
    100% {
        transform: rotateZ(0deg);
    }
}

.youtube_background {
    height: 100vh;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    display: block;
}
.youtube_background:after {
    content: '';
    width: 100%;
    height: 100vh;
    top: 0;
    position: fixed;
    left: 0;
    background: rgb(60, 52, 139);
    background: -moz-linear-gradient(
        150deg,
        rgba(60, 52, 139, 1) 0%,
        rgb(90 62 174 / 86%) 26%,
        rgba(133, 56, 134, 1) 91%
    );
    background: -webkit-linear-gradient(
        150deg,
        rgba(60, 52, 139, 1) 0%,
        rgb(90 62 174 / 86%) 26%,
        rgba(133, 56, 134, 1) 91%
    );
    background: linear-gradient(
        150deg,
        rgba(60, 52, 139, 1) 0%,
        rgb(90 62 174 / 86%) 26%,
        rgba(133, 56, 134, 1) 91%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3c348b",endColorstr="#853886",GradientType=1);
}
.youtube_background iframe {
    transition: opacity 500ms ease-in-out;
    transition-delay: 250ms;
}

.runningtitle {
    width: 100%;
    background-color: rgb(57 30 91 / 0%);
    padding: 25px 0;
    z-index: 2;
    position: relative;
    background-image: linear-gradient(0deg, rgb(57 30 91 / 0%), rgb(57 30 91 / 40%) 69%);
}
@media screen and (min-width: 768px) {
    .runningtitle {
       padding: 55px 0;
    }
}
.runningtitle__centred {
    max-width: 1364px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}

.breadcrumbs {
    color: rgb(255 255 255 / 60%);
    margin-top: 20px;
}

.breadcrumbs a {
    color: #fff;
    margin-right: 60px;
    position: relative;
    text-decoration: none;
}

.breadcrumbs a:after {
    content: '→';
    display: block;
    position: absolute;
    right: -42px;
    top: 2px;
}

.runningtitle__title {
    font-size: 34px;
    color: #fff;
    font-weight: 600;
}
@media screen and (min-width: 768px) {
    .runningtitle__title {
      font-size: 50px;
    }
}
.pages_site {
    position: relative;
    z-index: 2;
    background-color: rgb(255 255 255);
    /* margin-top: -160px; */
    /* background-image: url(../img/bg_about.jpg); */
    /* background-repeat: no-repeat; */
    /* background-position: center; */
    /* background-size: contain; */
}

.pages_site__centred {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 55px 20px;
    /* background-color: #fff; */
    /* border-radius: 30px; */
    /* box-shadow: 0px 40px 55px -20px #483a81; */
    /* background-repeat: no-repeat; */
    /* background-position: center; */
    /* background-size: contain; */
}

.pages_site__desc{
    font-size: 20px;
        font-weight: 600;
        text-align: center;
        color: var(--main-txt);
        margin-bottom: 55px;
        z-index: 1;
        position: relative;
}

@media screen and (min-width: 1364px) {
    .pages_site__desc {
    max-width: 63%;
    margin-left: auto;
    margin-right: auto;
}
}

/* start text */
.text {
    list-style: none;
}

.text h3 {
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 600;
}
.text p {
    line-height: 1.39;
    margin: 0 0 1.4rem; /* text-indent: 20px; */
    font-size: 18px;
}

.text a{
    color: var(--page-link);
    text-decoration: none;
    font-size: 18px;
}
.text a:hover{
    color: var(--accent-txt);
}

.text ul,
.text ol {
    margin: 0;
    padding: 0;
    counter-reset: counter;
    margin-bottom: 25px;
    margin-top: 25px;
}
.text li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    line-height: 20px;
    list-style: none;
}
.text ul li:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #00d14e;
    left: 7px;
    top: 4px;
    border-radius: 10px;
}
.text ol li:before {
    counter-increment: counter;
    content: counter(counter);
    line-height: 1.6;
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #00d14e;
    left: 0;
    top: 0;
    border-radius: 17px;
    font-size: 0.8em;
    font-weight: 700;
    color: #00d14e;
    text-align: center;
}
.text h1 {
    margin-bottom: 25px;
    margin-top: 0;
    line-height: 2rem;
    font-size: 2em;
    font-weight: 700;
}
.text h2 {
    margin-bottom: 1.3em;
    line-height: 1.3em;
    font-size: 1.3em;
    font-weight: 700;
}
@media screen and (max-width: 539px) {
    .text h1 {
        margin-bottom: 0.7rem;
        line-height: 1.4rem;
        font-size: 1.4em;
        font-weight: 700;
    }
    .text h2 {
        margin-bottom: 25px;
        margin-top: 25px;
        line-height: 1.3em;
        font-size: 1.3em;
        font-weight: 700;
    }
}
/* end text */



/* reviews_page */
.reviews_page{

}
@media screen and (min-width: 768px) {
    .reviews_page {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-left: -20px;
        margin-right: -20px;
    }
}
.reviews_page__item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 25px;
    background-color: var(--page-block--bg);
    display: none;
    animation-duration: 0.6s;
    animation-timing-function: ease-in-out;
    opacity: 0;
}
.reviews_page__item--visible{
    display: block;
    animation-name: checkout_step_open;
    opacity: 1;
}

@media screen and (min-width: 768px) {
    .reviews_page__item {
        -ms-flex-preferred-size: calc((100% - 4 * 20px) / 2);
        flex-basis: calc((100% - 4 * 20px) / 2);
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 40px;
        padding: 40px 35px;
    }
}
.reviews_page__row{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
    .reviews_page__row {
        margin-bottom: 20px;
    }
}
.reviews_page__user{
    margin-left: 20px;
}
.reviews_page__name{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.reviews_page__date{
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-txt);
}
@media screen and (min-width: 768px) {
    .reviews_page__date {
        font-size: 16px;
    }
}
.reviews_page__comment{
    font-size: 16px;
    font-weight: 400;
}

.reviews__holder_btn{
    margin-top: 40px;
    text-align: center;
}
.reviews__btn{
    border: none;
    padding: 20px 50px;
    display: inline-block;
    background-color: rgb(126, 11, 182);
    background-image: -moz-linear-gradient(31deg, rgba(126, 11, 182, 1) 0%, rgba(143, 30, 136, 1) 100%);
    background-image: -webkit-linear-gradient(31deg, rgba(126, 11, 182, 1) 0%, rgba(143, 30, 136, 1) 100%);
    background-image: linear-gradient(31deg, rgba(126, 11, 182, 1) 0%, rgba(143, 30, 136, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#7e0bb6", endColorstr="#8f1e88", GradientType=1);
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    color: var(--second-txt);
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0px 15px 30px -10px #59097c9e;
    
}
@media screen and (min-width: 1364px) {
    .reviews__btn {
        padding: 18px 45px;
        font-size: 20px;
    }
}
.reviews__btn:hover,.reviews__btn:focus{
    background-color: rgb(145, 0, 236);
    background-image: -moz-linear-gradient(31deg, rgba(145, 0, 236, 1) 0%, rgba(171, 12, 159, 1) 100%);
    background-image: -webkit-linear-gradient(31deg, rgba(145, 0, 236, 1) 0%, rgba(171, 12, 159, 1) 100%);
    background-image: linear-gradient(31deg, rgba(145, 0, 236, 1) 0%, rgba(171, 12, 159, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9100ec", endColorstr="#ab0c9f", GradientType=1);
}

.pages_form{
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}

@media screen and (min-width: 768px) {
    .pages_form {
        padding-top: 100px;
    }
}
.pages_form__title{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--second-txt);
    text-align: center;
}

@media screen and (min-width: 768px) {
    .pages_form__title {
        font-size: 40px;
        margin-bottom: 50px;
    }
}
/* end reviews_page */


/* feedback-page */

.feedback {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column-reverse;

}

@media screen and (min-width: 768px) {
    .feedback {
        flex-direction: row;
        align-items: center;
        margin-left: -20px;
        margin-right: -20px;
    }
}
.feedback__col{
    margin-bottom: 40px;
}
.feedback__col:first-child{
    margin-bottom: 0;
}
@media screen and (min-width: 768px) {
    .feedback__col {
        -ms-flex-preferred-size: calc((100% - 4 * 20px) / 2);
        flex-basis: calc((100% - 4 * 20px) / 2);
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 0;
    }
}
.form--page{
    border: 1px solid var(--page-border);
}

/* end feedback-page */


.reviews__dots {
    margin-top: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    background-color: #fff;
    border-radius: 30px;
    margin: 0 10px;
}

.swiper-pagination-bullet-active {
    background-color: #fd2992;
}
/* about */
.about_page {
    width: 100%;
}
@media screen and (min-width: 768px) {
    .about_page {
        display: flex;
    }
}
.about_page__left {
    max-width: 100%;
    margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
    .about_page__left {
        max-width: 40%;
        position: relative;
        margin-right: 40px;
        margin-bottom: 0;
    }
}

.about_page__right {
    width: 100%;
}
@media screen and (min-width: 768px) {
    .about_page__right {
        max-width: calc(60% - 45px);
    }
}
.about_page__sticky {
    display: block;

}
@media screen and (min-width: 768px) {
    .about_page__sticky {
        display: block;
        text-align: center;
        position: sticky;
        top: 0;
    }
}
/* end about */