@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-ExtraBold.eot');
    src: url('../fonts/Inter-ExtraBoldd41d.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Inter-ExtraBold.woff2') format('woff2'),
        url('../fonts/Inter-ExtraBold.woff') format('woff'),
        url('../fonts/Inter-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.eot');
    src: url('../fonts/Inter-Boldd41d.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Inter-Bold.woff2') format('woff2'),
        url('../fonts/Inter-Bold.woff') format('woff'),
        url('../fonts/Inter-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.eot');
    src: url('../fonts/Inter-Regulard41d.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Inter-Regular.woff2') format('woff2'),
        url('../fonts/Inter-Regular.woff') format('woff'),
        url('../fonts/Inter-Regular.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

.page {
    background: #EBF0F6;
    font-family: Inter, Arial, Helvetica, sans-serif;
}

.index h2 {
    position: relative;
    font-size: 36px;
    line-height: 44px;
    color: #21212C;
    margin-top: 0px;
    margin-bottom: 30px;
    z-index: 11;
}

@media (max-width: 767px) {
    .index h2 {
        font-size: 24px;
        line-height: 36px;
    }
}

.index p {
    font-size: 16px;
    line-height: 24px;
    color: #535659;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .index p {
        font-size: 14px;
    }
}

.index a {
    transition: all 0.5s ease;
}

.index a:hover,
.index a:focus {
    text-decoration: none;
    transition: all 0.5 ease;
}

.index section {
    margin-bottom: 120px;
}

@media (max-width: 767px) {
    .index section {
        margin-bottom: 50px;
    }
}

.swiper-pagination-bullet-active {
    background: #49515B;
}

.index__header {
    position: relative;
    display: grid;
    grid-template-areas: "title stat"
                         "btns  stat";
    grid-template-columns: 1fr auto;
    margin-top: 60px;
}

@media (max-width: 992px) {
    .index__header {
        grid-template-areas: "title title"
                             "stat   stat"
                             "btns   btns";
    }
}

@media (max-width: 576px) {
    .index__header {
        margin-top: 20px;
    }
}

.index__header-btns {
    grid-area: btns;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 200px;
}

@media (max-width: 992px) {
    .index__header-btns {
        padding-right: 50px;
    }
}

@media (max-width: 576px) {
    .index__header-btns {
        /* display: flex; */
        padding-right: 0;
        flex-direction: column;
    }
}

.index__header-btn {
    display: inline-block;
    color: #FFFFFF;
    background: #F7931A;
    border-radius: 2px;
    font-weight: bold;
    font-size: 20px;
    line-height: 17px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 20px 35px;
    margin-bottom: 10px;
    text-align: center;
}

@media (max-width: 576px) {
    .index__header-btn {
        display: block;
        width: 100%;
    }
}

.index__header-btn:hover,
.index__header-btn:focus {
    color: #FFFFFF;
    background: #C67615;
}

.index__header-arrow {
    transform: rotate(90deg);
    margin-right: 15px;
}

.index__header-arrow-container {
    display: flex;
    align-items: center;
}

@media (max-width: 576px) {
    .index__header-arrow-container {
        display: none;
    }
}

.index__header-video-link-mob {
    color: #F7931A;
    border: 2px solid #F7931A;
    border-radius: 2px;
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 13px 25px;
    text-align: center;
    display: none;
    width: 100%;
}

.index__header-video-link-mob:hover,
.index__header-video-link-mob:focus {
    border: 2px solid #C67615;
    color: #C67615;
}

@media (max-width: 576px) {
    .index__header-video-link-mob {
        display: inline;
    }
}

.index__header-title {
    grid-area: title;
    font-size: 56px;
    line-height: 72px;
    color: #21212C;
    max-width: 650px;
    margin-bottom: 40px;
    z-index: 10;
}

@media (max-width: 762px) {
    .index__header-title {
        font-size: 30px;
        line-height: 40px;
    }
}

.index__header-statistic {
    grid-area: stat;
    box-shadow: 0px 12px 30px rgba(217, 225, 234, 0.25);
    padding-bottom: 20px;
    z-index: 10;
}

@media (max-width: 576px) {
    .index__header-statistic {
        border-radius: 12px;
        height: 158px;
    }
}

@media (max-width: 576px) {
    .index__header-statistic-wrapper {
        padding-bottom: 35px;
    }
}

.index__header-statistic-item {
    background: #FFFFFF;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    min-width: 280px;
}

.index__header-statistic-item:not(:last-child) {
    border-bottom: 1px solid #D9E1EA;
}

.index__header-statistic-item:first-child {
    border-radius: 12px 12px 0px 0px;
}

.index__header-statistic-item:last-child {
    border-radius: 0px 0px 12px 12px;
}

@media (max-width: 576px) {
    .index__header .index__header-statistic-item {
        border-radius: 12px;
    }
}

.index__header .index__header-statistic-item-value {
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    color: #F7931A;
    margin-bottom: 10px;
}

.index__header .index__header-statistic-item-text {
    font-weight: 500;
    font-size: 13px;
    line-height: 36px;
    color: rgba(33, 33, 44, 0.5);
    margin-bottom: 0px;
}

.index__header-statistic-item-logo {
    align-self: center;
}

.index__header-arrow-text {
    font-size: 14px;
    line-height: 24px;
    max-width: 200px;
    text-align: center;
    color: #21212C;
    opacity: 0.45;
}

.index__header-blured-coin {
    position: absolute;
    right: -25px;
    bottom: 24%;
    filter: blur(2px);
    z-index: 10;
}

@media (max-width: 576px) {
    .index__header-blured-coin {
        display: none;
    }
}

.index__header-big-coin {
    position: absolute;
    right: -10%;
    top: 10%;
    z-index: 10;
}

@media (max-width: 992px) {
    .index__header-big-coin {
        right: -10%;
        top: 0%;
    }
}

@media (max-width: 576px) {
    .index__header-big-coin {
        right: -15%;
        top: -10%;
    }
}

.index__header-small-coin {
    position: absolute;
    right: 29%;
    top: 40%;
    z-index: 10;
}

@media (max-width: 992px) {
    .index__header-small-coin {
        right: 29%;
        top: -10%;
    }
}

@media (max-width: 576px) {
    .index__header-small-coin {
        right: 20%;
        top: 30%;

        z-index: 0;
    }
}

.index__header-bg {
    position: absolute;
    width: 800px;
    height: auto;
    right: -25%;
    top: -28%;
    z-index: 0;
}

@media (max-width: 992px) {
    .index__header-bg {
        width: 500px;
        right: -25%;
        top: -20%;
    }
}

@media (max-width: 576px) {
    .index__header-bg {
        right: -250px;
        top: -200px;
    }
}

/* ==================================================== */

section.index__supply-switcher {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
}

.index__supply-switcher-body {
    height: 55px;
    width: 400px;
    background-color: #DCE2EA;
    border-radius: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    cursor: pointer;

    position: relative;
}

.index__supply-switcher-item {
    z-index: 2;
}

.index__supply-switcher-btn {
    height: 55px;
    width: 50%;
    background-color: #FFFFFF;
    border-radius: 30px;

    position: absolute;
    transition: all 300ms;
    z-index: 1;

    left: 0;
}

.index__supply-switcher-btn--checked {
    left: 50%;
}

.index__supply-switcher-img--bf {
    transform: translateY(-3px);
}

@media (max-width: 767px) {
    .index__supply-switcher-img--wattum {
        width: 120px;
    }

    .index__supply-switcher-img--bf {
        width: 120px;
    }
}

/* ==================================================== */


.index__supplier {
    position: relative;
    display: grid;
    grid-template-columns: 46% 46%;
    grid-gap: 8%;
}

@media (max-width: 992px) {
    .index__supplier {
        grid-template-columns: auto;
        grid-gap: 10px;
    }
}

.index__supplier-img img {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1;
}

.index__supplier-content {
    position: relative;
    /* padding-bottom: 35px; */
}

.index__supplier-logo {
    position: absolute;
    bottom: 0px;
}

.index__supplier-bg {
    position: absolute;
    left: -35%;
    bottom: -100%;
    width: 500px;
    z-index: 0;
}

.index__supplier-bg img {
    width: 100%;
}

@media (max-width: 992px) {
    .index__supplier-bg img {
        display: none;
    }
}

.index__supplier-text--last {
    margin-bottom: 0 !important;
}

.index__results .index__results-title {
    text-align: center;
    margin-bottom: 60px;
}

@media (max-width: 767px) {
    .index__results .index__results-title {
         margin-bottom: 30px;
    }
}

.index__results-main {
    display: grid;
    grid-template-areas:
        "a a b b c c"
        ". d d e e .";
        grid-gap: 20px;
}

@media (max-width: 767px) {
    .index__results-main {
        grid-template-areas:
            "a"
            "b"
            "c"
            "d"
            "e";
    }
}

.index__results-item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 30px;
    max-width: 300px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .index__results-item {
        margin-bottom: 0px;
    }
}

@media (max-width: 767px) {
    .index__results-item {
        max-width: 500px;
    }
}

.index__results-item--first{
    grid-area: a;
}

.index__results-item--second{
    grid-area: b;
}

.index__results-item--third{
    grid-area: c;
}

.index__results-item--fourth{
    grid-area: d;
}

.index__results-item--fifth{
    grid-area: e;
}


.index__results-item-icon {
    height: 64px;
    width: auto;
}

@media (max-width: 767px) {
    .index__results-item-icon {
        height: 48px;
    }
}

.index__results .index__results-item-title {
    margin-bottom: 0px;
}

.index__data-centers {
    display: grid;
    grid-template-columns: 60% 30%;
    grid-gap: 10%;
}

@media (max-width: 992px) {
    .index__data-centers {
        grid-template-columns: 50% 40%;
    }
}

@media (max-width: 767px) {
    .index__data-centers {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
}

.index__data-centers-text + .index__data-centers-text {
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .index__data-centers-text {
        display: none;
    }
}

.index__data-centers-toggler {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 600px;
    max-width: 100%;
    height: 55px;
    border-radius: 30px;
}

@media (max-width: 767px) {
    .index__data-centers-toggler {
        margin-left: auto;
        margin-right: auto;
    }
}


@media (max-width: 576px) {
    .index__data-centers-toggler {
        width: 100%;
    }
}

.index__data-centers-toggler-item {
    padding: 17px 0px;
    height: 100%;
    z-index: 2;
    cursor: pointer;
    width: 20%;
    text-align: center;
}

@media (min-width: 992px) {
    .index__data-centers-short-name {
        display: none;
    }
}

@media (max-width: 992px) {
    .index__data-centers-long-name {
        display: none;
    }
}

.index__data-centers-toggler-btn {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 25%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 30px;
    z-index: 1;
    transition: all 0.3s ease;
}

.index__data-centers-toggler-btn--wattum {
    width: 33%;
}

.index__data-centers-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

@media (max-width: 767px) {
    .index__data-centers-img-container {
    height: 265px;

    }
}

.index__data-centers-img {
    position: absolute;
    max-width: 100%;
    max-height: 265px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
}

.index__data-centers-img--active {
    visibility: visible;
    opacity: 1;
}

.index__plan {
    position: relative;
}

.index__plan .index__plan-title {
    text-align: center;
    margin-bottom: 50px;
}

.index__plan-man-bg {
    position: absolute;
    top: 70px;
    right: 7%;
    z-index: 2;
}

@media (max-width: 992px) {
    .index__plan-man-bg {
        width: 200px;
    }
}

@media (max-width: 767px) {
    .index__plan-man-bg {
        display: none;
    }
}

.index__plan-upper-bg {
    position: absolute;
    top: 50px;
    right: 35%;
    z-index: 10;
}

@media (max-width: 767px) {
    .index__plan-upper-bg {
        display: none;
    }
}

.index__plan-right-bg {
    position: absolute;
    bottom: 30%;
    right: -200px;
}

.index__plan-left-bg {
    position: absolute;
    top: 40%;
    left: -200px;
}

.index__mine-myself {
    position: relative;
}

.index__mine-myself-header {
    display: grid;
    grid-template-columns: 49% 49%;
    grid-gap: 2%;
    padding-bottom: 20px;
}

@media (max-width: 576px) {
    .index__mine-myself-header {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
}

.index__mine-myself-title {
    width: 300px;
}

.index__mine-myself-header img{
    width: 100%;
    height: auto;
}

@media (max-width: 576px) {
    .index__mine-myself-content {
        grid-row: 1;
    }
}

.index__mine-myself-text {
    padding-right: 50px;
}

@media (max-width: 576px) {
    .index__mine-myself-text {
        padding-right: 0;    }
}

.index__mine-myself-header-swiper-pagination {
    bottom: -5px !important;
}

.index__mine-myself-header-swiper-pagination .swiper-pagination-bullet {
    width: 50px;
    border-radius: 10px;
    height: 4px;
}

.index__mine-myself-header-swiper-pagination .swiper-pagination-bullet-active {
    background-color: #F7931A;
}

.index__mine-myself-subtitle {
    position: relative;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
    color: #21212C;
    margin-bottom: 50px;
    margin-top: 50px
}

@media (max-width: 992px) {
    .index__mine-myself-subtitle {
        font-size: 20px;
        text-align: left;
        margin-bottom: 30px;

    }
}

.index__mine-myself-items-block {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 100px;
    z-index: 1;
}

@media (max-width: 767px) {
    .index__mine-myself-items-block {
        grid-gap: 30px;
    }
}

@media (max-width: 576px) {
    .index__mine-myself-items-block {
        grid-template-columns: 1fr;
        grid-gap: 0px;
        padding-left: 30px;
    }
}

.index__mine-myself-item-title {
    position: relative;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #21212C;
}

.index__mine-myself-item-title:before {
    content: "";
    position: absolute;
    top: 6px;
    left: -15px;
    width: 8px;
    height: 8px;
    border: 1.5px solid #F7931A;
    box-sizing: border-box;
    border-radius: 6px;
}

.index__mine-myself-lower-subtitle {
    font-size: 22px;
    line-height: 32px;
    text-align: center;
    color: #21212C;
    margin-top: 50px;
    padding: 0px 15%;
}

@media (max-width: 992px) {
    .index__mine-myself-lower-subtitle {
        padding: 0px;
        font-size: 20px;
    }
}

@media (max-width:567px) {
    .index__mine-myself-lower-subtitle {
        display: none;
    }
}

.index__mine-myself-bg {
    position: absolute;
    right: -30%;
    bottom: 10%;
    width: 450px;
    z-index: 0;
}

@media (max-width: 992px) {
    .index__mine-myself-bg {
        display: none;
    }
}

.index__mine-myself-bg img {
    width: 100%;
}

.index__demo {
    position: relative;
    background: linear-gradient(180deg, #FFAD49 0%, #F7931A 100%);
    border-radius: 12px;
    display: grid;
    grid-template-columns: 400px 400px;
    grid-gap: 50px;
}

@media (max-width: 992px) {
    .index__demo {
        grid-template-columns: 200px auto;
    }
}

@media (max-width: 576px) {
    .index__demo {
        grid-gap: 0px;
        grid-template-columns: auto;
    }
}

.index__demo-img-wrapper {
    position: relative;
    z-index: 10;
}

.index__demo-text-block {
    padding: 100px 0px;
}

@media (max-width: 992px) {
    .index__demo-text-block {
        padding: 50px 0px;
    }
}

@media (max-width: 576px) {
    .index__demo-text-block {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

.index__demo-img {
    position: absolute;
    bottom: 0px;
    width: 100%;
}

@media (max-width: 576px) {
    .index__demo-img {
        display: none;
    }
}

.index__demo .index__demo-title,
.index__demo-btn {
    color: #FFFFFF;
    z-index: 10;
}

.index__demo-btn {
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-sizing: border-box;
    border-radius: 2px;
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 15px 25px;
}

.index__demo-btn:hover,
.index__demo-btn:focus {
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
}

@media (max-width: 576px) {
    .index__demo .index__demo-title {
        font-size: 24px;
        line-height: 32px;
        text-align: center;
    }
}

.index__demo-big-coin {
    position: absolute;
    right: 110px;
    bottom: 40px;
}

@media (max-width: 992px) {
    .index__demo-big-coin {
        display: none;
    }
}

.index__demo-small-coin {
    position: absolute;
    transform: rotate(-45deg);
    right: 45%;
    top: -40px;
}

@media (max-width: 992px) {
    .index__demo-small-coin {
        right: 5%;
        top: -15%;
    }
}

.index__demo-small-blur-coin {
    position: absolute;
    filter: blur(2px);
    left: 11%;
    bottom: 25%;
    z-index: 10;
}

@media (max-width: 992px) {
    .index__demo-small-blur-coin {
        left: 5%;
        bottom: -15%;
    }
}

.index__demo-bg {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    pointer-events: none;
}

/* ========================================= CLIENTS ================================= */

.index__clints-item {
    height: 220px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .index__clints-item {
        height: 240px;
    }
}

.index__clients-item-text {
    margin-bottom: 15px !important;
}

.index__clients-item-link {
    margin-left: 10px;
    text-transform: lowercase;
    color: #F7931A;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.index__clients-item-link:hover {
    color: #F7931A;
    text-decoration: underline !important;
    text-underline-offset: 4px;
}

.index__clients-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 992px) {
    .index__clients-item-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

.index__clients-swiper-pagination {
    bottom: -5px !important;
}

/* ========================================= WHY ================================= */

.index__why-h24 {
    margin-bottom: 100px;
}

.index__why-h24-items-block {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10%;
}

@media (max-width: 576px) {
    .index__why-h24-items-block {
        grid-template-columns: 1fr;
        grid-gap: 0px;
        padding-left: 30px;
    }
}

.index__why-h24-title {
    text-align: center;
}

.index__why-h24-item-title {
    position: relative;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #21212C;
}

.index__why-h24-item-title:before {
    content: '';
    position: absolute;
    background-image: url('../i/index_page/why_h24_check.png');
    width: 12px;
    height: 8px;
    background-size: 12px 8px;
    top: 8px;
    left: -15px;
}

.index__why-h24-item-link {
    color: #F7931A;
    transition: all 0.3s ease;
}

.index__why-h24-item-link:hover,
.index__why-h24-item-link:focus {
    color: #C67615;
}

.index__trading-room {
    position: relative;
    background: #E3E8ED;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 500px auto;
    grid-gap: 50px;
    margin-bottom: 120px;
}

@media (max-width: 992px) {
    .index__trading-room {
        grid-template-columns: 3fr 2fr;
        padding-left: 30px;
    }
}

@media (max-width: 576px) {
    .index__trading-room {
        grid-gap: 0px;
        grid-template-columns: auto;
        padding-left: 0px;
        background: none;
    }
}

.index__trading-room-img-wrapper {
    position: relative;
}

.index__trading-room-img {
    position: absolute;
    bottom: 0px;
    right: -20px;
    width: 100%;
}

@media (max-width: 992px) {
    .index__trading-room-img {
        width: 130%;
    }
}

@media (max-width: 576px) {
    .index__trading-room-img {
        display: none;
    }
}

.index__trading-room-text-block {
    padding: 100px 0px 100px 70px;
}

@media (max-width: 992px) {
    .index__trading-room-text-block {
        padding: 50px 0px 50px 30px;
    }
}

@media (max-width: 576px) {
    .index__trading-room-text-block {
        padding: 0px 0px 0px 20px;
    }
}

.index__trading-room-title {
    font-weight: 500;
    position: relative;
}

.index__trading-room-title:before {
    content: '';
    position: absolute;
    background-image: url('../i/index_page/trading_room_check.svg');
    width: 30px;
    height: 20px;
    background-size: 30px 20px;
    top: 10px;
    left: -40px;
}

@media (max-width: 576px) {
    .index__trading-room-title:before {
        width: 15px;
        height: 10px;
        background-size: 15px 10px;
        top: 10px;
        left: -20px;
    }
}

@media (max-width: 576px) {
    .index__trading-room .index__trading-room-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 20px;
    }
}

.index__trading-room .index__trading-room-title,
.index__trading-room-btn {
    color: #2C2C33;
}

.index__trading-room-big-coin {
    position: absolute;
    left: 42%;
    bottom: 97px;
}

@media (max-width: 1200px) {
    .index__trading-room-big-coin {
        bottom: -50px;
    }
}

@media (max-width: 992px) {
    .index__trading-room-big-coin {
        display: none;
    }
}

.index__trading-room-small-coin {
    position: absolute;
    transform: rotate(-65deg);
    left: 30%;
    top: -30px;
}

@media (max-width: 992px) {
    .index__trading-room-small-coin {
        top: auto;
        bottom: -30px;
    }
}

@media (max-width: 576px) {
    .index__trading-room-small-coin {
        display: none;
    }
}

.index__trading-room-small-blur-coin {
    position: absolute;
    filter: blur(2px);
    right: -30px;
    top: 40px;
}

@media (max-width: 767px) {
    .index__trading-room-small-blur-coin {
        right: 50px;
        top: -40px;
    }
}

@media (max-width: 576px) {
    .index__trading-room-small-blur-coin {
        display: none;
    }
}

.index__trading-room-bg {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    filter: invert(0.40);
    pointer-events: none;
}

@media (max-width: 576px) {
    .index__trading-room-bg {
        display: none;
    }
}


@media (max-width: 576px) {
    .index__partners {
        background: #FFFFFF;
        border-radius: 10px;
        padding-top: 35px;
        padding-bottom: 50px;
    }
}

.index__partners .index__partners-title {
    text-align: center;
    margin-bottom: 50px;

}

@media (max-width: 767px) {
    .index__partners .index__partners-title {
        margin-bottom: 30px;
    }
}

.index__partners-container {
    display: flex;
    justify-content: space-between;
}

.index__partners-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .index__partners-item {
        width: 150px;
        text-align: center;
    }
}

.index__blog {
    margin-bottom: 110px;
}

.index__blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .index__blog-header {
        margin-bottom: 0px;
    }
}

.index__blog .index__blog-title {
    margin-bottom: 0px;
}

.index__blog-link {
    border: 1px solid #DCDDE7;
    box-sizing: border-box;
    border-radius: 2px;
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 15px 25px;
    color: #21212C;
    opacity: 0.7;
    text-align: center;
}

.index__blog-link:hover,
.index__blog-link:focus {
    border: 1px solid #21212C;
    color: #21212C;
}

.index__blog-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
    height: 220px;
}

@media (max-width: 992px) {
    .index__blog-main {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .index__blog-main {
        display: flex;
        grid-gap: 0px;
    }
}

.index__blog-article {
    height: 100%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 80px 25px 60px 25px;
    border-radius: 12px;
    border: 1px solid #D4DCE7;
}

.index__blog-article-icon {
    position: absolute;
    top: 25px;
    left: 25px;
}

.index__blog .index__blog-article-title {
    font-size: 17px;
    line-height: 24px;
    color: #363636;
    margin-bottom: 0px;
}

.index__blog-article-link {
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #F7931A;
    position: absolute;
    left: 25px;
    bottom: 25px;
}

.index__blog-article-link:hover,
.index__blog-article-link:focus {
    color: #C67615;
}

.index__blog-article-link:after {
    content: '';
    position: absolute;
    background-image: url('../i/index_page/blog_arrow.png');
    width: 20px;
    height: 8px;
    background-size: 20px 8px;
    top: 5px;
    right: -30px;
}

@media (max-width: 992px) {
    .index__blog-article-link {
        left: 15px;
        bottom: 15px;
    }
}

.index__models {
    position: relative;
    margin-bottom: 120px;
}

@media (max-width: 992px) {
    .index__models {
        margin-bottom: 50px;
    }
}

.index__models img {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 10;
}

.index__models-title {
    text-align: center;
}

.index__models-bg {
    position: absolute;
    left: -30%;
    bottom: -10%;
    width: 300px;
    z-index: 0;
}

@media (max-width: 992px) {
    .index__models-bg {
        display: none;
    }
}

.index__models-bg img {
    width: 100%;
    height: auto;
    z-index: 0;
}

.index__how-start {
    position: relative;
    margin-bottom: 120px;
}

.index__how-start .index__how-start-title {
    text-align: center;
    margin-bottom: 50px;
}

.index__how-start-item-img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.index__how-start-item-img {
    margin: 0 auto;
}

.index__how-start-item-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 42px;
    text-align: center;
    color: #21212C;
}

.index__how-start-item .index__how-start-item-text {
    font-size: 15px;
    line-height: 22px;
    text-align: center;
    margin-bottom: 0px;
}

.index__how-start-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 15%;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .index__how-start-main {
        grid-gap: 5%;
    }
}

@media (max-width: 576px) {
    .index__how-start-main {
        grid-gap: 0px;
    }
}

.index__how-start-btn-container {
    display: flex;
    justify-content: center;
}

.index__how-start-btn {
    color: #FFFFFF;
    background: #F7931A;
    border-radius: 2px;
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 15px 25px;
}

.index__how-start-btn:hover,
.index__how-start-btn:focus {
    color: #FFFFFF;
    background: #C67615;
}

.index__how-start-arrow {
    position: absolute;
}

.index__how-start-arrow--left {
    left: 32%;
    bottom: 66%;
}

.index__how-start-arrow--right {
    right: 32%;
    bottom: 66%;
}

@media (max-width: 576px) {
    .index__how-start-arrow--left,
    .index__how-start-arrow--right {
        display: none;
    }
}

@media (max-width: 756px) {
    .index__info {
        display: none;
    }
}

.index__info-list {
    list-style-image: url('../i/index_page/info_bullet.png');
}

.index__info-title {
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.index__info-columns {
    column-width: 48%;
	column-count: 2;
	column-gap: 4%;
}

.index__info-item-title {
    font-size: 24px;
    line-height: 32px;
    color: #21212C;
}

.index__about-us {
    margin-bottom: 120px;
}

.index__about-us-title {
    text-align: center;
}

.index__about-us-slider-container {
    position: relative;
    height: 100%;
    width: 180%;
    transform: translate(-20.5%, 0%);
}

@media (max-width: 992px) {
    .index__about-us-slider-container {
        width: 100%;
        transform: translate(0%, 0%);
    }
}

.index__about-us .swiper-wrapper {
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .index__about-us-swiper-pagination {
        display: none;
    }
}

.index__about-us-slider-container .swiper-slide {
    position: relative;
    width: 350px;
    font-size: 18px;
    background: #fff;
    border-radius: 12px;
    padding: 25px 30px;
    cursor: pointer;
}

.index__about-us-item {
    height: 220px;
}

.index__about-us-quotes {
    margin-bottom: 10px;
}

.index__about-us-item-logo {
    position: absolute;
    left: 25px;
    bottom: 25px;
}

.index__about-us-slider-left-mask {
    position: absolute;
    width: 20%;
    height: 100%;
    background: linear-gradient(90deg, rgba(235,240,246,1) 25%, rgba(235,240,246,0) 50%);
    z-index: 999;
    left: -5px;
}

.index__about-us-slider-right-mask {
    position: absolute;
    width: 20%;
    height: 100%;
    background: linear-gradient(90deg, rgba(235,240,246,0) 0%, rgba(235,240,246,1) 50%);;
    z-index: 999;
    right: -5px;
}

@media (max-width: 992px) {
    .index__about-us-slider-left-mask,
    .index__about-us-slider-right-mask {
        display: none;
    }
}

.index .index__office {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 50px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .index .index__office {
        margin-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .index .index__office {
        grid-template-columns: 1fr 200px;
        grid-gap: 0px;
        margin-bottom: 50px;
    }
}

@media (max-width: 576px) {
    .index__office {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.index__office-content {

}

@media (max-width: 576px) {
    .index__office-content {
        grid-row: 1;
        grid-column: 1/3;
        z-index: 2;
    }
}

.index__office-text-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 80px;
}

@media (max-width: 992px) {
    .index__office-text-block {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
}

.index__office-link {
    position: relative;
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #F7931A;
}

.index__office-link:after {
    content: '';
    position: absolute;
    background-image: url('../i/index_page/blog_arrow.png');
    width: 20px;
    height: 8px;
    background-size: 20px 8px;
    top: 6px;
    right: -25px;
}

.index__office-link:hover {
    color: #C67615;
}

.index__office-contacts p {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #21212C;
    margin-bottom: 10px;
}

.index__office .index__office-contacts-email p {
    text-decoration: underline;
}

.index__office-img {
    width: 100%;
    max-width: 315px;
    transform: translate(0px, -100px)
}

@media (max-width: 992px) {
    .index__office-img {
        transform: translate(0px, -50px)
    }
}

@media (max-width: 767px) {
    .index__office-img {
        transform: translate(0px, 0px)
    }
}

@media (max-width: 576px) {
    .index__office-img {
        grid-row: 1;
        grid-column: 2/4;
        z-index: 1;
    }
}

/* Halving popup */

.index-popup {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 50px 38px 40px;

    /* width: 100%; */
    /* max-width: 650px; */
}

.index-popup__title {
    font-size: 24px;
    font-weight: 600;

    margin-bottom: 32px;
}

.index-popup__note {
    font-size: 18px;
    color: #747474;
    margin-bottom: 24px;
}

.index-popup__num-block {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 570px;

    margin-bottom: 24px;
}

.index-popup__num-item {
    width: 100%;

    border-radius: 12px;
    overflow: hidden;
}

.index-popup__num-item-header {
    background: #F2F2F2;
    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 64px;
    font-weight: 700;

    padding: 26px 0;
    border-radius: 12px;
}

@media (max-width: 576px) {
    .index-popup__num-item-header {
        font-size: 32px;
        padding: 10px 0;
    }
}

.index-popup__num-item-text {
    display: flex;
    justify-content: center;

    font-size: 14px;
    font-weight: 600;
    color: #909090;

    padding: 10px 0;
}

.index-popup__num-item-footer {
    background: linear-gradient(90deg, #F7C863 0%, #F1953B 100%);
    height: 5px;
}

.index-popup__dot-block {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    padding-top: 50px;
}

.index-popup__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #F2F2F2;
    margin: 0 9px;
    margin-bottom: 12px;
}

.index-popup__lower-title {
    font-size: 24px;
    font-weight: 600;

    margin-bottom: 16px;
}

.index-popup__btn:hover {
    text-decoration: none;
}
