@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Gilroy, "Gilroy", sans-serif;
    /*font-weight: 400;*/
    font-style: normal;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-size: 16px;
    color: #74737B;
    z-index: 0;
}

html, body {
    overflow-x: hidden;
}

body {
    position: relative;
    background: #FFFFFF;
    overflow-y: hidden;
}

.wrapper {
    max-width: 1150px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 0 20px;
}

.body-fixed {
    overflow-y: hidden;
}

/*BUTTON*/
.button {
    width: 100%;
    height: 48px;

    padding: 0 32px;

    background: #46C7A3;
    border-radius: 2px;

    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    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: #46C7A3;
}
.button.link {
    margin-right: 8px;
    background: transparent;
    color: #74737B;
}
.button.link:hover {
    color: #000000;
}
/*BUTTON END*/

/*SCROLLBARS*/
::-webkit-scrollbar {
    width: 4px;
    background: #F4F4F4;
}
::-webkit-scrollbar-thumb {
    border-width: 1px 1px 1px 2px;
    background-color: #46C7A3;
    -webkit-border-radius: 2px;
}
::-webkit-scrollbar-track {
    border-width: 0;
}
:root {
    scrollbar-color: #46C7A3 #F4F4F4 !important;
    scrollbar-width: thin !important;
}
/*SCROLLBARS END*/

/*NAME AND INPUT*/
.main-input__block {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.main-input__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 12px;
}
.main-input__headerName {
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #14121F;
    transition: .3s;
}
.main-input__headerLink {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #46C7A3;
    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: 16px;

    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: 0.02em;
    color: #14121F;

    background: #F6F4F5;
    border-radius: 2px;
    border: unset;
    transition: .3s;
}
.main-input::placeholder {
    color: #E7E3E4;
    text-transform: uppercase;
    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: 16px;
    min-height: 120px;
    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: 81px;
}
.main-input__captcha {
    position: absolute;
    left: 16px;
}
.main-input__captcha img {
    width: 55px;
}
.main-input__captchaText {
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #74737B;
    width: 55px;
    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;
}
.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: #A5A5A7;
}
.custom-checkbox + label a {
    margin-left: 5px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #46C7A3;
    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: #E7E3E4;
    border-radius: 2px;
}
.custom-checkbox:checked + label::after {
    content: '';
    display: block;
    background: #46C7A3;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    position: absolute;
    left: 4px;
    bottom: 6px;
}
/* стили для чекбокса, находящегося в состоянии disabled */
.custom-checkbox:disabled + label::before {
    background-color: #FFFFFF;
}
/*CHECKBOX 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: 88px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header-logo__link {
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-logo {
    /*height: 15px;*/
    height: 52px;
}

.header-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.header-nav__item {
    width: fit-content;

    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.02em;
    color: rgba(20, 18, 31, 0.75);

    transition: .3s;
    position: relative;
    text-decoration: none;
    margin-right: 24px;
    display: flex;
}
.header-nav__item:last-child {
    margin-right: 0;
}
.header-nav__item:hover,
.header-nav__item.active {
    color: #000000;
}

.header-right {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header-lang {
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 8px 0 8px;
}
.header-lang__header {
    display: flex;
    flex-direction: row;
    cursor: pointer;
    position: relative;
    z-index: 1;
    padding: 12px 16px;
    transition: .3s ease-in-out;
}
.header-lang__text {
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #74737B;
}
.header-lang__icon {
    margin-left: 4px;
    transition: .3s;
}
.header-lang.active .header-lang__icon {
    transform: rotate(180deg);
}

.header-lang__items-wrapper {
    width: 100%;
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background: #F6F4F5;
    border-radius: 0 0 2px 2px;
}
.header-lang__item {
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #A5A5A7;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    padding: 8px 16px;
}
.header-lang__item:last-child {
    margin-bottom: 0;
}
.header-lang__item .header-lang__text {
    position: relative;
    text-decoration: none;
    /*color: #0C1C2B;*/
    transition: .3s;
}
.header-lang__item .header-lang__text:hover {
    color: #46C7A3;
}
.header-lang.active .header-lang__header {
    background: #F6F4F5;
    border-radius: 2px 2px 0 0;
}

.header-buttons {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.header .header-buttons .button {
    height: 40px;
    font-size: 13px;
    line-height: 16px;
    padding: 0 24px;
}
.header__mobile {
    display: none;
}

.header-mobile__wrapper {
    display: none;
}
/*HEADER END*/

/*MAIN*/
.main {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 200px;
}

.main__title {
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    color: #14121F;
    margin-bottom: 24px;

    text-align: left;
    transition: .3s;
}
.main__title.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.main__title.big {
    font-weight: 700;
    font-size: 64px;
    line-height: 75px;
}

.main__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #74737B;
    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;
    padding-top: 150px;
    padding-bottom: 238px;
    margin-bottom: 100px;
}
.main-header .header-buttons {
    margin-top: 32px;
}
.main-header .button:first-child {
    margin-right: 8px;
}
.main-header .button.link {
    margin-right: 0;
}
.main-header__data {
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.main-header__img {
    position: absolute;
    z-index: -1;
    top: -20px;
    left: -161px;
    pointer-events: none;
    transition: .3s;
}
.main-text__block {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.main-proposal {
    margin-bottom: 200px;
}
.main-proposal .wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.main-proposal__block {
    width: 509px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #F6F4F5;
    filter: drop-shadow(0px 4px 25px rgba(70,199,163,0.17));
    border-radius: 2px;
    margin-right: 30px;
}
.main-proposal__term {
    padding: 6px 16px;
    background: #46C7A3;
    border-radius: 2px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #FFFFFF;
    margin-top: 40px;
    margin-bottom: 28px;
}
.main-proposal__term span {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #FFFFFF;
}
.main-proposal__profit {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #74737B;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-proposal__profit span {
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 38px;
    color: #14121F;
    margin-top: 12px;
}
.main-proposal__infoRow {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 32px 0 44px;
}
.main-proposal__infoValue {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    color: #74737B;
}
.main-proposal__infoValue span {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 23px;
    color: #14121F;
}
.main-proposal__infoDelimiter {
    margin: 0 20px;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    color: #74737B;
}
.main-proposal__rows {
    background: #FFFFFF;
    border-radius: 2px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 56px;
}
.main-proposal__row {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 16px;
}
.main-proposal__row:last-child {
    margin-bottom: 0;
}
.main-proposal__rowIcon {
    margin-right: 12px;
    pointer-events: none;
}
.main-proposal__rowText {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #14121F;
}
.main-proposal__row.inactive .main-proposal__rowText {
    color: #A5A5A7;
}

.main-benefit {
    margin-bottom: 130px;
}
.main-benefit__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 32px;
    margin-top: 56px;
}
.main-benefit__item {
    max-width: 352px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-benefit__itemIcon {
    margin-bottom: 16px;
    pointer-events: none;
}
.main-benefit__itemTitle {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    color: #14121F;
    margin-bottom: 12px;
}
.main-benefit__itemText {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    color: #74737B;
}

.main-referral {
    margin-bottom: 200px;
}
.main-referral .wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.main-referral__data {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 480px;
    margin-left: 30px;
}
.main-referral__rows {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}
.main-referral__row {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #EEEEEE;
}
.main-referral__row:last-child {
    border-bottom: unset;
}
.main-referral__rowValue {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;
    color: #14121F;
}
.main-referral__rowLevel {
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #A5A5A7;
}
.main-referral__img {
    pointer-events: none;
}

.main-about__roadmap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 200px;
}
.main-about__roadmap .main__title {
    margin-left: 48px;
}
.main-about__roadmapItems {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-left: 16px;
    margin-bottom: -60px;
    position: relative;
}
.main-about__roadmapItems:after {
    content: '';
    position: absolute;
    top: 27px;
    right: 0;
    height: 251px;
    width: 1px;
    background: rgba(165, 165, 167, 0.5);
}
.main-about__roadmapItemsRow {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    flex-direction: row;
    align-items: flex-start;
}
.main-about__roadmapItem {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    margin-bottom: 60px;
}
.main-about__roadmapItem:before {
    content: url(../img/icons/roadmap.svg);
    display: block;
    position: absolute;
    top: 59px;
    left: -23px;
    pointer-events: none;
}
.main-about__roadmapItem:after {
    content: '';
    position: absolute;
    left: 0;
    top: 27px;
    background: rgba(165, 165, 167, 0.5);
    height: 24px;
    width: 1px;
}
.main-about__roadmapDate {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #46C7A3;
    margin-left: 47px;
}
.main-about__roadmapLine {
    width: 100%;
    height: 1px;
    background: rgba(165, 165, 167, 0.5);
    border-radius: 6px;
    position: relative;
    margin: 5px 0 38px 0;
}
.main-about__roadmapTitle {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    color: #14121F;
    margin-left: 47px;
    margin-bottom: 12px;
}
.main-about__roadmapText {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #74737B;
    max-width: 260px;
    margin-left: 47px;
}

.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;
}

.main-wallets {
    margin-bottom: -144px;
}
.main-wallets__items {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.main-wallets__item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #EEEEEE;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-wallets__itemIcon {
    border-radius: 50%;
    width: 24px;
    height: 24px;
    pointer-events: none;
}
/*MAIN END*/

/*FOOTER*/
.footer {
    width: 100%;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #F6F4F5;
    padding: 80px 0 9px;
}
.footer .wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-top .header-logo {
    height: 15px;
}
.footer-top {
    height: 120px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}
.footer-top__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 269px;
}
.footer-top__blockText {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #74737B;
    margin-top: 22px;
}
.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 155px;
    row-gap: 24px;
}
.footer-nav__item {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    color: #74737B;
    text-decoration: unset;
    transition: .3s;
}
.footer-nav__item:hover {
    color: #000000;
}
.footer-top__contact {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
.footer-top__mail {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-top__itemName {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #74737B;
}
.footer-top__itemValue {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #74737B;
}
.footer-top__contact .header-lang {
    margin: 0;
    margin-left: -16px;
}
.footer-top__contact .header-lang.active .header-lang__header {
    background: #FFFFFF;
}
.footer-top__contact .header-lang__items-wrapper {
    background: #FFFFFF;
}
.footer-bottom {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.footer__copyright {
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    color: #74737B;
}
/*FOOTER END*/

/*BREADCRUMBS*/
.main-breadcrumbs {
    padding: 4px 0 0;
    z-index: 1;
    margin-bottom: 72px;
}
.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: 12px;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 16px;
    white-space: nowrap;
    transition: .3s;
}
.main-breadcrumbs__link:first-child {
    margin-left: 0;
}
.main-breadcrumbs__delimiter {
    margin-right: 12px;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 16px;
    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: #A5A5A7;
}
.main-breadcrumbs__link:hover {
    text-decoration: underline;
}
/*BREADCRUMBS END*/

/*ABOUT*/
.main-about__row {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 200px;
}
.main-about__row:last-child {
    margin-bottom: 0;
}
.main-about__row .main-text__block {
    margin-right: 20px;
}
.main-about__row.reverse .main-text__block {
    margin-left: 20px;
    margin-right: 0;
}
.main-about__rowImg {
    height: 430px;
    width: 512px;
    object-fit: cover;
    object-position: center;
    border-radius: 2px;
}
.main-about__grid {
    margin: 92px 20px 172px;
    display: grid;
    grid-template:
        "a b c"
        "d b e";
    grid-template-columns: 1fr 760px 1fr;
    grid-template-rows: 300px 300px;
    grid-gap: 20px;
}
.main-about__gridImg {
    border-radius: 2px;
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center;
}
.main-about__gridImg:nth-child(1) {
    grid-area: a;
}
.main-about__gridImg:nth-child(2) {
    grid-area: d;
}
.main-about__gridImg:nth-child(4) {
    grid-area: c;
}
.main-about__gridImg:nth-child(5) {
    grid-area: e;
}
.main-about__gridBlock {
    grid-area: b;
    position: relative;
}
.main-about__gridTextBlock {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    max-width: 375px;
    width: 100%;
    padding: 80px 52px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(25, 64, 201, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 0 2px 2px 0;
}
.main-about__gridTitle {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    color: #FFFFFF;
    margin-bottom: 24px;
}
.main-about__gridText {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}
.main-about__gridText:last-child {
    margin-bottom: 0;
}
/*ABOUT END*/

/*INVESTORS*/
.main-investors__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 200px;
}
.main-investors__row:last-child {
    margin-bottom: 0;
}
.main-investors__row .main-text__block {
    margin-right: 20px;
}
.main-investors__row .main-proposal__block {
    margin-right: 0;
}
.main-investors__row.reverse .main-text__block {
    margin-right: 0;
    margin-left: 106px;
}
.main-calculator {
    min-width: 566px;
    max-width: 566px;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0 4px 50px rgba(70,199,163,0.17);
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-calculator__title {
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 47px;
    color: #14121F;
    margin-bottom: 45px;
}
.main-calculator__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 60px 44px;
}
.main-calculator__text {
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #14121F;
    margin-bottom: 12px;
}
.main-calculator__inputBlock {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    width: 100%;
    position: relative;
}
.main-calculator__inputBlock:first-child {
    margin-right: 20px;
}
.main-calculator__inputBlock:after {
    content: '$';
    position: absolute;
    left: 16px;
    bottom: 16px;

    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #14121F;
}
.main-calculator__input {
    width: 100%;
    padding: 16px 16px 16px 36px;
    height: 48px;
    background: #F6F4F5;
    border-radius: 2px;
    border: none;
    outline: none;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #14121F;
}
.main-calculator__input:read-only {
    color: #74737B;
}
.main-calculator__inputBlock.days:after {
    display: none;
}
.main-calculator__inputBlock.days .main-calculator__input {
    padding-left: 16px;
}
.main-calculator__row {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.main-calculator__row .main-calculator__inputBlock {
    max-width: 213px;
}
.main-calculator__total {
    padding: 24px;
    width: 100%;
    background: #F6F4F5;
    border: 1px solid #EEEEEE;
    border-radius: 2px;
}
.main-calculator__totalText {
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #74737B;
    margin-bottom: 4px;
}
.main-calculator__totalValue {
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    text-align: center;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #46C7A3;
}
.main-calculator__sliderNames {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}
.main-calculator__sliderName {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #74737B;
}
.main-calculator__slider {
    width: 100%;
    margin-top: -15px;
    margin-bottom: 15px;
}
.main-calculator__delimiter {
    width: 100%;
    height: 2px;
    display: block;
    background: #EEEEEE;
    margin: 14px 0 32px;
}
/*INVESTORS END*/

/*PARTNERS*/
.main-partners__row {
    display: grid;
    grid-template-columns: 1fr 524px;
    grid-gap: 115px;
    margin-bottom: 113px;
}
.main-partners__row:last-child {
    margin-bottom: 0;
}
.main-partners__row .main-referral__rows {
    margin-top: 0;
}
.main-partners__gallery {
    width: 100%;
    display: flex;
    height: 356px;
    position: relative;
}
.main-partners__galleryImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-partners__galleryText {
    padding: 25px 19px 21px 31px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #FFFFFF;
    background: rgba(70,199,163,0.8);
    backdrop-filter: blur(8px);
    max-width: 281px;
    position: absolute;
    left: 23px;
    bottom: 15px;
}
/*PARTNERS END*/

/*FAQ*/
.main-faq__block {
    display: grid;
    grid-template-columns: 352px minmax(0, 720px);
    grid-gap: 48px;
    align-items: flex-start;
    margin-top: 24px;
}
.main-faq__btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
}
.main-faq__btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    cursor: pointer;
    transition: .3s;
    padding: 16px;
    border-radius: 2px;
}
.main-faq__btnIcon {
    transition: .3s;
    margin-right: 16px;
    filter: invert(71%) sepia(2%) saturate(168%) hue-rotate(201deg) brightness(92%) contrast(94%);
}
.main-faq__btnText {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #A5A5A7;
    transition: .3s;
}
.main-faq__btn:hover,
.main-faq__btn.active {
    background: #F6F4F5;
}
.main-faq__btn:hover .main-faq__btnText,
.main-faq__btn.active .main-faq__btnText {
    color: #46C7A3;
    font-weight: 500;
}
.main-faq__btn:hover .main-faq__btnIcon,
.main-faq__btn.active .main-faq__btnIcon {
    filter: invert(11%) sepia(96%) saturate(7184%) hue-rotate(234deg) brightness(101%) contrast(108%);
}

.main-faq__tabs {
    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: #FFFFFF;
    border: 1px solid #EEEEEE;
    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: 24px 24px 24px 24px;
    border-bottom: 2px solid transparent;
    transition: .3s;
}
.main-faq__tabItemTitle {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    color: #14121F;
    margin-right: 24px;
    transition: .3s;
}
.main-faq__tabItemText {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #74737B;
    display: none;
    padding: 24px;
}
.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: #46C7A3;
}
.main-faq__tabItem.active,
.main-faq__tabItem:hover {
    background: #F6F4F5;
}
.main-faq__tabItem.active .main-faq__tabItemHeader {
    border-bottom: 2px solid #EEEEEE;
}
/*FAQ END*/

/*CONTACTS*/
.main-contacts .wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.main-contacts__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 602px;
    width: 100%;
}
.main-contacts__content .main-text__block {
    max-width: 100%;
}

.main-contacts__success {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 48px;
}
.main-contacts__successRow {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 32px;
}
.main-contacts__successRowIcon {
    margin-right: 24px;
}
.main-contacts__successRowText {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #14121F;
}
.main-contacts__success .button {
    width: auto;
}

.main-contacts__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 281px;
    width: 100%;
    padding: 40px;
    background: #F6F4F5;
    border-radius: 2px;
}
.main-contacts__infoIcon {
    margin-bottom: 40px;
}
.main-contacts__infoRow {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}
.main-contacts__infoRow:last-child {
    margin-bottom: 0;
}
.main-contacts__infoTitle {
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #A5A5A7;
    margin-bottom: 6px;
}
.main-contacts__infoText {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    color: #14121F;
}

.main-contacts__form {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 24px;
    align-items: flex-start;
    margin-top: 48px;
}
.main-contacts__formRow {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 24px;
}
.main-contacts__form .button {
    width: auto;
    max-width: 106px;
}
/*CONTACTS END*/

/*NOTIFICATION*/
.notification {
    position: fixed;
    padding: 16px;
    width: 255px;
    right: 8px;
    bottom: 8px;
    /*background: rgba(0, 242, 119, .3);*/
    border-radius: 6px;
    border: 1px solid #00F2774D;
    z-index: 12;
    display: none;
    background: #F4F5F9;
}
.notification__close {
    cursor: pointer;
    position: absolute;
    top: 18px;
    right: 16px;
    filter: invert(100%);
}
.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: #14121F;
    margin-left: 24px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.notification.error {
    /*background: rgba(243, 95, 97, .3);*/
    border: 1px solid #F35F614D;
}
.notification.error .notification-header__text {
    color: #F35F61;
}
@media screen and (max-width: 570px) {
    .notification {
        width: calc(100% - 16px);
    }
}
/*NOTIFICATION 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: #FFFFFF;
    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*/

/*SIGN UP*/
.main-form__block {
    margin: 0 auto;
    max-width: 1440px;
    width: 100%;
    min-height: 100vh;
    height: 100%;
    display: grid;
    grid-template-columns: auto 416px;
}
.main-form__content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 744px;
    margin: 0 auto;
    padding: 140px 20px;
    position: relative;
}
.main-form__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
    position: absolute;
    top: 0;
    left: 0;
    height: 88px;
}
.main-form__headerHome {
    pointer-events: unset;
    cursor: pointer;
}
.main-form__headerHome img {
    width: 100%;
}
.main-form {
    width: 100%;
    display: grid;
    grid-row-gap: 16px;
}
.main-form__row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 24px;
}
.main-form .button {
    margin-top: 16px;
    margin-right: auto;
    width: auto;
}
.main-form__title {
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 47px;
    color: #14121F;
    margin-bottom: 26px;
}

.main-form__decor {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #45BA9A;
}
.main-form__decorImg {
    margin-bottom: 50px;
}
.main-form__decorText {
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    color: #FFFFFF;
    margin-bottom: 32px;
}
.main-form__decorButton {
    height: 48px;
    background: #FFFFFF;
    border-radius: 2px;
    padding: 0 32px;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #46C7A3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: unset;
    transition: .3s;
}
.main-form__decorButton:hover {
    background: #f1efef;
}
.main-empty {
    min-height: 100vh;
}

.main-form__buttons {
    display: flex;
    flex-direction: row;
}
.main-form__buttons .button:first-child {
    margin-right: 20px;
}
/*SIGN UP END*/

/*MODAL*/
.main-modal {
    padding-top: 200px;
}
.main-modal .wrapper {
    align-items: center;
}
.main-modal__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 549px;
    width: 100%;
}
.main-modal__title {
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    color: #14121F;
    margin-bottom: 40px;
    text-align: center;
}
.main-modal__icon {
    margin-bottom: 40px;
}
.main-modal__text {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    color: #74737B;
    margin-bottom: 16px;
    margin-top: -20px;
}
.main-modal__block .button {
    margin-top: 16px;
    width: auto;
}
.main-modal__block .main-input__block {
    margin-bottom: 16px;
}
/*MODAL END*/

/*TERMS*/
.main-terms .main__text {
    margin-bottom: 25px;
}
.main-terms .main__text:last-child {
    margin-bottom: 0;
}
/*TERMS END*/

/*MAIN MEDIA*/
@media screen and (max-width: 1150px) {
    .main {
        padding-bottom: 100px;
    }

    .main-header .wrapper {
        padding-bottom: 132px;
    }
    .main-proposal {
        margin-bottom: 100px;
    }
    .main-benefit {
        margin-bottom: 100px;
    }
    .main-referral {
        margin-bottom: 100px;
    }
    .main-about__roadmap {
        margin-bottom: 100px;
    }
    .main-wallets {
        margin-bottom: -40px;
    }

    .main-about__grid {
        margin: 50px 20px 100px;
    }
    .main-about__row {
        margin-bottom: 100px;
    }

    .main-investors__row {
        margin-bottom: 100px;
    }
    .main-investors__row.reverse .main-text__block {
        margin-left: 20px;
    }
}
@media screen and (max-width: 1023px) {
    .wrapper {
        max-width: 100%;
        width: 100%;
        padding: 0 20px;
    }

    .main {
        margin-top: 0;
        padding-top: 52px;
        padding-bottom: 72px;
    }

    .main-breadcrumbs {
        padding-top: 16px;
        margin-bottom: 30px;
    }

    .header {
        position: fixed;
        padding: 0;
        height: 52px;
        top: 0;
        z-index: 11;
    }
    .header .wrapper {
        width: 100%;
        height: 52px;
        background: #FFFFFF;
        box-shadow: 0 0 10px rgba(0, 0, 0, .2);
        position: relative;
        z-index: 1;
        padding: 0 20px 0 10px;
    }
    .header .wrapper .header-nav,
    .header .wrapper .header-buttons,
    .header .wrapper .header-lang,
    .header .wrapper .header-right {
        display: none;
    }
    .header-logo {
        height: 36px;
    }
    .header__mobile {
        display: flex;
        flex-direction: row;
        align-items: center;

    }
    .header__mobile .button {
        height: 28px;
        font-size: 12px;
        line-height: 12px;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        padding: 0 16px;
        margin-right: 20px;
    }

    .header-mobile {
        width: 100%;
        min-height: 100%;
        background: #FFFFFF;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .header-mobile__wrapper {
        z-index: 2;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: -130%;
        overflow-y: auto;
        display: flex;
        transition: .3s;
    }
    .header-mobile__wrapper.active {
        left: 0;
    }
    .header-mobile__top {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .header-mobile__wrapper .header-nav {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding: 23px 20px;
    }
    .header-mobile__wrapper .header-nav__item {
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 16px;
        letter-spacing: 0.02em;
        margin-bottom: 32px;
    }
    .header-mobile__wrapper .header-nav__item:last-child {
        margin-bottom: 0;
    }
    .header-mobile__top {
        width: 100%;
        padding: 12px 20px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .header .header-buttons .button {
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 12px;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        height: 28px;
        padding: 0 16px;
    }
    .header .header-buttons .button:first-child {
        margin-right: 0;
    }
    .header-lang {
        margin: 0 10px 0 20px;
    }

    .footer {
        padding: 48px 0 8px;
        position: relative;
    }
    .footer .wrapper {
        align-items: flex-start;
    }
    .footer-top {
        width: 100%;
        height: unset;
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 0;
        border-bottom: unset;
        margin-bottom: 32px;
        max-width: 335px;
    }
    .footer-top__blockText {
        margin-top: 8px;
    }
    .footer-top__info {
        margin-bottom: 32px;
    }
    .footer-nav {
        width: 100%;
        margin-bottom: 32px;
        grid-auto-columns: auto;
        column-gap: unset;
    }
    .footer-top__contact {
        width: 100%;
        display: grid;
        grid-auto-columns: auto;
        grid-template-columns: 1fr 1fr;
        align-items: end;
    }
    .footer-top__contact .header-lang {
        margin-bottom: 4px;
        /*margin-left: 0;*/
    }

    .main__title {
        font-size: 28px;
        line-height: 33px;
        margin-bottom: 8px;
    }
    .main__title.big {
        font-size: 34px;
        line-height: 40px;
    }
    .main__text {
        font-size: 14px;
        line-height: 22px;
    }

    .main-header .wrapper {
        padding-top: 355px;
        padding-bottom: 0;
        margin-bottom: 72px;
    }
    .main-header__data {
        margin: 0;
        max-width: 100%;
    }
    .main-header__data .main__title {
        text-align: center;
        width: 100%;
    }
    .main-header__data .main__text {
        text-align: center;
        width: 100%;
    }
    .main-header__data .main__title br {
        display: none;
    }
    .main-header .header-buttons {
        width: 100%;
        display: flex;
        margin-top: 4px;
        justify-content: center;
    }
    .main-header .button {
        width: auto;
    }
    .main-header__img {
        top: -220px;
        right: 50%;
        left: unset;
        transform: translateX(43%) scale(.5);
    }

    .main-proposal {
        margin-bottom: 72px;
    }
    .main-proposal .wrapper {
        flex-direction: column-reverse;
        align-items: center;
    }
    .main-text__block {
        max-width: 100%;
    }
    .main-proposal__block {
        margin-top: 32px;
        max-width: 510px;
        width: 100%;
        margin-right: 0;
    }

    .main-benefit {
        margin-bottom: 48px;
    }
    .main-benefit .main__title {
        text-align: left;
        margin: 0;
    }
    .main-benefit__items {
        margin-top: 32px;
        grid-template-columns: 1fr;
        row-gap: 24px;
    }
    .main-benefit__item {
        max-width: 100%;
        align-items: flex-start;
        position: relative;
        padding-left: 48px;
    }
    .main-benefit__itemText {
        text-align: left;
        font-size: 14px;
        line-height: 22px;
    }
    .main-benefit__itemTitle {
        margin-bottom: 5px;
        font-size: 20px;
        line-height: 23px;
    }
    .main-benefit__itemIcon {
        width: 32px;
        margin-bottom: unset;
        position: absolute;
        top: 0;
        left: 0;
    }

    .main-referral {
        margin-bottom: 86px;
    }
    .main-referral .wrapper {
        flex-direction: column;
        align-items: center;
    }
    .main-referral__img {
        margin-bottom: 32px;
        max-width: 450px;
        width: 100%;
    }
    .main-referral__data {
        max-width: 100%;
        margin-left: 0;
    }
    .main-referral__rows {
        margin-top: 24px;
    }
    .main-referral__row {
        margin-bottom: 16px;
        padding-bottom: 16px;
    }
    .main-referral__row:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .main-about__roadmap {
        margin-bottom: 72px;
    }
    .main-about__roadmapItems {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 0;
        padding-left: 10px;
        margin-bottom: 0;
    }
    .main-about__roadmapItem {
        width: 100%;
        margin-bottom: 0;
        padding-bottom: 24px;
        padding-top: 4px;
    }
    .main-about__roadmapItemsRow {
        grid-template-columns: 1fr;
        width: 100%;
    }
    .main-about__roadmapItemsRow:last-child {
        flex-direction: column-reverse;
    }
    .main-about__roadmapItems:after {
        display: none;
    }
    .main-about__roadmapItem:before {
        top: -7px;
        z-index: 1;
    }
    .main-about__roadmapTitle {
        margin-left: 48px;
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 4px;
    }
    .main-about__roadmapText {
        max-width: 100%;
        margin-left: 48px;
    }
    .main-about__roadmapDate {
        margin-left: 48px;
        margin-bottom: 12px;
    }
    .main-about__roadmapLine {
        display: none;
    }
    .main-about__roadmapItem:after {
        height: 100%;
    }
    .main-about__roadmapItemsRow:last-child .main-about__roadmapItem:last-child {
        padding-bottom: 0;
    }
    .main-about__roadmapItemsRow:last-child .main-about__roadmapItem:last-child:after {
        display: none;
    }

    .main-wallets {
        margin-bottom: -28px;
    }
    .main-wallets__item {
        width: 30px;
        height: 30px;
        border-width: 2px;
    }
    .main-wallets__itemIcon {
        width: 18px;
        height: 18px;
    }

    .main-about__grid {
        margin: 30px 20px 72px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .main-about__row {
        flex-direction: column;
        align-items: center;
    }
    .main-about__row .main-text__block {
        margin-right: 0;
    }
    .main-about__rowImg {
        max-width: 100%;
        max-height: 300px;
        width: 100%;
        height: auto;
        margin-top: 32px;
    }
    .main-about__row {
        margin-bottom: 72px;
    }
    .main-about__row.reverse {
        flex-direction: column-reverse;
    }
    .main-about__row.reverse .main-text__block {
        margin-left: 0;
    }
    .main-about__gridImg {
        max-width: 100%;
        max-height: 300px;
        width: 100%;
        height: unset;
    }
    .main-about__gridTextBlock {
        position: relative;
    }
    .main-about__gridBlock {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .main-about__gridTextBlock {
        width: 100%;
        max-width: 100%;
        top: unset;
        left: unset;
        padding: 32px;
        background: #46C7A3;
    }

    .main-investors__row {
        flex-direction: column;
        align-items: center;
        margin-bottom: 72px;
    }
    .main-investors__row .main-text__block {
        margin-right: 0;
    }
    .main-calculator {
        max-width: 510px;
        min-width: unset;
        margin-bottom: 32px;
    }
    .main-investors__row.reverse .main-text__block {
        margin-left: 0;
    }

    .main-partners__row {
        margin-bottom: 72px;
        grid-template-columns: 1fr;
        grid-gap: 24px;
    }
    .main-partners__gallery {
        height: unset;
        flex-direction: column;
        align-items: center;
    }
    .main-partners__galleryText {
        position: relative;
        bottom: unset;
        left: unset;
        margin-top: 20px;
        max-width: 100%;
        width: 100%;
        padding: 20px;
    }
    .main-partners__galleryImg {
        max-height: 235px;
    }

    .main-faq__block {
        margin-top: 16px;
        grid-template-columns: 1fr;
        grid-gap: 43px;
    }
    .main-faq__btns {
        flex-direction: column;
        width: 100%;
        display: block;
    }
    .main-faq__tabs {
        margin-top: 0;
    }
    .main-faq__tabItemHeader {
        padding: 16px;
    }
    .main-faq__tabItemText {
        padding: 16px;
    }

    .main-contacts .wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    .main-contacts__content {
        max-width: 100%;
        margin-bottom: 72px;
    }
    .main-contacts__success {
        margin-top: 30px;
    }
    .main-contacts__successRowIcon {
        width: 42px;
        margin-right: 12px;
    }
    .main-contacts__successRowText {
        font-size: 20px;
        line-height: 23px;
    }
    .main-contacts__info {
        max-width: 100%;
    }
    .main-contacts__form {
        margin-top: 30px;
    }

    .main-form__block {
        grid-template-columns: 1fr;
    }
    .main-form__title {
        font-size: 34px;
        line-height: 40px;
        margin-bottom: 24px;
    }
    .main-form__decor {
        padding: 72px 0;
    }
    .main-form__content {
        padding: 82px 20px 72px;
        max-width: 100%;
    }
    .main-form__header {
        height: 52px;
    }
    .main-form__headerHome {
        width: 18px;
    }
    .main-form__row {
        grid-template-columns: 1fr;
        grid-row-gap: 24px;
    }

    .main-modal {
        padding-top: 72px;
        height: 100%;
    }
    .main-modal__block {
        max-width: 100%;
    }
    .main-modal .wrapper {
        height: 100%;
        justify-content: center;
    }
    .main-modal__icon {
        margin-bottom: 32px;
    }
    .main-modal__title {
        font-size: 32px;
        line-height: 38px;
    }
    .main-modal__text {
    }
}
@media screen and (max-width: 550px) {
    .main-proposal__term {
        font-size: 14px;
        line-height: 16px;
        margin: 24px 0 16px;
    }
    .main-proposal__term span {
        font-size: 14px;
        line-height: 16px;
    }
    .main-proposal__profit {
        font-size: 14px;
        line-height: 16px;
    }
    .main-proposal__profit span {
        font-size: 32px;
        line-height: 38px;
        margin-top: 2px;
    }
    .main-proposal__infoRow {
        margin: 16px 0 28px;
    }
    .main-proposal__infoValue {
        font-size: 16px;
        line-height: 18px;
    }
    .main-proposal__infoValue span {
        font-size: 16px;
        line-height: 18px;
    }
    .main-proposal__infoDelimiter {
        font-size: 16px;
        line-height: 18px;
        margin: 0 12px;
    }
    .main-proposal__rows {
        padding: 24px 16px;
    }
    .main-proposal__row {
        margin-bottom: 8px;
    }

    .main-calculator__content {
        padding: 32px 20px 29px;
    }
    .main-calculator__title {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 22px;
    }
    .main-calculator__row {
        flex-direction: column;
        align-items: flex-start;
    }
    .main-calculator__row .main-calculator__inputBlock {
        max-width: 100%;
    }
    .main-calculator__row .main-calculator__inputBlock:first-child {
        margin-bottom: 20px;
        margin-right: 0;
    }

    .main-contacts__formRow {
        grid-template-columns: 1fr;
        grid-row-gap: 24px;
    }
}
/*MAIN MEDIA END*/
/* ===== HERO LAYOUT ===== */
.main-header .wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

/* ===== БЛОК ОБМЕННИКА ===== */

.main-header__exchange {
    flex: 1 1 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 320px;
}

/* КРУГ / ОРБИТА (ПК) */
.exchange-orbit {
    position: relative;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 20%, rgba(70,199,163,0.22), rgba(255,255,255,0.9));
    box-shadow: 0 26px 60px rgba(0,0,0,0.08);
    overflow: visible;
}

/* внутренние орбиты (проценты, чтобы не ломалось при resize) */
.exchange-orbit::before,
.exchange-orbit::after {
    content: "";
    position: absolute;
    inset: 7%;
    border-radius: 50%;
    border: 1px solid rgba(70,199,163,0.25);
}

.exchange-orbit::after {
    inset: 12%;
    border: 1px dashed rgba(70,199,163,0.45);
    box-shadow: 0 0 18px rgba(70,199,163,0.35);
    animation: exchange-orbit-glow 6s ease-in-out infinite;
}

/* монеты */
.exchange-coin {
    position: absolute;
    width: 74px;
    height: 74px;
    border-radius: 999px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* ПРАВИЛЬНЫЕ ПОЗИЦИИ МОНЕТ (всё видно) */
.exchange-coin--usdt {
    top: 3%;               /* сверху по центру */
    left: 50%;
    transform: translateX(-50%);
}

.exchange-coin--btc {
    bottom: 11%;           /* снизу справа */
    right: 13%;
}

.exchange-coin--eth {
    bottom: 11%;           /* снизу слева */
    left: 13%;
}

/* цвета монет */
.exchange-coin--usdt { border: 2px solid #46C7A3; color: #1D3E35; }
.exchange-coin--btc  { border: 2px solid #F7931A; color: #5C3A10; }
.exchange-coin--eth  { border: 2px solid #627EEA; color: #1F2745; }

/* центр */
.exchange-center {
    position: absolute;
    inset: 28%; /* центр считается от размера круга, не ломается на мобилке */
    border-radius: 30px;
    background: linear-gradient(145deg, #46C7A3, #1BA58A);
    box-shadow: 0 18px 35px rgba(70,199,163,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 18px 22px;
    color: #ffffff;
    animation: exchange-center-pulse 4.5s ease-in-out infinite;
}

.exchange-center__label {
    font-size: 13px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.95;
}

/* вращение орбиты */
.exchange-orbit {
    animation: exchange-orbit-rotate 18s linear infinite;
}

/* ===== АДАПТИВ ===== */

@media (max-width: 960px) {
    .main-header .wrapper {
        flex-direction: column;
        text-align: left;
    }

    .main-header__exchange {
        order: -1;
        margin-bottom: 24px;
    }

    .exchange-orbit {
        width: 300px;
        height: 300px;
    }
}

/* ===== АНИМАЦИИ ===== */

@keyframes exchange-orbit-rotate {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes exchange-orbit-glow {
    0%, 100% {
        box-shadow: 0 0 18px rgba(70,199,163,0.3);
        opacity: 0.9;
    }
    50% {
        box-shadow: 0 0 26px rgba(70,199,163,0.55);
        opacity: 1;
    }
}

@keyframes exchange-center-pulse {
    0%, 100% { transform: scale(1); }
    50%     { transform: scale(1.03); }
}
/* === GRID LAYOUT LEFT + RIGHT === */
.referral-grid {
    display: grid;
    grid-template-columns: 480px 1fr;
    align-items: center;
    gap: 60px;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* === ILLUSTRATION === */
.ref-illustration {
    position: relative;
    width: 420px;
    height: 420px;
}

.ref-circle {
    position: absolute;
    border-radius: 50%;
    border: 12px solid #ececec;
    animation: spin 16s linear infinite;
}

.ref-circle.big { width: 420px; height: 420px; }
.ref-circle.mid { width: 310px; height: 310px; top: 55px; left: 55px; }
.ref-circle.small { width: 190px; height: 190px; top: 115px; left: 115px; }

.ref-center {
    position: absolute;
    inset: 150px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.07);
    display: flex;
    justify-content: center;
    align-items: center;
}

.ref-values { display: flex; flex-direction: column; gap: 10px; }
.ref-value { font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.ref-value small { display: block; font-size: 11px; opacity: .6; margin-left: 18px; }

.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot.blue { background: #3B71FF; }
.dot.cyan { background: #00C7E2; }
.dot.green { background: #21D27C; }

@keyframes spin {
    from { transform: rotate(0); }
    to   { transform: rotate(360deg); }
}

/* === RIGHT TEXT === */
.ref-levels { margin-top: 40px; display: flex; flex-direction: column; gap: 36px; }
.ref-level { border-bottom: 1px solid #e6e6e6; padding-bottom: 14px; display: flex; justify-content: space-between; }

/* === MOBILE === */
@media (max-width: 960px) {
    .referral-grid {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        gap: 30px;
    }

    .ref-illustration {
        transform: scale(0.75);
    }
}
/* ОБЩИЙ ЛЕЙАУТ */
.main-referral .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    position: relative;
}

/* ========== ИЛЛЮСТРАЦИЯ ========== */
.ref-illustration {
    position: relative;
    width: 420px;
    height: 420px;

    /* >>> СДВИГ ВПРАВО <<< */
    margin-right: -140px;
}

/* БАЗОВЫЙ КРУГ */
.ref-circle {
    position: absolute;
    border-radius: 50%;
    border: 12px solid #e8e8e8;
    opacity: 0.55;
    animation: rotation 22s linear infinite;
}

/* размеры окружностей */
.layer1 { width: 420px; height: 420px; top: 0; left: 0; animation-duration: 22s; }
.layer2 { width: 300px; height: 300px; top: 60px; left: 60px; opacity: 0.45; animation-duration: 18s; }
.layer3 { width: 180px; height: 180px; top: 120px; left: 120px; opacity: 0.35; animation-duration: 13s; }

/* СВЕЧЕНИЕ ВНЕШНЕГО КРУГА */
.layer1 {
    box-shadow: 0 0 22px rgba(70,199,163,0.25);
    animation: rotation 22s linear infinite, glow 4s ease-in-out infinite;
}

/* БЕЛАЯ КАРТОЧКА С ПРОЦЕНТАМИ */
.ref-percent-box {
    position: absolute;
    width: 130px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    top: 120px;
    left: 145px;
    font-size: 14px;
    animation: pulse 4.5s ease-in-out infinite;
}

.ref-line {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Точки */
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.dot-blue { background: #2D52F3; }
.dot-cyan { background: #16D4E0; }
.dot-green { background: #23D565; }

/* ===== БЛОК ДАННЫХ ===== */

.main-referral__row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eaeaea;
    padding: 18px 0;
}

.main-referral__rowValue {
    font-size: 22px;
    font-weight: 700;
}

.main-referral__rowLevel {
    color: #999;
    text-transform: uppercase;
    font-size: 12px;
}

/* ============ АНИМАЦИИ ============ */

@keyframes rotation {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes glow {
    0%,100% { box-shadow: 0 0 18px rgba(70,199,163,0.25); }
    50%     { box-shadow: 0 0 30px rgba(70,199,163,0.45); }
}

@keyframes pulse {
    0%,100% { transform: scale(1); }
    50%     { transform: scale(1.04); }
}

/* ========= МОБИЛКА ========= */
@media (max-width: 960px) {

    .main-referral .wrapper {
        flex-direction: column-reverse;
        text-align: center;
    }

    .ref-illustration {
        margin-right: 0;
        transform: scale(0.8);
    }
}
/* MINI ORBITS BLOCK */
.ref-left {
    display: flex;
    flex-direction: column;
}

.ref-mini-orbits {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;

    /* <<< СДВИГ ВСЕХ КРУЖКОВ ЛЕВЕЕ >>> */
    position: relative;
    left: -160px; /* измени на -60, -100 — как нужно */
}

.orbit-row {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Маленькие кружки с орбитой */
.mini-orbit {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 3px solid #e8e8e8;
    position: relative;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0); }
    100% { transform: rotate(360deg); }
}

.mini-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}

/* Цвета */
.orbit-blue { border-color: #4169E1; }
.orbit-blue .mini-dot { background: #4169E1; }

.orbit-cyan { border-color: #00C3FF; }
.orbit-cyan .mini-dot { background: #00C3FF; }

.orbit-green { border-color: #2ECC71; }
.orbit-green .mini-dot { background: #2ECC71; }

/* Текст */
.orbit-text .percent {
    font-size: 20px;
    font-weight: 600;
}

.orbit-text .label {
    font-size: 13px;
    opacity: 0.7;
}
/* === АНИМАЦИЯ ПЛАВАЮЩИХ ПРОЦЕНТОВ === */

.main-form__decor {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.float-numbers {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}

/* стиль чисел */
.float-number {
    position: absolute;
    font-size: 24px;
    font-weight: 700;
    color: rgba(0,255,100,0.75);
    opacity: 0;
    animation: floatNumber 6s linear infinite;
    text-shadow: 0 0 12px rgba(0,255,120,0.8);
}

/* Разные позиции */
.float-number:nth-child(1) { left: 10%; bottom: -40px; animation-delay: 0s; }
.float-number:nth-child(2) { left: 30%; bottom: -40px; animation-delay: .7s; }
.float-number:nth-child(3) { left: 55%; bottom: -40px; animation-delay: 1.5s; }
.float-number:nth-child(4) { left: 70%; bottom: -40px; animation-delay: 2.3s; }
.float-number:nth-child(5) { left: 85%; bottom: -40px; animation-delay: 3.0s; }
.float-number:nth-child(6) { left: 40%; bottom: -40px; animation-delay: 3.7s; }

/* Анимация движения */
@keyframes floatNumber {
    0%   { transform: translateY(0); opacity: 0; }
    15%  { opacity: .8; }
    50%  { opacity: 1; }
    100% { transform: translateY(-260px); opacity: 0; }
}
/* === CRYPTO GRID ANIMATION (ЦВЕТ ТВОЕГО ФОНА НЕ ТРОГАЕМ) === */

.main-form__decor {
    position: relative;
    overflow: hidden;
}

/* Прячем фото, раз ты хочешь заменить его анимацией */
.main-form__decorImg {
    display: none !important;
}

/* Контейнер для анимации */
.crypto-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Линии сетки — белые, прозрачные, подходят под любой фон */
.crypto-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.08); /* НЕ МЕНЯЕТ ФОН, ТОЛЬКО ЛИНИИ */
    animation: moveH 14s linear infinite;
}

.crypto-line.vertical {
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,0.08);
    animation: moveV 18s linear infinite;
}

/* Расположение линий */
.crypto-line:nth-child(1)  { top: 10%; }
.crypto-line:nth-child(2)  { top: 25%; }
.crypto-line:nth-child(3)  { top: 40%; }
.crypto-line:nth-child(4)  { top: 55%; }
.crypto-line:nth-child(5)  { top: 70%; }
.crypto-line:nth-child(6)  { top: 85%; }

.crypto-line.vertical:nth-child(7)  { left: 20%; }
.crypto-line.vertical:nth-child(8)  { left: 40%; }
.crypto-line.vertical:nth-child(9)  { left: 60%; }
.crypto-line.vertical:nth-child(10) { left: 80%; }

/* Движение */
@keyframes moveH {
    0% { transform: translateX(-25px); }
    100% { transform: translateX(25px); }
}

@keyframes moveV {
    0% { transform: translateY(-25px); }
    100% { transform: translateY(25px); }
}

/* Частицы — тоже белые, универсальные */
.crypto-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255,255,255,0.8);
    animation: dotFloat 6s ease-in-out infinite;
}

.crypto-dot:nth-child(11) { top: 20%; left: 25%; animation-delay: 0s; }
crypto-dot:nth-child(12) { top: 50%; left: 55%; animation-delay: 1.2s; }
.crypto-dot:nth-child(13) { top: 75%; left: 35%; animation-delay: 2.4s; }
.crypto-dot:nth-child(14) { top: 30%; left: 80%; animation-delay: 3.3s; }

@keyframes dotFloat {
    0% { transform: translateY(0); opacity: 0.2; }
    50% { transform: translateY(-12px); opacity: 1; }
    100% { transform: translateY(0); opacity: 0.2; }
}

/* Текст внутри блока остаётся поверх */
.main-form__decorText,
.main-form__decorButton {
    position: relative;
    z-index: 10;
}
.stats-wrapper {
    padding: 40px 0;
}

.stats-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card,
.stat-box {
    border: 1px solid #34d1b6; /* мятная, как на сайте */
    border-radius: 12px;
    padding: 20px 24px;
    background: #fff;
}

.stat-title {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 24px;
    font-weight: 600;
}

.stats-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-box-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.stat-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.stat-table th,
.stat-table td {
    padding: 8px 4px;
    text-align: left;
}

.stat-table thead th {
    font-weight: 600;
    color: #444;
}

.stat-table tbody tr:nth-child(even) {
    background: #fafafa;
}
/* FIX: языковое меню в футере должно открываться вверх */
.footer .header-lang {
    position: relative;
}

.footer .header-lang__items-wrapper {
    position: absolute;
    bottom: 100%;      /* раскрываем вверх */
    top: auto;
    left: 0;
    transform: translateY(-5px); /* небольшое смещение */
    z-index: 10;       /* чтобы было сверху */
}
.news-pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-pagination li {
    display: inline-block;
    margin: 0 6px;
}
/* ==== NEWS PAGE ==== */

.news-page {
    padding: 60px 0;
    font-size: 16px;
}

.news-heading {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.news-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 18px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-item__link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.news-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.news-item__image {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.news-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-item__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.news-item__date {
    font-size: 13px;
    color: #999999;
    margin-bottom: 10px;
}

.news-item__excerpt {
    font-size: 14px;
    line-height: 1.5;
    color: #555555;
}

/* Single news */

.news-page--single {
    max-width: 800px;
    padding: 60px 0;
}

.news-back {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 14px;
    text-decoration: none;
    color: #40c6a6;
}

.news-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
}

.news-date {
    font-size: 14px;
    color: #999999;
    margin-bottom: 20px;
}

.news-image {
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.news-full {
    font-size: 16px;
    line-height: 1.7;
}

.news-pagination {
    margin-top: 30px;
    text-align: center;
}

.news-empty {
    font-size: 16px;
    color: #777777;
}
.news-page.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
    max-width: 600px; /* ширина ленты новостей */
}
.news-list {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
}
/* ===== Footer layout fix + social icons ===== */

.footer .footer-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:48px;
  flex-wrap:nowrap;
}

.footer .footer-top__info{
  flex: 0 0 320px;
  min-width:260px;
}

.footer .footer-nav{
  flex: 1 1 auto;
  display:grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap:10px 24px;
}

.footer .footer-top__contact{
  flex: 0 0 260px;
  min-width:240px;
  display:flex;
  flex-direction:column;
  gap:14px;
}

/* Social block */
.footer-social{
  display:flex;
  gap:12px;
  align-items:center;
}

.footer-social__link{
  display:flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  font-size:14px;
}

.footer-social__icon{
  width:18px;
  height:18px;
  display:block;
}

/* Responsive */
@media (max-width: 980px){
  .footer .footer-top{
    flex-wrap:wrap;
  }
  .footer .footer-top__info,
  .footer .footer-top__contact{
    flex: 1 1 100%;
  }
  .footer .footer-nav{
    grid-template-columns: 1fr 1fr;
    width:100%;
  }
}

@media (max-width: 520px){
  .footer .footer-nav{
    grid-template-columns: 1fr;
  }
}
.social-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 8px;
}
