﻿@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/GothamPro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/GothamPro-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/GothamPro-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Gotham Pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-size: 16px;
    color: #AABBD2;
    z-index: 0;
}

p, span {
    transition: .3s;
}

html, body {
    overflow-x: hidden;
}

body {
    position: relative;
    background: #091621;
    overflow-y: hidden;
    transition: .3s;
}

.wrapper {
    max-width: 1240px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 0 20px;
}

.body-fixed {
    overflow-y: hidden;
}

/*BUTTON*/
.button {
    width: 100%;
    height: 48px;

    padding: 0 24px;

    background: #2E94EF;
    border-radius: 6px;

    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;

    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .3s;
    white-space: nowrap;
    outline: none;
    cursor: pointer;
    overflow: hidden;

    position: relative;
    border: none;
}
.button:hover {
    background: #1e85e1;
}
.button.link {
    padding: 0 24px;
    background: transparent;
    color: #2E94EF;
}
.button.link:hover {
    color: #FFFFFF;
}
/*BUTTON END*/

/*BURGER MENU*/
.ham {
    display: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.hamRotate.active {
    transform: rotate(45deg);
}
.hamRotate180.active {
    transform: rotate(180deg);
}
.line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: #FFFFFF;
    stroke-width: 5.5;
    stroke-linecap: round;
}
.ham4 .top {
    stroke-dasharray: 40 121;
}
.ham4 .bottom {
    stroke-dasharray: 40 121;
}
.ham4.active .top {
    stroke-dashoffset: -68px;
}
.ham4.active .bottom {
    stroke-dashoffset: -68px;
}

.header__closeableMask {
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    background: rgba(0, 0, 0, 0.3);
}
.header__closeableMask.active {
    opacity: 1;
    visibility: visible;
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}
/*BURGER MENU END*/

/*SCROLLBARS*/
::-webkit-scrollbar {
    width: 4px;
    background: #F4F4F4;
}
::-webkit-scrollbar-thumb {
    border-width: 1px 1px 1px 2px;
    background-color: #2E94EF;
    -webkit-border-radius: 2px;
}
::-webkit-scrollbar-track {
    border-width: 0;
}
:root {
    scrollbar-color: #2E94EF #F4F4F4 !important;
    scrollbar-width: thin !important;
}
/*SCROLLBARS END*/

/*NAME AND INPUT*/
.main-input__block {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}
.main-input__block:last-child {
    margin-bottom: 0;
}

.main-input__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 5px;
}
.main-input__headerName {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #FFFFFF;
    transition: .3s;
}
.main-input__headerLink {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #2E94EF;
    text-decoration: none;
}
.main-input__headerLink:hover {
    text-decoration: underline;
}
.main-input__footer {
    height: 48px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.main-input {
    width: 100%;
    height: 100%;
    outline: none;
    padding-left: 46px;

    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;

    background: #142636;
    border: 1px solid #253543;
    border-radius: 6px;
    transition: .3s;
}
.main-input::placeholder {
    color: #546781;
    transition: .3s;
}
.main-input:hover,
.main-input:focus {
    /*border: 1px solid rgba(25, 25, 25, 1);*/
}
.main-input:hover::placeholder,
.main-input:focus::placeholder {
    /*color: rgba(25, 25, 25, 1);*/
}
.main-input__block.textarea .main-input {
    padding: 12px 24px 12px 46px;
    min-height: 140px;
    resize: none;
}
.main-input__block.textarea .main-input__footer {
    height: auto;
    padding: 1px 0;
}

.main-input__icons {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 16px;
    top: 15px;
    width: 18px;
    height: 18px;
}
.main-input__icon {
    position: absolute;
}
.main-input__icon.open {
    display: block;
}
.main-input__icon.closed {
    display: none;
}
.main-input__block.show-pass .main-input__icon.open {
    display: none;
}
.main-input__block.show-pass .main-input__icon.closed {
    display: block;
}

.main-input__error {
    position: absolute;
    bottom: -25px;
    left: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 150%;
    color: #EB5757;
    visibility: hidden;
    transition: .3s;
}
.main-input__errorIcon {
    margin-right: 3px;
}
.main-input__block.error {
    padding-bottom: 15px;
}
.main-input__block.error .main-input {
    border: 1px solid #EB5757;
}
.main-input__block.error .main-input::placeholder {
    color: #EB5757;
}
.main-input__block.error .main-input__error {
    visibility: visible;
}

.main-input__block.captcha .main-input {
    padding-left: 103px;
}
.main-input__captcha {
    position: absolute;
    left: 0;
    border-right: 1px solid #253543;
    height: 16px;
    margin: auto 0;
}
.main-input__captcha img {
    width: 62px;
    margin: 0 12px 0 16px;
}
.main-input__captchaText {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #FFFFFF;
    width: 78px;
    text-align: center;
}
/*NAME AND INPUT END*/

/*INPUT*/
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}
/*INPUT END*/

/*CHECKBOX*/
.custom-checkbox__block {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 24px;
}
.custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.custom-checkbox + label {
    display: inline-flex;
    align-items: center;
    user-select: none;
    cursor: pointer;
    position: relative;

    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #546781;
}
.custom-checkbox + label a {
    margin-left: 5px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #FFFFFF;
    text-decoration: unset;
}
.custom-checkbox + label a:hover {
    text-decoration: underline;
}
.custom-checkbox + label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    flex-grow: 0;
    margin-right: 10px;
    background-size: 50% 50%;
    margin-bottom: 2px;

    background: #142636;
    border: 1px solid #253543;
    border-radius: 4px;
}
.custom-checkbox:checked + label::after {
    content: '';
    display: block;
    background: #2E94EF;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    position: absolute;
    left: 5px;
    bottom: 7px;
}
/* стили для чекбокса, находящегося в состоянии disabled */
.custom-checkbox:disabled + label::before {
    background-color: #FFFFFF;
}
/*CHECKBOX END*/

/*THEME SWITCH*/
.header-theme {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 68px;
    height: 36px;
    background: #0F1C2B;
    border-radius: 55px;
    /*margin: 0 56px;*/
    margin: 0 15px;
    padding: 2px;
    cursor: pointer;
    transition: .3s;
}
.header-theme__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: .3s;
}
.header-theme__icon {
    filter: invert(15%) sepia(7%) saturate(3034%) hue-rotate(167deg) brightness(95%) contrast(86%);
}
.header-theme__button:first-child {
    background: #142636;
}
.header-theme__button:first-child .header-theme__icon {
    filter: invert(44%) sepia(92%) saturate(639%) hue-rotate(175deg) brightness(98%) contrast(92%);
}
/*THEME SWITCH END*/

/*HEADER*/
.header {
    width: 100%;
    padding: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.header .wrapper {
    width: 100%;
    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    transition: .3s;
}

.header-logo__link {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 36px;
    width: 116.5px;
}
.header-logo {
    height: 36px;
    position: absolute;
    left: 0;
    top: 0;
    transition: .3s;
}
.header-logo:last-child {
    opacity: 0;
    visibility: hidden;
}

.header-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.header-nav__item {
    width: fit-content;

    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #ACB2D0;

    transition: .3s;
    position: relative;
    text-decoration: none;
    /*margin-right: 36px;*/
    margin-right: 20px;
    display: flex;
}
.header-nav__item:last-child {
    margin-right: 0;
}
.header-nav__item:hover,
.header-nav__item.active {
    color: #FFFFFF;
}

.header-right {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.header-lang {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    min-width: 104px;
    /*margin-right: 90px;*/
}
.header-lang__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    position: relative;
    z-index: 1;
    background: #0F1C2B;
    border-radius: 6px;
    /*width: 100px;*/
    height: 38px;
    padding: 10px 30px 10px 12px;
    transition: .3s;
}
.header-lang__header:hover {
    background: #142636;
}
.header-lang.active .header-lang__header {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: #142636;
}
.header-lang__text {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #ACB2D0;
    transition: .3s;
}
.header-lang__icon {
    position: absolute;
    right: 13px;
    filter: invert(79%) sepia(32%) saturate(256%) hue-rotate(194deg) brightness(90%) contrast(80%);
    transition: .3s;
}
.header-lang.active .header-lang__header .header-lang__icon {
    transform: rotate(180deg);
    filter: invert(100%) sepia(99%) saturate(0%) hue-rotate(210deg) brightness(107%) contrast(101%);
}
.header-lang:hover .header-lang__header .header-lang__icon {
    filter: invert(100%) sepia(99%) saturate(0%) hue-rotate(210deg) brightness(107%) contrast(101%);
}
.header-lang.active .header-lang__header .header-lang__text,
.header-lang:hover .header-lang__header .header-lang__text {
    color: #FFFFFF;
}

.header-lang__items-wrapper {
    display: none;
    position: absolute;
    top: 39px;
    width: 100%;
}
.header-lang__items {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.header-lang__item {
    width: 100%;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    padding: 10px 12px;
    background: #142636;
    border-bottom: 1px solid #253543;
    cursor: pointer;
    transition: .3s;
}
.header-lang__item:last-child {
    border-bottom: unset;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}
.header-lang__item.active .header-lang__text,
.header-lang__item:hover .header-lang__text {
    color: #FFFFFF;
}

.header-buttons {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.header .header-buttons .button {
    height: 38px;
    font-size: 14px;
    line-height: 18px;
}

.header-mobile__wrapper {
    display: none;
}

.header-nav__item-menu {
    position: relative;
    display: flex;
    flex-direction: row;
    cursor: pointer;
}
.header-nav__item-menu:hover {
    text-decoration: none;
}
.header-nav__itemIcon {
    margin-top: 2px;
    margin-left: 5px;
    filter: invert(79%) sepia(32%) saturate(256%) hue-rotate(194deg) brightness(90%) contrast(80%);
    transition: .3s;
}
.header-nav__item-menu.active .header-nav__itemIcon {
    filter: invert(100%) sepia(99%) saturate(0%) hue-rotate(210deg) brightness(107%) contrast(101%);
    transform: rotate(180deg);
}
.header-nav__item-menu:hover .header-nav__itemIcon {
    filter: invert(100%) sepia(99%) saturate(0%) hue-rotate(210deg) brightness(107%) contrast(101%);
}
.header-nav__menu-wrapper {
    position: absolute;
    left: -20px;
    top: 30px;
    display: none;
    background: #0F1C2B;
    border-radius: 6px;
}
.header-nav__menu {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
}
.header-nav__menu .header-nav__item {
    margin-right: 0;
    margin-bottom: 10px;
    color: #ACB2D0;
}
.header-nav__menu .header-nav__item:hover {
    color: #FFFFFF;
}
.header-nav__menu .header-nav__item.active {
    color: #FFFFFF;
}
.header-nav__menu .header-nav__item:last-child {
    margin-bottom: 0;
}
/*HEADER END*/

/*MAIN*/
.main {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 180px;
}

.main__title {
    font-style: normal;
    font-weight: 700;
    font-size: 46px;
    line-height: 72px;
    color: #FFFFFF;

    text-align: left;
    transition: .3s;
}
.main__title.center {
    margin: 0 auto;
    text-align: center;
}

.main__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #AABBD2;
    margin-bottom: 12px;

    transition: .3s;
}
.main__text:last-child {
    margin-bottom: 0;
}

.main-header .wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.main-header .header-buttons {
    margin-top: 32px;
}
.main-header .button:first-child {
    padding: 0 24px 0 32px;
}
.main-header__data {
    max-width: 510px;
    height: 252px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 197px 0 213px;
}
.main-header__data .main__title {
    margin-bottom: 16px;
}
.main-header__img {
    position: absolute;
    z-index: -1;
    top: -70px;
    pointer-events: none;
    opacity: 0;
    transition: .3s;
}
.main-header__img.active {
    opacity: 1;
}
.main-header__img.img-1 {
    right: -87px;
}
.main-header__img.img-2 {
    left: -57px;
}
.main-header__img.img-3 {
    left: 34px;
}
.main-header__img.img-4 {
    top: -250px;
    left: -159px;
}

.main-header__dots {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-header__dot {
    width: 16px;
    height: 16px;
    margin-bottom: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid transparent;
    cursor: pointer;
    transition: .3s;
}
.main-header__dot.active,
.main-header__dot:hover {
    border: 4px solid #2E94EF;
}
.main-header__dot.active:after,
.main-header__dot:hover:after {
    background: transparent;
}
.main-header__dot:after {
    position: absolute;
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: #253543;
    border-radius: 50%;
    transition: .3s;
}
.main-header__dot:last-child {
    margin-bottom: 0;
}
.main-header__dataHidden {
    display: none;
}
.main-header__pagination {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.main-header__paginationItem {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 34px 24px 40px 33px;
    background: #0F1C2B;
    cursor: pointer;
    position: relative;
    height: 141px;
    transition: .3s;
}
.main-header__paginationItem:after {
    content: url(../img/main/delimiter.png);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 92px;
}
.main-header__paginationItem:last-child:after {
    display: none;
}
.main-header__paginationItem:hover,
.main-header__paginationItem.active {
    background: #142636;
    filter: drop-shadow(0px 4px 45px rgba(0, 0, 0, 0.25));
}
.main-header__paginationItem:first-child {
    border-radius: 6px 0 0 6px;
}
.main-header__paginationItem:last-child {
    border-radius: 0 6px 6px 0;
}
.main-header__paginationIcon {
    margin-right: 17px;
}
.main-header__paginationTextBlock {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 188px;
    margin-top: 4px;
    opacity: .8;
    transition: .3s;
}
.main-header__paginationTitle {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    color: #FFFFFF;
    margin-bottom: 4px;
    white-space: nowrap;
    transition: .3s;
}
.main-header__paginationItem:hover .main-header__paginationTextBlock,
.main-header__paginationItem.active .main-header__paginationTextBlock {
    opacity: 1;
}
.main-header__paginationText {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #AABBD2;
    transition: .3s;
}

.main-header__imgs.light {
    display: none;
}

.main-proposal {
    margin: 180px 0;
}
.main-proposal .wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.main-proposal__textBlock {
    max-width: 490px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.main-proposal__textBlock .main__title {
    margin-bottom: 16px;
}
.main-proposal__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 527px;
    background: #0F1C2B;
    border-radius: 6px;
    padding: 50px;
    transition: .3s;
}
.main-proposal__delimiter {
    width: 100%;
    margin: 20px 0;
}
.main-proposal__rows {
    width: 100%;
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-proposal__row {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.main-proposal__row:last-child {
    margin-bottom: 0;
}
.main-proposal__rowText {
    margin-right: 65px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #AABBD2;
}
.main-proposal__rowCheckBox {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    height: 36px;
    background: linear-gradient(282.53deg, rgba(0, 242, 119, 0.13) 0%, rgba(0, 242, 119, 0) 97.86%);
    border-radius: 6px;
    border: 1px solid #00F2774D;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #00F277;
}
.main-proposal__rowCheckBox.red {
    background: linear-gradient(282.53deg, rgba(243, 95, 97, 0.13) 0%, rgba(243, 95, 97, 0) 97.86%);
    border: 1px solid #F35F614D;
    color: #F35F61;
    padding-right: 5px;
}
.main-proposal__rowCheckIcon {
    margin-right: 8px;
}
.main-proposal__line {
    position: relative;
    display: flex;
    margin: 8px 0 12px;
}
.main-proposal__line:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(0, 26, 255, 0.59) 0%, rgba(0, 26, 255, 0.22) 100%);
    border-radius: 12px;
}
.main-proposal__line:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 12px;
    background: linear-gradient(270deg, rgba(0, 26, 255, 0.59) 0%, rgba(0, 26, 255, 0.22) 100%);
    filter: blur(17px);
    border-radius: 12px;
}
.main-proposal__line img:last-child {
    display: none;
}
.main-proposal__infoRow {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.main-proposal__infoBlock {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.main-proposal__infoName {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #AABBD2;
}
.main-proposal__infoValue {
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
    color: #FFFFFF;
}
.main-proposal__infoRow.small {

}
.main-proposal__infoRow.small .main-proposal__infoName {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #AABBD2;
}
.main-proposal__infoRow.small .main-proposal__infoBlock:last-child {
    align-items: flex-end;
}
.main-proposal__infoRow.small .main-proposal__infoValue {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    color: #FFFFFF;
}

.main-benefit {
    margin-bottom: 180px;
}
.main-benefit .wrapper {
    width: 1200px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 100px 100px 35px;
    background: #0F1C2B url(../img/main/benefit-bg.png) no-repeat;
    background-size: cover;
    border-radius: 6px;
}
.main-benefit__items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 622px;
    justify-content: space-between;
}
.main-benefit__item {
    width: 180px;
    margin-bottom: 65px;
    padding: 24px 24px 32px;
    position: relative;
    cursor: pointer;
    border-radius: 6px;
    transition: .3s;
}
.main-benefit__item:hover {
    transform: scale(1.1);
    background: #162538;
}
.main-benefit__item:after {
    content: url(../img/main/corner.png);
    position: absolute;
    top: -12px;
    left: -12px;
}
.main-benefit__itemIcon {
    margin-bottom: 12px;
}
.main-benefit__itemText {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #FFFFFF;
}

.main-statistics {
    margin-bottom: 180px;
}
.main-statistics__header {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.main-statistics__headerInfo {
    padding: 12px 24px;
    background: #0F1C2B;
    border-radius: 6px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.main-statistics__headerInfoItem {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.main-statistics__headerInfoItem:first-child {
    padding-right: 24px;
    margin-right: 24px;
    border-right: 1px solid #142636;
}
.main-statistics__headerInfoItemName {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #546781;
    margin-bottom: 2px;
}
.main-statistics__headerInfoItemValue {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
}
.main-statistics__columns {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 55px;
}
.main-statistics__column {
    width: 588px;
    background: #0F1C2B;
    border-radius: 0 0 6px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-statistics__columnHeader {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 24px 40px;
    background: #142636;
    border-radius: 6px 6px 0 0;
}
.main-statistics__columnHeaderText {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
    color: #FFFFFF;
}
.main-statistics__rows {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 40px 24px;
}
.main-statistics__row {
    width: 100%;
    height: 66px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: 1px solid #253543;
}
.main-statistics__row:last-child {
    border-bottom: unset;
}
.main-statistics__rowText {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.9);
    width: 100%;
}
.main-statistics__rowText span {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2px;
}
.main-statistics__rowText.date {
    max-width: 153px;
}
.main-statistics__rowText.name {
    max-width: 153px;
}
.main-statistics__rowText.deposit {
    max-width: 153px;
    text-align: center;
}
.main-statistics__rowText.img {
    width: 48px;
}
.main-statistics__rowIcon {
    margin-left: 24px;
}
.main-statistics__row:first-child {
    height: unset;
    padding-bottom: 12px;
}
.main-statistics__row:first-child .main-statistics__rowText {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #AABBD2;
}

.main-crypto {
    margin-bottom: -100px;
}
.main-crypto__items {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.main-crypto__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 235px;
    cursor: pointer;
    transition: .3s;
}
.main-crypto__itemLeft {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.main-crypto__itemIcon {
    margin-right: 12px;
    width: 32px;
    transition: .3s;
}
.main-crypto__itemTextBlock {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.main-crypto__itemTitle {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.9);
}
.main-crypto__itemName {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #AABBD2;
}
.main-crypto__itemRight {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.main-crypto__itemValue {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1px;
}
.main-crypto__itemChange {
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    text-align: right;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.main-crypto__itemChange.green {
    color: #2EB166;
}
.main-crypto__itemChange.red {
    color: #F77356;
}
.main-crypto__item:hover .main-crypto__itemIcon {
    transform: rotate(25deg) scale(1.1);
}

.main-video {
    margin-bottom: 180px;
}
.main-video .wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.main-video__textBlock {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 80px;
}
.main-video__textBlock .main__title {
    margin-bottom: 16px;
}
.main-video__youtube {
    height: 281px;
    width: 100%;
    max-width: 588px;
    min-height: 281px;
    position: relative;
    z-index: 1;
    border-radius: 6px;
}
.youtube {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: all 200ms ease-out;
    cursor: pointer;
}
.youtube:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    content: '';
    background: rgba(9, 22, 33, 0.3);
    border-radius: 6px;
}
.youtube .play {
    position: absolute;
    height: 40px;
    width: 40px;
    transition: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.youtube .play:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-sizing: border-box;
    backdrop-filter: blur(5px);
    border-radius: 50%;
    transition: .3s;
    animation: 1s linear 0s infinite alternate waves;
}
.youtube:hover .play:before {
    background: rgba(255, 255, 255, 0.25);
}
.youtube .play:after {
    position: absolute;
    content: url('../img/icons/play.svg');
    display: block;
    margin-left: 1px;
    margin-top: 4px;
}
@keyframes waves {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.2);
    }
}
/*MAIN END*/

/*FOOTER*/
.footer {
    width: 100%;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #0F1C2B;
    padding: 80px 0;
}
.footer .wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-top {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #142636;
    padding-bottom: 40px;
}
.footer-top .header-lang {
    margin-right: 0;
}
.footer-top .header-lang__header {
    background: #091621;
}
.footer-top .header-lang__header:hover {
    background: #142636;
}
.footer-top__items {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.footer-top__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 82px;
}
.footer-top__item:last-child {
    margin-right: 0;
}
.footer-top__itemName {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #546781;
    margin-bottom: 2px;
}
.footer-top__itemValue {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #ACB2D0;
}

.footer-bottom {
    padding-top: 40px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom .header-nav__item {
    margin-right: 16px;
}
.footer-bottom .header-nav__item:last-child {
    margin-right: 0;
}
.footer__copyright {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #546781;
}
.footer-bottom__download {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.footer-bottom__downloadText {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #ACB2D0;
    margin-right: 47px;
}
.footer-bottom__downloadLink {
    display: block;
    text-decoration: none;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #ACB2D0;
    padding-left: 8px;
    margin-left: 8px;
    border-left: 1px solid #253543;
    transition: .3s;
}
.footer-bottom__downloadLink:hover {
    color: #FFFFFF;
}
.footer-bottom__downloadLink:first-child {
    padding-left: 0;
    margin-left: 0;
    border-left: 0;
}

.footer-content__social {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.footer-content__socialItem {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    background: rgba(255, 255, 255, .1);
    height: 24px;
    width: 24px;
    border-radius: 50%;
    cursor: pointer;
    transition: .3s;
}
.footer-content__socialItem:last-child {
    margin-right: 0;
}
.footer-content__socialItem-inst:hover {
    background: #3f729b;
}
.footer-content__socialItem-fb:hover {
    background: #3b5998;
}
.footer-content__socialItem-twitter:hover {
    background: #00acee;
}
.footer-content__socialItem-yt:hover {
    background: #c4302b;
}
.footer-content__socialItem-tg:hover {
    background: #0088cc;
}
/*FOOTER END*/

/*BREADCRUMBS*/
.main-breadcrumbs {
    padding: 12px 0 0;
    z-index: 1;
}
.main-breadcrumbs .wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.main-breadcrumbs__link {
    display: flex;
    text-decoration: none;
    cursor: pointer;
    margin-right: 16px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    white-space: nowrap;
    transition: .3s;
}
.main-breadcrumbs__link:first-child {
    margin-left: 0;
}
.main-breadcrumbs__delimiter {
    margin-right: 16px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    text-decoration: none;
}

.main-breadcrumbs__link.active {
    cursor: default;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: unset;
}
.main-breadcrumbs__link.active:hover {
    text-decoration: none;
}
.main-breadcrumbs__link:hover:before,
.main-breadcrumbs__link.active:before,
.main-breadcrumbs__delimiter,
.main-breadcrumbs__link {
    color: #546781;
}
.main-breadcrumbs__link:hover {
    color: #546781;
    text-decoration: underline;
}
.main-breadcrumbs__link.current:hover {
    text-decoration: unset;
    cursor: text;
}

.main-breadcrumbs__home {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #546781;
    text-decoration: none;
    flex-direction: row;
    align-items: center;
    display: none;
}
.main-breadcrumbs__home:hover {
    text-decoration: underline;
}
.main-breadcrumbs__homeIcon {
    margin-right: 4px;
}
/*BREADCRUMBS END*/

/*DECOR*/
.main-decor__block {
    width: 100%;
}
.main-decor__block .wrapper {
    position: relative;
}
.main-decor__img {
    position: absolute;
    top: -30px;
}
.main-decor__img.about {
    right: 0;
}
.main-decor__img.investors {
    left: 50%;
    top: -225px;
    transform: translateX(-50%);
}
.main-decor__img.partners {
    top: -230px;
    left: 200px;
}
.main-decor__block.partners:after {
    content: '';
    background: #0F1C2B;
    width: 100%;
    height: 500px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.main-decor__block.faq:after {
    content: '';
    background: #0F1C2B;
    width: 100%;
    height: 476px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.main-decor__block img:last-child {
    display: none;
}
.main-decor__img.faq {
    top: -292px;
    left: 50%;
    transform: translateX(-52%);
}
.main-decor__img.contacts {
    top: -100px;
    left: -100px;
}
/*DECOR END*/

/*ABOUT*/
.main-about__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 72px;
    max-width: 588px;
    margin-bottom: 100px;
}
.main-about__header .main__title {
    margin-bottom: 16px;
}
.main-about__row {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
}
.main-about__rowTextBlock {
    max-width: 510px;
}
.main-about__rowGallery {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.main-about__rowColumn {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 24px;
}
.main-about__rowColumn .main-about__rowImg:first-child {
    margin-bottom: 24px;
}
.main-about__rowImg {
    width: 588px;
    height: 350px;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
}
.main-about__rowGallery .main-about__rowImg {
    width: 282px;
}
.main-about__rowGallery .main-about__rowImg:first-child {
    height: 324px;
}
.main-about__rowGallery .main-about__rowColumn .main-about__rowImg {
    width: 282px;
    height: 150px;
}
.main-about__certificateBlock {
    width: 100%;
    padding: 100px;
    background: #0F1C2B;
    border-radius: 6px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 180px;
}
.main-about__certificateTextBlock {
    margin-left: 80px;
}
.main-about__certificateTextBlock .button {
    max-width: 250px;
}
.main-about__certificateWrapper {
    max-width: 410px;
    width: 100%;
}
.main-about__certificateImg {
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.main-about__roadmap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.main-about__roadmap .main__title {
    margin-left: 48px;
}

.main-about__roadmapItems {
    margin-top: 80px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-left: 30px;
    margin-bottom: -60px;
    position: relative;
}
.main-about__roadmapItems:before {
    content: '';
    position: absolute;
    top: -152px;
    left: 0;
    height: 188px;
    width: 1px;
    background: linear-gradient(180deg, rgba(0, 26, 255, 0) 0%, #001AFF 40.48%);
}
.main-about__roadmapItems:after {
    content: '';
    position: absolute;
    top: 36px;
    right: 10px;
    height: 247px;
    width: 1px;
    background: #001AFF;
}
.main-about__roadmapItemsRow {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}
.main-about__roadmapItem {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 290px;
    position: relative;
    margin-bottom: 60px;
}
.main-about__roadmapItem:after {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    background: #001AFF;
    height: 40px;
    width: 1px;
}
.main-about__roadmapDate {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #001AFF;
    margin-left: 17px;
}
.main-about__roadmapLine {
    width: calc(100% + 30px);
    height: 1px;
    background: #001AFF;
    border-radius: 6px;
    position: relative;
    margin: 20px 0 18px -30px;
}
.main-about__roadmapTitle {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: #FFFFFF;
    margin-left: 17px;
    margin-bottom: 13px;
}
.main-about__roadmapText {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #AABBD2;
    max-width: 178px;
    margin-left: 17px;
}

.main-about__roadmapItem.disabled:after {
    background: #253543;
}
.main-about__roadmapItem.disabled .main-about__roadmapDate {
    color: #546781;
}
.main-about__roadmapItem.disabled .main-about__roadmapLine {
    background: #253543;
}
.main-about__roadmapItem.disabled .main-about__roadmapTitle {
    color: #546781;
}
.main-about__roadmapItem.disabled .main-about__roadmapText {
    color: #546781;
}
/*ABOUT END*/

/*INVESTORS*/
.main-investors .main-proposal {
    margin: 100px 0 156px;
}
.main-calculator {

}
.main-calculator .wrapper {
    max-width: 1200px;
    padding: 100px;
    background: #0F1C2B;
    border-radius: 6px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
}
.main-calculator__right {
    padding: 40px;
    background: #142636;
    border-radius: 6px;
    width: 100%;
    max-width: 463px;
}
.main-calculator__rightRow {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.main-calculator__rightRowName {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    color: #FFFFFF;
}
.main-calculator__rightRowInput {
    padding: 12px 24px 12px 16px;
    width: 165px;
    height: 48px;
    background: #142636;
    border: 1px solid #253543;
    border-radius: 6px;
    outline: 0;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}
.main-calculator__rightTotal {
    margin-top: 12px;
    width: 100%;
    padding: 14px 14px 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #0F1C2B;
    border-radius: 6px;
}
.main-calculator__rightTotalText {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFFFFF;
}
.main-calculator__rightTotalValue {
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
    color: #2E94EF;
}
.main-calculator__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 436px;
    width: 100%;
}
.main-calculator__left .main__title {
    white-space: nowrap;
}
.main-calculator__leftText {
    margin-top: 49px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    color: #FFFFFF;
    margin-bottom: 12px;
}
.main-calculator__leftInputBlock {
    position: relative;
    width: 100%;
}
.main-calculator__leftInputBlock:after {
    content: '$';
    position: absolute;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #ACB2D0;
    left: 16px;
    top: 12px;
}
.main-calculator__leftInput {
    padding: 12px 24px 12px 38px;
    width: 100%;
    height: 48px;
    background: #142636;
    border: 1px solid #253543;
    box-sizing: border-box;
    border-radius: 6px;
    outline: none;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}
.main-calculator__leftRow {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
.main-calculator__leftValue {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    color: #FFFFFF;
}
.main-calculator__leftSlider {
    width: 100%;
    margin-top: -15px;
    margin-bottom: 15px;
    position: relative;
}
.main-calculator__leftSlider .irs:after {
    content: url(../img/icons/mask.png);
    width: 440px;
    height: 30px;
    position: absolute;
    top: 33px;
    left: -2px;
}
/*INVESTORS END*/

/*PARTNERS*/
.main-partners {
    margin: 59px 0 0;
}
.main-partners .wrapper {
    position: relative;
}
.main-partners .main__title {
    margin-bottom: 16px;
}
.main-partners__row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}
.main-partners__row .main__text {
    max-width: 365px;
}
.main-partners__row .main__text:first-child {
    margin-right: 50px;
}
.main-partners__row .main__text:last-child {
    margin-left: 50px;
}

.main-partners__block {
    width: 100%;
    background: #091621;
    position: relative;
    padding-top: 100px;
    margin-top: 111px;
}
.main-partners__table {
    background: #0F1C2B;
    border-radius: 6px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 24px 0;
}
.main-partners__tableHeader {
    width: 100%;
    height: 52px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid #253543;
}
.main-partners__tableHeaderText {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    color: #2E94EF;
    width: 33%;
}
.main-partners__tableHeaderText.amount {
    text-align: center;
}
.main-partners__tableHeaderText.referral {
    text-align: center;
}
.main-partners__tableItem {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 55px;
    border-bottom: 1px solid #253543;
}
.main-partners__tableItem:last-child {
    border-bottom: 0;
}
.main-partners__tableItemText {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.9);
}
.main-partners__tableItemText span {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #253543;
    opacity: 0.9;
}
.main-partners__tableItemText.level {
    width: 33%;
}
.main-partners__tableItemTextBlock {
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-partners__tableItemName {
    display: none;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #AABBD2;
    margin-bottom: 2px;
}
/*PARTNERS END*/

/*FAQ*/
.main-faq {
    width: 100%;
}
.main-faq .wrapper {
    align-items: center;
}
.main-faq .main__title {
    width: 100%;
    text-align: center;
    margin: 99px 0 128px;
}
.main-faq__btns {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    box-shadow: 0 4px 45px rgba(0, 0, 0, 0.25);
    position: relative;
}
.main-faq__btns:after {
    content: '';
    width: 100%;
    height: 300px;
    top: 0;
    position: absolute;
    background: #091621;
    z-index: -1;
}
.main-faq__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 140px;
    cursor: pointer;
    background: #0F1C2B;
    transition: .3s;
}
.main-faq__btn:first-child {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
}
.main-faq__btn:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
.main-faq__btnIcon {
    transition: .3s;
    margin-bottom: 8px;
    opacity: .8;
}
.main-faq__btnText {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    color: #FFFFFF;
    transition: .3s;
    text-align: center;
    text-transform: uppercase;
    opacity: .8;
}
.main-faq__btn:hover,
.main-faq__btn.active {
    background: #142636;
}
.main-faq__btn:hover .main-faq__btnIcon,
.main-faq__btn.active .main-faq__btnIcon {
    opacity: 1;
}
.main-faq__btn:hover .main-faq__btnText,
.main-faq__btn.active .main-faq__btnText {
    opacity: 1;
}

.main-faq__tabs {
    margin-top: 68px;
    width: 100%;
}
.main-faq__tab {
    display: none;
    flex-direction: column;
    align-items: center;
}
.main-faq__tab.active {
    display: flex;
}
.main-faq__tabItem {
    width: 100%;
    margin-bottom: 8px;
    background: #0F1C2B;
    border-radius: 6px;
    transition: .3s;
}
.main-faq__tabItem:last-child {
    margin-bottom: 0;
}
.main-faq__tabItemHeader {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 16px 24px;
    border-bottom: 2px solid transparent;
    transition: .3s;
}
.main-faq__tabItemTitle {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    color: #FFFFFF;
    margin-right: 15px;
    transition: .3s;
}
.main-faq__tabItemText {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #AABBD2;
    display: none;
    padding: 24px 72px 24px 24px;
    transition: unset;
}
.main-faq__tabItemIcon {
    transition: .3s;
}
.main-faq__tabItem.active .main-faq__tabItemIcon {
    transform: rotate(45deg);
}
.main-faq__tabItem.active .main-faq__tabItemTitle,
.main-faq__tabItem:hover .main-faq__tabItemTitle {
    color: #2E94EF;
}
.main-faq__tabItem.active .main-faq__tabItemHeader {
    border-bottom: 2px solid #142636;
}
/*FAQ END*/

/*CONTACTS*/
.main-contacts {
    margin-top: 102px;
}
.main-contacts .wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.main-contacts__data {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 442px;
}
.main-contacts__data .main__title {
    margin-bottom: 16px;
}
.main-contacts__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 36px;
}
.main-contacts__textBlock {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.main-contacts__textBlock:first-child {
    margin-right: 59px;
}
.main-contacts__name {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #546781;
    margin-bottom: 2px;
}
.main-contacts__value {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #ACB2D0;
}
.main-contacts__form {
    width: 527px;
    background: #0F1C2B;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px;
    position: relative;
    transition: .3s;
}
.main-contacts__form .button {
    margin-top: 8px;
}
.main-contacts__form-success {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 6px;
    background: #0F1C2B;
    align-items: center;
    justify-content: center;
    padding: 24px;
    display: flex;
}
.main-contacts__form-successText {
    font-style: normal;
    font-weight: 500;
    font-size: 26px;
    color: #FFFFFF;
}
/*CONTACTS END*/

/*MODAL*/
.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 22, 33, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.modal-content {
    height: auto;
    display: flex;
    overflow-y: auto;
    overflow-x: hidden;
    flex-direction: column;
    align-items: center;
    position: relative;
    max-height: calc(100% - 20px);
    width: 704px;
    background: #0F1C2B;
    padding: 32px 40px;
    border-radius: 6px;
}
.modal-content__close {
    position: absolute;
    top: 36px;
    right: 40px;
    cursor: pointer;
    z-index: 1;
}
.modal-content__closeIcon {
    filter: brightness(10%) invert(1);
}
.modal__title {
    width: calc(100% + 80px);
    padding-left: 40px;

    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #FFFFFF;
    text-align: left;
    padding-bottom: 24px;
    border-bottom: 2px solid #142636;
}
.modal__title.center {
    text-align: center;
    padding-left: 0;
}
.modal-form__icon {
    margin-bottom: 12px;
}
.modal-form__data {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modal-form__rows {
    width: 100%;
}
.modal-form__row {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #142636;
    padding: 18px 0 24px;
}
.modal-form__row.clear {
    padding-bottom: 0;
    border-bottom: unset;
}
.modal-form__row .main-input__block {
    margin-bottom: 0;
    width: 300px;
}
.modal-form__rows .modal-form__row:last-child {
    border-bottom: 0;
}
.modal-form__text {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #FFFFFF;
}
.modal-form__text.error {
    max-width: 300px;
}
.modal-form__error {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.modal-form__error .custom-checkbox__block {
    margin-bottom: 0;
    margin-top: 10px;
}
.modal-form__buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modal-form__buttons .button:first-child {
    margin-bottom: 8px;
}

.modal-content.small {
    max-width: 380px;
}
.modal-content.small .modal-form__row .main-input__block:first-child {
    margin-bottom: 0;
}
.modal-content .button {
    min-height: 48px;
}
/*MODAL END*/

/*NOTIFICATION*/
.notification {
    position: fixed;
    padding: 16px;
    width: 255px;
    right: 8px;
    bottom: 8px;
    background: rgba(0, 242, 119, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 6px;
    border: 1px solid #00F2774D;
    /*z-index: 12;*/
    z-index: 2147483650;
    display: none;
}
.notification__close {
    cursor: pointer;
    position: absolute;
    top: 18px;
    right: 16px;
}
.notification-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 8px;
}
.notification-header__icon {
    margin-right: 8px;
}
.notification-header__text {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #00F277;
}
.notification__text {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #FFFFFF;
    margin-left: 24px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.notification.error {
    background: rgba(243, 95, 97, 0.15);
    border: 1px solid #F35F614D;
}
.notification.error .notification-header__text {
    color: #F35F61;
}
/*NOTIFICATION END*/

/*NEWS*/
.main-news {
    margin-top: 59px;
}
.main-news .main__title {
    margin-bottom: 16px;
}
.main-news__items {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}
.main-news__item {
    max-width: 585px;
    width: 100%;
    background: #0F1C2B;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    margin-bottom: 30px;
    padding: 30px;
}
.main-news__itemImg {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 20px;
}
.main-news__itemFavourite {
    position: absolute;
    left: 50px;
    top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    transition: .3s;
}
.main-news__itemFavourite.yellow {
    background: #FFD600;
}
.main-news__itemFavourite.yellow:hover {
    background: #e1be02;
}
.main-news__itemFavourite.red {
    background: #FF0000;
}
.main-news__itemFavourite.red:hover {
    background: #e50101;
}
.main-news__itemFavourite.green {
    background: #36D100;
}
.main-news__itemFavourite.green:hover {
    background: #34af04;
}
.main-news__itemTitle {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    color: #FFFFFF;
    margin-bottom: 15px;
}
.main-news__itemText {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 30px;
    /*overflow: hidden;*/
    /*text-overflow: ellipsis;*/
    /*display: -webkit-box;*/
    /*-webkit-line-clamp: 6;*/
    /*-webkit-box-orient: vertical;*/
}
.main-news__itemBottom {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.main-news__itemDate {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 100%;
    color: #FFFFFF;
}
.main-news__itemLink {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 100%;
    text-decoration-line: underline;
    color: #2E94EF;
}
.main-news__itemLink:hover {
    text-decoration: unset;
}

.main-news__item.big {
    max-width: 100%;
    margin-bottom: 0;
}
.main-news__item.big .main-news__itemImg {
    max-height: 500px;
}
.main-news__item.big .main-news__itemText {
    margin-bottom: 15px;
}
.main-news__item.big .main-news__itemText:last-child {
    margin-bottom: 0;
}
/*NEWS END*/

/*PAGINATION*/
.pagination {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    /*margin-top: 32px;*/
    list-style: none;
    margin: 0 auto;
}
.pag-num,
.pagination .page-item {
    display: flex;
    align-items: center;
    width: 41px;
    height: 41px;
    align-content: center;
    justify-content: center;
    transition: .3s;
    cursor: pointer;
    border-radius: 6px;

    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #546781;
}
.pagination .page-item a {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #546781;
    transition: .3s;
}
.pagination .page-item:first-child {
    margin-right: 12px;
}
.pagination .page-item:last-child {
    margin-left: 12px;
}
.pag-num:hover,
.pag-num.active,
.pagination .page-item:hover,
.pagination .page-item.active,
.pagination .page-item.active a,
.pagination .page-item:hover a {
    background: #142636;
    color: #FFFFFF;
}
.pag-num.arrows.left {
    margin-right: 12px;
}
.pag-num.arrows.right {
    margin-left: 12px;
}
.pag-num.arrows img {
    filter: invert(43%) sepia(11%) saturate(1145%) hue-rotate(175deg) brightness(87%) contrast(91%);
    transition: .3s;
}
.pag-num.arrows:hover img,
.pag-num.arrows.active img {
    filter: invert(100%) sepia(0%) saturate(2%) hue-rotate(178deg) brightness(107%) contrast(101%);
}
.pag-num.disabled:hover {
    background: transparent;
}
.pag-num.disabled.arrows img {
    cursor: default;
    filter: invert(18%) sepia(13%) saturate(1292%) hue-rotate(166deg) brightness(96%) contrast(93%);
}
.pag-num.disabled.arrows:hover img {
    filter: invert(18%) sepia(13%) saturate(1292%) hue-rotate(166deg) brightness(96%) contrast(93%);
}
/*PAGINATION END*/

/*RESPONSIVE FIX*/
@media only screen and (-webkit-min-device-pixel-ratio: 2) and ( max-width: 1537px), only screen and (   min--moz-device-pixel-ratio: 2) and ( max-width: 1537px), only screen and (     -o-min-device-pixel-ratio: 2/1) and ( max-width: 1537px), only screen and (        min-device-pixel-ratio: 2) and ( max-width: 1537px), only screen and (                min-resolution: 192dpi) and ( max-width: 1537px), only screen and (                min-resolution: 2dppx) and ( max-width: 1537px) {
    html {
        zoom: 0.8;
        -ms-zoom: 0.8;
        -webkit-zoom: 0.8;
        -moz-transform: scale(0.8, 0.8);
        -moz-transform-origin: left top;
    }
    @supports (-moz-appearance:none) {
        html {
            width: 125vw;
        }
    }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) and ( max-width: 1537px), only screen and (   min--moz-device-pixel-ratio: 2) and ( max-width: 1537px), only screen and (     -o-min-device-pixel-ratio: 2/1) and ( max-width: 1537px), only screen and (        min-device-pixel-ratio: 2) and ( max-width: 1537px), only screen and (                min-resolution: 192dpi) and ( max-width: 1537px), only screen and (                min-resolution: 2dppx) and ( max-width: 1537px) {
    html {
        zoom: 0.5;
        -ms-zoom: 0.5;
        -webkit-zoom: 0.5;
        -moz-transform: scale(0.5, 0.5);
        -moz-transform-origin: left top;
    }
    @supports (-moz-appearance:none) {
        html {
            width: 150vw;
        }
    }
}
@media screen and (max-width: 1537px) {
    html {
        zoom: 0.8;
        -ms-zoom: 0.8;
        -webkit-zoom: 0.8;
        -moz-transform: scale(0.8, 0.8);
        -moz-transform-origin: left top;
    }
    @supports (-moz-appearance:none) {
        html {
            width: 125vw;
        }
    }
    html, body {
        min-height: 125vh;
    }
}
@media screen and (max-width: 1459px) {
    html {
        zoom: 1;
        -ms-zoom: 1;
        -webkit-zoom: 1;
        -moz-transform: scale(1, 1);
        -moz-transform-origin: unset;
    }
    @supports (-moz-appearance:none) {
        html {
            width: 100vw;
        }
    }
    html, body {
        min-height: 100vh;
    }
}
@media screen and (max-width: 1457px) {
    html {
        zoom: 0.8;
        -ms-zoom: 0.8;
        -webkit-zoom: 0.8;
        -moz-transform: scale(0.8, 0.8);
        -moz-transform-origin: left top;
    }
    @supports (-moz-appearance:none) {
        html {
            width: 125vw;
        }
    }
    html, body {
        min-height: 125vh;
    }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) and ( max-width: 1023px), only screen and (   min--moz-device-pixel-ratio: 2) and ( max-width: 1023px), only screen and (     -o-min-device-pixel-ratio: 2/1) and ( max-width: 1023px), only screen and (        min-device-pixel-ratio: 2) and ( max-width: 1023px), only screen and (                min-resolution: 192dpi) and ( max-width: 1023px), only screen and (                min-resolution: 2dppx) and ( max-width: 1023px) {
    html {
        zoom: 1;
        -ms-zoom: 1;
        -webkit-zoom: 1;
        -moz-transform: scale(1, 1);
        -moz-transform-origin: unset;
    }
    @supports (-moz-appearance:none) {
        html {
            width: 100vw;
        }
    }
    html, body {
        min-height: 100vh;
    }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) and ( max-width: 1020px), only screen and (   min--moz-device-pixel-ratio: 2) and ( max-width: 1020px), only screen and (     -o-min-device-pixel-ratio: 2/1) and ( max-width: 1020px), only screen and (        min-device-pixel-ratio: 2) and ( max-width: 1020px), only screen and (                min-resolution: 192dpi) and ( max-width: 1020px), only screen and (                min-resolution: 2dppx) and ( max-width: 1020px) {
    html {
        zoom: 1;
        -ms-zoom: 1;
        -webkit-zoom: 1;
        -moz-transform: scale(1, 1);
        -moz-transform-origin: unset;

    }
    @supports (-moz-appearance:none) {
        html {
            width: 100vw;
        }
    }
}
/*RESPONSIVE FIX END*/

/*COOKIE*/
#cookie_notification {
    display: none;
    justify-content: space-between;
    align-items: flex-end;
    position: fixed;
    bottom: 15px;
    left: 50%;
    width: 900px;
    max-width: 90%;
    transform: translateX(-50%);
    padding: 15px;
    background: #0F1C2B;
    border-radius: 6px;
    z-index: 10;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.3);
}
#cookie_notification .button {
    max-width: 200px;
}
#cookie_notification p,
#cookie_notification a {
    margin: 0;
    font-size: 0.7rem;
    text-align: left;
}
@media (min-width: 576px) {
    #cookie_notification.show {
        display: flex;
    }
    .cookie_accept {
        margin: 0 0 0 25px;
    }
}
@media (max-width: 575px) {
    #cookie_notification.show {
        display: block;
        text-align: left;
    }
    .cookie_accept {
        margin: 10px 0 0 0;
    }
    #cookie_notification .button {
        max-width: unset;
    }
}
/*COOKIE END*/

/*MAIN MEDIA*/
@media screen and (max-width: 1023px) {
    .wrapper {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }

    .main {
        margin-top: 0;
        padding-top: 70px;
        padding-bottom: 60px;
    }

    .main-breadcrumbs {
        padding-top: 4px;
        padding-left: 24px;
        padding-bottom: 0;
        margin-bottom: 36px;
    }
    .main-breadcrumbs__link {
        display: none;
    }
    .main-breadcrumbs__home {
        display: flex;
    }
    .main-breadcrumbs__delimiter {
        display: none;
    }

    .ham {
        display: block;
        margin: -15px;
    }
    .header {
        position: fixed;
        padding: 0;
        height: 64px;
        top: 0;
        z-index: 11;
    }
    .header .wrapper {
        width: 100%;
        height: 64px;
        background: #0F1C2B;
        box-shadow: 0 0 10px rgba(0, 0, 0, .2);
        position: relative;
        z-index: 1;
        padding: 0 24px;
    }
    .header .wrapper .header-nav,
    .header .wrapper .header-buttons,
    .header .wrapper .header-lang,
    .header .wrapper .header-right {
        display: none;
    }

    .header-mobile {
        width: 100%;
        min-height: 100%;
        background: #0F1C2B;
        padding: 32px 20px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        transition: .3s;
    }
    .header-mobile__wrapper {
        width: 100%;
        height: calc(100% - 64px);
        position: fixed;
        top: 64px;
        right: 0;
        overflow-y: auto;
    }
    .header-mobile__top {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        z-index: 1;
    }
    .header-mobile__wrapper .header-nav {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }
    .header-mobile__wrapper .header-nav__item {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 18px;
        margin-right: 0;
        width: unset;
    }
    .header-mobile__wrapper .header-nav__item:last-child {
        margin-bottom: 0;
    }
    .header-mobile__wrapper .header-theme {
        margin: 20px 0 0 0;
    }
    .header-mobile__wrapper .header-theme {
        background: #091621;
    }

    .header-mobile__wrapper .header-buttons {
        flex-direction: column;
        width: 100%;
    }
    .header .header-buttons .button {
        height: 48px;
        font-size: 16px;
        line-height: 24px;
    }
    .header .header-buttons .button:first-child {
        margin-bottom: 10px;
    }
    .header .header-lang {
        width: 100%;
        margin-top: 28px;
        margin-right: 0;
    }
    .header .header-lang__header {
        width: 100%;
        background: #091621;
        padding: 16px;
        height: 50px;
    }
    .header .header-lang__items-wrapper {
        width: 100%;
        top: 51px;
    }
    .header .header-lang__items {
        width: 100%;
    }
    .header .header-lang__item {
        padding: 16px;
    }
    .header .header-lang__icon {
        right: 22px;
    }

    .footer {
        padding: 48px 24px 64px;
        position: relative;
    }
    .footer-top {
        flex-direction: column;
        align-items: center;
        padding-bottom: 0;
        border-bottom: unset;
        margin-bottom: 40px;
    }
    .footer-top .header-lang__items,
    .footer-top .header-lang__items-wrapper,
    .footer-top .header-lang__header,
    .footer-top .header-lang {
        width: 100%;
    }
    .footer-top__items {
        flex-direction: column;
        align-items: center;
        margin-bottom: 25px;
        margin-top: 39px;
    }
    .footer-top__item {
        margin-right: 0;
        margin-bottom: 24px;
    }
    .footer-top__item:last-child {
        margin-bottom: 0;
    }

    .footer-bottom {
        padding-top: 0;
        flex-direction: column;
        align-items: center;
    }
    .footer-bottom .header-nav {
        width: 100%;
        justify-content: center;
        padding-bottom: 16px;
        border-bottom: 1px solid #142636;
        margin-bottom: 16px;
    }
    .footer__copyright {
        position: absolute;
        left: 24px;
        bottom: 6px;
    }
    .footer-content__social {
        margin-bottom: 25px;
    }

    .main__title {
        font-size: 36px;
        line-height: 42px;
    }

    .main-header__data {
        max-width: 100%;
        margin: 60px 24px 72px 0;
        height: unset;
    }
    .main-header .wrapper {
        padding: 0 24px;
    }
    .main-header__img {
        left: 50%;
        top: -260px;
        transform: translateX(-45%) scale(.6);
    }
    .main-header__img.img-1 {
        right: unset;
        left: 50%;
    }
    .main-header__img.img-2 {
        right: unset;
        left: 50%;
    }
    .main-header__img.img-3 {
        right: unset;
        left: 50%;
    }
    .main-header__img.img-4 {
        right: unset;
        left: 50%;
        top: -400px;
    }

    .main-header__pagination {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .main-header__paginationItem {
        min-width: 50%;
        max-height: 98px;
        /*height: 100%;*/
        width: 270px;
        padding: 16px;
    }
    .main-header__paginationItem:first-child {
        border-radius: 0;
    }
    .main-header__paginationItem:last-child {
        border-radius: 0;
    }
    .main-header__paginationTitle {
        white-space: nowrap;
    }
    .main-header__paginationTextBlock {
        margin-top: 2px;
    }
    .main-header__paginationIcon {
        margin-right: 12px;
    }

    .main-proposal {
        margin: 60px 0;
    }
    .main-proposal .wrapper {
        flex-direction: column;
        align-items: center;
        padding: 0 8px;
    }
    .main-proposal__textBlock {
        max-width: 100%;
        padding: 0 16px;
        margin-bottom: 32px;
    }

    .main-benefit {
        margin-bottom: 60px;
    }
    .main-benefit .wrapper {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        background: #0F1C2B;
        padding: 60px 24px 44px;
    }
    .main-benefit__items {
        margin-top: 32px;
    }
    .main-benefit__item {
        margin-bottom: 16px;
    }

    .main-statistics {
        margin-bottom: 60px;
    }
    .main-statistics .wrapper {
        padding: 8px;
    }
    .main-statistics__header {
        padding: 0 16px;
        flex-direction: column;
        align-items: flex-start;
    }
    .main-statistics__headerInfo {
        width: 100%;
        flex-direction: column;
        margin-top: 15px;
    }
    .main-statistics__columns {
        margin-top: 15px;
        flex-direction: column;
        align-items: center;
    }
    .main-statistics__headerInfoItem:first-child {
        padding-right: 0;
        border-bottom: 1px solid #142636;
        border-right: 0;
        margin-right: 0;
        padding-bottom: 10px;
        margin-bottom: 10px;
        width: 100%;
    }
    .main-statistics__headerInfoItem {
        align-items: center;
    }
    .main-statistics__column {
        width: 100%;
    }
    .main-statistics__column:first-child {
        margin-bottom: 12px;
    }
    .main-statistics__columnHeader {
        padding: 18px 16px;
    }
    .main-statistics__rows {
        padding: 16px 16px 8px;
    }
    .main-statistics__row {
        justify-content: space-between;
    }
    .main-statistics__rowText.date {
        max-width: 89px;
    }
    .main-statistics__rowText.name {
        width: 111px;
        padding-left: 8px;
    }
    .main-statistics__rowText.deposit {
        width: 103px;
    }
    .main-statistics__rowText.img {
        width: 24px;
    }
    .main-statistics__rowIcon {
        margin-left: 0;
    }

    .main-crypto {
        margin-bottom: 0;
    }
    .main-crypto .wrapper {
        padding: 0 24px;
    }
    .main-crypto__items {
        flex-direction: column;
        align-items: center;
    }
    .main-crypto__item {
        width: 100%;
        padding-bottom: 12px;
        margin-bottom: 12px;
        border-bottom: 1px solid #253543;
    }
    .main-crypto__item:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: unset;
    }

    .main-video {
        margin-bottom: 60px;
    }
    .main-video .wrapper {
        flex-direction: column;
        align-items: center;
        padding: 0 24px;
    }
    .main-video__youtube {
        max-width: 100%;
        width: 100%;
        min-width: unset;
        margin-top: 4px;
        min-height: 51vw;
        height: unset;
        margin-bottom: 20px;
    }
    .main-video__textBlock {
        margin-left: 0;
    }

    .main-about__roadmapItems {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 40px;
        padding-left: 0;
        margin-bottom: 0;
    }
    .main-about__roadmapItem {
        width: 100%;
        margin-bottom: 0;
        padding-bottom: 32px;
    }
    .main-about__roadmapItemsRow {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .main-about__roadmapItemsRow:last-child {
        flex-direction: column-reverse;
    }
    .main-about__roadmap {
        padding: 0 24px;
    }
    .main-about__roadmap .main__title {
        margin-left: 32px;
    }
    .main-about__roadmapItems:after {
        display: none;
    }
    .main-about__roadmapItems:before {
        height: 82px;
        top: -75px;
    }
    .main-about__roadmapTitle {
        margin-left: 32px;
    }
    .main-about__roadmapText {
        max-width: 100%;
        margin-left: 32px;
    }
    .main-about__roadmapDate {
        margin-left: 32px;
    }
    .main-about__roadmapLine {
        margin: 13px 0 11px;
        width: 93px;
        left: 0;
    }
    .main-about__roadmapItem:after {
        height: 100%;
    }
    .main-about__header {
        margin: 0 0 40px;
        max-width: 100%;
        padding: 0 24px;
    }
    .main-about__row {
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 0 24px;
        margin-bottom: 40px;
    }
    .main-about__rowImg {
        max-width: 588px;
        width: 100%;
        height: auto;
    }
    .main-about__row .main-about__rowImg:first-child {
        margin-bottom: 16px;
    }
    .main-about__rowTextBlock {
        margin-bottom: 40px;
        max-width: 100%;
    }
    .main-about__rowGallery {
        max-width: 588px;
        width: 100%;
    }
    .main-about__rowGallery .main-about__rowImg:first-child {
        width: 48%;
        margin-bottom: 0;
    }
    .main-about__rowColumn {
        max-width: 50%;
        width: 100%;
        margin-left: 12px;
    }
    .main-about__rowGallery .main-about__rowColumn .main-about__rowImg {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    .main-about__rowGallery .main-about__rowColumn .main-about__rowImg:first-child {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    .main-about__rowGallery .main-about__rowColumn .main-about__rowImg:first-child {
        margin-bottom: 12px;
    }
    .main-about__rowGallery .main-about__rowImg:first-child {
        height: auto;
    }
    .main-about__certificateBlock {
        padding: 24px;
        border-radius: unset;
        margin: 20px 0 60px;
        flex-direction: column;
        align-items: center;
    }
    .main-about__certificateWrapper {
        margin-bottom: 16px;
    }
    .main-about__certificateTextBlock {
        margin-left: 0;
    }
    .main-about__certificateTextBlock .button {
        max-width: 100%;
    }

    .main-investors .main-proposal {
        margin: 0 0 60px;
    }
    .main-calculator .wrapper {
        padding: 60px 8px 16px;
        border-radius: 0;
        flex-direction: column;
        align-items: center;
    }
    .main-calculator__leftText {
        margin: 32px 0 12px;
    }
    .main-calculator__left {
        margin-bottom: 30px;
        padding: 0 16px;
    }
    .main-calculator__right {
        padding: 32px 16px 16px;
    }
    .main-calculator__left .main__title {
        white-space: unset;
    }

    .main-decor__img.partners {
        left: 50%;
        transform: translateX(-50%);
    }
    .main-partners {
        margin: 0 0 0;
    }
    .main-partners .wrapper {
        padding: 0 24px;
    }
    .main-partners__row {
        flex-direction: column;
        align-items: flex-start;
    }
    .main-partners__row .main__text {
        max-width: 100%;
    }
    .main-partners__row .main__text:first-child {
        margin-right: 0;
    }
    .main-partners__row .main__text:last-child {
        margin-left: 0;
    }

    .main-decor__block.partners:after {
        display: none;
    }
    .main-decor__block.faq:after {
        display: none;
    }
    .main-partners__block {
        margin-top: 60px;
        padding-top: 0;
        background: unset;
    }
    .main-partners .main-partners__block .wrapper {
        padding: 0 8px;
    }
    .main-partners__tableHeader {
        display: none;
    }
    .main-partners__table {
        background: none;
        padding: 0;
    }
    .main-partners__tableItem {
        border-bottom: unset;
        height: unset;
        background: #0F1C2B;
        border-radius: 6px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 16px 20px;
        margin-bottom: 8px;
    }
    .main-partners__tableItem:last-child {
        margin-bottom: 0;
    }
    .main-partners__tableItemText.level {
        width: 100%;
        padding-bottom: 12px;
        border-bottom: 1px solid #253543;
        margin-bottom: 20px;
    }
    .main-partners__tableItemName {
        display: block;
    }
    .main-partners__tableItemTextBlock {
        width: 100%;
        align-items: flex-start;
        margin-bottom: 16px;
    }
    .main-partners__tableItemTextBlock:last-child {
        margin-bottom: 0;
    }

    .main-faq .main__title {
        margin-bottom: 36px;
        margin-top: 0;
        text-align: left;
        padding-left: 24px;
    }
    .main-faq__btns {
        flex-direction: column;
        width: 100%;
        padding: 0 24px;
        display: block;
    }
    .main-faq__btns:after {
        display: none;
    }
    .main-faq__btn {
        width: 100%;
        height: unset;
        margin-bottom: 2px;
        padding: 12px 16px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        border-radius: 6px;
    }
    .main-faq__btnText {
        text-align: left;
    }
    .main-faq__btnIcon {
        margin-right: 12px;
        margin-bottom: 0;
    }
    .main-faq__btn:last-child {
        margin-bottom: 0;
    }
    .main-faq__tabs {
        margin-top: 32px;
        padding: 0 8px;
    }
    .main-faq__tabItemHeader {
        padding: 24px 16px;
    }
    .main-faq__tabItemText {
        padding: 24px 16px;
    }

    .main-contacts {
        margin-top: 0;
    }
    .main-contacts .wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    .main-contacts__data {
        padding: 0 24px;
        max-width: 100%;
        margin-bottom: 38px;
    }
    .main-contacts__row {
        margin-top: 20px;
        flex-wrap: wrap;
    }
    .main-contacts__textBlock:first-child {
        margin-right: 30px;
    }
    .main-contacts__textBlock {
        margin-bottom: 20px;
    }
    .main-contacts__form {
        margin: 0 auto;
    }

    .main-news {
        margin-top: 0;
    }
    .main-news .main__title {
        padding: 0 24px;
    }
    .main-news__items {
        flex-direction: column;
        align-items: center;
    }
    .main-news__item {
        padding: 10px;
        margin-bottom: 8px;
    }
    .main-news__item:last-child {
        margin-bottom: 0;
    }
    .main-news__itemImg {
        max-height: 260px;
        margin-bottom: 15px;
    }
    .main-news__itemFavourite {
        top: 20px;
        left: 20px;
        height: 40px;
        width: 40px;
    }
    .main-news__itemFavouriteIcon {
        width: 21.54px;
    }
    .main-news__itemTitle {
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 130%;
    }
    .main-news__itemText {
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 170%;
        margin-bottom: 15px;
    }
    .main-news__itemDate {
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 100%;
    }
    .main-news__itemLink {
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 100%;
    }
    .main-news__item.big .main-news__itemImg {
        max-height: 260px;
        margin-bottom: 15px;
    }

    .pagination {
        margin-top: 20px;
    }
    .pag-num,
    .pagination .page-item {
        width: 36px;
        height: 36px;
    }
}
@media screen and (max-width: 720px) {
    .modal-content {
        max-height: 100%;
        padding: 32px 24px;
        border-radius: 0;
    }
    .modal__title {
        width: calc(100% + 48px);
        padding-left: 24px;
    }
    .modal-form__row {
        flex-direction: column;
        align-items: flex-start;
    }
    .modal-form__row .main-input__block {
        width: 100%;
    }
    .modal-form__row .main-input__block:first-child {
        margin-bottom: 12px;
    }
    .modal-content__close {
        right: 24px;
    }
}
@media screen and (max-width: 570px) {
    .main-contacts__form {
        padding: 48px 24px;
        border-radius: 0;
        width: 100%;
    }

    .notification {
        width: calc(100% - 16px);
    }
}
@media screen and (max-width: 550px) {
    .main-proposal__block {
        max-width: 527px;
        width: 100%;
        padding: 32px 16px 24px;
    }
    .main-proposal__infoValue {
        font-size: 24px;
        line-height: 31px;
    }
    .main-proposal__rowCheckBox {
        min-width: 80px;
    }
    .main-proposal__rowText {
        margin-right: 43px;
    }
    .main-proposal__line {
        width: 100%;
    }
    .main-proposal__lineIcon {
        width: 100%;
    }

    .main-benefit__item {
        width: 164px;
        height: 134px;
    }

    .main-header__paginationItem {
        min-width: 100%;
        border-bottom: 1px solid #142636;
    }
    .main-header__paginationItem:last-child {
        border-bottom: 0;
    }
    .main-header__paginationItem:after {
        display: none;
    }
    .main-header__paginationTitle {
        white-space: unset;
    }
    .main-header__paginationTextBlock {
        max-width: 100%;
    }

    .modal-content.small {
        height: 100%;
        max-width: 100%;
        justify-content: space-between;
    }
    .modal-content.small .modal__title {
        width: 100%;
        padding-left: 0;
    }
}
@media screen and (max-width: 375px) {
    .footer-bottom .header-nav {
        justify-content: space-between;
    }
    .footer-bottom .header-nav__item {
        margin-right: 0;
    }
    .footer-bottom__downloadText {
        margin-right: 10px;
    }

    .main-benefit__item {
        width: 155px;
    }
}
/*MAIN MEDIA END*/

