.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none
}

.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform .3s ease-out;
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    -webkit-transform: translate(0, -50px);
    -ms-transform: translate(0, -50px);
    transform: translate(0, -50px)
}

@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        -webkit-transition: none;
        transition: none
    }
}

.modal.show .modal-dialog {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
}

.modal.modal-static .modal-dialog {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02)
}

.modal-dialog-scrollable {
    height: calc(100% - 1rem)
}

.modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto
}

.modal-dialog-centered {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    min-height: calc(100% - 1rem)
}

.modal-content {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #2228af;
    border-radius: 0rem;
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .3)
}

.modal-backdrop.fade {
    opacity: 0
}

.modal-backdrop.show {
    opacity: .5
}

.modal-header {
    display: -webkit-box;
    display: flex;
    flex-shrink: 0;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #0168c0;
    border-top-left-radius: calc(0rem - 1px);
    border-top-right-radius: calc(0rem - 1px)
}

.modal-header .btn-close {
    padding: .5rem .5rem;
    margin: -0.5rem -0.5rem -0.5rem auto
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.4
}

.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    padding: 1rem
}

.modal-footer {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    padding: .75rem;
    border-top: 1px solid #0168c0;
    border-bottom-right-radius: calc(0rem - 1px);
    border-bottom-left-radius: calc(0rem - 1px)
}

.modal-footer > * {
    margin: .25rem
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto
    }

    .modal-dialog-scrollable {
        height: calc(100% - 3.5rem)
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem)
    }

    .modal-sm {
        max-width: 300px
    }
}

@media (min-width: 992px) {
    .modal-lg, .modal-xl {
        max-width: 800px
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        max-width: 1140px
    }
}

.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0
}

.modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0
}

.modal-fullscreen .modal-header {
    border-radius: 0
}

.modal-fullscreen .modal-body {
    overflow-y: auto
}

.modal-fullscreen .modal-footer {
    border-radius: 0
}

@media (max-width: 575.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-sm-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-sm-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-sm-down .modal-body {
        overflow-y: auto
    }

    .modal-fullscreen-sm-down .modal-footer {
        border-radius: 0
    }
}

@media (max-width: 767.98px) {
    .modal-fullscreen-md-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-md-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-md-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-md-down .modal-body {
        overflow-y: auto
    }

    .modal-fullscreen-md-down .modal-footer {
        border-radius: 0
    }
}

@media (max-width: 991.98px) {
    .modal-fullscreen-lg-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-lg-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-lg-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-lg-down .modal-body {
        overflow-y: auto
    }

    .modal-fullscreen-lg-down .modal-footer {
        border-radius: 0
    }
}

@media (max-width: 1199.98px) {
    .modal-fullscreen-xl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-xl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-xl-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-xl-down .modal-body {
        overflow-y: auto
    }

    .modal-fullscreen-xl-down .modal-footer {
        border-radius: 0
    }
}

.btn:disabled, .btn.disabled {
    cursor: not-allowed
}

@font-face {
    font-family: "rbf";
    font-weight: normal;
    font-style: normal;
    font-display: block
}

.ico {
    font-family: "rbf" !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    -webkit-font-feature-settings: normal;
    font-feature-settings: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.ico__plus:before {
    content: ""
}

.ico__clear:before {
    content: ""
}

.ico__delete_sweep:before {
    content: ""
}

.ico__keyboard_arrow_down:before {
    content: ""
}

.ico__keyboard_arrow_up:before {
    content: ""
}

.ico__arrow_drop_down:before {
    content: ""
}

.ico__arrow_drop_up:before {
    content: ""
}

.ico__check:before {
    content: ""
}

.ico__lt:before {
    content: ""
}

.ico__gt:before {
    content: ""
}

.c-btn {
    display: inline-block;
    padding: .6rem 1.8rem;
    border-radius: 20px;
    border: solid 1px #9eb4d8;
    color: #252a40;
    font-size: .96rem;
    cursor: pointer;
    background: none;
    width: auto;
    vertical-align: middle;
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center
}

.c-btn:hover {
    color: #406cd0
}

.c-button {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-radius: 16px;
    cursor: pointer;
    font-size: 13px;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in
}

.c-button:disabled {
    opacity: .3;
    cursor: not-allowed
}

@media (min-width: 750px) {
    .c-button {
        min-width: 200px;
        width: auto;
        font-size: 15px
    }
}

@media (min-width: 1200px) {
    .c-button {
        font-size: 17px;
        border-radius: 28px
    }
}

.c-button--primary {
    background-image: -webkit-linear-gradient(bottom, #0168c0, #6e26f1);
    background-image: linear-gradient(to top, #0168c0, #6e26f1);
    color: #fff
}

.c-button--primary:hover {
    border-color: #406cd0;
    background: -webkit-linear-gradient(24deg, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    background: linear-gradient(66deg, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    color: #fff;
    text-decoration: none
}

.c-nav-btn {
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin-left: .5rem;
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
    border: 2px solid #4241dd;
    background: -webkit-linear-gradient(283deg, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    background: linear-gradient(167deg, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    color: #fff;
    border-radius: 50%;
    cursor: pointer
}

.c-nav-btn.swiper-button-disabled {
    border-color: #939fab;
    background: transparent;
    color: #939fab;
    cursor: not-allowed
}

.c-nav-btn:hover {
    opacity: .8
}

.c-lang-chooser {
    position: relative;
    background: #e0e9f2;
    border-radius: 16px;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    min-width: 80px;
    width: auto;
    padding: .5rem 1rem;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in
}

.c-lang-chooser__current {
    position: relative;
    color: #2a2c33;
    cursor: pointer;
    font-size: 10px;
    text-transform: uppercase;
    text-align: center
}

.c-lang-chooser__langs {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 100%;
    padding: 0;
    background: #fff;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 19px 38px rgba(0, 0, 0, .3), 0 15px 12px rgba(0, 0, 0, .22);
    z-index: 4
}

.c-lang-chooser__lang {
    display: block;
    cursor: pointer;
    font-size: .7rem;
    text-transform: uppercase;
    font-weight: 600;
    width: 100%;
    padding: .5rem .5rem .5rem 2.4rem
}

.c-lang-chooser__lang:hover, .c-lang-chooser__lang.c-lang-chooser__lang--current:hover {
    background: #dfeafc;
    color: #2a2c33
}

.c-lang-chooser__lang:last-child {
    border-radius: 0 0 6px 6px
}

.c-lang-chooser__lang--current {
    color: #6e26f1;
    background: #e0e9f2
}

.c-lang-chooser--expanded {
    border-radius: 6px 6px 0 0;
    background: #f0f4f9
}

.c-lang-chooser--expanded .c-lang-chooser__langs {
    border-radius: 0 0 6px 6px;
    display: block;
    -webkit-animation: anim-reveal .3s forwards;
    animation: anim-reveal .3s forwards
}

.c-lang-chooser--collapsing .c-lang-chooser__langs {
    display: block;
    -webkit-animation: anim-reveal-revert .3s forwards;
    animation: anim-reveal-revert .3s forwards
}

.c-lang-chooser__lang[data-lang]:before, .c-lang-chooser__current[data-lang]:before {
    content: "";
    position: absolute;
    left: 1rem;
    top: auto;
    width: 1rem;
    height: .7rem;
    background-size: contain
}

.c-lang-chooser__current {
    padding-left: .5rem
}

.c-lang-chooser__current:before {
    left: 0 !important
}

.c-lang-chooser__current:after {
    font-family: "rbf";
    content: "";
    position: absolute;
    right: -0.4rem;
    top: -0.2rem;
    font-size: 1rem
}

.c-lang-chooser--expanded .c-lang-chooser__current:after {
    content: ""
}

.c-dropdown {
    position: relative;
    background: #e0e9f2;
    border-radius: 16px;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    min-width: 120px;
    width: auto;
    padding: .5rem 1rem;
    -webkit-transition: background .3s ease-in, color .3s ease-in;
    transition: background .3s ease-in, color .3s ease-in
}

.c-dropdown.c-dropdown--wide {
    width: 100%
}

.c-dropdown__current {
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    color: #2a2c33;
    cursor: pointer;
    font-size: 10px;
    text-transform: uppercase;
    text-align: center
}

.c-dropdown__items {
    display: none;
    position: absolute;
    left: 0;
    top: calc(100% + 5px);
    min-width: 100%;
    padding: 0;
    background: #fff;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 19px 38px rgba(0, 0, 0, .3), 0 15px 12px rgba(0, 0, 0, .22);
    z-index: 4;
    overflow: hidden;
}

.c-dropdown__item {
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    cursor: pointer;
    font-size: .7rem;
    text-transform: uppercase;
    font-weight: 600;
    width: 100%;
    padding: .5rem
}

.c-dropdown__item:hover, .c-dropdown__item.c-dropdown__item--current:hover {
    background: #dfeafc;
    color: #2a2c33
}

.c-dropdown__item:last-child {
    border-radius: 0 0 6px 6px
}

.c-dropdown__item--current {
    color: #6e26f1;
    background: #e0e9f2
}

.c-dropdown--expanded {
    border-radius: 6px 6px 0 0;
    background: #f0f4f9
}

.c-dropdown--expanded .c-dropdown__items {
    border-radius: 0 0 6px 6px;
    display: block;
    -webkit-animation: anim-reveal .3s forwards;
    animation: anim-reveal .3s forwards
}

.c-dropdown--collapsing .c-dropdown__items {
    display: block;
    -webkit-animation: anim-reveal-revert .3s forwards;
    animation: anim-reveal-revert .3s forwards
}

.c-dropdown__current {
    padding-left: 0;
    padding-right: .8rem
}

.c-dropdown__current:before {
    left: 0 !important
}

.c-dropdown__current .fa-caret-down {

}

.c-dropdown--expanded .fa-caret-down {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.c-dropdown.c-dropdown--nav {
    background: none;
    border-radius: 0;
    padding: 0 2.4rem
}

.c-dropdown.c-dropdown--nav:hover, .c-dropdown.c-dropdown--nav.c-dropdown--expanded {
    background: -webkit-linear-gradient(left, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    background: linear-gradient(to right, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%)
}

.c-dropdown.c-dropdown--nav:hover .c-dropdown__current, .c-dropdown.c-dropdown--nav.c-dropdown--expanded .c-dropdown__current {
    color: #fff
}

[dir="ltr"] .c-dropdown.c-dropdown--nav .c-dropdown__current {
    text-align: left
}

[dir="rtl"] .c-dropdown.c-dropdown--nav .c-dropdown__current {
    text-align: right
}

.c-dropdown.c-dropdown--nav .c-dropdown__current {
    color: #252a40;
    display: inline-block;
    width: auto;
    text-align: left;
    line-height: 2.8;
    font-size: 18px;
    text-transform: none
}

.c-dropdown.c-dropdown--nav .c-dropdown__item {
    text-transform: none;
    font-size: 1.1rem;
    font-weight: normal;
    padding: .8rem;
    border-bottom: 1px solid #f0f4f9
}

.c-dropdown.c-dropdown--nav .c-dropdown__item a {
    color: #252a40;
}

@media (min-width: 750px) {
    .c-dropdown.c-dropdown--nav {
        padding: 0 3.5rem;
        font-size: 18px
    }

    .c-dropdown.c-dropdown--nav .c-dropdown__item {
        line-height: 1.2
    }
}

@media (min-width: 1600px) {
    .c-dropdown.c-dropdown--nav {
        display: inline-block;
        width: auto;
        padding: 0 1rem
    }

    .c-dropdown.c-dropdown--nav .c-dropdown__current {
        color: #fff;
        font-size: 18px;
        line-height: 1.4
    }

    .c-dropdown.c-dropdown--nav:hover, .c-dropdown.c-dropdown--nav.c-dropdown--expanded {
        background: none
    }

    .c-dropdown.c-dropdown--nav:hover .c-dropdown__current, .c-dropdown.c-dropdown--nav.c-dropdown--expanded .c-dropdown__current {
        color: #6ab0ff
    }
}

@media (min-width: 1600px) {
    .c-sticky--fixed .c-dropdown.c-dropdown--nav .c-dropdown__current {
        color: #252a40
    }

    .c-sticky--fixed .c-dropdown.c-dropdown--nav:hover .c-dropdown__current:hover, .c-sticky--fixed .c-dropdown.c-dropdown--nav:hover .c-dropdown__current, .c-sticky--fixed .c-dropdown.c-dropdown--nav.c-dropdown--expanded .c-dropdown__current:hover, .c-sticky--fixed .c-dropdown.c-dropdown--nav.c-dropdown--expanded .c-dropdown__current {
        color: #4241dd
    }
}

@media (min-width: 750px) {
    .menu__item .c-dropdown__items {
        min-width: 90%;
        margin-left: 5%
    }
}

.c-sticky.c-sticky--fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
    -webkit-animation: anim-opacity .3s;
    animation: anim-opacity .3s
}

.c-card {
    border-radius: 2rem;
    display: block;
    position: relative;
    z-index: 2;
    padding: 1.5rem 1.5rem 2rem;
    text-align: center;
    -webkit-transition: box-shadow .2s ease-in;
    transition: box-shadow .2s ease-in
}

.c-card:hover {
    box-shadow: 0 19px 38px rgba(0, 0, 0, .3), 0 15px 12px rgba(0, 0, 0, .22)
}

.c-card--bold .c-card__title {
    font-weight: bold
}

.c-card--bold .c-card__figure {
    max-height: 6rem
}

.c-card__figure {
    display: block;
    margin: 1.5rem auto .5rem;
    max-height: 10rem;
    max-width: 100%;
    -webkit-transition: -webkit-transform .2s ease-in;
    transition: -webkit-transform .2s ease-in;
    transition: transform .2s ease-in;
    transition: transform .2s ease-in, -webkit-transform .2s ease-in
}

.c-card__title {
    font-weight: 500;
    font-size: 1.4rem;
    padding: 1.5rem 0 .5rem;
    line-height: 1.3
}

.c-card__body {
    font-size: 15px;
    line-height: 1.3
}

.c-card--light {
    background: #fff;
    color: #252a40
}

.c-card--dark {
    background: #2228af;
    color: #fff
}

.c-card--accent {
    background: #b4ceff;
    color: #252a40
}

.c-card--alt {
    background: #dfeafc
}

.c-card__panel {
    padding: 0
}

.c-card__img {
    max-width: 175px;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: auto
}

.c-card__row {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    margin-top: 1rem;
    line-height: 1
}

.c-card__key, .c-card__val {
    -webkit-box-flex: 1;
    flex: 1;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transform: scaleY(1.2);
    -ms-transform: scaleY(1.2);
    transform: scaleY(1.2)
}

[dir="ltr"] .c-card__key {
    text-align: left
}

[dir="rtl"] .c-card__key {
    text-align: right
}

.c-card__key {
    font-weight: 600;
    text-align: left;
    font-size: 1rem
}

[dir="ltr"] .c-card__val {
    text-align: right
}

[dir="rtl"] .c-card__val {
    text-align: left
}

.c-card__val {
    text-align: right;
    font-size: 1.1rem
}

@media all and (min-width: 750px) {
    .c-card {
        padding: 2.7rem;
        border-radius: 3rem
    }

    .c-card__title {
        font-size: 25px;
        line-height: 1.2
    }

    .c-card__body {
        font-size: 17px;
        line-height: 1.4
    }
}

@media all and (min-width: 1024px) {
    .c-card {
        padding: 3rem 1.5rem
    }
}

@media all and (min-width: 1200px) {
    .c-card {
        padding: 3rem 2rem
    }
}

.c-icon-card {
    padding: 1rem 0;
    position: relative;
    z-index: 2
}

.c-icon-card__title {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 1rem 0;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5
}

.c-icon-card__icon {
    display: inline-block;
    max-height: 27px;
    max-width: 30px;
    margin-right: 1rem
}

@media all and (min-width: 750px) {
    .c-icon-card__title {
        font-size: 25px;
        line-height: 1.2
    }
}

[data-xw-tabs], [data-xw-tab-panels] {
    opacity: 0;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in
}

[data-xw-tabs].c-tabs--ready, [data-xw-tab-panels].c-tab-panels--ready {
    opacity: 1
}

.c-tab {
    display: inline-block;
    width: auto;
    color: #0168c0;
    font-size: 1rem;
    cursor: pointer;
    padding: .7rem 0;
    text-align: center;
    background: none;
    border: none;
    border-radius: 2rem;
    margin-right: 2rem
}

.c-tab.c-tab--active {
    background: -webkit-linear-gradient(left, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    background: linear-gradient(to right, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    color: #fff;
    position: relative;
    cursor: unset;
    padding: .7rem 1.8rem
}

.c-tab.c-tab--active:after {
    position: absolute;
    top: 100%;
    left: calc(50% - 5px);
    width: 0;
    height: 0;
    bottom: 0;
    content: "";
    display: inline-block;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #4241dd
}

.c-tab-panel {
    opacity: 0;
    overflow: hidden;
    height: 0;
    pointer-events: none;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in
}

.c-tab-panel.c-tab-panel--active {
    opacity: 1;
    pointer-events: initial;
    display: block;
    overflow: visible;
    overflow: initial;
    height: auto
}

[data-xw-excerpt-toggle] {
    position: relative;
    z-index: 5;
    display: none;
    width: auto;
    margin: 2rem auto;
    color: #406cd0;
    color: var(--text-color, #406cd0);
    border: var(--border)
}

@media all and (max-width: 749px) {
    .c-excerpt {
        -webkit-transition: all .2s ease-in;
        transition: all .2s ease-in
    }

    .c-excerpt:not(.c-excerpt--expanded) {
        max-height: 50rem;
        overflow: hidden;
        position: relative
    }

    .c-excerpt:not(.c-excerpt--expanded):after {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        height: 15rem;
        width: 100%;
        z-index: 10;
        background-image: -webkit-linear-gradient(top, rgba(var(--excerpt-fog-color-start), 0.1) 0%, rgba(var(--excerpt-fog-color-stop), 1) 100%);
        background-image: linear-gradient(to bottom, rgba(var(--excerpt-fog-color-start), 0.1) 0%, rgba(var(--excerpt-fog-color-stop), 1) 100%);
        box-shadow: inset 0px -20px 20px 0px rgba(var(--excerpt-fog-color-stop), 0.5)
    }

    .c-excerpt--expanded {
        z-index: 2;
        max-height: 100%;
        overflow: visible;
        overflow: initial;
        -webkit-animation: slideInDown;
        animation: slideInDown;
        -webkit-animation-duration: 1s;
        animation-duration: 1s
    }

    [data-xw-excerpt-toggle] {
        display: block
    }
}

.c-gdrp {
    background: -webkit-linear-gradient(283deg, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    background: linear-gradient(167deg, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    position: absolute;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-top: .5rem;
    padding-bottom: 1rem;
    box-shadow: inset 0px -6px 14px 7px rgba(0, 0, 0, .2);
    opacity: .7;
    z-index: 10
}

@media (min-width: 750px) {
    .c-gdrp {
        padding-top: .2rem;
        padding-bottom: .2rem
    }
}

.c-gdrp__close {
    display: block;
    position: absolute;
    left: .1rem;
    top: -0.3rem;
    color: #fff;
    font-size: .8rem;
    cursor: pointer;
    padding: .3rem
}

.c-gdrp__close:hover {
    color: #6ab0ff
}

.c-gdrp__body {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center
}

@media (min-width: 576px) {
    .c-gdrp__body {
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        align-items: center;
        flex-wrap: nowrap
    }
}

.c-gdrp__message {
    display: inline-block;
    padding: 1rem;
    font-size: .8rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    -webkit-transform: scaleY(1.2);
    -ms-transform: scaleY(1.2);
    transform: scaleY(1.2)
}

.c-gdrp__btn {
    border-radius: 1.8rem;
    margin-top: .5rem;
    font-size: .95rem !important;
    padding: .5rem 1.6rem;
    color: #f0f4f9;
    white-space: nowrap
}

.c-gdrp__btn:hover {
    background: -webkit-linear-gradient(24deg, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    background: linear-gradient(66deg, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    border-color: #406cd0
}

@media (min-width: 576px) {
    .c-gdrp__btn {
        margin-top: 0
    }
}

.c-gdrp__link {
    display: inline-block;
    color: #dfeafc;
    text-decoration: underline
}

.c-gdrp__link:hover {
    color: #252a40
}

.c-gdrp:hover {
    opacity: .9
}

.c-add-messenger {
    display: block;
    width: 100%;
    margin: 1rem 0 1rem 1.8rem
}

.c-add-messenger__btn {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center
}

.c-add-messenger__btn:hover {
    color: #6e26f1
}

.c-checkbox {
    padding: .3rem 0 .3rem 30px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.c-checkbox::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 3px;
    background-color: white;
}

.c-checkbox.checked::before {
    box-shadow: none;
    border-color: rgb(110, 38, 241);
    background: linear-gradient(66deg, rgb(1, 104, 192) 0%, rgb(1, 104, 192) 1%, rgb(110, 38, 241) 98%, rgb(110, 38, 241) 100%);
    display: inline-block;
    width: 20px;
    height: 20px;
    text-align: center;
    vertical-align: middle;
    color: white;
    border-radius: 3px;
}

.c-checkbox input {
    position: absolute;
    left: -9999em;
    top: auto;
    display: inline-block;
    opacity: 0;
    width: 0;
    height: 0;
    z-index: 0
}

.c-checkbox span {
    vertical-align: middle;
    display: inline-block;
    padding-left: 4px;
    margin-left: 30px
}

.c-checkbox:before {
    position: absolute;
    left: auto;
    top: 50%;
    width: 20px;
    height: 20px;
    content: "";
    display: inline-block;
    border: 1px solid #d6d6d6;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 2px 0 -1px #ebebeb;
    color: #fff;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.c-checkbox:hover:before {
    border-color: #6e26f1
}

.c-checkbox.checked:before {
    content: "✔";
    border-color: #6e26f1;
    background: -webkit-linear-gradient(24deg, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    background: linear-gradient(66deg, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    box-shadow: none
}

.c-checkbox:first-child {
    margin-top: 0
}

.c-elist {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between
}

.c-elist__item {
    width: 100%;
    margin-bottom: 2%
}

@media all and (min-width: 750px) {
    .c-elist__item {
        width: 48%
    }
}

@media all and (min-width: 1200px) {
    .c-elist__item {
        width: 32%
    }
}

img[data-img-full-src] {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    cursor: zoom-in
}

.c-modal {
    cursor: zoom-out !important
}

.c-modal * {
    cursor: inherit !important
}

.c-modal__title {
    text-align: center;
    font-size: 1rem;
    line-height: 1.2;
    padding: 1rem;
    border-radius: .3rem;
    color: #dfeafc;
    background: -webkit-linear-gradient(283deg, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    background: linear-gradient(167deg, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    box-shadow: 0 19px 38px rgba(0, 0, 0, .3), 0 15px 12px rgba(0, 0, 0, .22);
    text-shadow: 0 1px #2228af;
    z-index: 10;
    position: relative
}

.c-modal__body {
    position: relative;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    max-height: 90vh
}

.c-modal__img {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: auto;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    box-shadow: 0 19px 38px rgba(0, 0, 0, .3), 0 15px 12px rgba(0, 0, 0, .22)
}

.nav {
    padding: 1rem 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 40
}

.nav a {
    text-decoration: none
}

.nav.c-sticky--fixed {
    background: #fff
}

@media (min-width: 750px) {
    .nav {
        top: 2rem
    }
}

.nav__wrap {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center
}

.nav__toggler {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    width: 1.6rem;
    height: 1.6rem;
    z-index: 30
}

.nav__toggler:hover {
    opacity: .5
}

.nav__toggler--1, .nav__toggler--2, .nav__toggler--3 {
    display: block;
    width: 100%;
    height: 0;
    border: 1px solid #fff;
    background: #252a40;
    border-radius: 3px;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    position: absolute;
    left: 0
}

.nav__toggler--1 {
    top: 0
}

.nav__toggler--2 {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.nav__toggler--3 {
    bottom: 0
}

.t-nav--expanded .nav__toggler--1 {
    -webkit-transform: rotateZ(45deg) translateY(-50%);
    -ms-transform: rotate(45deg) translateY(-50%);
    transform: rotateZ(45deg) translateY(-50%);
    top: 50%
}

.t-nav--expanded .nav__toggler--2 {
    -webkit-transform: translateX(-1.6rem) scaleX(0);
    -ms-transform: translateX(-1.6rem) scaleX(0);
    transform: translateX(-1.6rem) scaleX(0);
    opacity: .1
}

.t-nav--expanded .nav__toggler--3 {
    -webkit-transform: rotateZ(-45deg) translateY(100%);
    -ms-transform: rotate(-45deg) translateY(100%);
    transform: rotateZ(-45deg) translateY(100%);
    bottom: 50%
}

.t-nav--expanded .nav__overflow--xs {
    box-shadow: 0 19px 38px rgba(0, 0, 0, .3), 0 15px 12px rgba(0, 0, 0, .22);
    opacity: 1
}

.t-nav--expanded .nav__toggler--1, .t-nav--expanded .nav__toggler--2, .t-nav--expanded .nav__toggler--3, .c-sticky--fixed .nav__toggler--1, .c-sticky--fixed .nav__toggler--2, .c-sticky--fixed .nav__toggler--3 {
    border: 1px solid #252a40
}

.nav__logo-link {
    display: block;
    max-width: 165px
}

.nav__logo-link > svg {
    display: block;
    width: 100%;
    height: auto
}

.menu__link {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

@media all and (max-width: 749px) {
    .nav__toggler--1, .nav__toggler--2, .nav__toggler--3 {
        border: 1px solid #252a40
    }

    .nav {
        background: #f9f7f6;
        position: fixed;
        box-shadow: 0 0 10px #000;
    }

    .nav__overflow--xs {
        background: #f9f7f6;
        opacity: .1;
        padding: 3.5rem 0 0;
        font-size: 1.4rem;
        -webkit-transition: all .2s ease-in;
        transition: all .2s ease-in;
        position: fixed;
        top: 0;
        right: 0;
        -webkit-transform: translateX(101%);
        -ms-transform: translateX(101%);
        transform: translateX(101%);
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column
    }

    .nav__overflow--sm {
        background: #f9f7f6
    }

    body {
        -webkit-transition: -webkit-transform .3s ease-in;
        transition: -webkit-transform .3s ease-in;
        transition: transform .3s ease-in;
        transition: transform .3s ease-in, -webkit-transform .3s ease-in;
        margin-top: 50px;
    }

    .index-page {
        margin-top: 0;
    }

    .t-nav--expanded .nav__overflow--xs {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        width: 70%
    }

    .t-nav--expanded .nav__toggler {
        right: 2.8%
    }

    .nav__mng {
        -webkit-box-ordinal-group: 4;
        order: 3
    }

    .nav__langs {
        -webkit-box-ordinal-group: 2;
        order: 1
    }

    .nav__overflow--sm {
        -webkit-box-ordinal-group: 3;
        order: 2
    }

    .nav__langs {
        padding: 0 2.5rem 1.5rem
    }

    .nav-mng {
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: start;
        justify-content: flex-start;
        padding: 0 2.5rem
    }

    .nav-mng a {
        font-size: 15px;
        color: #252a40;
        display: inline-block;
        line-height: 1.4;
        margin-right: 2rem;
        padding: 1rem 0
    }

    .nav-mng a:hover {
        color: #4241dd
    }

    .menu__link {
        line-height: 2.8;
        font-size: 17px;
        padding: 0 2.4rem
    }
}

@media all and (min-width: 750px) {
    .nav:not(.nav-fixed) .nav__logo-link svg path {
        fill: #fff
    }
}

@media all and (min-width: 750px)and (max-width: 1599px) {
    .nav__overflow--xs {
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        align-items: center;
        margin-left: 10%;
        margin-right: auto
    }

    .nav__overflow--sm {
        background: #f9f7f6;
        padding: 6rem 0 0;
        font-size: 1.4rem;
        -webkit-transition: all .2s ease-in;
        transition: all .2s ease-in;
        position: fixed;
        top: 0;
        right: 0;
        -webkit-transform: translateX(101%);
        -ms-transform: translateX(101%);
        transform: translateX(101%)
    }

    .t-nav--expanded .nav__overflow--xs {
        box-shadow: none
    }

    .t-nav--expanded .nav__overflow--sm {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        width: 60%;
        box-shadow: 0 19px 38px rgba(0, 0, 0, .3), 0 15px 12px rgba(0, 0, 0, .22)
    }

    .menu__link {
        padding: 0 3.5rem;
        line-height: 3;
        font-size: 18px
    }
}

@media all and (max-width: 1599px) {
    .t-nav--expanded .nav:before {
        content: "";
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh;
        width: 100%;
        background: rgba(0, 0, 0, .3)
    }

    .menu .menu__item:first-child {
        border-top: 1px solid #e1e1e1
    }

    .menu__item {
        border-bottom: 1px solid #e1e1e1
    }

    .menu__link {
        display: block;
        color: #252a40
    }

    .menu__link:hover {
        background: -webkit-linear-gradient(left, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
        background: linear-gradient(to right, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
        color: #fff
    }
}

@media all and (min-width: 750px) {
    .nav-mng {
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        align-items: center
    }

    .nav-mng__item {
        margin-right: 1.4rem;
        font-size: 14px
    }

    .nav-mng__item > a {
        color: #fff
    }

    .nav-mng__item > a:hover {
        color: #6ab0ff
    }

    .c-sticky--fixed .nav-mng__item > a {
        color: #252a40
    }

    .c-sticky--fixed .nav-mng__item > a:hover {
        color: #4241dd
    }
}

@media all and (min-width: 1600px) {
    .nav__toggler {
        display: none
    }

    .nav__overflow--xs, .nav__overflow--sm {
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        align-items: center
    }

    .nav__overflow--xs {
        -webkit-box-flex: 1;
        flex-grow: 1
    }

    .nav__mng {
        margin-left: 10%
    }
    
    .menu {
        -webkit-box-flex: 1;
        flex-grow: 1;
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        align-items: center
    }

    .menu__link {
        display: block;
        line-height: 1.4;
        padding: 0 1rem;
        color: #fff;
        font-size: 18px
    }

    .menu__link:hover {
        color: #6ab0ff
    }

    .c-sticky--fixed .menu__link {
        color: #252a40
    }

    .c-sticky--fixed .menu__link:hover {
        color: #4241dd
    }
}

.m-hero {
    margin: 2rem auto 4rem
}

@media (min-width: 750px) {
    .m-hero {
        margin-top: 6rem
    }
}

@media (min-width: 1200px) {
    .m-hero {
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        align-items: center
    }
}

@media (min-width: 1600px) {
    .m-hero {
        margin-top: 4rem
    }
}

.m-hero__coins {
    display: block;
    margin-bottom: 3rem
}

@media (min-width: 1200px) {
    .m-hero__coins {
        margin-bottom: 4rem;
        -webkit-box-ordinal-group: 3;
        order: 2;
        margin-bottom: 0;
        width: 40%
    }
}

@media (min-width: 1200px) {
    .m-hero__appeal {
        width: 60%;
        margin-right: 10%
    }
}

.m-hero__slogan, .m-hero__about {
    text-align: center;
    color: #fff
}

@media (min-width: 1200px) {
    [dir="ltr"] .m-hero__slogan, [dir="ltr"] .m-hero__about {
        text-align: left
    }

    [dir="rtl"] .m-hero__slogan, [dir="rtl"] .m-hero__about {
        text-align: right
    }

    .m-hero__slogan, .m-hero__about {
        text-align: left
    }
}

.m-hero__slogan {
    font-size: 35px;
    line-height: 1;
    margin: 0 auto 1.5rem
}

@media (min-width: 750px) {
    .m-hero__slogan {
        font-size: 63px;
        line-height: 1;
        margin-bottom: 3rem
    }
}

.m-hero__about {
    font-size: 18px;
    line-height: 1.44;
    font-weight: normal
}

@media (min-width: 750px) {
    .m-hero__about {
        font-size: 25px;
        line-height: 1.2
    }
}

.m-coins {
    display: block;
    width: 70%;
    margin: 0 auto;
    position: relative;
    text-align: center
}

@media (min-width: 750px) {
    .m-coins {
        width: 64%
    }
}

@media (min-width: 1200px) {
    .m-coins {
        width: 100%
    }
}

.hc-bubbles {
    display: block;
    margin: 0 auto;
    z-index: 0;
    width: 100%;
    height: 100%
}

.hc-coin {
    display: block;
    position: absolute;
    z-index: 1;
    width: 33%;
    --coin-width: 33%;
    height: auto
}

@media (min-width: 750px) {
    .hc-coin {
        width: 36%;
        --coin-width: 36%
    }
}

.hc-coin__btc {
    z-index: 2;
    left: calc(50% - var(--coin-width) / 2);
    top: 0
}

.hc-coin__eth {
    left: 0%;
    top: calc(50% - var(--coin-width) / 2)
}

.hc-coin__dashes {
    left: calc(50% - var(--coin-width) / 2);
    bottom: 0
}

.hc-coin__ltc {
    top: calc(50% - var(--coin-width) / 2);
    right: 0%
}

.m-ce {
    margin-top: 3rem;
    margin-bottom: 3rem;
    position: relative;
    background: linear-gradient(167deg, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
}

@media (min-width: 1200px) {
    .m-ce {
        margin-top: 0;
        margin-bottom: 3rem
    }
}

.m-ce__wrap {
    position: relative;
    margin-bottom: 3rem;
    padding-top: 15rem;
    padding-bottom: 15rem;
}

.m-ce__header {
    position: relative;
    z-index: 5;
    color: #fff;
}

@media (min-width: 750px) {
    .m-ce__header {
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        align-items: center
    }
}

.m-ce__heading {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 24px;
    line-height: 1.25;
}

@media (min-width: 750px) {
    [dir="ltr"] .m-ce__heading {
        text-align: left
    }

    [dir="rtl"] .m-ce__heading {
        text-align: right
    }

    .m-ce__heading {
        font-size: 35px;
        text-align: left
    }
}

@media (min-width: 1200px) {
    .m-ce__heading {
        font-size: 45px
    }
}

.m-ce__pn {
    display: inline-block;
    margin-left: auto
}

@media all and (max-width: 749px) {
    .m-ce__pn {
        position: absolute;
        z-index: 2;
        bottom: -2.5rem;
        left: 50%;
        width: auto;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%)
    }
}

.m-ce__body {
    overflow: hidden
}

#ceSlider.swiper-container > .swiper-wrapper {
    -webkit-box-align: center;
    align-items: center
}

.ce__item {
    box-sizing: border-box;
    display: inline-block;
    border-radius: 10px;
    box-shadow: inset 0 0 0 1px #e1e1e1;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    justify-content: center;
    height: 66px;
    width: auto
}

.ce__item a {
    display: -webkit-box;
    display: flex;
    text-align: center;
    margin-left: auto;
    margin-right: auto
}

.ce__item:hover .ce__img {
    -webkit-filter: none;
    filter: none;
    opacity: 1
}

.ce__img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    height: auto;
    -webkit-filter: contrast(0%) brightness(160%) grayscale(10%);
    filter: contrast(0%) brightness(160%) grayscale(10%);
    opacity: .8;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in
}

@media all and (min-width: 750px) {
    .ce__item {
        border-radius: 20px;
        height: 110px
    }

    .ce__img {
        width: 50%
    }
}

@media all and (min-width: 1200px) {
    .ce__item {
        border-radius: 20px;
        height: 100px
    }

    .ce__img {
        width: 60%
    }
}

.m-steps {
    margin-top: 0rem;
    margin-bottom: 2rem
}

@media (min-width: 750px) {
    .m-steps {
        margin-top: 1rem
    }
}

.m-steps__title, .m-steps__subtitle {
    text-align: center
}

@media (min-width: 750px) {
    .m-steps__title, .m-steps__subtitle {
        text-align: left
    }
}

.m-steps__title {
    line-height: 1.2;
    margin-bottom: 1rem;
    padding-left: 3rem;
    padding-right: 3rem
}

@media (min-width: 750px) {
    .m-steps__title {
        padding-left: 0;
        padding-right: 0;
        max-width: none
    }
}

.m-steps__subtitle {
    font-size: 17px;
    font-weight: normal;
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

@media (min-width: 750px) {
    .m-steps__subtitle {
        padding-left: 0;
        padding-right: 0;
        font-size: 20px
    }
}

@media (min-width: 1200px) {
    .m-steps__subtitle {
        font-size: 25px
    }
}

.m-steps__list {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: top;
    align-items: top;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 1.5rem 0
}

@media (min-width: 750px) {
    .m-steps__list {
        margin: 2rem 0
    }
}

@media (min-width: 1200px) {
    .m-steps__list {
        margin: 3rem 0
    }
}

.m-steps__step {
    flex-basis: 100%;
    text-align: center;
    padding: 1.2rem 0;
    display: block
}

.m-steps__step.m-steps__step--wide .m-steps__info {
    max-width: 290px
}

.m-steps__num {
    display: inline-block;
    font-size: 2.7rem;
    font-weight: 900;
    vertical-align: middle
}

.hmc-info__step {
    background: #f0f4f9;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 1rem;
}

.hmc-info__num {
    display: inline-block;
    font-size: 2.7rem;
    font-weight: 900;
    vertical-align: middle;
}

.hmc-info__num:first-child {
    position: relative;
    margin-right: 0.5rem;
}

.hmc-info__num:first-child:before {
    position: absolute;
    content: '';
    height: 4px;
    width: 120%;
    top: 46%;
    left: -10%;
    background: #dc3838;
    transform: rotate(17deg);
}

@media (min-width: 750px) {
    .m-steps__num {
        font-size: 4.4rem
    }

    .m-steps__num__txt {
        font-size: 2.2rem;
    }

    .hmc-info__num {
        font-size: 3rem
    }

    .hmc-info__txt {
        font-size: 1.5rem;
    }
}

.m-steps__step .m-steps__arrow {
    display: none
}

.m-steps__info {
    max-width: 250px;
    margin: .4rem auto 0;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    color: #252a40;
}

.hmc-info__step:hover {
    box-shadow: 0 5px 30px rgba(0, 0, 0, .3), 0 15px 12px rgba(0, 0, 0, .22);
}

.m-steps__info a {
    display: inline-block;
    color: #252a40
}

.m-steps__info a:hover {
    text-decoration: underline
}

.m-steps__about {
    text-align: center
}

@media (min-width: 750px) {
    [dir="ltr"] .m-steps__about {
        text-align: left
    }

    [dir="rtl"] .m-steps__about {
        text-align: right
    }

    .m-steps__about {
        text-align: left
    }
}

@media all and (min-width: 480px) {
    .m-steps__step {
        flex-basis: 45%;
        width: 45%
    }
}

@media all and (min-width: 750px) {
    .m-steps__step {
        text-align: left;
        text-align: initial;
        flex-basis: 30%;
        width: 30%
    }

    .m-steps__step .m-steps__arrow {
        display: inline-block;
        -webkit-transition: all .2s ease-in;
        transition: all .2s ease-in
    }

    .m-steps__step:hover .m-steps__arrow {
        -webkit-transform: translateX(1.4rem) scale(2, 1.2);
        -ms-transform: translateX(1.4rem) scale(2, 1.2);
        transform: translateX(1.4rem) scale(2, 1.2)
    }

    .m-steps__step:last-child:hover .m-steps__arrow {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        -webkit-animation: anim-reveal-revert .3s;
        animation: anim-reveal-revert .3s
    }

    .m-steps__info {
        text-align: left;
        text-align: initial;
        max-width: none;
        font-size: 15px;
        line-height: 1.4
    }
}

@media all and (min-width: 1200px) {
    .m-steps__info {
        font-size: 17px
    }
}

.m-swtp {
    padding: 7rem 0 5rem;
    background: -webkit-linear-gradient(24deg, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    background: linear-gradient(66deg, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    position: relative
}

@media (min-width: 750px) {
    .m-swtp {
        padding: 15rem 0
    }
}

.m-swtp__hero {
    color: #fff;
    margin-bottom: 2rem
}

.m-swtp__header {
    position: relative
}

.m-swtp__header .g-spiral-white {
    display: none
}

@media (min-width: 750px) {
    .m-swtp__header .g-spiral-white {
        display: inline-block;
        position: absolute;
        top: 110%;
        right: 0
    }
}

.m-swtp__heading {
    position: relative;
    text-align: center;
    margin-bottom: 3rem
}

.m-swtp__heading:after {
    content: "";
    position: absolute;
    display: block;
    left: 50%;
    top: auto;
    margin-top: 1.5rem;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 20%;
    height: 2px;
    background: #fff
}

@media (min-width: 750px) {
    .m-swtp__heading {
        margin-bottom: 4rem
    }

    .m-swtp__heading:after {
        width: 10%;
        margin-top: 2rem
    }
}

@media (min-width: 1200px) {
    .m-swtp__heading {
        margin-bottom: 6rem
    }

    .m-swtp__heading:after {
        width: 10%;
        margin-top: 3rem
    }
}

.m-swtp__descr {
    font-size: 15px;
    line-height: 1.6;
    text-align: center
}

@media (min-width: 750px) {
    .m-swtp__descr {
        max-width: 75%;
        margin-left: auto;
        margin-right: auto;
        font-size: 17px;
        line-height: 1.5
    }
}

@media (min-width: 1200px) {
    .m-swtp__descr {
        font-size: 22px;
        line-height: 1.3
    }
}

.m-swtp__ways {
    --excerpt-fog-color-start: 63, 66, 220;
    --excerpt-fog-color-stop: 30, 86, 205
}

.m-swtp__ways .g-dots-8x4-white {
    display: none;
    position: absolute;
    z-index: 0
}

.c-card:hover {
    box-shadow: 0 19px 38px rgba(0, 0, 0, .3), 0 15px 12px rgba(0, 0, 0, .22);
}

@media (min-width: 750px) {
    .m-swtp__ways {
        margin-top: 4rem
    }

    .m-swtp__ways .g-dots-8x4-white {
        display: inline-block;
        top: auto;
        left: auto;
        -webkit-transform: translate(-26%, -50%);
        -ms-transform: translate(-26%, -50%);
        transform: translate(-26%, -50%)
    }
}

@media (min-width: 1200px) {
    .m-swtp__ways {
        margin-top: 6rem;
    }
}

@media (min-width: 750px) {
    .swtp-ways {
        -webkit-column-count: 2;
        column-count: 2;
        grid-column-gap: 2%;
        -webkit-column-gap: 2%;
        column-gap: 2%
    }
}

@media (min-width: 1024px) {
    .swtp-ways {
        -webkit-column-count: 3;
        column-count: 3;
        grid-column-gap: 2.6%;
        -webkit-column-gap: 2.6%;
        column-gap: 2.6%
    }
}

.swtp-ways__item {
    display: inline-block;
    width: 100%;
    margin-bottom: 5%;
}

@media (min-width: 750px) {
    .swtp-ways__item {
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        page-break-inside: avoid;
        break-inside: avoid;
        break-inside: avoid-column
    }
}

@media (min-width: 1024px) {
    .swtp-ways__item {
        margin-bottom: 9%
    }

    .c-excerpt .swtp-ways__item {
        min-height: 412px;
    }
}

[data-xw-excerpt-toggle="#swtpWaysExcerpt"] {
    --text-color: #fff;
    --border: 1px solid rgba(223, 234, 252, 0.3)
}

.m-gss {
    position: relative;
    margin-top: 3rem;
    margin-bottom: 0
}

.m-gss .g-spiral-grad {
    position: absolute;
    left: 60%;
    top: 23%;
    width: 5rem
}

@media (min-width: 750px) {
    .m-gss .g-spiral-grad {
        width: 10rem;
        top: 32%;
        left: 48%
    }
}

@media (min-width: 1200px) {
    .m-gss {
        margin-top: 4rem
    }

    .m-gss .g-spiral-grad {
        top: -35%;
        left: 30%;
        z-index: 5
    }
}

@media all and (min-width: 1200px) {
    .m-gss-cntr {
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-align: stretch;
        align-items: stretch
    }

    .m-gss__body {
        -webkit-box-flex: 1;
        flex-grow: 1
    }
}

.m-gss__header {
    position: relative
}

.m-gss__header .g-lines-in-circle {
    position: absolute;
    display: block;
    top: -5rem;
    left: -6rem;
    z-index: 0;
    opacity: .6;
    -webkit-transform: scale(0.4);
    -ms-transform: scale(0.4);
    transform: scale(0.4)
}

@media (min-width: 750px) {
    .m-gss__header .g-lines-in-circle {
        max-width: 216px;
        top: -3rem;
        left: -4rem;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.m-gss__heading {
    position: relative;
    text-transform: uppercase;
    z-index: 1;
    font-size: 2.1rem;
    line-height: 1.2;
    margin-bottom: 3rem
}

.m-gss__heading:after {
    content: "";
    position: absolute;
    display: inline-block;
    left: 0;
    top: 100%;
    width: 28%;
    height: 3px;
    margin-top: 1.5rem;
    background: #252a40
}

@media (min-width: 750px) {
    .m-gss__heading {
        line-height: 1.1;
        font-size: 4rem;
        max-width: 90%;
        margin-bottom: 8rem
    }

    .m-gss__heading:after {
        margin-top: 4rem;
        height: 6px
    }
}

@media (min-width: 1200px) {
    .m-gss__heading {
        max-width: 60%;
        font-size: 5rem;
        line-height: 1
    }

    .m-gss__heading:after {
        width: 60%
    }
}

.m-gss__body {
    margin-top: 4rem;
    position: relative;
    z-index: 1
}

@media (min-width: 750px) {
    .m-gss__body {
        margin-top: 4rem
    }
}

@media (min-width: 1200px) {
    .m-gss__body {
        margin-top: 0
    }
}

.gss {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    align-items: stretch;
    flex-wrap: wrap
}

.gss-active {
    -webkit-box-flex: 1;
    flex-grow: 1
}

.gss-users {
    -webkit-box-flex: 3;
    flex-grow: 3
}

.gss-cycles {
    position: relative;
    margin-top: 3rem;
    -webkit-box-flex: 1;
    flex-grow: 1
}

.gss-cycles .gss__val {
    font-size: 50px
}

@media (min-width: 750px) {
    .gss-cycles .gss__val {
        font-size: 72px
    }

    .gss-cycles .gss__name {
        max-width: 60%
    }

    .gss-cycles .gss__info {
        position: absolute;
        display: inline-block;
        width: auto;
        top: 80%;
        right: 15%
    }

    .gss-cycles .gss__info-key {
        display: block
    }
}

@media (min-width: 1200px) {
    .gss-cycles {
        margin-top: 2.4rem
    }

    .gss-cycles .gss__info {
        top: 80%;
        right: 10%
    }
}

@media (min-width: 1600px) {
    .gss-cycles .gss__info {
        top: 60%;
        right: 0
    }
}

.gss__val {
    display: inline-block;
    font-size: 31px;
    font-weight: 600
}

@media (min-width: 750px) {
    .gss__val {
        font-size: 47px
    }
}

.gss__name {
    display: block;
    font-size: 17px
}

@media (min-width: 750px) {
    .gss__name {
        font-size: 25px
    }
}

.gss__val, .gss__name {
    margin-bottom: .6rem
}

.gss__info {
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    font-size: 15px;
    background: #f0f4f9;
    padding: .56rem 1.2rem
}

.m-hmc {
    position: relative;
    padding-top: 3rem;
    padding-bottom: 3rem
}

.m-hmc .g-tri-right {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 5
}

@media (min-width: 750px) {
    .m-hmc .g-tri-right {
        display: inline-block;
        content: ""
    }
}

@media (min-width: 1600px) {
    .m-hmc {
        padding-bottom: 4rem
    }
}

.m-hmc__header {
    position: relative
}

.m-hmc__header .g-plus-sign {
    position: absolute;
    display: none
}

@media (min-width: 750px) {
    .m-hmc__header .g-plus-sign {
        display: inline-block;
        top: -3rem;
        right: 0
    }
}

@media (min-width: 1024px) {
    .m-hmc__header .g-plus-sign {
        right: 40%
    }
}

@media (min-width: 1600px) {
    .m-hmc__wrap {
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        align-items: center
    }

    .m-hmc__wrap .hmc-list, .m-hmc__wrap .hmc-info {
        flex-basis: 100%;
        width: 100%
    }
}

.hmc-list {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem
}

.hmc-list__item {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: top;
    align-items: flex-start;
    margin-bottom: 1.5rem
}

.hmc-list__item .g-ico, .hmc-info__list-item .g-ico {
    margin: 0 1rem -1rem 0;
    flex-shrink: 0;
    width: 60px;
}

.hmc-info {
    position: relative;
}

.hmc-info .g-matrix-dots-3x4 {
    display: none;
    position: absolute;
    z-index: 1
}

@media (min-width: 750px) {
    .hmc-info .g-matrix-dots-3x4 {
        display: inline-block;
        right: -1.2rem;
        top: -1rem
    }
}

.hmc-info__text {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 1.5rem
}

@media (min-width: 750px) {
    .hmc-info__text {
        font-size: 19px;
        line-height: 1.26
    }
}

.hmc-info__list-item {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: top;
    align-items: top;
    margin-bottom: .9rem
}

.m-df {
    background: #dfeafc;
    position: relative;
    padding: 8rem 0 8rem;
    overflow: hidden
}

@media (min-width: 750px) {
    .m-df {
        padding: 15rem 0
    }
}

.m-df__features {
    position: relative
}

.m-df__heading {
    font-size: 2rem;
    font-weight: bold;
    position: relative;
    z-index: 5;
    margin-bottom: 1.5rem
}

@media (min-width: 750px) {
    .m-df__heading {
        font-size: 3.7rem;
        margin-bottom: 2rem
    }
}

@media (min-width: 1024px) {
    .m-df__heading {
        font-size: 4.6rem;
        margin-bottom: 1.6rem
    }
}

.m-df__ico {
    width: auto;
    max-height: 60px;
    max-width: 80px
}

.m-df__subheading {
    margin: .5rem auto
}

@media (min-width: 750px) {
    .m-df__subheading {
        margin: 1rem auto
    }
}

@media all and (min-width: 750px) {
    .m-df__if {
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
        margin-bottom: 3rem
    }

    .m-df__if-item {
        width: 48%
    }
}

@media all and (min-width: 1024px) {
    .m-df__if {
        -webkit-box-pack: start;
        justify-content: flex-start;
        margin-bottom: 6rem
    }

    .m-df__if-item {
        width: 31%;
        margin-right: 3%
    }
}

.m-df__cf {
    position: relative
}

@media (min-width: 750px) {
    .m-df__cf {
        -webkit-column-count: 2;
        column-count: 2;
        grid-column-gap: 2%;
        -webkit-column-gap: 2%;
        column-gap: 2%
    }
}

@media (min-width: 1024px) {
    .m-df__cf {
        -webkit-column-count: 3;
        column-count: 3;
        grid-column-gap: 2.6%;
        -webkit-column-gap: 2.6%;
        column-gap: 2.6%
    }
}

.m-df__cf-item {
    display: block;
    width: 100%;
    margin-bottom: 5%
}

@media (min-width: 750px) {
    .m-df__cf-item {
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        page-break-inside: avoid;
        break-inside: avoid;
        break-inside: avoid-column
    }
}

@media (min-width: 1024px) {
    .m-df__cf-item {
        margin-bottom: 9%
    }
}

@media (min-width: 1024px) {
    .m-df__cf-item--sticky {
        position: absolute;
        top: 0;
        right: 0;
        width: 31%;
        -webkit-transform: translateY(-105%);
        -ms-transform: translateY(-105%);
        transform: translateY(-105%);
        z-index: 4
    }
}

@media (min-width: 1200px) {
    .m-df__cf-item--sticky {
        -webkit-transform: translateY(-110%);
        -ms-transform: translateY(-110%);
        transform: translateY(-110%)
    }
}

.m-df__cf-wrap {
    position: relative;
    --excerpt-fog-color-start: 223, 234, 252;
    --excerpt-fog-color-stop: 223, 234, 252
}

.m-df .waves__front {
    z-index: 4 !important
}

.m-df .df-matrix-dots {
    display: none
}

@media (min-width: 1024px) {
    .m-df .df-matrix-dots {
        position: absolute;
        display: inline-block;
        right: -128px;
        top: 20%;
        width: 202px;
        height: 65px
    }
}

.m-df .g-lines-in-circle {
    display: none;
    width: 216px;
    height: 216px
}

@media (min-width: 1024px) {
    .m-df .g-lines-in-circle {
        position: absolute;
        display: inline-block;
        top: 88%;
        left: 60%;
        z-index: 1
    }
}

@media (min-width: 1600px) {
    .m-df .g-lines-in-circle {
        left: 58%
    }
}

[data-xw-excerpt-toggle="#dfCfExcerpt"] {
    --border: 1px solid #9eb4d8
}

.m-df__ubs {
    position: relative;
    margin: 2rem auto
}

@media (min-width: 750px) {
    .m-df__ubs {
        margin: -2rem auto 0
    }
}

@media (min-width: 1200px) {
    .m-df__ubs {
        margin-top: 2rem
    }
}

.m-df__tpas {
    position: relative;
    margin: 4rem auto
}

.tpas {
    position: relative
}

.tpas .g-spiral-grad {
    display: none;
    position: absolute
}

@media (min-width: 750px) {
    .tpas {
        margin-top: -5rem
    }
}

@media (min-width: 1024px) {
    .tpas {
        margin-top: -10rem
    }
}

@media (min-width: 1200px) {
    .tpas .g-spiral-grad {
        top: 70%;
        right: 10%;
        display: inline-block
    }
}

.tpas__heading {
    width: 80%
}

@media (min-width: 750px) {
    .tpas__heading {
        width: 60%;
        max-width: 300px;
        font-size: 47px;
        line-height: 1;
        margin-top: 5rem
    }
}

.tpas__list-item .c-icon-card__title {
    line-height: 1.2
}

.tpas__list-item.c-icon-card {
    padding: .5rem 0
}

@media all and (min-width: 750px) {
    .tpas__list {
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
        margin-bottom: 3rem
    }

    .tpas__list-item {
        width: 48%
    }
}

@media all and (min-width: 1024px) {
    .tpas__list {
        -webkit-box-pack: start;
        justify-content: flex-start;
        margin-bottom: 6rem
    }

    .tpas__list-item {
        width: 30%;
        margin-right: 3%
    }
}

.m-ub {
    position: relative
}

.m-ub__header {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem
}

#ubTabsCtrl {
    margin: 1rem auto;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center
}

@media all and (min-width: 1599px) {
    .m-ub__header {
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        align-items: center
    }

    #ubTabsCtrl {
        margin-right: 0
    }
}

.ub-cards {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between
}

.ub-card {
    flex-basis: 100%;
    width: 100%;
    margin-bottom: 1rem;
    background: #fff;
    padding: 1rem;
    border-radius: 1.4rem;
    overflow: hidden
}

@media (min-width: 750px) {
    .ub-card {
        flex-basis: 49%;
        width: 49%;
        margin-bottom: 2%
    }
}

.ub-card__title {
    font-size: 17px;
    font-weight: normal;
    margin-bottom: 1rem
}

.ub-card__body {
    font-size: 13px;
    font-weight: normal
}

.ub-card__body > li {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.ub-card__key, .ub-card__val {
    display: inline-block;
    line-height: 1.6
}

.ub-card__key {
    color: #909bae
}

.ub-table {
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
    border-radius: 1.2rem;
    overflow: hidden
}

.ub-table th, .ub-table td {
    text-align: left;
    padding: 1.2rem 1rem;
    vertical-align: middle
}

.ub-table th {
    font-weight: 600
}

.ub-table thead {
    background: -webkit-linear-gradient(left, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    background: linear-gradient(to right, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%)
}

.ub-table thead th {
    word-wrap: break-word;
    word-wrap: break-word;
    color: #fff;
    text-transform: uppercase;
    font-size: .8rem
}

.ub-table tbody tr {
    background: #fff
}

.ub-table tbody tr:nth-child(2n+1) {
    background: #f0f4f9
}

.ub-table tbody th, .ub-table tbody td {
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

th.ub-th__, th.ub-th__num, th.ub-th__id {
    width: 5%
}

.ub-th__name {
    width: 20%
}

.ub-td__exchange {
    color: #406cd0
}

.ub-td__name {
    font-weight: 500
}

@media all and (min-width: 1200px) {
    .ub-table thead th {
        font-size: .9rem
    }

    .ub-table tbody th, .ub-table tbody td {
        font-size: 15px;
        padding: 1.2rem 1.2rem
    }

    .ub-th__name {
        width: 25%
    }
}

[data-xw-grid-host] {
    margin-bottom: 1.5rem
}

[data-xw-grid-action] {
    position: relative;
    z-index: 5;
    display: block;
    margin: 1.7rem auto;
    background: #dfeafc
}

[data-xw-grid-action]:hover {
    background: -webkit-linear-gradient(24deg, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    background: linear-gradient(66deg, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    color: #fff;
    border-color: transparent
}

.m-rt {
    margin: 0rem auto 3rem
}

@media (min-width: 750px) {
    .m-rt {
        margin-bottom: 5rem
    }
}

.m-rt__heading {
    margin-bottom: 1.5rem
}

.rts-slider__meta {
    margin-bottom: 1rem
}

.rts-meta {
    margin-top: -1.2rem;
    padding-bottom: 1rem
}

.m-rt__body {
    overflow: hidden;
    position: relative
}

.swiper-container, .rts-slider {
    width: 100%
}

.rts-slider {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
}

@media (min-width: 750px) {
    .rts-slider {
        position: relative
    }

    .rts-slider:after {
        content: "";
        display: inline-block;
        position: absolute;
        top: 0;
        right: 0;
        width: 10rem;
        height: 100%;
        z-index: 1;
        pointer-events: none;
        background: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.1));
        background: linear-gradient(to left, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.1))
    }
}

.rts-slide {
    padding: 1.5rem .5rem;
    background: #f0f4f9;
    border-radius: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-animation: fadeIn;
    animation: fadeIn;
    -webkit-animation-duration: 1s;
    animation-duration: 1s
}

.rts-slide__header {
    text-align: center;
    border-bottom: 2px solid #fff;
    padding-bottom: 1.5rem
}

.rts-slide__pair {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase
}

.rts-slide__algo {
    display: inline-block;
    border-radius: 12px;
    padding: .5rem 1.4rem;
    background: #fff;
    font-size: 12px;
    text-transform: uppercase
}

.rts-slide__footer {
    padding-top: 1.5rem;
    text-align: center
}

.rts-slide__amount {
    display: block;
    text-transform: uppercase;
    font-size: 15px
}

.rts-slide__ts-title, .rts-slide__ts-end {
    display: block;
    font-size: 13px
}

.rts-slide__ts-title {
    margin-top: 1.5rem;
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    color: #2a2c33
}

.rts-slide__ts-end {
    margin-top: .5rem
}

.rts-slider .swiper-wrapper {
    margin-bottom: 3rem
}

.rts-slider .swiper-container-horizontal > .swiper-scrollbar {
    height: 10px;
    position: relative;
    background: none
}

.rts-slider .swiper-container-horizontal > .swiper-scrollbar:after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    bottom: 4px;
    height: 2px;
    width: 100%;
    background: #e2e7ec;
    z-index: 0
}

.rts-slider .swiper-scrollbar-drag {
    background: #c3ced8;
    z-index: 1
}

.m-nab__header {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem
}

.m-nab__heading {
    flex-basis: 100%;
    width: 100%
}

@media (min-width: 1024px) {
    .m-nab__heading {
        width: auto;
        flex-basis: initial
    }
}

.m-nab__subheading a {
    font-size: 15px;
    font-style: normal
}

.m-nab__pn {
    margin-left: auto
}

@media all and (min-width: 1024px) {
    .m-nab__header {
        flex-wrap: nowrap;
        margin-bottom: 2.5rem
    }

    .m-nab__heading {
        width: auto;
        flex-basis: initial
    }

    .m-nab__subheading {
        margin-left: 3rem
    }
}

.m-nab__body {
    overflow: hidden
}

.news__item:hover .news__img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05)
}

.news__fig {
    margin-bottom: 1.5rem
}

@media (min-width: 750px) {
    .news__fig {
        margin-bottom: 2rem
    }
}

.news__img-link {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 66.66%;
    display: block;
    overflow: hidden;
    border-radius: 1.6rem
}

.news__img {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 1.6rem;
    -webkit-transition: -webkit-transform .2s ease-in;
    transition: -webkit-transform .2s ease-in;
    transition: transform .2s ease-in;
    transition: transform .2s ease-in, -webkit-transform .2s ease-in
}

.news__date {
    font-size: 11px;
    color: #9ea5ac
}

@media (min-width: 750px) {
    .news__date {
        font-size: 13px
    }
}

.news__title {
    display: block;
    margin-top: 1rem;
    margin-bottom: .6rem;
    color: #406cd0;
    font-size: 17px;
    line-height: 1.2
}

@media (min-width: 750px) {
    .news__title {
        font-size: 19px
    }
}

.news__body {
    font-size: 13px;
    color: #2a2c33
}

@media (min-width: 750px) {
    .news__body {
        font-size: 15px;
        line-height: 1.5
    }
}

.m-form {
    position: relative;
    margin: 2rem auto auto;
    width: auto;
    border-radius: 20px
}

.m-form__body {
    position: relative;
    z-index: 6;
    padding: 1.3rem;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 19px 38px rgba(0, 0, 0, .3), 0 15px 12px rgba(0, 0, 0, .22)
}

@media (min-width: 750px) {
    .m-form__body {
        padding: 4rem;
        min-width: 525px;
    }
}

.m-form__caption-1, .m-form__caption-2 {
    font-weight: 600;
    text-align: center
}

.m-form__caption-1 {
    font-size: 32px;
    margin-bottom: 1rem
}

@media (min-width: 750px) {
    .m-form__caption-1 {
        font-size: 42px
    }
}

.m-form__caption-2 {
    font-size: 15px
}

@media (min-width: 750px) {
    .m-form__caption-2 {
        font-size: 17px
    }
}

.m-form__form {
    padding: 2rem 0 0
}

.m-form__row {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    -webkit-box-pack: justify;
    flex-direction: column;
    align-items: center;
}

.m-form__row__col {
    flex-direction: row;
}

.m-form__row:last-child {
    margin-bottom: 0
}

@media (min-width: 750px) {
    .m-form__row {
        margin-bottom: 2rem
    }
}

.m-form__group {
    position: relative;
    overflow: hidden;
    padding: .7rem 0 0;
    margin-bottom: 1.2rem
}

@media (min-width: 1200px) {
    .m-form__group {
        padding: 1rem 0 0;
    }
}

@media (min-width: 1600px) {
    .m-form__group {
        margin: 0 1rem
    }
}

.m-form__label, .m-form__simple-label {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
}

[dir="ltr"] .m-form__label {
    text-align: left
}

[dir="rtl"] .m-form__label {
    text-align: right
}

.m-form__label {
    position: absolute;
    padding: .3rem 0;
    display: block;
    font-size: 15px;
    text-align: left;
    top: 1.4rem;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
    color: #252a40;
    cursor: pointer
}

@media (min-width: 1200px) {
    .m-form__label {
        font-size: 17px
    }
}

.m-form__simple-label {
    color: #4241dd;
    display: block;
    width: 100%;
    margin-top: -0.25rem;
    font-size: 95%;
    background: #fff;
    font-weight: 600
}

.m-form__text {
    display: block;
    width: 100%;
    border: none;
    outline: none;
    padding: 1rem 0 .7rem;
    font-size: 16px;
    border-bottom: 1px solid #d6d7db;
    background: #fff;
}

.m-form__text:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #d6d7db
}

.m-form__text:focus:after {
    background-size: linear-gradient(to right, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%)
}

textarea.m-form__text {
    padding-top: 2rem
}

@media (min-width: 750px) {
    textarea.m-form__text {
        padding-top: 1rem
    }
}

.m-form__text:not(:-ms-input-placeholder) {
    opacity: 1
}

.m-form__text:not(:placeholder-shown), .m-form__text:focus {
    opacity: 1
}

.m-form__text:not(:-ms-input-placeholder) + .m-form__label {
    top: 0;
    font-size: 95%;
    background: #fff;
    font-weight: 600
}

.m-form__text:not(:placeholder-shown) + .m-form__label, .m-form__text:focus + .m-form__label, .m-form__select ~ .m-form__label {
    top: 0;
    font-size: 95%;
    background: #fff;
    font-weight: 600
}

.m-form__state-bar {
    border-bottom: 1px solid #d6d7db;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    width: 1%
}

.m-form__text:not(:-ms-input-placeholder) ~ .m-form__state-bar {
    border-bottom: 1px solid #4241dd;
    -ms-transform: scaleX(170);
    transform: scaleX(170)
}

.m-form__text:not(:placeholder-shown) ~ .m-form__state-bar, .m-form__text:focus ~ .m-form__state-bar {
    border-bottom: 1px solid #4241dd;
    -webkit-transform: scaleX(170);
    -ms-transform: scaleX(170);
    transform: scaleX(170)
}

.m-form__text:not(:-ms-input-placeholder):invalid ~ .m-form__state-bar {
    border-bottom-color: #ff2626 !important
}

.m-form__text:not(:placeholder-shown):invalid ~ .m-form__state-bar {
    border-bottom-color: #ff2626 !important
}

.m-form__button {
    display: block;
    width: 100%;
    min-width: 200px;
    margin: 1rem auto;
    padding: 1rem 1.5rem;
    border-radius: 1.8rem;
    text-align: center;
    font-size: 15px;
    color: #fff;
    background: -webkit-linear-gradient(left, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    background: linear-gradient(to right, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%)
}

.m-form__button:hover {
    background: #6e26f1
}

@media (min-width: 750px) {
    .m-form__button {
        width: auto;
        font-size: 17px
    }
}

.m-form__service-link {
    display: block;
    width: auto;
    margin: 1rem auto 0;
    text-align: center;
    font-size: 13px;
    color: #406cd0
}

.m-form__service-link:hover {
    color: #6e26f1
}

@media (min-width: 750px) {
    .m-form__service-link {
        font-size: 15px
    }
}

.m-form__agreement {
    font-size: 13px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center
}

.m-form__agreement b {
    font-weight: 600
}

.m-mf {
    position: relative;
    overflow: hidden;
    color: #b4ceff;
}

.m-mf__wrap {
    position: relative
}

.mf-legal {
    position: relative;
    z-index: 1;
    font-size: 14px;
    text-align: center
}

@media (min-width: 1600px) {
    .mf-legal {
        font-size: 15px
    }
}

.m-jti {
    position: relative;
    color: #fff;
    z-index: 5;
}

.m-jti [data-xw-blob] {
    z-index: 0
}

.m-jti .g-lines-in-circle {
    position: absolute;
    display: inline-block;
    top: 50%;
    right: 0;
    z-index: 0
}

@media (min-width: 750px) {
    .m-jti .g-lines-in-circle {
        top: auto;
        right: 10%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 300px;
        display: block;
        height: 100%
    }
}

@media (min-width: 1200px) {
    .m-jti .g-lines-in-circle {
        top: 10%;
        right: 3%;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.m-jti__cntr {
    position: relative;
    padding: 5rem 0 0
}

@media (min-width: 1200px) {
    .m-jti__cntr {
        padding-top: 10rem
    }
}

.m-jti__heading, .m-jti__descr {
    text-shadow: 0 0 3px rgba(1, 104, 192, .3);
    position: relative;
    z-index: 2
}

.m-jti__heading {
    font-size: 3rem;
    font-weight: 700
}

@media (min-width: 750px) {
    .m-jti__heading {
        font-size: 5rem
    }
}

.m-jti__descr {
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem
}

@media (min-width: 480px) {
    .m-jti__descr {
        max-width: 74%;
        line-height: 1.7
    }
}

@media (min-width: 750px) {
    .m-jti__descr {
        line-height: 1.7;
        font-size: 1.2rem;
        max-width: 60%
    }
}

.jti-list {
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: relative;
    z-index: 2
}

.jti-list__item {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 1rem
}

.jti-list__item .g-ico {
    margin-right: .8rem;
    margin-top: -0.2rem;
    flex-shrink: 0
}

.jti-list__item:last-child {
    margin-bottom: 0
}

.jti-btn {
    display: inline-block;
    width: auto;
    margin: 1.5rem 0;
    padding: 1rem 3rem;
    border: 1px solid transparent;
    border-radius: 1.8rem;
    background: #fff;
    color: #252a40;
    text-decoration: none;
    text-align: center;
    position: relative;
    z-index: 2
}

.jti-btn:hover {
    border-color: #406cd0;
    background: -webkit-linear-gradient(24deg, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    background: linear-gradient(66deg, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    color: #fff;
    text-decoration: none
}

.jti-laptop {
    display: block;
    width: 120%;
    max-width: 985px;
    height: auto;
    margin: 1.5rem auto 0 -20%;
    z-index: 1;
    position: relative
}

@media (min-width: 750px) {
    .jti-laptop {
        margin: 0;
        width: 800px;
        position: absolute;
        top: 30%;
        left: 20%;
        -webkit-transform: translateX(10%);
        -ms-transform: translateX(10%);
        transform: translateX(10%)
    }
}

@media (min-width: 1024px) {
    .jti-laptop {
        -webkit-transform: translateX(15%);
        -ms-transform: translateX(15%);
        transform: translateX(15%)
    }
}

@media (min-width: 1200px) {
    .jti-laptop {
        -webkit-transform: translate(28%, 36%);
        -ms-transform: translate(28%, 36%);
        transform: translate(28%, 36%)
    }
}

.m-jti__cntr .g-spiral-white {
    position: absolute;
    left: 0;
    top: auto;
    width: 25%;
    height: 20px;
    margin-top: 35%
}

@media (min-width: 750px) {
    .m-jti__cntr .g-spiral-white {
        margin-top: 25%
    }
}

@media (min-width: 1200px) {
    .m-jti__cntr .g-spiral-white {
        margin-top: 15%
    }
}

#jtiBlob, #jtiBlobBack {
    position: absolute;
    left: 0;
    top: 2rem;
    max-width: 1541px;
    width: 1541px;
    display: inline-block;
}

#jtiBlobBack {
    -webkit-animation: anim-left-black 6s ease-in-out alternate forwards infinite;
    animation: anim-left-black 6s ease-in-out alternate forwards infinite;
    z-index: -2;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    transform: translate3d(-52%, 0, 0);
}

#jtiBlob {
    left: -60%;
    top: 8%;
    z-index: -4;
    -webkit-animation: anim-left 3s ease-in-out alternate forwards infinite;
    animation: anim-left 3s ease-in-out alternate forwards infinite;
    -webkit-transition: all .4s ease-in;
    transition: all .4s ease-in;
    -webkit-transition: all .6s ease-in;
    transition: all .6s ease-in;
    transform: rotate(175deg) translate3d(0, 0, 0);
}

@-webkit-keyframes anim-left-black {
    0% {
        transform: skewX(0deg) translate3d(-52%, -2%, 0);
    }
    100% {
        transform: skewX(25deg) translate3d(-52%, -2%, 0);
    }
}

@keyframes anim-left-black {
    0% {
        transform: skewX(0deg) translate3d(-52%, -2%, 0);
    }
    100% {
        transform: skewX(25deg) translate3d(-52%, -2%, 0);
    }
}

@-webkit-keyframes anim-left {
    0% {
        transform: skewX(0deg) rotate(175deg) translate3d(0, 0, 0);
    }
    100% {
        transform: skewX(15deg) rotate(175deg) translate3d(0, 0, 0);
    }
}

@keyframes anim-left {
    0% {
        transform: skewX(0deg) rotate(175deg) translate3d(0, 0, 0);
    }
    100% {
        transform: skewX(15deg) rotate(175deg) translate3d(0, 0, 0);
    }
}


@media (min-width: 460px) {
    #jtiBlob {
        left: -11%;
    }

    @-webkit-keyframes anim-left-black {
        0% {
            transform: skewX(0deg) translate3d(-52%, -2%, 0);
        }
        100% {
            transform: skewX(25deg) translate3d(-52%, -2%, 0);
        }
    }

    @keyframes anim-left-black {
        0% {
            transform: skewX(0deg) translate3d(-52%, -2%, 0);
        }
        100% {
            transform: skewX(25deg) translate3d(-52%, -2%, 0);
        }
    }

    @-webkit-keyframes anim-left {
        0% {
            transform: skewX(0deg) rotate(175deg) translate3d(-50%, 0, 0);
        }
        100% {
            transform: skewX(15deg) rotate(175deg) translate3d(-50%, 0, 0);
        }
    }

    @keyframes anim-left {
        0% {
            transform: skewX(0deg) rotate(175deg) translate3d(-50%, 0, 0);
        }
        100% {
            transform: skewX(15deg) rotate(175deg) translate3d(-50%, 0, 0);
        }
    }
}


@media (min-width: 750px) {
    @-webkit-keyframes anim-left-black {
        0% {
            transform: skewX(0deg) translate3d(-42%, -2%, 0);
        }
        100% {
            transform: skewX(25deg) translate3d(-42%, -2%, 0);
        }
    }

    @keyframes anim-left-black {
        0% {
            transform: skewX(0deg) translate3d(-42%, -2%, 0);
        }
        100% {
            transform: skewX(25deg) translate3d(-42%, -2%, 0);
        }
    }

    @-webkit-keyframes anim-left {
        0% {
            transform: skewX(0deg) rotate(175deg) translate3d(-10%, 0, 0);
        }
        100% {
            transform: skewX(15deg) rotate(175deg) translate3d(-10%, 0, 0);
        }
    }

    @keyframes anim-left {
        0% {
            transform: skewX(0deg) rotate(175deg) translate3d(-10%, 0, 0);
        }
        100% {
            transform: skewX(15deg) rotate(175deg) translate3d(-10%, 0, 0);
        }
    }
}

@media (min-width: 1200px) {
     @-webkit-keyframes anim-left-black {
        0% {
            transform: skewX(0deg) translate3d(-22%, -2%, 0);
        }
        100% {
            transform: skewX(25deg) translate3d(-22%, -2%, 0);
        }
    }

    @keyframes anim-left-black {
        0% {
            transform: skewX(0deg) translate3d(-22%, -2%, 0);
        }
        100% {
            transform: skewX(25deg) translate3d(-22%, -2%, 0);
        }
    }

    @-webkit-keyframes anim-left {
        0% {
            transform: skewX(0deg) rotate(175deg) translate3d(-20%, 0, 0);
        }
        100% {
            transform: skewX(15deg) rotate(175deg) translate3d(-20%, 0, 0);
        }
    }

    @keyframes anim-left {
        0% {
            transform: skewX(0deg) rotate(175deg) translate3d(-20%, 0, 0);
        }
        100% {
            transform: skewX(15deg) rotate(175deg) translate3d(-20%, 0, 0);
        }
    }
}

.m-fnav {
    background: -webkit-linear-gradient(left, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    background: linear-gradient(to right, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    position: relative;
    padding-bottom: 2rem;
    padding-top: 15rem;
}

@media (min-width: 750px) {
    .index-page .m-fnav {
        margin-top: 8rem
    }
}

@media (min-width: 1200px) {
    .index-page .m-fnav {
        margin-top: 22rem
    }
}

.m-fnav .waves--footer-top {
    top: 0;
    -webkit-transform: translateY(-90%);
    -ms-transform: translateY(-90%);
    transform: translateY(-90%)
}

@media (min-width: 1600px) {
    .m-fnav .waves--footer-top {
        z-index: 0
    }
}

.fnav-nav {
    display: block;
    position: relative;
    text-align: center;
    padding-top: 2rem
}

@media (min-width: 750px) {
    [dir="ltr"] .fnav-nav {
        text-align: left
    }

    [dir="rtl"] .fnav-nav {
        text-align: right
    }

    .fnav-nav {
        text-align: left;
        z-index: 1;
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        align-items: flex-start;
        flex-wrap: wrap
    }
}

@media (min-width: 1200px) {
    .fnav-nav {
        flex-wrap: nowrap
    }
}

@media (min-width: 1600px) {
    .fnav-nav {
        padding-top: 0
    }
}

.fnav-menu {
    display: block;
    width: auto;
    margin-bottom: 3rem
}

@media (min-width: 750px) {
    .fnav-menu {
        display: inline-block;
        width: 50%
    }
}

@media (min-width: 1200px) {
    .fnav-menu {
        width: auto;
        max-width: 25%;
        margin-bottom: 0
    }
}

.fnav-menu__item-title {
    color: #b4ceff;
    font-weight: 600;
    text-transform: uppercase
}

.fnav-menu__item {
    display: block;
    margin-bottom: .7rem;
    line-height: 1.4
}

.fnav-menu__item > a {
    display: block;
    color: #f0f4f9;
    font-size: 15px
}

.fnav-menu__item > a:hover {
    color: #b4ceff
}

.mft {
    margin: 3rem auto;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap
}

@media (min-width: 1200px) {
    .mft {
        margin: 6rem auto 2rem
    }
}

.mft-menu {
    vertical-align: middle
}

.mft-menu__item {
    display: inline-block;
    margin-right: 1rem;
    vertical-align: middle
}

.mft-menu__item.show-office {
    margin-right: 0;
}

.mft-menu__item > a {
    display: inline-block;
    color: #b4ceff;
    font-size: 15px
}

.mft-menu__item > a:hover {
    color: #f0f4f9
}

@media (min-width: 750px) {
    .mft-menu__item > a {
        font-size: 17px
    }
}

.mft__sn {
    margin-top: 2rem;
    margin-bottom: 1.5rem
}

.mft__sn-text {
    font-size: 14px;
    color: #b4ceff
}

.mft__sn-list {
    margin-top: 1rem;
    margin-bottom: 1rem
}

.mft__sn-list li {
    display: inline-block;
    margin-right: 1rem
}

.sn-btn {
    display: inline-block;
    cursor: pointer;
    background: none;
    padding: 0;
    border-radius: 0
}

.sn-btn:hover {
    opacity: .8
}

.sn-btn > svg {
    display: inline-block;
    width: 32px;
    height: 32px
}

.mft-site-nav a {
    color: #f0f4f9
}

.mft-site-nav a:hover {
    color: #6ab0ff
}

.fsn {
    text-align: center
}

.fsn__item {
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 1rem;
    font-size: 14px
}

.l-wrap, .c-modal__title, .l-wrap--wide {
    margin-left: auto;
    margin-right: auto
}

.l-wrap, .c-modal__title {
    width: 92%
}

@media (min-width: 480px) {
    .l-wrap, .c-modal__title {
        max-width: 400px
    }
}

@media (min-width: 750px) {
    .l-wrap, .c-modal__title {
        max-width: 86%
    }
}

@media (min-width: 1200px) {
    .l-wrap, .c-modal__title {
        max-width: 1140px
    }
}

.l-wrap--left {
    margin-left: 0;
    margin-right: 0
}

@media (min-width: 750px) {
    .l-wrap--left {
        width: 89.25%;
        margin-left: auto
    }
}

@media (min-width: 1200px) {
    .l-wrap--left {
        width: 78.5%;
        max-width: 1140px;
        margin-right: auto
    }
}

.l-wrap--wide {
    max-width: 88%
}

.m-steps {
    --swiper-theme-color: #0168c0;
    --swiper-navigation-size: 20px
}

.m-steps .swiper-button-disabled {
    opacity: 0
}

.swiper-pagination-bullet {
    position: relative;
    background: #a2a9b0;
    opacity: 1;
    margin: .6rem !important
}

.swiper-pagination-bullet:after {
    content: "";
    display: inline-block;
    position: absolute;
    left: -5px;
    top: -5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #a2a9b0
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: -webkit-linear-gradient(283deg, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    background: linear-gradient(167deg, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%)
}

.swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    border-color: #4241dd
}

.c-nav-pager {
    margin-top: 1.5rem;
    text-align: center
}

.select2-container {
    display: block;
    width: 100% !important
}

.select2-container *:focus {
    outline: 0
}

.input-group .select2-container--rbl {
    -webkit-box-flex: 1;
    flex-grow: 1
}

.input-group-prepend ~ .select2-container--rbl .select2-selection {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.input-group > .select2-container--rbl:not(:last-child) .select2-selection {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.select2-container--rbl .select2-selection {
    width: 100%;
    background-color: #fff;
    border: none;
    border-radius: .6rem;
    box-shadow: none
}

.select2-container--rbl.select2-container--focus .select2-selection {
    border-color: transparent;
    box-shadow: none
}

.select2-container--rbl.select2-container--focus.select2-container--open .select2-selection {
    border-bottom: none
}

.select2-container--rbl.select2-container--open .select2-search__field {
    border: none;
    border-bottom: 1px solid #4241dd
}

.select2-container--rbl.select2-container--disabled .select2-selection, .select2-container--rbl.select2-container--disabled.select2-container--focus .select2-selection {
    cursor: not-allowed;
    background-color: #dfeafc;
    border-color: #dfeafc;
    box-shadow: none
}

.select2-container--rbl.select2-container--disabled .select2-search__field, .select2-container--rbl.select2-container--disabled.select2-container--focus .select2-search__field {
    background-color: transparent
}

select.is-invalid ~ .select2-container--rbl .select2-selection, form.was-validated select:invalid ~ .select2-container--rbl .select2-selection {
    border-color: #ff2626
}

select.is-valid ~ .select2-container--rbl .select2-selection, form.was-validated select:valid ~ .select2-container--rbl .select2-selection {
    border-color: #0168c0
}

.select2-container--rbl .select2-search {
    width: 100%
}

.select2-container--rbl .select2-dropdown {
    overflow: hidden;
    border-color: #4241dd;
    border-radius: 0
}

.select2-container--rbl .select2-dropdown.select2-dropdown--below {
    border: 1px solid #4241dd;
    border-bottom-left-radius: .6rem;
    border-bottom-right-radius: .6rem
}

.select2-container--rbl .select2-dropdown.select2-dropdown--above {
    border: 1px solid #4241dd;
    border-top-left-radius: .6rem;
    border-top-right-radius: .6rem
}

.select2-container--rbl .select2-dropdown .select2-results__option--selected {
    color: #fff !important;
    background: #6e26f1 !important
}

.select2-container--rbl .select2-results__option--highlighted, .select2-container--rbl .select2-results__option--highlighted.select2-results__option[aria-selected=true] {
    color: #4241dd
}

.select2-container--rbl .select2-results__option[role=group] {
    padding: 0
}

.select2-container--rbl .select2-results__option[role=group] .select2-results__options--nested .select2-results__option {
    padding-left: 1em
}

.select2-container--rbl .select2-results__option {
    padding: .5rem
}

.select2-container--rbl .select2-results > .select2-results__options {
    max-height: 15em;
    overflow-y: auto
}

.select2-container--rbl .select2-results__group {
    display: list-item;
    padding: 6px;
    color: #2a2c33;
    font-weight: 600;
    font-size: 90%
}

.select2-container--rbl .select2-selection__clear {
    float: right;
    width: .9em;
    height: .9em;
    padding-left: .15em;
    margin-top: .7em;
    margin-right: .3em;
    line-height: .75em;
    color: #252a40;
    background-color: #4241dd;
    border-radius: 100%
}

.select2-container--rbl .select2-selection__clear:hover {
    background-color: #2524c7
}

.select2-container--rbl .select2-selection--single {
    width: 100%;
    height: 2rem !important
}

.select2-container--rbl .select2-selection--single .select2-selection__placeholder {
    width: 100%;
    line-height: 1rem;
    color: #252a40
}

.select2-container--rbl .select2-selection--single .select2-selection__arrow {
    position: absolute;
    top: 50%;
    right: 3px;
    width: 20px
}

.select2-container--rbl .select2-selection--single .select2-selection__arrow b {
    position: absolute;
    top: 60%;
    left: 50%;
    width: 0;
    height: 0;
    margin-top: -2px;
    margin-left: -4px;
    border-color: #252a40 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0
}

.select2-container--rbl .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
    line-height: 2rem;
    color: #252a40;
    display: block;
    width: 100%
}

.select2-search--dropdown .select2-search__field {
    padding: .5rem 0rem;
    border: .5rem solid #252a40
}

.select2-results__message {
    color: #2228af
}

.basicLightbox {
    position: fixed;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(34, 40, 175, .6);
    opacity: .01;
    -webkit-transition: opacity .3s ease-in;
    transition: opacity .3s ease-in;
    z-index: 1000;
    will-change: opacity
}

.basicLightbox--visible {
    opacity: 1
}

.basicLightbox__placeholder {
    max-width: 100%;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: -webkit-transform .3s ease-in;
    transition: -webkit-transform .3s ease-in;
    transition: transform .3s ease-in;
    transition: transform .3s ease-in, -webkit-transform .3s ease-in;
    z-index: 1;
    will-change: transform
}

.basicLightbox__placeholder > img:first-child:last-child, .basicLightbox__placeholder > video:first-child:last-child, .basicLightbox__placeholder > iframe:first-child:last-child {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    max-width: 95%;
    max-height: 95%
}

.basicLightbox__placeholder > video:first-child:last-child, .basicLightbox__placeholder > iframe:first-child:last-child {
    pointer-events: auto
}

.basicLightbox__placeholder > img:first-child:last-child, .basicLightbox__placeholder > video:first-child:last-child {
    width: auto;
    height: auto
}

.basicLightbox--img .basicLightbox__placeholder, .basicLightbox--video .basicLightbox__placeholder, .basicLightbox--iframe .basicLightbox__placeholder {
    width: 100%;
    height: 100%;
    pointer-events: none
}

.basicLightbox--visible .basicLightbox__placeholder {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

[class~=ico], [class*=ico__] {
    vertical-align: middle
}

[class~=ico]::before, [class*=ico__]::before {
    vertical-align: middle
}

html {
    font: normal normal 15px/1.5 "Inter"
}

@media (min-width: 1200px) {
    html {
        font: normal normal 15px/1.6 "Inter"
    }
}

@media (min-width: 1600px) {
    html {
        font: normal normal 16px/1.6 "Inter"
    }
}

body {
    color: #252a40
}

h1, h2, h3, h4, h5 {
    font-family: "Inter";
    line-height: 1.3;
    font-weight: bold
}

h1 {
    font-size: 35px
}

@media (min-width: 750px) {
    h1 {
        font-size: 63px
    }
}

h2 {
    font-size: 28px
}

@media (min-width: 750px) {
    h2 {
        font-size: 50px
    }
}

@media (min-width: 1200px) {
    h2 {
        font-size: 60px
    }
}

h3 {
    font-size: 26px
}

@media (min-width: 750px) {
    h3 {
        font-size: 47px
    }
}

h4 {
    font-size: 20px
}

@media (min-width: 750px) {
    h4 {
        font-size: 30px
    }
}

h5 {
    font-size: 120%
}

a {
    color: #406cd0;
    text-decoration: none
}

a:hover {
    color: #252a40
}

.text--special, p {
    font-size: 17px;
    line-height: 1.5
}

@media (min-width: 750px) {
    .text--special, p {
        font-size: 20px
    }
}

@media (min-width: 1200px) {
    .text--special, p {
        font-size: 25px;
        line-height: 1.2
    }
}

.text--small, .c-icon-card__body {
    font-size: 13px;
    line-height: 1.5
}

@media (min-width: 750px) {
    .text--small, .c-icon-card__body {
        font-size: 15px;
        line-height: 1.4
    }
}

@media (min-width: 1200px) {
    .text--small, .c-icon-card__body {
        font-size: 17px
    }
}

.text--medium {
    font-size: 13px;
    line-height: 1.5
}

@media (min-width: 750px) {
    .text--medium {
        font-size: 17px;
        line-height: 1.4
    }
}

.text--intro, .m-df__descr {
    font-size: 15px;
    line-height: 1.3
}

@media (min-width: 750px) {
    .text--intro, .m-df__descr {
        font-size: 17px;
        line-height: 1.4
    }
}

button {
    border: none;
    outline: none;
    text-shadow: none;
    border-radius: 2rem;
    padding: .5rem 1.4rem;
    text-align: center;
    cursor: pointer;
    color: #406cd0;
    border: 1px solid rgba(223, 234, 252, .3);
    background: transparent;
    font-size: 15px;
    font-weight: 500
}

.backgroundcliptext .m-form__text:not(:-ms-input-placeholder) + .m-form__label {
    background: linear-gradient(to right, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    box-decoration-break: clone;
    text-shadow: none
}

.backgroundcliptext .grad-text, .backgroundcliptext .c-card--alt .c-card__key, .c-card--alt .backgroundcliptext .c-card__key, .backgroundcliptext .c-card--alt .c-card__val, .c-card--alt .backgroundcliptext .c-card__val, .backgroundcliptext .m-steps__num, .hmc-info__num, .backgroundcliptext .gss__val, .backgroundcliptext .m-form__text:not(:placeholder-shown) + .m-form__label, .backgroundcliptext .m-form__text:focus + .m-form__label, .backgroundcliptext .m-form__select ~ .m-form__label {
    background: -webkit-linear-gradient(left, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    background: linear-gradient(to right, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    text-shadow: none
}

.no-backgroundcliptext .m-form__text:not(:-ms-input-placeholder) + .m-form__label {
    color: #4241dd
}

.no-backgroundcliptext .grad-text, .no-backgroundcliptext .c-card--alt .c-card__key, .c-card--alt .no-backgroundcliptext .c-card__key, .no-backgroundcliptext .c-card--alt .c-card__val, .c-card--alt .no-backgroundcliptext .c-card__val, .no-backgroundcliptext .m-steps__num, .hmc-info__num, .no-backgroundcliptext .gss__val, .no-backgroundcliptext .m-form__text:not(:placeholder-shown) + .m-form__label, .no-backgroundcliptext .m-form__text:focus + .m-form__label, .no-backgroundcliptext .m-form__select ~ .m-form__label {
    color: #4241dd
}

.g-bold {
    font-weight: 600 !important
}

.g-it {
    font-style: italic !important
}

.g-accent {
    color: #6e26f1
}

.g-uppercase {
    text-transform: uppercase !important
}

.g-bigger {
    font-size: 110% !important
}

@media (min-width: 750px) {
    .g-bigger {
        font-size: 120% !important
    }
}

@media (min-width: 1200px) {
    .g-bigger {
        font-size: 125% !important
    }
}

.g-smaller {
    font-size: 92% !important
}

@media (min-width: 750px) {
    .g-smaller {
        font-size: 94% !important
    }
}

@media (min-width: 1200px) {
    .g-smaller {
        font-size: 96% !important
    }
}

#vectorSpritesCntr {
    height: 0;
    width: 0;
    position: absolute;
    overflow: hidden;
    z-index: -1;
    pointer-events: none
}

.waves {
    position: relative;
    background: -webkit-linear-gradient(283deg, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    background: linear-gradient(167deg, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    padding-bottom: 13%;
    padding-top: 80px
}

.waves__front, .waves__middle, .waves__back {
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    display: block
}

.waves__middle {
    z-index: 3
}

.waves__back {
    z-index: 2
}

.waves--top {
    top: -2px;
}

.waves--bottom {
    bottom: -2px
}

.waves--top--footer {
    bottom: auto;
    top: -356px;
}

.waves--footer-top {
    top: -100%;
    z-index: 0
}

svg {
    display: inline-block
}

.vico {
    fill: currentColor;
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: .5rem
}

a:hover .vico {
    color: #6e26f1
}

.cnt-cntr {
    padding: 1rem;
    position: relative;
    background: -webkit-linear-gradient(283deg, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    background: linear-gradient(167deg, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%)
}

.top-waves {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1
}

.top-waves svg {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    max-height: 100px
}

.vsi, .m-steps__arrow {
    display: inline-block;
    vertical-align: middle;
    width: 36px;
    height: 18px;
    font-style: normal
}

.m-steps__flag {
    width: 50px;
    height: 50px;
}

.vsi svg, .m-steps__arrow svg {
    display: block;
    width: 100%;
    height: auto;
    max-height: 100%;
}

.grad--right {
    fill: url(#vsg_grad__right)
}

.grad--66 {
    fill: url(#vsg_grad__66)
}

.grad--167 {
    fill: url(#vsg_grad__66)
}

@media (min-width: 1024px) {
    .mt--n4 {
        margin-top: -4rem
    }
}

.g-lines-in-circle {
    width: 216px;
    height: 216px
}

.df-ls, .df-rs {
    position: absolute;
    height: auto;
    z-index: 0
}

.df-rs {
    top: 14%;
    right: 0;
    width: 80%
}

.df-rs--static {
    max-width: 782px
}

@media (min-width: 750px) {
    .df-rs--static {
        top: 25%;
        width: auto;
        -webkit-transform: translateX(35%);
        -ms-transform: translateX(35%);
        transform: translateX(35%)
    }
}

@media (min-width: 1200px) {
    .df-rs--static {
        top: -30%;
        -webkit-transform: translateX(30%);
        -ms-transform: translateX(30%);
        transform: translateX(30%)
    }
}

@media (min-width: 1600px) {
    .df-rs--static {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.df-rs--dynamic {
    top: 12%;
    max-width: 875px;
    width: 50%;
    z-index: 0 !important
}

@media (min-width: 750px) {
    .df-rs--dynamic {
        top: 27%;
        width: auto;
        -webkit-transform: translateX(35%);
        -ms-transform: translateX(35%);
        transform: translateX(35%)
    }
}

@media (min-width: 1200px) {
    .df-rs--dynamic {
        top: -30%;
        -webkit-transform: translateX(30%);
        -ms-transform: translateX(30%);
        transform: translateX(30%)
    }
}

@media (min-width: 1600px) {
    .df-rs--dynamic {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.df-ls {
    left: 0;
    width: 100%;
    height: auto;
    z-index: 0
}

.df-ls--static {
    top: -22%;
    max-width: 1261px;
    -webkit-transform: translateX(-30%);
    -ms-transform: translateX(-30%);
    transform: translateX(-30%)
}

@media (min-width: 750px) {
    .df-ls--static {
        top: -72%;
        width: auto;
        -webkit-transform: translateX(-40%);
        -ms-transform: translateX(-40%);
        transform: translateX(-40%)
    }
}

@media (min-width: 1200px) {
    .df-ls--static {
        top: -120%;
        width: 70%
    }
}

@media (min-width: 1600px) {
    .df-ls--static {
        top: -140%
    }
}

.df-ls--dynamic {
    top: -13%;
    max-width: 1528px;
    width: 170%;
    z-index: 0 !important;
    -webkit-transform: translateX(-43%);
    -ms-transform: translateX(-43%);
    transform: translateX(-43%)
}

@media (min-width: 750px) {
    .df-ls--dynamic {
        top: -48%;
        width: 152%;
        -webkit-transform: translateX(-40%);
        -ms-transform: translateX(-40%);
        transform: translateX(-40%)
    }
}

@media (min-width: 1200px) {
    .df-ls--dynamic {
        top: -70%;
        width: 100%
    }
}

@media (min-width: 1600px) {
    .df-ls--dynamic {
        top: -80%
    }
}

.xw-collapse {
    box-sizing: border-box !important;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    -webkit-transition-property: height, padding, border, opacity, width, -webkit-transform;
    transition-property: height, padding, border, opacity, width, -webkit-transform;
    transition-property: height, padding, border, opacity, width, transform;
    transition-property: height, padding, border, opacity, width, transform, -webkit-transform;
    -webkit-transition-delay: 0;
    transition-delay: 0;
    overflow: hidden
}

.xw-collapse:not(.xw-collapse--expanded), .xw-collapse:not(.xw-collapse--expanding), .xw-collapse:not(.xw-collapse--collapsing) {
    display: none
}

.xw-collapse--collapsing {
    z-index: 1;
    opacity: .5
}

[aria-owns].xw-collapse--expanding {
    z-index: 2;
    opacity: .7
}

.xw-collapse--expanded {
    height: auto !important;
    opacity: 1
}

.g-btn {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: none;
    cursor: pointer
}

.g-ico {
    display: inline-block
}

.g-ico__check {
    width: 20px;
    height: 20px
}

.g-ico__eye {
    width: 28px;
    height: 18px;
    margin-top: -0.5rem !important;
}

.g-ico__percent {
    width: 28px;
    height: 28px
}

.g-ico__wallet {
    width: 26px;
    height: 27px;
    margin-top: -0.5rem !important;
}

.g-matrix-dots-3x4 {
    width: 72px;
    height: 75px
}

.g-tri-right {
    width: 89px;
    height: 23px
}

.g-plus-sign {
    width: 39px;
    height: 39px
}

.g-spiral-grad {
    width: 131px;
    height: 17px
}

.g-spiral-white {
    width: 131px;
    height: 17px
}

.g-dots-8x4-white {
    width: 202px;
    height: 65px
}

.ico {
    display: inline-block;
    text-align: center;
    vertical-align: middle
}

.ico:before {
    text-align: center
}

.ico.ico__lt {
    margin-left: .3rem
}

.ico.ico__gt {
    margin-left: .2rem
}

::-webkit-input-placeholder {
    color: #fff;
    opacity: 0
}

:-ms-input-placeholder {
    color: #fff;
    opacity: 0
}

::placeholder {
    color: #fff;
    opacity: 0
}

:-ms-input-placeholder {
    color: #fff;
    opacity: 0
}

::-ms-input-placeholder {
    color: #fff;
    opacity: 0
}

.m-form .select2-container--rbl {
    margin-top: .6rem;
    padding-bottom: .3rem;
    border-bottom: 1px solid #d6d7db
}

.m-form .select2-container--rbl.select2-container--open {
    border-bottom-color: #4241dd
}

#messengers {
    overflow: hidden
}

@media (min-width: 1200px) {
    #messengers .select {
        margin-top: 13px
    }
}

@media (min-width: 1600px) {
    .messenger {
        margin-top: 1.5rem;
        margin-bottom: .5rem
    }
}

.messenger-remove {
    display: inline-block;
    cursor: pointer;
    position: absolute;
    right: 0;
    font-size: 110%;
    color: #a3a5ad
}

.messenger-remove:hover {
    color: #ff2626
}

.g-bg-graphic {
    opacity: .5;
    z-index: 0;
    position: absolute;
    left: auto;
    top: auto;
    width: auto;
    height: auto
}

.m-section__header {
    position: relative;
    z-index: 2
}

.m-section__body {
    position: relative;
    z-index: 2
}

.m-section__body, .m-section__body p {
    font-size: 13px;
    line-height: 1.4
}

@media (min-width: 750px) {
    .m-section__body, .m-section__body p {
        font-size: 15px;
        line-height: 1.5
    }
}

@media (min-width: 1024px) {
    .m-section__header {
        margin-bottom: 2rem;
    }
}

@media (min-width: 1200px) {
    .m-section__body, .m-section__body p {
        font-size: 17px;
        line-height: 1.6
    }
}

.m-section__body p {
    margin-bottom: 1rem
}

.m-section__body b, .m-section__body strong {
    font-weight: 600;
    color: #4241dd
}

.m-section__body a:hover {
    color: #6e26f1;
    text-decoration: underline
}

.m-section__body ul.list, .m-section__body ol.list, .m-section__body dl.list {
    margin: 1.5rem auto 2.5rem 0
}

.m-section__body ul.list ul.list, .m-section__body ul.list ol.list, .m-section__body ul.list dl.list, .m-section__body ol.list ul.list, .m-section__body ol.list ol.list, .m-section__body ol.list dl.list, .m-section__body dl.list ul.list, .m-section__body dl.list ol.list, .m-section__body dl.list dl.list {
    margin-left: 1rem
}

.m-section__body ul.list > li, .m-section__body ol.list > li, .m-section__body dl.list > li {
    position: relative;
    margin-bottom: 1.5rem
}

.m-section__body ul.list > li::marker, .m-section__body ol.list > li::marker, .m-section__body dl.list > li::marker {
    color: #406cd0
}

@media (min-width: 750px) {
    .m-section__body ul.list, .m-section__body ol.list, .m-section__body dl.list {
        margin-left: .9rem
    }

    .m-section__body ul.list ul.list, .m-section__body ul.list ol.list, .m-section__body ul.list dl.list, .m-section__body ol.list ul.list, .m-section__body ol.list ol.list, .m-section__body ol.list dl.list, .m-section__body dl.list ul.list, .m-section__body dl.list ol.list, .m-section__body dl.list dl.list {
        margin-left: 3rem
    }
}

.m-section__body code {
    padding: .2rem .4rem;
    font-size: 80%;
    border-radius: .5rem;
    border: 1px solid #dfeafc
}

.m-section__body li code {
    display: inline-block;
}

.list--decimal {
    list-style: decimal
}

.list--circle {
    list-style: circle
}

.list--alpha {
    list-style: lower-alpha
}

.list--roman {
    list-style: lower-roman
}

.g-form-entry {
    position: relative;
    margin-top: 1rem;
    margin-bottom: 3rem
}

.g-form-entry:before, .g-form-entry:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    z-index: 5;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
    will-change: background-size;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in
}

.g-form-entry:before {
    top: -4rem;
    background: transparent url(../images/form_shape_slave.svg) center center no-repeat;
    background-size: 100% 100%
}

.g-form-entry:after {
    bottom: -4rem;
    background: transparent url(../images/form_shape_master.svg) center center no-repeat;
    background-size: 100% 100%
}

.g-form-entry:before {
    -webkit-animation: anim-g-shape-down 3.5s ease-in-out alternate forwards infinite;
    animation: anim-g-shape-down 3.5s ease-in-out alternate forwards infinite
}

.g-form-entry:after {
    -webkit-animation: anim-g-shape-down 4s ease-out alternate both infinite;
    animation: anim-g-shape-down 4s ease-out alternate both infinite;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s
}

@media (min-width: 750px) {
    .g-form-entry {
        margin-top: 1rem;
        margin-bottom: 3rem
    }

    .g-form-entry:before, .g-form-entry:after {
        background-size: var(--shape-width) 100%
    }
}

@media (min-width: 1200px) {
    .g-form-entry:before, .g-form-entry:after {
        background-size: var(--shape-width) 100%
    }
}

@-webkit-keyframes anim-g-shape-down {
    0% {
        background-size: var(--shape-width) 100%
    }
    100% {
        background-size: calc(var(--shape-width) * .7) 100%
    }
}

@keyframes anim-g-shape-down {
    0% {
        background-size: var(--shape-width) 100%
    }
    100% {
        background-size: calc(var(--shape-width) * .7) 100%
    }
}

.g-form-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    max-width: 100%;
    overflow: hidden
}

.g-form-shape {
    display: none;
    position: absolute;
    z-index: 5;
    left: -10%;
    top: -10%;
    width: 120%;
    height: 120%;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in
}

@media (min-width: 750px) {
    .g-form-shape {
        display: block
    }
}

#form_shape_slave {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg)
}

#form_shape_master {
    -webkit-transform: rotate(95deg);
    -ms-transform: rotate(95deg);
    transform: rotate(95deg)
}

.m-form__alters {
    margin-top: 5rem;
    margin-bottom: -1rem;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap
}

.m-form__alters-item {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    font-size: 120%;
    text-transform: uppercase;
    font-weight: 600
}

.m-form__alters-item:hover {
    opacity: .9;
    -webkit-filter: hue-rotate(324deg);
    filter: hue-rotate(324deg)
}

#loginForm .m-form__alters-item {
    margin-bottom: 2rem
}

#loginForm .m-form__alters {
    margin-top: 3rem;
    margin-bottom: -2.5rem
}

@media all and (min-width: 750px) {
    .m-form__alters-item {
        margin-right: 2rem
    }

    .m-form__alters-item:last-child {
        margin-right: 0
    }
}

.g-form-entry {
    --shape-width: 100%
}

@media (min-width: 1024px) {
    .g-form-entry .m-form {
        width: 50%
    }
}

@media (min-width: 750px) {
    .g-form-entry {
        --shape-width: 60%
    }
}

@media (min-width: 1200px) {
    .g-form-entry {
        --shape-width: 46%
    }
}

#registerNow {
    margin-top: 3rem
}

#recaptchaCntr {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    margin-top: 3rem
}

.tooltip {
    z-index: 10;
    max-width: 90% !important;
    margin-left: auto;
    margin-right: auto
}

@media (min-width: 750px) {
    .tooltip {
        max-width: 60% !important
    }
}

.g-errors {
    background: #ff2626;
    color: #fff;
    padding: 1rem;
    opacity: .9;
    box-shadow: 0 19px 38px rgba(0, 0, 0, .3), 0 15px 12px rgba(0, 0, 0, .22);
    border-radius: 1rem
}

.g-errors li {
    display: block;
    margin-bottom: 1.5rem;
    -webkit-transform: scaleY(1.2);
    -ms-transform: scaleY(1.2);
    transform: scaleY(1.2)
}

@media (min-width: 750px) {
    .g-errors {
        padding: 2.5rem
    }

    .g-errors li {
        font-size: 120%
    }
}

.info-message {
    position: relative;
    margin: 2rem auto auto;
    width: auto;
    border-radius: 20px;
    text-align: center;
    z-index: 6;
    padding: 1.3rem;
    background: #fff;
    box-shadow: 0 19px 38px rgba(0, 0, 0, .3), 0 15px 12px rgba(0, 0, 0, .22)
}

.info-message > i {
    display: block;
    margin: 3rem auto;
    width: 50%;
    height: 0;
    padding-top: 50%;
    border-radius: 50%;
    background: -webkit-linear-gradient(283deg, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    background: linear-gradient(167deg, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    color: #fff;
    font-weight: bold;
    position: relative;
    font-size: 6rem
}

.info-message > i svg {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

@media (min-width: 750px) {
    .info-message {
        padding: 4rem;
        min-width: 525px;
    }

    .info-message > i {
        font-size: 10rem
    }
}

.in-progress-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .15);
    cursor: not-allowed
}

.in-progress .in-progress-overlay {
    display: block
}

.c-sticky--fixed:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: -webkit-linear-gradient(left, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    background: linear-gradient(to right, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%)
}

.in-progress .c-sticky--fixed:after {
    -webkit-animation: anim-nav-in-progress 3.5s backwards;
    animation: anim-nav-in-progress 3.5s backwards
}

@-webkit-keyframes anim-nav-in-progress {
    0% {
        width: 1%
    }
    10% {
        width: 5%
    }
    30% {
        width: 10%
    }
    40% {
        width: 15%
    }
    50% {
        width: 60%
    }
    80% {
        width: 100%
    }
    100% {
        width: 100%
    }
}

@keyframes anim-nav-in-progress {
    0% {
        width: 1%
    }
    10% {
        width: 5%
    }
    30% {
        width: 10%
    }
    40% {
        width: 15%
    }
    50% {
        width: 60%
    }
    80% {
        width: 100%
    }
    100% {
        width: 100%
    }
}

#conExch {
    padding-top: 0
}

.illustration {
    display: block;
    height: auto;
    margin: 0 auto;
    max-width: 100%;
    outline: 2px solid #fff;
    outline-offset: -2px;
}

@media all and (min-width: 1024px) {
    .illustration {
        max-width: 90%;
        height: auto;
    }

    .illustration--left {
        float: left;
        margin-right: 2.4rem
    }

    .illustration--right {
        float: right;
        margin-left: 2.4rem
    }

    .illustration.illustration--medium {
        width: 30%
    }
}

.icon {
    display: block;
    height: auto;
    max-width: 10rem;
    margin: -1rem auto
}

@media all and (min-width: 750px) {
    .list--icons .list__item {
        display: -webkit-box;
        display: flex
    }

    .list--icons .list__item-content {
        margin-left: 2%;
        margin-right: 2%;
        -webkit-box-flex: 1;
        flex: 1
    }

    .list--narrow {
        width: 90%
    }

    .icon.icon--medium {
        max-width: 10rem
    }

    .icon--left {
        float: left;
        margin-right: 2rem;
        -webkit-box-ordinal-group: 1;
        order: 0
    }

    .icon--right {
        float: right;
        margin-left: 2rem;
        -webkit-box-ordinal-group: 3;
        order: 2
    }
}

[data-xw-info-host] {
    margin-top: 1rem;
    margin-bottom: 1rem
}

.ts-sync {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    margin: 1rem 0;
    font-size: 94%;
    font-weight: 600;
    vertical-align: middle
}

.ts-sync::before {
    content: "";
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-right: .3rem;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3Csvg version=%271.1%27 xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 512 512%27%3E%3Cpath fill=%27%234241dd%27 d=%27M329.372 374.628l-105.372-105.373v-141.255h64v114.745l86.628 86.627zM256 0c-141.385 0-256 114.615-256 256s114.615 256 256 256 256-114.615 256-256-114.615-256-256-256zM256 448c-106.039 0-192-85.961-192-192s85.961-192 192-192c106.039 0 192 85.961 192 192s-85.961 192-192 192z%27%3E%3C/path%3E%3C/svg%3E%0A");
    background-repeat: none
}

.ts-sync time {
    display: inline-block;
    color: #4241dd;
    font-size: 100%
}

.ts-sync .ts-sync__now {
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    padding-left: .15rem;
    padding-right: .15rem
}

.ts-sync .ts-sync__now::before {
    content: "";
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-right: .3rem;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3Csvg version=%271.1%27 xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 512 512%27%3E%3Cpath fill=%27%234241dd%27 d=%27M444.84 83.16c-46.804-51.108-114.077-83.16-188.84-83.16-141.385 0-256 114.615-256 256h48c0-114.875 93.125-208 208-208 61.51 0 116.771 26.709 154.848 69.153l-74.848 74.847h176v-176l-67.16 67.16z%27%3E%3C/path%3E%3Cpath fill=%27%234241dd%27 d=%27M464 256c0 114.875-93.125 208-208 208-61.51 0-116.771-26.709-154.847-69.153l74.847-74.847h-176v176l67.16-67.16c46.804 51.108 114.077 83.16 188.84 83.16 141.385 0 256-114.615 256-256h-48z%27%3E%3C/path%3E%3C/svg%3E%0A");
    background-repeat: none
}

@-webkit-keyframes anim-reveal {
    0% {
        -webkit-transform: translateY(-1200px) scale(0.7);
        transform: translateY(-1200px) scale(0.7);
        opacity: .7
    }
    80% {
        -webkit-transform: translateY(0px) scale(0.7);
        transform: translateY(0px) scale(0.7);
        opacity: .7
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

@keyframes anim-reveal {
    0% {
        -webkit-transform: translateY(-1200px) scale(0.7);
        transform: translateY(-1200px) scale(0.7);
        opacity: .7
    }
    80% {
        -webkit-transform: translateY(0px) scale(0.7);
        transform: translateY(0px) scale(0.7);
        opacity: .7
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

@-webkit-keyframes anim-reveal-revert {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    80% {
        -webkit-transform: translateY(0px) scale(0.7);
        transform: translateY(0px) scale(0.7);
        opacity: .3
    }
    100% {
        -webkit-transform: translateY(-100%) scale(0.7);
        transform: translateY(-100%) scale(0.7);
        opacity: .3
    }
}

@keyframes anim-reveal-revert {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    80% {
        -webkit-transform: translateY(0px) scale(0.7);
        transform: translateY(0px) scale(0.7);
        opacity: .3
    }
    100% {
        -webkit-transform: translateY(-100%) scale(0.7);
        transform: translateY(-100%) scale(0.7);
        opacity: .3
    }
}

@-webkit-keyframes anim-opacity {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes anim-opacity {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

.m-swtp {
    --animate-duration: .5s
}

.m-smi {
    margin-top: 3rem;
    margin-bottom: 3rem
}

@media (min-width: 1200px) {
    .m-smi {
        margin-top: 5rem;
        margin-bottom: 3rem
    }
}

.m-smi__wrap {
    position: relative;
    margin-bottom: 3rem
}

@media (min-width: 750px) {
    .m-smi__header {
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        align-items: center
    }
}

.m-smi__heading {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 24px;
    line-height: 1.25
}

@media (min-width: 750px) {
    [dir="ltr"] .m-smi__heading {
        text-align: left
    }

    [dir="rtl"] .m-smi__heading {
        text-align: right
    }

    .m-ce__heading {
        font-size: 47px;
        text-align: left
    }
}

@media (min-width: 1200px) {
    .m-smi__heading {
        font-size: 45px
    }
}

.m-smi__pn {
    display: inline-block;
    margin-left: auto
}

@media all and (max-width: 749px) {
    .m-smi__pn {
        position: absolute;
        z-index: 2;
        bottom: -2.5rem;
        left: 50%;
        width: auto;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%)
    }
}

.m-smi__body {
    overflow: hidden
}

#smiSlider.swiper-container > .swiper-wrapper {
    -webkit-box-align: center;
    align-items: center
}

.smi__item {
    box-sizing: border-box;
    display: inline-block;
    border-radius: 10px;
    box-shadow: inset 0 0 0 1px #e1e1e1;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: stretch;
    align-items: stretch;
    -webkit-box-pack: center;
    justify-content: center;
    height: 100px;
    width: auto
}

.smi__item a {
    display: -webkit-box;
    display: flex;
    text-align: center;
    margin-left: auto;
    margin-right: auto
}

.smi__item:hover .smi__img {
    -webkit-filter: none;
    filter: none;
    opacity: 1
}

.smi__img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.c-card--phone {
    padding: 0;
}

.phone-img {
    max-width: 100%;
    border-radius: 3rem;
}

.scroll-to {
    position: relative;
    top: 25px;
}

#statistics,
#simpleSteps {
    top: -75px;
}

#exchange {
    top: -75px;
}

.blocker {
    -webkit-overflow-scrolling: touch;
    background: #fffc;
    box-sizing: border-box;
    height: 100%;
    left: 0;
    -ms-overflow-x: scroll;
    overflow: scroll;
    overflow-x: hidden;
    padding: 20px;
    position: fixed;
    text-align: center;
    top: 0;
    transition: all .2s;
    width: 100%;
    z-index: 9999;
    opacity: 0;
}

.modal {
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0 15px 50px 0 #00000026;
    -moz-box-shadow: 0 15px 50px 0 #00000026;
    -o-box-shadow: 0 15px 50px 0 #00000026;
    box-shadow: 0 15px 50px 0 #00000026;
    box-sizing: border-box;
    display: none;
    max-width: 900px;
    overflow: visible;
    padding: 34px 40px 40px;
    position: relative;
    text-align: left;
    vertical-align: middle;
    width: 90%;
    z-index: 2;
    height: auto !important;
}

.modal a.close-modal {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    height: 30px;
    position: absolute;
    right: -12.5px;
    text-indent: -9999px;
    top: -12.5px;
    width: 30px;
}

.modal a.close-popup-link {
    display: block;
    margin: 0 auto;
    padding: 10px 0;
    width: 130px;
    font-size: 18px;
    background-image: linear-gradient(to top, #0168c0, #6e26f1);
    color: #fff;
    border-radius: 16px;
    text-align: center;
}

.modal a.close-popup-link:hover {
    border-color: #406cd0;
    background: -webkit-linear-gradient(24deg, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    background: linear-gradient(66deg, #0168c0 0%, #0168c0 1%, #6e26f1 98%, #6e26f1 100%);
    color: #fff;
    text-decoration: none;
}

.nav-mng .show-office {
    color: #406cd0;
}

.m-section__wrap {
    position: relative;
    padding: 2rem;
    box-shadow: 0 19px 38px rgba(0, 0, 0, .3), 0 15px 12px rgba(0, 0, 0, .22);
    border-radius: 1rem;
    margin-left: auto;
    margin-right: auto;
    width: 96%;
}

.illustration--rotate {
    margin: 0 auto !important;
    max-width: 100%;
}

.illustration--right .m-bot__button {
    margin-bottom: 2rem;
    width: auto;
}

.m-bot__button b {
    font-weight: 700;
    color: #fff;
}

.logo-black {
    display: none;
}

.nav-fixed .logo-black {
    display: block;
}

.logo-white {
    display: block;
}

.nav-fixed .logo-white {
    display: none;
}

.telegram_bot {
    color: #fff;
    display: flex;
    align-items: center;
}

.telegram_bot svg {
    margin-left: 10px;
}

.telegram_bot:hover {
    color: #6ab0ff;
}

.telegram_bot:hover svg {
    fill: #6ab0ff;
}

.nav-fixed .telegram_bot {
    color: #252a40;
}

.nav-fixed .telegram_bot svg path {
    stroke: #545870;
}

.nav-fixed .telegram_bot:hover {
    color: #6ab0ff;
}

.mobile-ways,
.tablet-ways {
    display: none;
}

#helpForm button:disabled {
    opacity: .5;
}

#helpForm .m-form__text.error-input {
    border: 1px solid #ef4444;
}

.change-office {
    position: relative;
    z-index: 1;
}

.mobile-item,
.logo-mobile {
    display: none;
}

#ce {
    margin-bottom: 5rem;
}

.ex__header {
    color: #252a40;
}

.ex__header .m-ce__heading {
    text-align: center;
}

.swtp-ways__custom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.swtp-ways__custom div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.swtp-ways__custom div figure {
    padding: 0 1rem;
}

.m-ce__wrap {
    color: #f1f1f1;
}

.hmc-list__item:nth-child(even) {
    padding-left: 5rem;
}

.hmc-list__item:nth-child(odd) {
    padding-right: 10rem;
}

@media all and (max-width: 1599px) {
    .menu__item .c-dropdown__items {
        margin: 0 -3.5rem;
        position: initial;
        border-radius: 0;
        box-shadow: none;
    }

    .c-dropdown.c-dropdown--nav .c-dropdown__item {
        padding: .8rem 2.8rem;
    }

    .telegram_bot {
        margin-left: 3rem;
    }
}

@media all and (min-width: 750px) {
    .smi__item {
        border-radius: 20px;
        height: 110px
    }

    .smi__img {
        width: 200px
    }

    .nav.nav-fixed {
        background: #f9f7f6;
        position: fixed;
        top: 0;
        box-shadow: 0 0 10px #000;
    }

    .nav-fixed .nav__toggler--1,
    .nav-fixed .nav__toggler--2,
    .nav-fixed .nav__toggler--3 {
        border: 1px solid #252a40;
    }

    .nav-fixed .nav-mng__item > a,
    .nav-fixed .menu__link,
    .nav-fixed .c-dropdown.c-dropdown--nav .c-dropdown__current {
        color: #252a40;
    }

    .nav-mng .show-office {
        color: #fff;
    }

    .m-section__wrap {
        padding: 3rem;
    }
}

@media all and (min-width: 1200px) {
    .smi__item {
        border-radius: 20px;
        height: 100px
    }

    .smi__img {
        width: 200px
    }

    .m-section__wrap {
        padding: 4rem;
        max-width: 1140px;
    }
}

@media (max-width: 1279px) {
    .m-jti__descr {
        max-width: 49%;
    }

    .jti-laptop {
        width: 700px;
        top: 50%;
    }

    #jtiBlob, #jtiBlobBack {
        width: 1360px;
    }

    .fnav-menu {
        width: 27%;
    }

    .swtp-ways__custom div figure {
        padding: 0 0.9rem;
    }

    .c-card__img {
        max-width: 145px;
    }
}

@media (max-width: 1023px) {
    .m-jti__descr {
        max-width: 80%;
    }

    .jti-laptop {
        top: 80%;
        left: 10%;
        width: 500px;
    }

    #jtiBlob, #jtiBlobBack {
        width: 990px;
    }

    #jtiBlob {
        top: 5%;
    }

    .tablet-ways {
        display: block;
    }

    .swtp-ways__custom div figure {
        padding: 0 0.7rem;
    }

    .c-card__img {
        max-width: 110px;
    }
}

@media (max-width: 768px) {
    .m-fnav {
        padding-top: 5rem
    }
}

@media (max-width: 767px) {
    .m-ce__wrap {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }

    .fnav-menu {
        width: 100%;
    }

    .fnav-nav {
        text-align: center;
    }

    .g-form-entry {
        margin-top: 4rem;
    }

    .m-steps__title {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .mobile-ways {
        display: flex;
        margin: 0 -3%;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .desktop-ways {
        display: none;
    }

    .c-card__panel {
        padding: 0 .5rem;
    }

    .c-card__img {
        max-width: 100px;
    }
}

@media (max-width: 749px) {
    .m-jti__descr {
        max-width: 100%;
        font-size: 17px;
    }

    .waves {
        padding-bottom: 2%;
    }

    .jti-btn {
        margin: 1.5rem auto;
        display: block;
        width: 50%;
        padding: 1rem 0;
    }

    .jti-laptop {
        left: 0;
        width: 470px;
        max-width: 100%;
        margin-left: 0;
    }

    .menu__item .c-dropdown__items {
        margin: 0 -2.4rem;
    }

    .c-dropdown.c-dropdown--nav .c-dropdown__current {
        font-size: 17px;
    }

    .c-dropdown.c-dropdown--nav .c-dropdown__item {
        padding: .8rem;
        font-size: 1rem;
    }

    .logo-black {
        display: block;
    }

    .logo-white {
        display: none;
    }

    .telegram_bot {
        color: #252a40;
        font-size: 18px;
        padding: 12px 0 12px 35px;
        border-top: 1px solid #e1e1e1;
        margin-left: 0;
    }

    .telegram_bot svg path {
        stroke: #545870;
    }

    .tablet-ways {
        display: none;
    }

    .nav__wrap {
        justify-content: flex-start;
    }

    .mobile-item {
        display: flex;
        padding: 0 0 0 10%;
    }

    .mobile-item.nav-mng a {
        padding: 0;
        margin: 0;
    }
}

@media (max-width: 500px) {
    .logo-black,
    .logo-white,
    .nav-fixed .logo-black {
        display: none;
    }

    .logo-mobile {
        display: block;
    }
}