@charset "UTF-8";
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Replicates the browser default <h3> appearance for elements converted
   from <h3> to <div class="h3">. Kept early so more specific / later
   class rules (e.g. .text-24, container ".h3" rules) still override it. */
.h3 {
    display: block;
    font-weight: bold;
    font-size: 1.17em;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    transition: all ease-in 0.2s;
}

a:hover {
    color: #0064C0;
}

a:active {
    color: #2088E8;
}

a:disabled {
    color: #A7AAB3;
    cursor: not-allowed;
}

button {
    cursor: pointer;
}

body {
    font-family: "Inter", sans-serif;
    font-style: normal;
}

body.hidden {
    overflow: clip;
}

@media (max-width: 992px) {
    body.hidden {
        overflow-y: clip;
    }
}

html {
    scroll-behavior: smooth;
}

.wrapper {
    overflow-x: clip;
}

.container {
    max-width: 1230px;
    padding: 0 15px;
    margin: 0 auto;
}

@media (max-width: 1230px) {
    .container {
        max-width: 962px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 640px;
    }
}

@media (max-width: 640px) {
    .container {
        max-width: 450px;
    }
}

.btn_blue {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 8px;
    background: #0076E2;
    width: 240px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease-in 0.3s;
    border: 2px solid transparent;
}

.btn_blue:disabled {
    cursor: not-allowed;
    background: #A7AAB3;
}

.btn_blue:focus {
    background: #0076E2;
    border-color: #0064C0;
}

.btn_blue:active {
    background: #2088E8;
}

.btn_blue:hover:not(:disabled) {
    background: #0064C0;
    color: #FFF;
}

section .swiper-wrapper {
    height: unset;
}

.section_title {
    color: #202838;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 60px;
    text-align: center;
}

.section_title.white {
    color: #fff;
}

@media (max-width: 992px) {
    .section_title {
        font-size: 30px;
    }
}

@media (max-width: 640px) {
    .section_title {
        font-size: 25px;
        margin-bottom: 30px;
    }
}

.white_boxs {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

@media (max-width: 1230px) {
    .white_boxs {
        gap: 15px;
    }
}

.white_boxs .white_box {
    border-radius: 21px;
    background: #FFF;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.05), 0px 4px 24px 0px rgba(0, 0, 0, 0.05);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: calc(33.33% - 20px);
    transition: all ease-in 0.3s;

    &:hover {
        transform: translateY(-15px);
    }
}

@media (max-width: 1230px) {
    .white_boxs .white_box {
        width: calc(33.33% - 10px);
    }
}

@media (max-width: 992px) {
    .white_boxs .white_box {
        width: calc(50% - 7.5px);
    }
}

@media (max-width: 640px) {
    .white_boxs .white_box {
        width: 100%;
    }
}

.white_boxs .white_box h5, .white_boxs .white_box .h3, .white_boxs .white_box h3 {
    color: #202838;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: start;
    gap: 15px;
}

@media (max-width: 640px) {
    .white_boxs .white_box h5, .white_boxs .white_box .h3, .white_boxs .white_box h3 {
        font-size: 18px;
    }
}

.white_boxs .white_box p {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .white_boxs .white_box p {
        font-size: 14px;
    }
}

.white_boxs .white_box img {
    max-width: 25px;
}

@media (max-width: 992px) {
    .white_boxs.tab_w_100 .white_box {
        width: 100%;
    }
}

.white_boxs.tab_w_100 .white_box h5 {
    align-items: start;
}

.gslide-image img {
    max-width: 94%;
    max-height: 97vh;
}

.swiper-buttons {
    display: flex;
    align-items: center;
    gap: 6px;
    position: absolute;
    right: 15px;
    top: -90px;
}

@media (max-width: 640px) {
    .swiper-buttons {
        top: auto;
        right: 0;
        left: 0;
        margin: 0 auto;
        justify-content: center;
    }
}

.swiper-buttons .swiper-btn {
    display: flex;
    width: 42px;
    height: 42px;
    padding: 13px;
    justify-content: center;
    align-items: center;
    border-radius: 42px;
    background: #FFF;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.05), 0px 2px 8px 0px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all ease-in 0.2s;
}

.swiper-buttons .swiper-btn.swiper-next img {
    transform: rotate(180deg);
}

.swiper-buttons .swiper-btn:hover {
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.1), 0 2px 8px 0 rgba(0, 0, 0, 0.1);
}

.swiper-buttons .swiper-btn:active {
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.05), 0 2px 8px 0 rgba(0, 0, 0, 0.05);
}

@media (max-width: 640px) {
    .swiper-buttons .swiper-btn {
        width: 30px;
        height: 30px;
        padding: 9px;
    }

    .swiper-buttons .swiper-btn img {
        width: 100%;
        max-width: 100%;
    }
}

.hero_tmp {
    background: linear-gradient(179deg, rgba(255, 255, 255, 0.5) 0.75%, rgba(139, 191, 239, 0.2) 45.06%, rgba(255, 255, 255, 0.5) 99.23%), url(../imgs/main_hero_fon.png);
    background-repeat: no-repeat;
    padding-top: 292px;
    padding-bottom: 169px;
    margin-top: -100px;
    position: relative;
    z-index: -1;
    background-size: cover;
    background-position-x: right;
}

.hero_tmp.bg_blue_tmp {
    background: linear-gradient(179deg, rgba(255, 255, 255, 0.5) 0.75%, rgba(139, 191, 239, 0.2) 45.06%, rgba(255, 255, 255, 0.5) 99.23%);
    background-repeat: no-repeat;
    background-size: cover;
}

.hero_tmp.about_hero {
    background: linear-gradient(179deg, rgba(255, 255, 255, 0.5) 0.75%, rgba(139, 191, 239, 0.2) 45.06%, rgba(255, 255, 255, 0.5) 99.23%), url(../imgs/about_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center, calc(100% + 197px) top;
}

@media (max-width: 1230px) {
    .hero_tmp {
        background-position-x: right;
        padding-top: 140px;
        margin-top: 0;
    }
}

@media (max-width: 992px) {
    .hero_tmp {
        padding-top: 100px;
        padding-bottom: 177px;
    }
}

@media (max-width: 640px) {
    .hero_tmp {
        padding-bottom: 102px;
    }
}

.hero_tmp .hero_tmp_block .hero_tmp_title {
    color: #202838;
    font-family: Inter;
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .hero_tmp .hero_tmp_block .hero_tmp_title {
        font-size: 35px;
        margin-bottom: 15px;
    }
}

@media (max-width: 640px) {
    .hero_tmp .hero_tmp_block .hero_tmp_title {
        font-size: 25px;
    }
}

.hero_tmp .hero_tmp_block .hero_tmp_subtitle {
    color: #202838;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .hero_tmp .hero_tmp_block .hero_tmp_subtitle {
        font-size: 16px;
        max-width: 84%;
    }
}

@media (max-width: 640px) {
    .hero_tmp .hero_tmp_block .hero_tmp_subtitle {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .hero_tmp .hero_tmp_block .hero_tmp_subtitle br {
        display: none;
    }
}

.advan_tmp {
    position: relative;
    z-index: 2;
}

.advan_tmp .white_boxs_tmp {
    margin-top: -72px;
    padding-bottom: 90px;
}

@media (max-width: 640px) {
    .advan_tmp .white_boxs_tmp {
        margin-top: -12px;
    }
}

.white_boxs_tmp {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

@media (max-width: 1230px) {
    .white_boxs_tmp {
        gap: 15px;
    }
}

.white_boxs_tmp .white_box_tmp {
    border-radius: 21px;
    background: #FFF;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.05), 0px 4px 24px 0px rgba(0, 0, 0, 0.05);
    padding: 30px;
    display: flex;
    gap: 15px;
    width: calc(33.33% - 20px);
    align-items: center;
}

@media (max-width: 1230px) {
    .white_boxs_tmp .white_box_tmp {
        width: calc(33.33% - 10px);
    }
}

@media (max-width: 992px) {
    .white_boxs_tmp .white_box_tmp {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .white_boxs_tmp .white_box_tmp {
        width: 100%;
    }
}

.white_boxs_tmp .white_box_tmp h5 {
    color: #202838;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 640px) {
    .white_boxs_tmp .white_box_tmp h5 {
        font-size: 18px;
    }
}

.white_boxs_tmp .white_box_tmp p {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .white_boxs_tmp .white_box_tmp p {
        font-size: 14px;
    }
}

.swiper_blue_tmp {
    width: 100%;
}

.swiper_blue_tmp .swiper-wrapper {
    padding-bottom: 40px;
}

.swiper_blue_tmp .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper_blue_tmp .swiper-pagination-bullet-active {
    width: 154px;
    border-radius: 24px;
    background: #0076E2;
}

@media (max-width: 640px) {
    .swiper_blue_tmp .swiper-pagination-bullet-active {
        width: 51px;
    }
}

.news_articles_block {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

@media (max-width: 992px) {
    .news_articles_block {
        gap: 15px;
    }
}

.news_articles_block .articles_item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: calc(33.33% - 20px);
    border-radius: 21px;
    background: #FFF;
    box-shadow: 0px 2px 4px 0px rgba(3, 3, 3, 0.05), 0px 8px 24px 0px rgba(0, 0, 0, 0.05);
    padding: 5px;
    overflow: clip;
    transition: all ease-in 0.3s;
}

.news_articles_block .articles_item:hover {
    transform: translateY(-15px);
}

@media (max-width: 992px) {
    .news_articles_block .articles_item:hover {
        transform: translateY(-7px);
    }
}

@media (max-width: 992px) {
    .news_articles_block .articles_item {
        width: calc(50% - 7.5px);
    }
}

@media (max-width: 640px) {
    .news_articles_block .articles_item {
        width: 100%;
    }
}

.news_articles_block .articles_item p {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .news_articles_block .articles_item p {
        font-size: 14px;
    }
}

.news_articles_block .articles_item .date_sp {
    color: #202838;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .news_articles_block .articles_item .date_sp {
        font-size: 12px;
    }
}

.news_articles_block .articles_item .articles_item_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news_articles_block .articles_item .articles_item_bottom span {
    color: rgba(32, 40, 56, 0.6);
    text-align: right;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.news_articles_block .articles_item img {
    border-radius: 19px;
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_articles_block .articles_item .articles_item_content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 25px 25px 25px;
}

@media (max-width: 992px) {
    .news_articles_block .articles_item .articles_item_content {
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .news_articles_block .articles_item .articles_item_content {
        gap: 30px;
    }
}

.license_item {
    display: flex;
    flex-direction: column;
    padding: 5px;
}

.license_item p {
    color: #202838;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 30px 25px 25px 25px;
}

@media (max-width: 992px) {
    .license_item p {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .license_item p {
        font-size: 12px;
        padding: 15px 10px 10px 10px;
    }
}

.hero_title_small {
    color: #202838;
    font-family: Inter;
    font-size: 55px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 30px;
}

@media (max-width: 1230px) {
    .hero_title_small {
        font-size: 45px;
    }
}

@media (max-width: 992px) {
    .hero_title_small {
        font-size: 35px;
        margin-bottom: 15px;
    }
}

@media (max-width: 640px) {
    .hero_title_small {
        font-size: 25px;
    }

    .hero_title_small br {
        display: none;
    }
}

.custom-tabs .tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.custom-tabs .tab-content.active {
    display: block;
}

.page_links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 50px 0;
}

.page_links li a {
    color: #202838;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100000;
}

header + section {
    padding-top: 390px !important;
}

header + section.contact {
    padding-top: 290px !important;
}

@media (max-width: 1230px) {
    header + section {
        padding-top: 280px !important;
    }
}

@media (max-width: 992px) {
    header + section {
        padding-top: 210px !important;
    }
}

@media (max-width: 640px) {
    header + section {
        padding-top: 190px !important;
    }
}

/* Contacts page: header switches to the compact mobile bar (~90-108px),
   so trim the oversized top gap on smaller screens. */
@media (max-width: 992px) {
    header + section.contact {
        padding-top: 150px !important;
    }
}

@media (max-width: 640px) {
    header + section.contact {
        padding-top: 110px !important;
    }
}

.basic_tariff {
    padding-top: 140px !important;
}

@media (max-width: 640px) {
    .basic_tariff {
        padding-top: 85px !important;
    }
}

.news_page_section {
    padding-top: 200px !important;
}

@media (max-width: 640px) {
    .news_page_section {
        padding-top: 120px !important;
    }
}

.accordion-header.text_bold,
.menu-link.text_bold,
.accordion-content a.text_bold,
.api_page_left li a.text_bold {
    color: #000;
}

header .header_container {
    max-width: 1600px;
    border-radius: 0px 0px 21px 21px;
    background: #FFF;
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.05), 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 15px;
    position: relative;
    z-index: 2;
}

@media (max-width: 1230px) {
    header .header_container {
        border-radius: 0;
    }
}

@media (max-width: 992px) {
    header .header_container {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

@media (max-width: 640px) {
    header .header_container {
        padding-top: 24px;
        padding-bottom: 24px;
    }
}

header .header_container .lang {
    display: flex;
    align-items: center;
    gap: 10px;
}

header .header_container .lang select {
    border: none;
    border-radius: 0;
    outline: none;
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    letter-spacing: -0.304px;
    text-transform: uppercase;
}

header .header_container .header_block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

header .header_container .header_block .header_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .header_container .header_block .header_top .logo img {
    max-width: 100%;
}

@media (max-width: 640px) {
    header .header_container .header_block .header_top .logo {
        max-width: 195px;
    }
}

@media (max-width: 360px) {
    header .header_container .header_block .header_top .logo {
        max-width: 180px;
    }
}

header .header_container .header_block .header_top .h_top_actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 992px) {
    header .header_container .header_block .header_top .h_top_actions {
        display: none;
    }
}

header .header_container .header_block .header_top .h_top_actions .work_time {
    color: rgba(32, 40, 56, 0.9);
    text-align: center;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 5px;
}

header .header_container .header_block .header_top .h_top_actions .h_tel {
    color: #202838;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

header .header_container .header_block .header_top .h_top_actions .h_btns {
    display: flex;
    align-items: center;
    gap: 15px;
}

header .header_container .header_block .header_top .h_top_actions .h_btns .btn_z_white {
    color: #0076E2;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 8px;
    border: 1px solid #0076E2;
    width: 155px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease-in 0.3s;
}

header .header_container .header_block .header_top .h_top_actions .h_btns .btn_z_white:disabled {
    cursor: not-allowed;
    border-color: #A7AAB3;
    color: #A7AAB3;
}

header .header_container .header_block .header_top .h_top_actions .h_btns .btn_z_white:focus {
    border-color: #0064C0;
    border-width: 2px;
}

header .header_container .header_block .header_top .h_top_actions .h_btns .btn_z_white:active {
    border-color: #2088E8;
    color: #2088E8;
}

header .header_container .header_block .header_top .h_top_actions .h_btns .btn_z_white:hover:not(:disabled) {
    border-color: #0064C0;
    color: #0064C0;
}

header .header_container .header_block .header_top .h_top_actions .h_btns .btn_z_blue {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 8px;
    background: #0076E2;
    width: 155px;
    height: 38px;
    transition: all ease-in 0.3s;
    border: 2px solid transparent;
}

header .header_container .header_block .header_top .h_top_actions .h_btns .btn_z_blue:disabled {
    cursor: not-allowed;
    background: #A7AAB3;
}

header .header_container .header_block .header_top .h_top_actions .h_btns .btn_z_blue:focus {
    background: #0076E2;
    border-color: #0064C0;
}

header .header_container .header_block .header_top .h_top_actions .h_btns .btn_z_blue:active {
    background: #2088E8;
}

header .header_container .header_block .header_top .h_top_actions .h_btns .btn_z_blue:hover:not(:disabled) {
    background: #0064C0;
}

header .header_container .header_block .header_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

@media (max-width: 1230px) {
    header .header_container .header_block .header_bottom {
        width: 100%;
    }
}

@media (max-width: 992px) {
    header .header_container .header_block .header_bottom {
        display: none;
    }
}

header .header_container .header_block .header_bottom .header_menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

header .header_container .header_block .header_bottom .header_menu li a {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    letter-spacing: -0.304px;
    display: inline-flex;
    transition: all ease-in 0.3s;
    position: relative;
}

header .header_container .header_block .header_bottom .header_menu li a:hover {
    color: #0076E2;
}

header .header_container .header_block .header_bottom .header_menu li a:hover::after {
    width: 100%;
}

header .header_container .header_block .header_bottom .header_menu li a::after {
    content: "";
    background-color: #0076E2;
    height: 2px;
    width: 0%;
    bottom: -13px;
    position: absolute;
    transition: all ease-in 0.3s;
}

header .header_container .header_block .mobile_menu {
    display: none;
}

@media (max-width: 992px) {
    header .header_container .header_block .mobile_menu.show {
        display: flex;
        position: fixed;
        top: 102px;
        width: 100%;
        background-color: #fff;
        height: 100%;
        left: 0;
        padding-top: 30px;
        z-index: 999;
        border-top: 1px solid #0076E2;
        padding-bottom: 30px;
        overflow-y: scroll;
    }
}

@media (max-width: 992px) and (max-width: 640px) {
    header .header_container .header_block .mobile_menu.show {
        top: 87px;
    }
}

@media (max-width: 992px) {
    header .header_container .header_block .mobile_menu.show .container {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    header .header_container .header_block .mobile_menu.show .h_menu_mob_top {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    header .header_container .header_block .mobile_menu.show .h_menu_mob_top .work_time {
        color: rgba(32, 40, 56, 0.9);
        font-family: Inter;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    header .header_container .header_block .mobile_menu.show .h_menu_mob_top .h_tel {
        color: #202838;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }

    header .header_container .header_block .mobile_menu.show .header_menu.mob {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 992px) and (max-width: 992px) {
    header .header_container .header_block .mobile_menu.show .header_menu.mob {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    header .header_container .header_block .mobile_menu.show .header_menu.mob li a {
        color: #202838;
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%; /* 24px */
        letter-spacing: -0.304px;
        display: inline-flex;
    }

    header .header_container .header_block .mobile_menu.show .h_btns {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    header .header_container .header_block .mobile_menu.show .h_btns .btn_z_white {
        color: #0076E2;
        text-align: center;
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        border-radius: 8px;
        border: 1px solid #0076E2;
        width: 155px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 992px) and (max-width: 640px) {
    header .header_container .header_block .mobile_menu.show .h_btns .btn_z_white {
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    header .header_container .header_block .mobile_menu.show .h_btns .btn_z_blue {
        color: #FFF;
        text-align: center;
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border-radius: 8px;
        background: #0076E2;
        width: 155px;
        height: 38px;
    }
}

@media (max-width: 992px) and (max-width: 640px) {
    header .header_container .header_block .mobile_menu.show .h_btns .btn_z_blue {
        font-size: 13px;
    }
}

header .header_container .header_block .header_mobile_actions {
    display: none;
}

@media (max-width: 992px) {
    header .header_container .header_block .header_mobile_actions {
        display: flex;
        align-items: center;
        gap: 30px;
        position: relative;
    }
}

@media (max-width: 992px) and (max-width: 640px) {
    header .header_container .header_block .header_mobile_actions {
        gap: 25px;
    }
}

@media (max-width: 992px) and (max-width: 360px) {
    header .header_container .header_block .header_mobile_actions {
        gap: 15px;
    }
}

@media (max-width: 992px) {
    header .header_container .header_block .header_mobile_actions .language_toggle {
        position: relative;
        font-size: 28px;
        cursor: pointer;
        user-select: none;
        display: flex;
    }

    header .header_container .header_block .header_mobile_actions .language_toggle:hover {
        transform: scale(1.05);
    }

    header .header_container .header_block .header_mobile_actions .language_toggle .language_dropdown {
        position: absolute;
        top: 120%;
        left: 0;
        background: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border-radius: 8px;
        padding: 5px 0;
        display: none;
        z-index: 10;
        min-width: 80px;
        z-index: 1000;
    }

    header .header_container .header_block .header_mobile_actions .language_toggle .language_dropdown li {
        padding: 8px 12px;
        font-size: 14px;
        cursor: pointer;
        transition: background 0.2s ease;
    }

    header .header_container .header_block .header_mobile_actions .language_toggle .language_dropdown li:hover {
        background: #f0f0f0;
    }

    header .header_container .header_block .header_mobile_actions .language_toggle.active .language_dropdown {
        display: block;
    }

    header .header_container .header_block .header_mobile_actions .bars_menu a {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 32px;
        gap: 6px;
        cursor: pointer;
    }

    header .header_container .header_block .header_mobile_actions .bars_menu a span {
        display: block;
        height: 2.5px;
        border-radius: 5px;
        background-color: #202838;
        transition: all 0.3s ease;
    }

    header .header_container .header_block .header_mobile_actions .bars_menu.active a span:nth-child(1) {
        transform: rotate(45deg) translate(0px, 7px);
    }

    header .header_container .header_block .header_mobile_actions .bars_menu.active a span:nth-child(2) {
        display: none;
    }

    header .header_container .header_block .header_mobile_actions .bars_menu.active a span:nth-child(3) {
        transform: rotate(-45deg) translate(0px, -7px);
    }
}

.unique_submenu_container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 20;
    margin: 0 auto;
    border-radius: 8px;
}

@media (max-width: 1230px) {
    .unique_submenu_container {
        padding: 20px 0px;
        width: 100%;
        border-radius: 0;
    }
}

.unique_submenu_container.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

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

.unique_submenu_block {
    display: none;
}

@media (max-width: 1230px) {
    .unique_submenu_block {
        max-width: 962px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .unique_submenu_block {
        max-width: 640px;
    }
}

@media (max-width: 640px) {
    .unique_submenu_block {
        max-width: 450px;
    }
}

.unique_submenu_block p {
    color: rgba(32, 40, 56, 0.8);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.unique_submenu_block .submenu_item_title {
    color: #202838;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 27px */
    letter-spacing: -0.342px;
}

.unique_submenu_block .unique_submenu_block_item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 15px;
    transition: all ease-in 0.3s;
}

.unique_submenu_block .unique_submenu_block_item:hover {
    border-radius: 8px;
    background: #EEF1F9;
}

.unique_submenu_block .articles_item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-radius: 21px;
    background: #FFF;
    box-shadow: 0px 2px 4px 0px rgba(3, 3, 3, 0.05), 0px 8px 24px 0px rgba(0, 0, 0, 0.05);
    padding: 5px;
    transition: all ease-in 0.3s;
}

.unique_submenu_block .articles_item:hover {
    transform: translateY(-10px);
}

@media (max-width: 992px) {
    .unique_submenu_block .articles_item:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 640px) {
    .unique_submenu_block .articles_item {
        width: 94%;
    }
}

.unique_submenu_block .articles_item p {
    color: #202838;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.unique_submenu_block .articles_item span {
    color: #202838;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .unique_submenu_block .articles_item span {
        font-size: 12px;
    }
}

.unique_submenu_block .articles_item img {
    border-radius: 19px;
    max-width: 100%;
    max-height: 237px;
    height: 100%;
    object-fit: cover;
}

.unique_submenu_block .articles_item .articles_item_content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 25px 25px 25px;
}

.unique_submenu_block .white_boxs {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

@media (max-width: 1230px) {
    .unique_submenu_block .white_boxs {
        gap: 15px;
    }
}

.unique_submenu_block .white_boxs.platform {
    padding: 30px 80px;
}

@media (max-width: 1230px) {
    .unique_submenu_block .white_boxs.platform {
        padding: 20px 15px;
    }
}

.unique_submenu_block .white_boxs .white_box {
    border-radius: 0px;
    background: #FFF;
    box-shadow: none;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: calc(33.33% - 20px);
    padding: 20px;
    transition: all ease-in 0.3s;
    border-radius: 8px;
}

.unique_submenu_block .white_boxs .white_box:hover {
    background: #EEF1F9;
}

@media (max-width: 1230px) {
    .unique_submenu_block .white_boxs .white_box {
        width: calc(33.33% - 10px);
    }
}

@media (max-width: 992px) {
    .unique_submenu_block .white_boxs .white_box {
        width: calc(50% - 7.5px);
    }
}

@media (max-width: 640px) {
    .unique_submenu_block .white_boxs .white_box {
        width: 100%;
    }
}

.unique_submenu_block .white_boxs .white_box h5, .unique_submenu_block .white_boxs .white_box span, .unique_submenu_block .white_boxs .white_box a {
    color: #202838;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: start;
    gap: 15px;
    transition: all ease-in 0.3s;
}

.unique_submenu_block .white_boxs .white_box h5:hover, .unique_submenu_block .white_boxs .white_box a:hover {
    color: #0064C0;
}

.unique_submenu_block .white_boxs .white_box h5:active, .unique_submenu_block .white_boxs .white_box a:active {
    color: #2088E8;
}

.unique_submenu_block .white_boxs .white_box h5:disabled, .unique_submenu_block .white_boxs .white_box a:disabled {
    color: #A7AAB3;
}

.unique_submenu_block .white_boxs .white_box p {
    color: #202838;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.unique_submenu_block .white_boxs .white_box img {
    max-width: 25px;
}

@media (max-width: 992px) {
    .unique_submenu_block .white_boxs.tab_w_100 .white_box {
        width: 100%;
    }
}

.unique_submenu_block .white_boxs.tab_w_100 .white_box h5 {
    align-items: start;
}

.unique_submenu_block_about {
    padding: 0px 75px;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

@media (max-width: 1230px) {
    .unique_submenu_block_about {
        padding: 0px;
    }
}

@media (max-width: 992px) {
    .unique_submenu_block_about {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.unique_submenu_block_about_l {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: calc(50% - 15px);
}

.unique_submenu_block_about_l .unique_submenu_block_item {
    width: calc(50% - 7.5px);
}

@media (max-width: 640px) {
    .unique_submenu_block_about_l .unique_submenu_block_item {
        width: 94%;
    }
}

@media (max-width: 992px) {
    .unique_submenu_block_about_l {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .unique_submenu_block_about_l {
        justify-content: center;
    }
}

.unique_submenu_block_about_r {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: calc(50% - 15px);
}

@media (max-width: 992px) {
    .unique_submenu_block_about_r {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .unique_submenu_block_about_r {
        justify-items: center;
        grid-template-columns: 1fr;
    }
}

.unique_submenu_block_resheniya {
    padding: 0px 75px;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

@media (max-width: 1230px) {
    .unique_submenu_block_resheniya {
        padding: 0px;
    }
}

@media (max-width: 992px) {
    .unique_submenu_block_resheniya {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.unique_submenu_block_resheniya_ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.unique_submenu_block_resheniya_ul li a {
    color: #202838;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 15px;
    transition: all ease-in 0.3s;
    display: flex;
}

.unique_submenu_block_resheniya_ul li a:hover, .unique_submenu_block_resheniya_ul li a.active {
    border-radius: 8px;
    background: #EEF1F9;
}

.unique_submenu_block_resheniya_items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 44%;
    align-items: start;
}

.unique_submenu_block_resheniya_items .unique_submenu_block_item {
    width: calc(50% - 15px);
}

@media (max-width: 640px) {
    .unique_submenu_block_resheniya_items .unique_submenu_block_item {
        width: 94%;
    }
}

@media (max-width: 992px) {
    .unique_submenu_block_resheniya_items {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .unique_submenu_block_resheniya_items {
        justify-content: center;
    }
}

.articles_item.resheniya {
    width: 28%;
}

@media (max-width: 992px) {
    .articles_item.resheniya {
        width: 55%;
    }
}

@media (max-width: 640px) {
    .articles_item.resheniya {
        width: 94%;
        margin: 0 auto;
    }
}

.unique_submenu_block_uslugi {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding: 30px 90px;
}

@media (max-width: 1230px) {
    .unique_submenu_block_uslugi {
        padding: 20px 0px;
    }
}

@media (max-width: 992px) {
    .unique_submenu_block_uslugi {
        justify-content: center;
    }
}

.unique_submenu_block_uslugi .unique_submenu_block_item {
    width: calc(33.33% - 20px);
}

@media (max-width: 992px) {
    .unique_submenu_block_uslugi .unique_submenu_block_item {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .unique_submenu_block_uslugi .unique_submenu_block_item {
        width: 96%;
    }
}

.channels_a {
    color: #202838;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 15px;
    border-radius: 8px;
    background: transparent!important;
    min-width: 260px;
    transition: all ease-in 0.3s;
    border-radius: 8px;
    cursor: default;
}

.kanaly_main_a, .channels_a {
    pointer-events: none;
}

.channels_a:hover {
    background: #EEF1F9;
    color: #202838;
}

@media (max-width: 992px) {
    .channels_a {
        min-width: 150px;
    }
}

.unique_submenu_block_kanaly {
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%;
    padding: 30px 75px;
}

@media (max-width: 1230px) {
    .unique_submenu_block_kanaly {
        padding: 20px 15px;
    }
}

@media (max-width: 992px) {
    .unique_submenu_block_kanaly {
        flex-wrap: wrap;
        gap: 50px;
        justify-content: start;
    }
}

@media (max-width: 640px) {
    .unique_submenu_block_kanaly {
        flex-direction: column;
    }
}

.unique_submenu_block_kanaly nav {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.unique_submenu_block_kanaly nav .kanaly_main_a {
    color: #202838;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: all ease-in 0.3s;
    cursor: default;
}


.unique_submenu_block_kanaly nav .kanaly_main_a {
    padding: 15px;
}

.unique_submenu_block_kanaly .ics {
    display: flex;
    align-items: center;
    gap: 5px;
}

.kanaly_mailing_ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.kanaly_mailing_ul li {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.kanaly_mailing_ul li a {
    color: #202838;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: all ease-in 0.3s;
    padding: 15px;
    border-radius: 8px;
}

.kanaly_mailing_ul li a:hover {
    background: #EEF1F9;
}

.kanaly_mailing_ul .kanaly_mailing_ul_submenu {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.kanaly_mailing_ul .kanaly_mailing_ul_submenu li a {
    color: rgba(32, 40, 56, 0.8);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: all ease-in 0.3s;
    padding: 15px;
    border-radius: 8px;
}

.kanaly_mailing_ul .kanaly_mailing_ul_submenu li a:hover {
    background: #EEF1F9;
}

.unique_submenu_block_kanaly_ul {
    display: flex;
    flex-direction: column;
    min-width: 380px;
}

@media (max-width: 640px) {
    .unique_submenu_block_kanaly_ul {
        min-width: 0;
    }
}

.unique_submenu_block_kanaly_ul li a {
    color: #202838;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    transition: all ease-in 0.3s;
    padding: 15px;
    border-radius: 8px;
}

.unique_submenu_block_kanaly_ul li a:hover {
    background: #EEF1F9;
}

.unique_submenu_block.active {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: start;
}

.custom_lang_dropdown {
    position: relative;
    display: inline-block;
    font-family: "Inter", sans-serif;
}

.custom_lang_dropdown .lang_trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    letter-spacing: -0.304px;
}

.custom_lang_dropdown .lang_trigger .arrow {
    transition: transform 0.3s ease;
}

.custom_lang_dropdown .lang_trigger.active .arrow {
    transform: rotate(180deg);
}

.custom_lang_dropdown .lang_list {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid #e5e8ec;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    width: 150px;
    display: none;
    z-index: 50;
    padding: 8px 0;
}

.custom_lang_dropdown .lang_list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.custom_lang_dropdown .lang_list li a:hover {
    background: #f3f6fa;
}

.custom_lang_dropdown .lang_list li img {
    width: 26px;
    height: 17px;
    object-fit: cover;
}

.custom_lang_dropdown .lang_list li div {
    display: flex;
    flex-direction: column;
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    letter-spacing: -0.304px;
}

.custom_lang_dropdown .lang_list li div b {
    color: #202838;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
    letter-spacing: -0.266px;
}

.custom_lang_dropdown .lang_list li div span {
    color: rgba(32, 40, 56, 0.6);
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
    letter-spacing: -0.228px;
}

.custom_lang_dropdown .lang_list.active {
    display: block;
}

@media (max-width: 991px) {
    .unique_submenu_block {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.3s ease;
    }

    .unique_submenu_block.active {
        max-height: 100%; /* yetarlicha katta qiymat */
        opacity: 1;
        padding: 30px 0;
        border-top: 1px solid #0076E2;
        border-bottom: 1px solid #0076E2;
        margin: 20px 0;
    }
}

footer {
    padding-top: 120px;
    background-color: #fff;
    padding-bottom: 30px;
}

@media (max-width: 992px) {
    footer {
        padding-top: 90px;
    }
}

footer .f_networks {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

@media (max-width: 1230px) {
    footer .f_networks {
        order: 2;
        margin-left: 0;
    }
}

footer .f_networks a {
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .footer_block {
    display: flex;
    gap: 10px 30px;
    flex-wrap: wrap;
}

@media (max-width: 1230px) {
    footer .footer_block {
        flex-direction: column;
        gap: 30px;
    }
}

footer .footer_block .footer_left {
    max-width: 400px;
}

@media (max-width: 1230px) {
    footer .footer_block .footer_left {
        max-width: 70%;
        order: 1;
    }
}

@media (max-width: 640px) {
    footer .footer_block .footer_left {
        max-width: 100%;
    }
}

footer .footer_block .footer_left .footer_subtitle {
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 40px;
    margin-top: 40px;
}

@media (max-width: 640px) {
    footer .footer_block .footer_left .footer_subtitle {
        margin-top: 30px;
        margin-bottom: 30px;
        font-size: 14px;
    }
}

footer .footer_block .footer_left .subscribe_form {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

footer .footer_block .footer_left .subscribe_form .subscribe_input {
    color: #000;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 8px;
    border: 1px solid #E1E1E1;
    padding: 12px;
    height: 48px;
    outline: none;
}

footer .footer_block .footer_left .subscribe_form .subscribe_input::placeholder {
    color: #B9B9B9;
}

@media (max-width: 1230px) {
    footer .footer_block .footer_left .subscribe_form .subscribe_input {
        width: calc(62.5% - 10px);
    }
}

footer .footer_block .footer_left .subscribe_form .subscribe_btn {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 12.797px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px; /* 281.319% */
    border-radius: 8px;
    background: #0076E2;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    padding: 6px 20px;
    transition: all ease-in 0.3s;
    border: 2px solid transparent;
}

footer .footer_block .footer_left .subscribe_form .subscribe_btn:disabled {
    cursor: not-allowed;
    background: #A7AAB3;
}

footer .footer_block .footer_left .subscribe_form .subscribe_btn:focus {
    background: #0076E2;
    border-color: #0064C0;
}

footer .footer_block .footer_left .subscribe_form .subscribe_btn:active {
    background: #2088E8;
}

footer .footer_block .footer_left .subscribe_form .subscribe_btn:hover:not(:disabled) {
    background: #0064C0;
}

@media (max-width: 1230px) {
    footer .footer_block .footer_left .subscribe_form .subscribe_btn {
        width: calc(31.75% - 10px);
    }
}

@media (max-width: 640px) {
    footer .footer_block .footer_left .subscribe_form .subscribe_btn {
        width: 127px;
    }
}

footer .footer_block .footer_left .agree_text {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 30px;
}

footer .footer_block .footer_left .agree_text p {
    color: rgba(32, 40, 56, 0.6);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    flex-direction: column;
}

footer .footer_block .footer_left .agree_text p a {
    color: #797E88;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    display: inline-flex;
}

footer .footer_block .footer_left .f_actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

footer .footer_block .footer_left .f_actions li a {
    display: flex;
    flex-direction: column;
    color: #000;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

footer .footer_block .footer_left .f_actions li a span {
    font-size: 12px;
}

footer .footer_block .footer_right {
    display: flex;
    gap: 30px;
    width: calc(100% - 430px);
}

@media (max-width: 1230px) {
    footer .footer_block .footer_right {
        width: 100%;
        order: 3;
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    footer .footer_block .footer_right {
        gap: 30px 15px;
    }
}

footer .footer_block .footer_right nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 170px;
}

@media (max-width: 1230px) {
    footer .footer_block .footer_right nav {
        width: calc(25% - 22.5px);
    }
}

@media (max-width: 992px) {
    footer .footer_block .footer_right nav {
        width: calc(50% - 15px);
    }
}

@media (max-width: 640px) {
    footer .footer_block .footer_right nav {
        width: calc(50% - 7.5px);
    }
}

footer .footer_block .footer_right nav:nth-child(2) {
    width: 175px;
}

@media (max-width: 1230px) {
    footer .footer_block .footer_right nav:nth-child(2) {
        width: calc(25% - 22.5px);
    }
}

@media (max-width: 992px) {
    footer .footer_block .footer_right nav:nth-child(2) {
        width: calc(50% - 15px);
    }
}

footer .footer_block .footer_right nav ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

footer .footer_block .footer_right nav ul li:first-child {
    margin-bottom: 15px;
}

footer .footer_block .footer_right nav ul li:first-child a {
    color: #202838;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

footer .footer_block .footer_right nav ul li a {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: all ease-in .3s;

    &:hover {
        color: #0076E2;
    }
}

footer .footer_block .footer_right nav ul li a b {
    font-size: 18px;
    font-weight: 500;
}

.address_section {
    background-color: #202838;
    padding: 60px 0;
}

.address_section .address__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .address_section .address__top {
        gap: 50px 0;
    }
}

@media (max-width: 640px) {
    .address_section .address__top {
        gap: 30px;
    }
}

.address_section .address__top .address_item {
    padding: 0 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.6);
    width: 25%;
}

@media (max-width: 992px) {
    .address_section .address__top .address_item {
        width: 50%;
    }

    .address_section .address__top .address_item:nth-child(2n) {
        border: none;
    }
}

@media (max-width: 640px) {
    .address_section .address__top .address_item {
        width: 100%;
        border-right: none;
    }
}

.address_section .address__top .address_item:last-child {
    border-right: none;
}

.address_section .address__top .address_item .address_item_title {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .address_section .address__top .address_item .address_item_title {
        margin-bottom: 15px;
    }
}

@media (max-width: 640px) {
    .address_section .address__top .address_item .address_item_title {
        font-size: 18px;
    }
}

.address_section .address__top .address_item p {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .address_section .address__top .address_item p {
        font-size: 14px;
    }
}

.address_section .address__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 992px) {
    .address_section .address__bottom {
        flex-direction: column;
        align-items: start;
        gap: 30px;
    }
}

.address_section .address__bottom .address_b_left {
    display: flex;
    align-items: center;
    gap: 60px;
}

@media (max-width: 992px) {
    .address_section .address__bottom .address_b_left {
        flex-direction: column;
        align-items: start;
        gap: 15px;
    }
}

.address_section .address__bottom .footer__lang {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
    letter-spacing: -0.342px;
    cursor: pointer;
}

@media (max-width: 640px) {
    .address_section .address__bottom .footer__lang {
        font-size: 16px;
    }
}

.address_section .address__bottom .footer__policy {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    letter-spacing: -0.304px;
}

.address_section .address__bottom .footer__policy:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .address_section .address__bottom .footer__policy {
        font-size: 14px;
    }
}

.address_section .address__bottom .footer__copy {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    letter-spacing: -0.304px;
}

@media (max-width: 640px) {
    .address_section .address__bottom .footer__copy {
        font-size: 14px;
    }
}

.hero {
    background: linear-gradient(179deg, rgba(255, 255, 255, 0.5) 0.75%, rgba(139, 191, 239, 0.2) 45.06%, rgba(255, 255, 255, 0.5) 99.23%), url(../imgs/main_hero_fon.png);
    background-repeat: no-repeat;
    padding-top: 241px;
    padding-bottom: 244px;
    margin-top: -100px;
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position-x: right;
}

@media (max-width: 1230px) {
    .hero {
        background-position-x: right;
        padding-top: 140px;
        margin-top: 0;
    }
}

@media (max-width: 992px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 177px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-bottom: 102px;
    }
}

.hero .hero_block .hero_title {
    color: #202838;
    font-family: Inter;
    font-size: 98px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .hero .hero_block .hero_title {
        font-size: 35px;
        margin-bottom: 15px;
    }
}

@media (max-width: 640px) {
    .hero .hero_block .hero_title {
        font-size: 25px;
    }
}

.hero .hero_block .hero_subtitle {
    color: #202838;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .hero .hero_block .hero_subtitle {
        font-size: 16px;
        max-width: 84%;
    }
}

@media (max-width: 640px) {
    .hero .hero_block .hero_subtitle {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .hero .hero_block .hero_subtitle br {
        display: none;
    }
}

.advan {
    position: relative;
    z-index: 2;
}

.advan .white_boxs {
    margin-top: -94px;
    padding-bottom: 120px;
}

@media (max-width: 992px) {
    .advan .white_boxs {
        padding-bottom: 90px;
        margin-top: -30px;
    }
}

@media (max-width: 640px) {
    .advan .white_boxs {
        margin-top: -30px;
    }
}

.traffic_in_number {
    background: #202838;
    padding: 155px 0;
}

@media (max-width: 992px) {
    .traffic_in_number {
        padding: 90px 0;
    }
}

.traffic_in_number .traffic_in_number_block {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

@media (max-width: 1230px) {
    .traffic_in_number .traffic_in_number_block {
        gap: 60px 20px;
    }
}

@media (max-width: 640px) {
    .traffic_in_number .traffic_in_number_block {
        gap: 30px;
    }
}

.traffic_in_number .traffic_in_number_block .traffic_in_number_item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-right: 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.6);
}

@media (max-width: 1230px) {
    .traffic_in_number .traffic_in_number_block .traffic_in_number_item {
        width: calc(50% - 10px);
        gap: 15px;
    }

    .traffic_in_number .traffic_in_number_block .traffic_in_number_item:nth-child(2n) {
        border-right: none;
    }
}

@media (max-width: 640px) {
    .traffic_in_number .traffic_in_number_block .traffic_in_number_item {
        width: 100%;
        border: none;
        padding-right: 0;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    }
}

.traffic_in_number .traffic_in_number_block .traffic_in_number_item:last-child {
    padding-right: 0;
    border-right: none;
}

@media (max-width: 640px) {
    .traffic_in_number .traffic_in_number_block .traffic_in_number_item:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }
}

.traffic_in_number .traffic_in_number_block .traffic_in_number_item .h3,.traffic_in_number .traffic_in_number_block .traffic_in_number_item h3 {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

@media (max-width: 640px) {
    .traffic_in_number .traffic_in_number_block .traffic_in_number_item .h3,    .traffic_in_number .traffic_in_number_block .traffic_in_number_item h3 {
        font-size: 30px;
    }
}

.traffic_in_number .traffic_in_number_block .traffic_in_number_item p {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .traffic_in_number .traffic_in_number_block .traffic_in_number_item p {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .traffic_in_number .traffic_in_number_block .traffic_in_number_item p br {
        display: none;
    }
}

.other_channels {
    padding-top: 120px;
    padding-bottom: 60px;
}

@media (max-width: 992px) {
    .other_channels {
        padding-top: 90px;
    }
}

.we_help {
    padding: 60px 0;
}

@media (max-width: 992px) {
    .we_help {
        padding: 45px 0;
    }
}

.we_help .we_help_block {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

@media (max-width: 1230px) {
    .we_help .we_help_block {
        gap: 15px;
    }
}

.we_help .we_help_block .we_help_item {
    width: calc(33.33% - 20px);
    border-radius: 21px;
    background: #0076E2;
    position: relative;
    min-height: 547px;
}

@media (max-width: 1230px) {
    .we_help .we_help_block .we_help_item {
        min-height: 600px;
        width: calc(33.33% - 10px);
    }
}

@media (max-width: 992px) {
    .we_help .we_help_block .we_help_item {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .we_help .we_help_block .we_help_item {
        min-height: 500px;
    }
}

.we_help .we_help_block .we_help_item .we_help_item_content {
    padding: 30px 30px 0 30px;
}

.we_help .we_help_block .we_help_item h5, .we_help .we_help_block .we_help_item .h3, .we_help .we_help_block .we_help_item h3 {
    color: #FFF;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 15px;
}

@media (max-width: 640px) {
    .we_help .we_help_block .we_help_item h5, .we_help .we_help_block .we_help_item .h3, .we_help .we_help_block .we_help_item h3 {
        font-size: 18px;
    }
}

.we_help .we_help_block .we_help_item p {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 30px;
}

@media (max-width: 640px) {
    .we_help .we_help_block .we_help_item p {
        font-size: 14px;
    }
}

.we_help .we_help_block .we_help_item span {
    color: #D7D7D7;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.we_help .we_help_block .we_help_item img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

@media (max-width: 1230px) {
    .we_help .we_help_block .we_help_item img {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .we_help .we_help_block .we_help_item img {
        width: 80%;
    }
}

.we_help .we_help_block .we_help_item:last-child img {
    bottom: 90px;
    left: -20px;
    max-width: 420px;
}

@media (max-width: 1230px) {
    .we_help .we_help_block .we_help_item:last-child img {
        left: 0;
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .we_help .we_help_block .we_help_item:last-child img {
        width: 100%;
    }
}

.we_help .we_help_block .we_help_item:first-child img {
    max-width: 94%;
}

.we_help .we_help_block .we_help_item:nth-child(2) img {
    max-width: 100%;
}

.possibilities {
    padding: 60px 0;
}

@media (max-width: 992px) {
    .possibilities {
        padding: 45px 0;
    }
}

.possibilities .possibilities_block {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

@media (max-width: 1230px) {
    .possibilities .possibilities_block {
        gap: 15px;
    }
}

.possibilities .possibilities_block p {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 992px) {
    .possibilities .possibilities_block p br {
        display: none;
    }
}

@media (max-width: 640px) {
    .possibilities .possibilities_block p {
        font-size: 14px;
    }
}

.possibilities .possibilities_block h5, .possibilities .possibilities_block .possibilities_item .h3, .possibilities .possibilities_block .possibilities_item h3 {
    color: #202838;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 640px) {
    .possibilities .possibilities_block h5, .possibilities .possibilities_block .possibilities_item .h3, .possibilities .possibilities_block .possibilities_item h3 {
        font-size: 18px;
    }
}

.possibilities .possibilities_block .ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.possibilities .possibilities_block .ul li {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    gap: 20px;
    align-items: start;
}

.possibilities .possibilities_block .ul li img {
    width: 25px;
}

@media (max-width: 640px) {
    .possibilities .possibilities_block .ul li {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .possibilities .possibilities_block .ul li br {
        display: none;
    }
}

.possibilities .possibilities_block .possibilities_item_big {
    width: 100%;
    border-radius: 21px;
    background: #EEF1F9;
    padding: 60px;
    display: flex;
    position: relative;
    min-height: 670px;
}

@media (max-width: 1230px) {
    .possibilities .possibilities_block .possibilities_item_big {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .possibilities .possibilities_block .possibilities_item_big {
        padding: 60px 30px;
    }
}

@media (max-width: 640px) {
    .possibilities .possibilities_block .possibilities_item_big {
        gap: 40px;
    }
}

.possibilities .possibilities_block .possibilities_item_big .possibilities_item_big_right {
    position: absolute;
    right: 30px;
    top: 129px;
    display: flex;
    flex-direction: column;
    align-items: end;
}

@media (max-width: 1230px) {
    .possibilities .possibilities_block .possibilities_item_big .possibilities_item_big_right {
        position: relative;
        top: 0;
        right: 0;
        left: 0;
    }
}

.possibilities .possibilities_block .possibilities_item_big .possibilities_item_big_right img {
    max-width: 580px;
}

@media (max-width: 992px) {
    .possibilities .possibilities_block .possibilities_item_big .possibilities_item_big_right img {
        max-width: 540px;
    }
}

@media (max-width: 640px) {
    .possibilities .possibilities_block .possibilities_item_big .possibilities_item_big_right img {
        max-width: 100%;
    }
}

.possibilities .possibilities_block .possibilities_item_big .possibilities_item_big_right span {
    color: #808080;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.24px;
    display: inline-flex;
    margin-bottom: 4px;
}

.possibilities .possibilities_block .possibilities_item_big .possibilities_item_big_right .breadcrumb_z {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.possibilities .possibilities_block .possibilities_item_big .possibilities_item_big_right .breadcrumb_z li:last-child a::after {
    content: none;
}

.possibilities .possibilities_block .possibilities_item_big .possibilities_item_big_right .breadcrumb_z li a {
    color: #202838;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
    position: relative;
}

.possibilities .possibilities_block .possibilities_item_big .possibilities_item_big_right .breadcrumb_z li a::after {
    position: absolute;
    content: "";
    background-image: url(../imgs/breadcrumb_ic.svg);
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    top: 0;
    right: -20px;
}

.possibilities .possibilities_block .possibilities_item_big h2, .possibilities .possibilities_block .possibilities_item_big .h3, .possibilities .possibilities_block .possibilities_item_big h3 {
    color: #202838;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .possibilities .possibilities_block .possibilities_item_big h2, .possibilities .possibilities_block .possibilities_item_big .h3, .possibilities .possibilities_block .possibilities_item_big h3 {
        font-size: 22px;
        margin-bottom: 30px;
    }
}

@media (max-width: 640px) {
    .possibilities .possibilities_block .possibilities_item_big h2, .possibilities .possibilities_block .possibilities_item_big .h3, .possibilities .possibilities_block .possibilities_item_big h3 {
        font-size: 18px;
    }
}

.possibilities .possibilities_block .possibilities_item {
    width: 100%;
    border-radius: 21px;
    background: #EEF1F9;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 569px;
    position: relative;
}

@media (max-width: 1230px) {
    .possibilities .possibilities_block .possibilities_item {
        min-height: 500px;
    }
}

@media (max-width: 992px) {
    .possibilities .possibilities_block .possibilities_item {
        min-height: 550px;
    }
}

@media (max-width: 640px) {
    .possibilities .possibilities_block .possibilities_item {
        min-height: 0;
        padding-bottom: 0;
    }
}

.possibilities .possibilities_block .possibilities_item.w_60 {
    width: 700px;
}

@media (max-width: 1230px) {
    .possibilities .possibilities_block .possibilities_item.w_60 {
        width: 58%;
    }
}

@media (max-width: 992px) {
    .possibilities .possibilities_block .possibilities_item.w_60 {
        width: 100%;
    }
}

.possibilities .possibilities_block .possibilities_item.w_40 {
    width: 470px;
}

@media (max-width: 1230px) {
    .possibilities .possibilities_block .possibilities_item.w_40 {
        width: 39%;
    }
}

@media (max-width: 992px) {
    .possibilities .possibilities_block .possibilities_item.w_40 {
        width: 100%;
    }
}

.possibilities .possibilities_block .possibilities_item img {
    position: absolute;
    bottom: 0;
}

@media (max-width: 1230px) {
    .possibilities .possibilities_block .possibilities_item img {
        max-width: 90%;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .possibilities .possibilities_block .possibilities_item img {
        position: relative;
        max-width: 100%;
        margin-top: 15px;
    }
}

.comfortable {
    padding: 60px 0;
}

@media (max-width: 992px) {
    .comfortable {
        padding: 45px 0;
    }
}

.comfortable .comfortable_block {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

@media (max-width: 992px) {
    .comfortable .comfortable_block {
        gap: 90px;
    }
}

.comfortable .comfortable_block .comfortable_top {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

@media (max-width: 1230px) {
    .comfortable .comfortable_block .comfortable_top {
        gap: 15px;
    }
}

.comfortable .comfortable_block .comfortable_top .comfortable_top_item {
    border-radius: 21px;
    background: #0076E2;
    padding: 30px;
    position: relative;
}

@media (max-width: 640px) {
    .comfortable .comfortable_block .comfortable_top .comfortable_top_item {
        padding-bottom: 0;
        overflow: clip;
    }
}

.comfortable .comfortable_block .comfortable_top .comfortable_top_item h5, .comfortable .comfortable_block .comfortable_top .comfortable_top_item .h3, .comfortable .comfortable_block .comfortable_top .comfortable_top_item h3 {
    color: #FFF;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 15px;
}

@media (max-width: 640px) {
    .comfortable .comfortable_block .comfortable_top .comfortable_top_item h5, .comfortable .comfortable_block .comfortable_top .comfortable_top_item .h3, .comfortable .comfortable_block .comfortable_top .comfortable_top_item h3 {
        font-size: 18px;
    }
}

.comfortable .comfortable_block .comfortable_top .comfortable_top_item p {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .comfortable .comfortable_block .comfortable_top .comfortable_top_item p {
        font-size: 14px;
    }
}

.comfortable .comfortable_block .comfortable_top .comfortable_top_item img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 615px;
}

@media (max-width: 1230px) {
    .comfortable .comfortable_block .comfortable_top .comfortable_top_item img {
        max-width: 90%;
    }
}

@media (max-width: 640px) {
    .comfortable .comfortable_block .comfortable_top .comfortable_top_item img {
        position: relative;
        max-width: 100%;
        margin-top: 30px;
        margin-bottom: -5px;
    }
}

.comfortable .comfortable_block .comfortable_top .comfortable_top_left {
    width: 700px;
}

@media (max-width: 1230px) {
    .comfortable .comfortable_block .comfortable_top .comfortable_top_left {
        width: 58%;
    }
}

@media (max-width: 992px) {
    .comfortable .comfortable_block .comfortable_top .comfortable_top_left {
        width: 100%;
    }
}

.comfortable .comfortable_block .comfortable_top .comfortable_top_left .comfortable_top_item {
    min-height: 721px;
}

@media (max-width: 1230px) {
    .comfortable .comfortable_block .comfortable_top .comfortable_top_left .comfortable_top_item {
        min-height: 678px;
    }
}

@media (max-width: 640px) {
    .comfortable .comfortable_block .comfortable_top .comfortable_top_left .comfortable_top_item {
        min-height: 0;
    }
}

.comfortable .comfortable_block .comfortable_top .comfortable_top_right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: calc(100% - 730px);
}

@media (max-width: 1230px) {
    .comfortable .comfortable_block .comfortable_top .comfortable_top_right {
        width: 38%;
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .comfortable .comfortable_block .comfortable_top .comfortable_top_right {
        width: 100%;
    }
}

.comfortable .comfortable_block .comfortable_top .comfortable_top_right .comfortable_top_item {
    min-height: 335px;
}

@media (max-width: 1230px) {
    .comfortable .comfortable_block .comfortable_top .comfortable_top_right .comfortable_top_item {
        min-height: 325px;
    }
}

@media (max-width: 992px) {
    .comfortable .comfortable_block .comfortable_top .comfortable_top_right .comfortable_top_item {
        min-height: 405px;
    }
}

@media (max-width: 640px) {
    .comfortable .comfortable_block .comfortable_top .comfortable_top_right .comfortable_top_item {
        min-height: 0;
    }
}

.comfortable .comfortable_block .comfortable_top .comfortable_top_right .comfortable_top_item img {
    max-width: 93%;
}

@media (max-width: 1230px) {
    .comfortable .comfortable_block .comfortable_top .comfortable_top_right .comfortable_top_item img {
        max-width: 90%;
    }
}

@media (max-width: 992px) {
    .comfortable .comfortable_block .comfortable_top .comfortable_top_right .comfortable_top_item img {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .comfortable .comfortable_block .comfortable_top .comfortable_top_right .comfortable_top_item img {
        max-width: 100%;
    }
}

.comfortable .comfortable_block .comfortable_top .comfortable_top_right .comfortable_top_item:first-child {
    min-height: 356px;
}

@media (max-width: 1230px) {
    .comfortable .comfortable_block .comfortable_top .comfortable_top_right .comfortable_top_item:first-child {
        min-height: 338px;
    }
}

@media (max-width: 992px) {
    .comfortable .comfortable_block .comfortable_top .comfortable_top_right .comfortable_top_item:first-child {
        min-height: 405px;
    }
}

@media (max-width: 640px) {
    .comfortable .comfortable_block .comfortable_top .comfortable_top_right .comfortable_top_item:first-child {
        min-height: 0;
    }
}

.comfortable .comfortable_block .comfortable_bottom {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

@media (max-width: 1230px) {
    .comfortable .comfortable_block .comfortable_bottom {
        gap: 15px;
    }
}

.comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_left {
    width: 380px;
}

@media (max-width: 992px) {
    .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_left {
        width: 100%;
    }
}

.comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_left .comfortable_bottom_item {
    border-radius: 21px;
    background: #0076E2;
    padding: 30px;
    position: relative;
    min-height: 474px;
}

@media (max-width: 1230px) {
    .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_left .comfortable_bottom_item {
        min-height: 500px;
    }
}

@media (max-width: 992px) {
    .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_left .comfortable_bottom_item {
        min-height: 575px;
        overflow: clip;
    }
}

@media (max-width: 640px) {
    .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_left .comfortable_bottom_item {
        min-height: 450px;
    }
}

.comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_left .comfortable_bottom_item h5, .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_left .comfortable_bottom_item .h3, .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_left .comfortable_bottom_item h3 {
    color: #FFF;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 47px;
}

@media (max-width: 992px) {
    .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_left .comfortable_bottom_item h5, .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_left .comfortable_bottom_item .h3, .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_left .comfortable_bottom_item h3 {
        margin-bottom: 15px;
    }
}

@media (max-width: 640px) {
    .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_left .comfortable_bottom_item h5, .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_left .comfortable_bottom_item .h3, .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_left .comfortable_bottom_item h3 {
        font-size: 18px;
    }
}

.comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_left .comfortable_bottom_item p {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_left .comfortable_bottom_item p {
        font-size: 14px;
    }
}

.comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_left .comfortable_bottom_item img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_left .comfortable_bottom_item img {
        width: 100%;
        margin-bottom: -20px;
    }
}

@media (max-width: 640px) {
    .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_left .comfortable_bottom_item img {
        margin-bottom: 0;
    }
}

.comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_right {
    width: calc(100% - 410px);
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

@media (max-width: 1230px) {
    .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_right {
        gap: 15px;
        width: calc(100% - 395px);
    }
}

@media (max-width: 992px) {
    .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_right {
        width: 100%;
    }
}

.comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_right .comfortable_bottom_item {
    min-height: 222px;
    border-radius: 21px;
    background: #EEF1F9;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: calc(50% - 15px);
}

@media (max-width: 1230px) {
    .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_right .comfortable_bottom_item {
        width: calc(50% - 7.5px);
    }
}

@media (max-width: 640px) {
    .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_right .comfortable_bottom_item {
        width: 100%;
        min-height: 0;
    }
}

.comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_right .comfortable_bottom_item h5, .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_right .comfortable_bottom_item .h3, .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_right .comfortable_bottom_item h3 {
    color: #202838;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 1230px) {
    .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_right .comfortable_bottom_item h5, .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_right .comfortable_bottom_item .h3, .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_right .comfortable_bottom_item h3 {
        font-size: 20px;
    }
}

@media (max-width: 992px) {
    .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_right .comfortable_bottom_item h5, .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_right .comfortable_bottom_item .h3, .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_right .comfortable_bottom_item h3 {
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_right .comfortable_bottom_item h5, .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_right .comfortable_bottom_item .h3, .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_right .comfortable_bottom_item h3 {
        font-size: 18px;
    }
}

.comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_right .comfortable_bottom_item p {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .comfortable .comfortable_block .comfortable_bottom .comfortable_bottom_right .comfortable_bottom_item p {
        font-size: 14px;
    }
}

.solutions {
    padding: 60px 0;
}

@media (max-width: 992px) {
    .solutions {
        padding: 45px 0;
    }
}

.solutions .custom-tabs {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

.solutions .custom-tabs .tab-buttons {
    display: flex;
    justify-content: center;
    border-radius: 20px;
    border: 1px solid #0076E2;
    align-items: center;
}

.solutions .custom-tabs .tab-buttons .tab-btn {
    padding: 8px 20px;
    border-radius: 20px;
    background: #fff;
    color: #0076E2;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 142.857% */
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.solutions .custom-tabs .tab-buttons .tab-btn.active {
    background: #0076E2;
    color: #fff;
}

.solutions .custom-tabs .tab-buttons .tab-btn:hover {
    color: #0064C0;
}

@media (max-width: 640px) {
    .solutions .custom-tabs .tab-buttons .tab-btn {
        font-size: 12px;
        padding: 8px 15px;
    }
}

@media (max-width: 370px) {
    .solutions .custom-tabs .tab-buttons .tab-btn {
        padding: 7px 10px;
    }
}

.solutions .custom-tabs .tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.solutions .custom-tabs .tab-content .white_boxs {
    transition: all 0.3s ease;
}

.solutions .custom-tabs .tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.additional_services {
    padding: 60px 0;
}

@media (max-width: 992px) {
    .additional_services {
        padding: 45px 0;
    }
}

.additional_services .additional_services_block {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

@media (max-width: 1230px) {
    .additional_services .additional_services_block {
        gap: 15px;
    }
}

.additional_services .additional_services_block .additional_services_item {
    border-radius: 21px;
    background: #EEF1F9;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: calc(33.33% - 20px);
    position: relative;
    min-height: 609px;
    overflow: clip;
}

@media (max-width: 1230px) {
    .additional_services .additional_services_block .additional_services_item {
        width: calc(33.33% - 10px);
    }
}

@media (max-width: 992px) {
    .additional_services .additional_services_block .additional_services_item {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .additional_services .additional_services_block .additional_services_item {
        min-height: 470px;
    }
}

.additional_services .additional_services_block .additional_services_item h5, .additional_services .additional_services_block .additional_services_item .h3, .additional_services .additional_services_block .additional_services_item h3 {
    color: #202838;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 640px) {
    .additional_services .additional_services_block .additional_services_item h5, .additional_services .additional_services_block .additional_services_item .h3, .additional_services .additional_services_block .additional_services_item h3 {
        font-size: 18px;
    }
}

.additional_services .additional_services_block .additional_services_item p {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .additional_services .additional_services_block .additional_services_item p {
        font-size: 14px;
    }
}

.additional_services .additional_services_block .additional_services_item img {
    position: absolute;
    bottom: 0;
    left: 0;
}

@media (max-width: 1230px) {
    .additional_services .additional_services_block .additional_services_item img {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .additional_services .additional_services_block .additional_services_item img {
        right: 0;
        left: auto;
    }
}

@media (max-width: 640px) {
    .additional_services .additional_services_block .additional_services_item img {
        bottom: -80px;
    }
}

@media (max-width: 640px) {
    .additional_services .additional_services_block .additional_services_item:first-child img {
        width: 100%;
        bottom: -130px;
    }
}

.additional_services .additional_services_block .additional_services_item:last-child img {
    max-width: 90%;
    right: 0;
    left: auto;
}

@media (max-width: 992px) {
    .additional_services .additional_services_block .additional_services_item:last-child img {
        max-width: 380px;
    }
}

@media (max-width: 640px) {
    .additional_services .additional_services_block .additional_services_item:last-child img {
        max-width: 330px;
        bottom: -80px;
    }
}

@media (max-width: 370px) {
    .additional_services .additional_services_block .additional_services_item:last-child img {
        max-width: 300px;
        bottom: -70px;
    }
}

.articles {
    padding-top: 60px;
    padding-bottom: 120px;
}

@media (max-width: 992px) {
    .articles {
        padding-bottom: 90px;
    }
}

.articles .btn_blue {
    margin: 0 auto;
}

.articles .articles_block {
    margin-bottom: 30px;
    position: relative;
}

@media (max-width: 640px) {
    .articles .articles_block {
        margin-bottom: 64px;
    }
}

.articles .articles_block .swiper-slide {
    height: auto;
}

.articles .articles_block .articles_item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
    border-radius: 21px;
    background: #FFF;
    box-shadow: 0px 2px 4px 0px rgba(3, 3, 3, 0.05), 0px 8px 24px 0px rgba(0, 0, 0, 0.05);
    padding: 5px;
}

.articles .articles_block .articles_item p {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .articles .articles_block .articles_item p {
        font-size: 14px;
    }
}

.articles .articles_block .articles_item span {
    color: #202838;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .articles .articles_block .articles_item span {
        font-size: 12px;
    }
}

.articles .articles_block .articles_item img {
    border-radius: 19px;
    max-width: 100%;
}

.articles .articles_block .articles_item .articles_item_content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 25px 25px 25px;
}

.articles .articles_block .articles_swiper {
    padding: 15px;
    padding-bottom: 26px;
}

.articles .articles_block .swiper-wrapper {
    align-items: stretch;
}

.articles .container {
    padding: 0;
}

.articles .section_title {
    margin-bottom: 45px;
}

.any_questions {
    padding: 90px 0;
    background-color: #EEF1F9;
}

.any_questions .section_title {
    margin-bottom: 30px;
}

.any_questions .any_ques_subtitle {
    color: #202838;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

@media (max-width: 640px) {
    .any_questions .any_ques_subtitle {
        font-size: 14px;
        gap: 15px;
    }

    .any_questions .any_ques_subtitle br {
        display: none;
    }
}

.any_questions .tel_ques {
    color: #0076E2;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 640px) {
    .any_questions .tel_ques {
        font-size: 14px;
    }
}

.any_questions .any_questions_top {
    margin-bottom: 60px;
}

.any_questions .any_ques_form {
    max-width: 604px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.any_questions .any_ques_form button {
    border: none;
}

.any_questions .any_ques_form .inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
    width: 100%;
}

@media (max-width: 640px) {
    .any_questions .any_ques_form .inputs {
        margin-bottom: 30px;
    }
}

.any_questions .any_ques_form .inputs .input_z {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 12px;
    border: 1px solid #E1E1E1;
    background: #FFF;
    padding: 8px 18px;
    height: 48px;
    outline: none;
    transition: all ease-in 0.3s;
}

.any_questions .any_ques_form .inputs .input_z:hover {
    box-shadow: 2px 5px 10px 0px rgba(0, 0, 0, 0.05), 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
}

.any_questions .any_ques_form .inputs .input_z::placeholder {
    color: #A7AAB3;
}

@media (max-width: 640px) {
    .any_questions .any_ques_form .inputs .input_z {
        font-size: 14px;
    }
}

.any_questions .any_ques_form .label_z {
    color: #202838;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    border: none;
    gap: 4px;
    cursor: pointer;
}

.any_questions .any_ques_form .label_z a {
    color: #4072D6;
}

.any_questions .any_ques_form .label_z input {
    display: none;
}

.any_questions .any_ques_form .label_z .checkbox_visual {
    width: 20px;
    height: 20px;
    background: url("../imgs/checkbox_ic.svg") no-repeat center/cover;
    display: inline-block;
    flex-shrink: 0;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #0076E2;
    margin-right: 6px;
}

.any_questions .any_ques_form .label_z input:checked + .checkbox_visual {
    background-image: url("../imgs/checkbox_ic.svg");
    border: none;
    border-radius: 0;
    background-color: transparent;
}

.any_questions .any_ques_form .btn_blue {
    margin-bottom: 20px;
    border: none;
    cursor: pointer;
}

.our_clients {
    padding: 60px 0;
}

@media (max-width: 992px) {
    .our_clients {
        padding: 45px 0;
    }
}

.our_clients .our_clients_block {
    border-radius: 21px;
    background: #0076E2;
    padding: 60px;
    position: relative;
    min-height: 611px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 1230px) {
    .our_clients .our_clients_block {
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .our_clients .our_clients_block {
        padding: 40px 30px;
        min-height: 0;
    }
}

.our_clients .our_clients_block.mob {
    display: none;
}

@media (max-width: 992px) {
    .our_clients .our_clients_block.mob {
        display: flex;
        align-items: center;
        gap: 60px;
    }
}

.our_clients .our_clients_block.desc .our_clients_content {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

@media (max-width: 992px) {
    .our_clients .our_clients_block.desc {
        display: none;
    }
}

@media (max-width: 1230px) {
    .our_clients .our_clients_block img {
        width: 90%;
    }
}

@media (max-width: 992px) {
    .our_clients .our_clients_block img {
        width: 100%;
    }
}

.our_clients .our_clients_block .our_clients_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.our_clients .our_clients_block .our_clients_content span {
    color: #FFF;
    font-family: Inter;
    font-size: 100px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

@media (max-width: 640px) {
    .our_clients .our_clients_block .our_clients_content span {
        font-size: 70px;
    }
}

.our_clients .our_clients_block .our_clients_content p {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .our_clients .our_clients_block .our_clients_content p {
        font-size: 14px;
    }
}

.our_clients .our_clients_block .our_clients_top_mobile {
    display: none;
}

@media (max-width: 992px) {
    .our_clients .our_clients_block .our_clients_top_mobile {
        display: flex;
        flex-wrap: wrap;
        gap: 30px 40px;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .our_clients .our_clients_block .our_clients_top_mobile {
        gap: 30px 35px;
    }
}

.our_clients .our_clients_block .our_clients_bottom_mobile {
    display: none;
}

@media (max-width: 992px) {
    .our_clients .our_clients_block .our_clients_bottom_mobile {
        display: flex;
        flex-wrap: wrap;
        gap: 30px 56px;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .our_clients .our_clients_block .our_clients_bottom_mobile {
        gap: 30px 35px;
    }
}

.our_clients .our_clients_block .our_clients_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 992px) {
    .our_clients .our_clients_block .our_clients_top {
        display: none;
    }
}

.our_clients .our_clients_block .our_clients_midd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 105px 0;
}

@media (max-width: 992px) {
    .our_clients .our_clients_block .our_clients_midd {
        display: none;
    }
}

.our_clients .our_clients_block .our_clients_midd .our_clients_midd_left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 105px;
}

.our_clients .our_clients_block .our_clients_midd .our_clients_midd_right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 105px;
    align-items: end;
}

.our_clients .our_clients_block .our_clients_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
}

@media (max-width: 992px) {
    .our_clients .our_clients_block .our_clients_bottom {
        display: none;
    }
}

.code {
    background: #202838;
}

.code .code_block_in:first-child .code_block .code_right img {
    max-width: 700px;
}

@media (max-width: 1230px) {
    .code .code_block_in:first-child .code_block .code_right img {
        max-width: 75%;
    }
}

@media (max-width: 992px) {
    .code .code_block_in:first-child .code_block .code_right img {
        max-width: 580px;
    }
}

@media (max-width: 640px) {
    .code .code_block_in:first-child .code_block .code_right img {
        max-width: 400px;
    }
}

@media (max-width: 450px) {
    .code .code_block_in:first-child .code_block .code_right img {
        max-width: 300px;
    }
}

.code .code_block_in .code_block {
    display: flex;
    align-items: center;
    gap: 100px;
    position: relative;
    min-height: 655px;
    height: 100%;
}

@media (max-width: 1230px) {
    .code .code_block_in .code_block {
        gap: 80px;
    }
}

@media (max-width: 992px) {
    .code .code_block_in .code_block {
        flex-direction: column;
        min-height: 0;
        gap: 56px;
        align-items: start;
        justify-content: center;
    }
}

.code .code_block_in .code_block .code_left {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 453px;
}

@media (max-width: 1230px) {
    .code .code_block_in .code_block .code_left {
        max-width: 33%;
    }
}

@media (max-width: 992px) {
    .code .code_block_in .code_block .code_left {
        max-width: 580px;
    }
}

@media (max-width: 640px) {
    .code .code_block_in .code_block .code_left {
        max-width: 400px;
    }
}

@media (max-width: 450px) {
    .code .code_block_in .code_block .code_left {
        max-width: 300px;
    }
}

.code .code_block_in .code_block .code_left p {
    color: #FFF;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 992px) {
    .code .code_block_in .code_block .code_left p {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .code .code_block_in .code_block .code_left p {
        font-size: 14px;
    }
}

.code .code_block_in .code_block .code_right img {
    max-width: 500px;
}

@media (max-width: 1230px) {
    .code .code_block_in .code_block .code_right img {
        max-width: 63%;
    }
}

@media (max-width: 992px) {
    .code .code_block_in .code_block .code_right img {
        max-width: 480px;
    }
}

@media (max-width: 640px) {
    .code .code_block_in .code_block .code_right img {
        max-width: 400px;
    }
}

@media (max-width: 450px) {
    .code .code_block_in .code_block .code_right img {
        max-width: 300px;
    }
}

.license {
    padding-top: 120px;
    padding-bottom: 60px;
}

@media (max-width: 992px) {
    .license {
        padding-top: 90px;
        padding-bottom: 45px;
    }
}

.license .license_block .swiper-slide {
    border-radius: 21px;
    background: #FFF;
    box-shadow: 0px 2px 4px 0px rgba(3, 3, 3, 0.05), 0px 8px 24px 0px rgba(0, 0, 0, 0.05);
    min-height: 705px;
}

@media (max-width: 1230px) {
    .license .license_block .swiper-slide {
        min-height: 800px;
    }
}

@media (max-width: 992px) {
    .license .license_block .swiper-slide {
        min-height: 595px;
    }
}

@media (max-width: 640px) {
    .license .license_block .swiper-slide {
        min-height: 410px;
    }
}

.license .license_block .swiper-slide img {
    max-width: 100%;
    border-radius: 21px;
}

.license .license_block .license_item {
    display: flex;
    flex-direction: column;
    padding: 5px;
}

.license .license_block .license_item p {
    color: #202838;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 30px 25px 25px 25px;
}

@media (max-width: 992px) {
    .license .license_block .license_item p {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .license .license_block .license_item p {
        font-size: 12px;
        padding: 15px 10px 10px 10px;
    }
}

.traffics {
    padding: 60px 0;
}

@media (max-width: 992px) {
    .traffics {
        padding: 45px 0;
    }
}

.traffics .traffics_block {
    display: flex;
    gap: 30px;
}

@media (max-width: 1230px) {
    .traffics .traffics_block {
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    .traffics .traffics_block {
        gap: 15px;
    }
}

.traffics .traffics_block .traffics_left {
    width: 380px;
}

@media (max-width: 1230px) {
    .traffics .traffics_block .traffics_left {
        width: 100%;
    }
}

.traffics .traffics_block .traffics_left .traffics_item {
    border-radius: 21px;
    background: #202838;
    min-height: 473px;
    position: relative;
    gap: 15px;
    display: flex;
    flex-direction: column;
    padding: 30px;
}

@media (max-width: 640px) {
    .traffics .traffics_block .traffics_left .traffics_item {
        min-height: 400px;
    }
}

.traffics .traffics_block .traffics_left .traffics_item p {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .traffics .traffics_block .traffics_left .traffics_item p {
        font-size: 14px;
    }
}

.traffics .traffics_block .traffics_left .traffics_item .traffics_item_bg {
    position: absolute;
    bottom: 0;
    left: 0;
}

.traffics .traffics_block .traffics_left .traffics_item .traffics_item_bg.mob {
    display: none;
}

@media (max-width: 1230px) {
    .traffics .traffics_block .traffics_left .traffics_item .traffics_item_bg.mob {
        display: flex;
        right: 0;
        margin: 0 auto;
        width: 90%;
    }
}

@media (max-width: 992px) {
    .traffics .traffics_block .traffics_left .traffics_item .traffics_item_bg.mob {
        width: 100%;
    }
}

@media (max-width: 1230px) {
    .traffics .traffics_block .traffics_left .traffics_item .traffics_item_bg.desc {
        display: none;
    }
}

.traffics .traffics_block .traffics_right {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: calc(100% - 410px);
}

@media (max-width: 1230px) {
    .traffics .traffics_block .traffics_right {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .traffics .traffics_block .traffics_right {
        gap: 15px;
    }
}

.traffics .traffics_block .traffics_right .traffics_item {
    border-radius: 21px;
    background: #EEF1F9;
    padding: 30px;
    min-height: 222px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: calc(50% - 15px);
}

@media (max-width: 992px) {
    .traffics .traffics_block .traffics_right .traffics_item {
        width: calc(50% - 7.5px);
    }
}

@media (max-width: 640px) {
    .traffics .traffics_block .traffics_right .traffics_item {
        width: 100%;
        min-height: 0;
    }
}

.traffics .traffics_block .traffics_right .traffics_item .traffics_item_title {
    color: #000;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

@media (max-width: 640px) {
    .traffics .traffics_block .traffics_right .traffics_item .traffics_item_title {
        font-size: 18px;
    }
}

.traffics .traffics_block .traffics_right .traffics_item p {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .traffics .traffics_block .traffics_right .traffics_item p {
        font-size: 14px;
    }
}

.history {
    padding-top: 60px;
}

@media (max-width: 992px) {
    .history {
        padding-top: 45px;
    }
}

@media (max-width: 992px) {
    .history .history__timeline_box {
        overflow-x: scroll;
    }
}

.history .history__timeline {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
    position: relative;
}

.history .history__timeline::after {
    content: "";
    position: absolute;
    height: 10px;
    width: 100%;
    border-radius: 5px;
    background: #EEF1F9;
    bottom: 0;
    z-index: -1;
}

@media (max-width: 992px) {
    .history .history__timeline {
        min-width: 640px;
    }
}

.history .history__timeline .history__dot {
    border: none;
    background: transparent;
    color: #202838;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
    position: relative;
    padding-bottom: 18px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .history .history__timeline .history__dot {
        font-size: 16px;
    }
}

.history .history__timeline .history__dot::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2px solid #EEF1F9;
    border-radius: 50%;
    background-color: #fff;
    bottom: -3.5px;
    left: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.history .history__timeline .history__dot.active::after {
    content: "";
    position: absolute;
    bottom: -3.5px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    background: #0076E2;
    border-radius: 50%;
    border: none;
}

.history .history_section {
    padding-top: 40px;
}

.history .swiper-slide.active .history_card {
    background: #0076E2;
}

.history .swiper-slide.active .history_card h3,
.history .swiper-slide.active .history_card .h3,.history .swiper-slide.active .history_card h3 {
    color: #fff;
}

.history .swiper-slide.active .history_card p {
    color: #fff;
}

.history .history_card {
    border-radius: 21px;
    background: #EEF1F9;
    padding: 30px;
    min-height: 453px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.history .history_card img {
    max-width: 100%;
}

.history .history_card h3,
.history .history_card .h3,.history .history_card h3 {
    color: #202838;
    font-family: Inter;
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 30px;
}

@media (max-width: 640px) {
    .history .history_card h3,
    .history .history_card .h3,    .history .history_card h3 {
        font-size: 60px;
        margin-bottom: 60px;
    }
}

.history .history_card p {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .history .history_card p {
        font-size: 14px;
    }
}

.history .history_card .history_logo {
    margin-top: auto;
}

.advantages {
    padding: 60px 0;
}

@media (max-width: 992px) {
    .advantages {
        padding: 45px 0;
    }
}

.advantages .advantages_block.desc {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1920px;
    margin: 0 auto;
}

@media (max-width: 1230px) {
    .advantages .advantages_block.desc {
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .advantages .advantages_block.desc {
        display: none;
    }
}

.advantages .advantages_block.mob {
    display: none;
}

@media (max-width: 992px) {
    .advantages .advantages_block.mob {
        display: block;
        position: relative;
    }

    .advantages .advantages_block.mob .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 21px;
        min-height: 440px;
    }
}

.advantages .advantages_block.mob .swiper-wrapper {
    padding-bottom: 40px;
}

@media (max-width: 1230px) {
    .advantages .advantages_block.mob .swiper-buttons {
        top: auto;
        right: 0;
        left: 0;
        margin: 0 auto;
        justify-content: center;
    }
}

.advantages .advantages_block.mob .advantages_item {
    width: 100%;
}

.advantages .advantages_block.mob .advantages_item.white.dark_blue {
    background: #202838;
}

.advantages .advantages_block.mob .advantages_item.world_bg {
    background-image: url(../imgs/advantages_item_2_bg.png);
    background-repeat: no-repeat;
}

.advantages .advantages_top {
    display: flex;
    gap: 30px;
    width: 100%;
}

@media (max-width: 1230px) {
    .advantages .advantages_top {
        gap: 15px;
    }
}

.advantages .advantages_top .advantages_item:first-of-type {
    background: #202838;
}

.advantages .advantages_top .advantages_item:nth-child(2) {
    background-image: url(../imgs/advantages_item_2_bg.png);
    background-repeat: no-repeat;
}

.advantages .advantages_bottom {
    display: flex;
    gap: 30px;
    width: 100%;
}

@media (max-width: 1230px) {
    .advantages .advantages_bottom {
        gap: 15px;
    }
}

.advantages .advantages_item {
    border-radius: 21px;
    background: #EEF1F9;
    padding: 30px;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc(40% - 15px);
}

@media (max-width: 1230px) {
    .advantages .advantages_item {
        width: calc(40% - 7.5px);
    }
}

.advantages .advantages_item.big_item {
    width: calc(60% - 15px);
}

@media (max-width: 1230px) {
    .advantages .advantages_item.big_item {
        width: calc(60% - 7.5px);
    }
}

.advantages .advantages_item.white {
    background: #0076E2;
}

.advantages .advantages_item.white h4,
.advantages .advantages_item.white h3,
.advantages .advantages_item.white .h3,
.advantages .advantages_top .advantages_item:first-of-type h4,
.advantages .advantages_top .advantages_item:first-of-type h3,
.advantages .advantages_top .advantages_item:first-of-type .h3,
.advantages .advantages_block.mob .advantages_item.white.dark_blue h4,
.advantages .advantages_block.mob .advantages_item.white.dark_blue h3,
.advantages .advantages_block.mob .advantages_item.white.dark_blue .h3,.advantages .advantages_block.mob .advantages_item.white.dark_blue h3 {
    color: #fff;
}

.advantages .advantages_item.white p {
    color: #fff;
}

.advantages .advantages_item h4,
.advantages .advantages_item h3,
.advantages .advantages_item .h3,.advantages .advantages_item h3 {
    color: #202838;
    font-family: Inter;
    font-size: 90px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 992px) {
    .advantages .advantages_item h4,
    .advantages .advantages_item h3,
    .advantages .advantages_item .h3,    .advantages .advantages_item h3 {
        font-size: 70px;
    }
}

@media (max-width: 640px) {
    .advantages .advantages_item h4,
    .advantages .advantages_item h3,
    .advantages .advantages_item .h3,    .advantages .advantages_item h3 {
        font-size: 70px;
    }
}

.advantages .advantages_item p {
    color: #202838;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .advantages .advantages_item p {
        font-size: 14px;
    }
}

.news_articles {
    margin-top: -100px;
}

@media (max-width: 992px) {
    .news_articles {
        margin-top: -150px;
    }
}

@media (max-width: 640px) {
    .news_articles {
        margin-top: -90px;
    }
}

.licenses_page {
    margin-top: -100px;
}

@media (max-width: 640px) {
    .licenses_page {
        margin-top: -60px;
    }
}

.licenses_page .licenses_page_block {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

@media (max-width: 1230px) {
    .licenses_page .licenses_page_block {
        gap: 15px;
    }
}

.licenses_page .license_item {
    border-radius: 21px;
    background: #FFF;
    box-shadow: 0px 2px 4px 0px rgba(3, 3, 3, 0.05), 0px 8px 24px 0px rgba(0, 0, 0, 0.05);
    width: calc(33.33% - 20px);
    padding: 5px;
}

@media (max-width: 1230px) {
    .licenses_page .license_item {
        width: calc(50% - 7.5px);
    }
}

.licenses_page .license_item img {
    max-width: 100%;
    border-radius: 21px;
}

.news_page_section {
    padding-top: 60px;
}

.news_page_section .news_page_block {
    display: flex;
    gap: 60px;
}

@media (max-width: 1230px) {
    .news_page_section .news_page_block {
        gap: 30px;
    }
}

.news_page_section .news_page_block .news_page_left {
    width: 260px;
}

@media (max-width: 1230px) {
    .news_page_section .news_page_block .news_page_left {
        width: 220px;
    }
}

@media (max-width: 992px) {
    .news_page_section .news_page_block .news_page_left {
        display: none;
    }
}

.news_page_section .news_page_block .news_page_left ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.news_page_section .news_page_block .news_page_left ul li a {
    color: rgba(32, 40, 56, 0.6);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: all ease-in 0.4s;
}

.news_page_section .news_page_block .news_page_left ul li a:hover, .news_page_section .news_page_block .news_page_left ul li a.active {
    color: #202838;
    font-weight: 600;
}

.news_page_section .news_page_block .news_page_right {
    width: calc(100% - 320px);
}

@media (max-width: 1230px) {
    .news_page_section .news_page_block .news_page_right {
        width: calc(100% - 250px);
    }
}

@media (max-width: 992px) {
    .news_page_section .news_page_block .news_page_right {
        width: 100%;
    }
}

.news_page_section .news_page_block .news_page_right .news_page_main_img {
    position: relative;
    margin-bottom: 48px;
}

@media (max-width: 992px) {
    .news_page_section .news_page_block .news_page_right .news_page_main_img {
        background: #0076E2;
        margin-bottom: 35px;
    }
}

@media (max-width: 992px) {
    .news_page_section .news_page_block .news_page_right .news_page_main_img img {
        height: 474px;
        object-fit: cover;
        object-position: right;
    }
}

@media (max-width: 640px) {
    .news_page_section .news_page_block .news_page_right .news_page_main_img img {
        height: 348px;
    }
}

/* Картинки в теле статьи не должны выходить за пределы контейнера текста
   (раньше max-width был только в @media <=1230px, на десктопе картинки переполняли колонку). */
.news_page_section .news_page_block .news_page_right img {
    max-width: 100%;
    height: auto;
}

.news_page_section .news_page_block .news_page_right b {
    color: #202838;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 1230px) {
    .news_page_section .news_page_block .news_page_right b {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .news_page_section .news_page_block .news_page_right b {
        font-size: 14px;
    }
}

.news_page_section .news_page_block .news_page_right .h3,.news_page_section .news_page_block .news_page_right h3, .news_page_section .news_page_block .news_page_right h1 {
    color: #FFF;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    position: absolute;
    left: 15px;
    bottom: 15px;
}

@media (max-width: 1230px) {
    .news_page_section .news_page_block .news_page_right .h3,    .news_page_section .news_page_block .news_page_right h3, .news_page_section .news_page_block .news_page_right h1 {
        font-size: 35px;
        left: 20px;
        bottom: 30px;
    }
}

@media (max-width: 640px) {
    .news_page_section .news_page_block .news_page_right .h3,    .news_page_section .news_page_block .news_page_right h3, .news_page_section .news_page_block .news_page_right h1 {
        font-size: 21px;
        left: 13px;
        padding-right: 10px;
    }
}

.news_page_section .news_page_block .news_page_right p {
    color: #202838;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 1230px) {
    .news_page_section .news_page_block .news_page_right p {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .news_page_section .news_page_block .news_page_right p {
        font-size: 14px;
    }
}

.news_page_section .news_page_block .news_page_right p b {
    font-weight: 600;
}

.news_page_section .news_page_block .news_page_right p a {
    color: #0076E2;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

@media (max-width: 1230px) {
    .news_page_section .news_page_block .news_page_right p a {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .news_page_section .news_page_block .news_page_right p a {
        font-size: 14px;
    }
}

.news_page_section .news_page_block .news_page_right h5 {
    color: #0076E2;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 30px;
    margin-top: 100px;
}

@media (max-width: 1230px) {
    .news_page_section .news_page_block .news_page_right h5 {
        margin-top: 60px;
    }
}

@media (max-width: 640px) {
    .news_page_section .news_page_block .news_page_right h5 {
        font-size: 18px;
    }
}

.news_page_section .news_page_block .news_page_right ol {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 20px;
}

.news_page_section .news_page_block .news_page_right ol li {
    color: #202838;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 1230px) {
    .news_page_section .news_page_block .news_page_right ol li {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .news_page_section .news_page_block .news_page_right ol li {
        font-size: 14px;
    }
}

.news_page_section .news_page_block .news_page_right ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: disc;
    padding-left: 20px;
}

.news_page_section .news_page_block .news_page_right ul li {
    color: #202838;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 1230px) {
    .news_page_section .news_page_block .news_page_right ul li {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .news_page_section .news_page_block .news_page_right ul li {
        font-size: 14px;
    }
}

.news_page_section .news_page_block .news_page_right ul li b {
    font-weight: 600;
    display: inline-flex;
}

.news_page_section .news_page_block .news_page_right .div {
    border-radius: 21px;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05), 0px 8px 24px 0px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    padding: 9px;
}

.news_page_section .news_page_block .news_page_right .div img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

@media (max-width: 1230px) {
    .news_page_section .news_page_block .news_page_right .div img {
        max-width: 100%;
    }
}

.news_page_section .news_page_block .news_page_right span {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 60px;
    display: block;
}

@media (max-width: 640px) {
    .news_page_section .news_page_block .news_page_right span {
        font-size: 14px;
    }
}

.news_page_section .news_page_block .news_page_right .authors {
    color: #A0A0A0;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-top: 10px;
    border-top: 1px solid #A0A0A0;
    margin-top: 100px;
}

@media (max-width: 992px) {
    .news_page_section .news_page_block .news_page_right .authors {
        margin-top: 60px;
    }
}

.news_page_section .news_page_block .news_page_right .did_you_like {
    border-radius: 0px 0px 21px 21px;
    background: #0076E2;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
    margin-bottom: 20px;
}

@media (max-width: 640px) {
    .news_page_section .news_page_block .news_page_right .did_you_like {
        margin-top: 30px;
    }
}

.news_page_section .news_page_block .news_page_right .did_you_like p {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

@media (max-width: 640px) {
    .news_page_section .news_page_block .news_page_right .did_you_like p {
        font-size: 14px;
    }
}

.news_page_section .news_page_block .news_page_right .did_you_like .likes_btns {
    display: flex;
    gap: 20px;
}

.news_page_section .news_page_block .news_page_right .did_you_like .likes_btns button {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: none;
}

.news_page_section .news_page_block .news_page_right .breadcrumb_z {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    flex-direction: row;
    list-style: none;
    padding: 0;
    gap: 5px 27px;
    flex-wrap: wrap;
}

.news_page_section .news_page_block .news_page_right .breadcrumb_z li {
    color: rgba(32, 40, 56, 0.6);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 1230px) {
    .news_page_section .news_page_block .news_page_right .breadcrumb_z li {
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    .news_page_section .news_page_block .news_page_right .breadcrumb_z li {
        font-size: 9px;
    }
}

.news_page_section .news_page_block .news_page_right .breadcrumb_z li a {
    color: #202838;
    position: relative;
}

.news_page_section .news_page_block .news_page_right .breadcrumb_z li a::after {
    content: url(../imgs/arr.svg);
    position: absolute;
    right: -22px;
    width: 17px;
    height: 17px;
    top: 0;
    bottom: 0;
}

@media (max-width: 640px) {
    .news_page_section .news_page_block .news_page_right .breadcrumb_z li a::after {
        width: 14px;
        height: 14px;
        right: -18px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.news_page_section .news_page_block .news_page_right .date_time {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news_page_section .news_page_block .news_page_right .date_time span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(32, 40, 56, 0.6);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}

.high_load {
    background: #202838;
    padding-top: 100px;
    padding-bottom: 100px;
}

@media (max-width: 992px) {
    .high_load {
        padding-top: 100px;
        padding-bottom: 90px;
    }
}

@media (max-width: 640px) {
    .high_load {
        padding: 90px 0;
    }
}

.high_load .high_load_block {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 394px;
    padding-top: 30px;
    flex-wrap: wrap;
}

.high_load .high_load_block .high_load_item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 40%;
}

@media (max-width: 1230px) {
    .high_load .high_load_block .high_load_item {
        width: 50%;
    }
}

@media (max-width: 992px) {
    .high_load .high_load_block .high_load_item {
        width: 100%;
    }
}

.high_load .high_load_block .high_load_item:first-child {
    padding-right: 60px;
    border-right: 1px solid rgba(255, 255, 255, 0.57);
}

@media (max-width: 992px) {
    .high_load .high_load_block .high_load_item:first-child {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.57);
        padding-bottom: 60px;
        margin-bottom: 60px;
    }
}

.high_load .high_load_block .high_load_item:last-child {
    padding-left: 60px;
}

@media (max-width: 992px) {
    .high_load .high_load_block .high_load_item:last-child {
        padding-left: 0;
    }
}

.high_load .high_load_block .high_load_item img {
    max-width: 150px;
}

@media (max-width: 640px) {
    .high_load .high_load_block .high_load_item img {
        max-width: 83px;
    }
}

.high_load .high_load_block .high_load_item h5,
.high_load .high_load_block .high_load_item .h3,.high_load .high_load_block .high_load_item h3 {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

@media (max-width: 992px) {
    .high_load .high_load_block .high_load_item h5,
    .high_load .high_load_block .high_load_item .h3,    .high_load .high_load_block .high_load_item h3 {
        margin-bottom: 15px;
    }
}

.high_load .high_load_block .high_load_item p {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.8;
    text-align: center;
}

@media (max-width: 640px) {
    .high_load .high_load_block .high_load_item p {
        font-size: 14px;
    }
}

.high_load .high_load_block .high_load_item p span {
    font-size: 24px;
    display: block;
}

@media (max-width: 640px) {
    .high_load .high_load_block .high_load_item p span {
        font-size: 16px;
    }
}

.hero_sp {
    color: #202838;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 30px;
    margin-bottom: 60px;
}

.flexible_settings {
    padding-bottom: 120px;
}

@media (max-width: 1230px) {
    .flexible_settings .comfortable_block .comfortable_top .comfortable_top_item h5 {
        font-size: 18px;
    }

    .flexible_settings .comfortable_block .comfortable_top .comfortable_top_item p {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .flexible_settings {
        padding-bottom: 90px;
    }

    .flexible_settings .comfortable_block .comfortable_top .comfortable_top_item h5 {
        font-size: 22px;
    }

    .flexible_settings .comfortable_block .comfortable_top .comfortable_top_item p {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .flexible_settings .comfortable_block .comfortable_top .comfortable_top_item h5 {
        font-size: 18px;
    }

    .flexible_settings .comfortable_block .comfortable_top .comfortable_top_item p {
        font-size: 14px;
    }
}

.flexible_settings.comfortable .comfortable_block .comfortable_top .comfortable_top_right .comfortable_top_item img {
    border-radius: 6px 6px 0 0;
}

.safe {
    padding-top: 120px;
}

@media (max-width: 992px) {
    .safe {
        padding-top: 90px;
    }
}

.we_help.sms {
    padding: 120px 0;
}

@media (max-width: 992px) {
    .we_help.sms {
        padding: 90px 0;
    }
}

.tmp_management {
    background: #202838;
    padding: 100px 0;
}

@media (max-width: 992px) {
    .tmp_management {
        padding: 90px 0;
    }
}

.tmp_management .tmp_management_block {
    display: flex;
    gap: 100px;
    flex-direction: column;
}

@media (max-width: 992px) {
    .tmp_management .tmp_management_block {
        gap: 60px;
    }
}

.tmp_management .tmp_management_block .tmp_management_item {
    display: flex;
    gap: 100px;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 992px) {
    .tmp_management .tmp_management_block .tmp_management_item {
        gap: 60px;
    }

    .tmp_management .tmp_management_block .tmp_management_item .tmp_management_content {
        order: 1;
    }

    .tmp_management .tmp_management_block .tmp_management_item .tmp_management_img_box {
        order: 2;
    }
}

@media (max-width: 640px) {
    .tmp_management .tmp_management_block .tmp_management_item {
        gap: 30px;
    }
}

.tmp_management .tmp_management_block .tmp_management_content {
    width: calc(50% - 100px);
}

@media (max-width: 992px) {
    .tmp_management .tmp_management_block .tmp_management_content {
        width: 100%;
    }
}

.tmp_management .tmp_management_block .tmp_management_content:first-of-type h2 {
    margin-bottom: 50px;
}

@media (max-width: 640px) {
    .tmp_management .tmp_management_block .tmp_management_content:first-of-type h2 {
        margin-bottom: 30px;
    }
}

.tmp_management .tmp_management_block .tmp_management_content h2 {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: start;
    margin-bottom: 35px;
    text-align: left;
}

@media (max-width: 640px) {
    .tmp_management .tmp_management_block .tmp_management_content h2 {
        margin-bottom: 30px;
    }
}

.tmp_management .tmp_management_block .tmp_management_content p {
    color: #FFF;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
}

@media (max-width: 640px) {
    .tmp_management .tmp_management_block .tmp_management_content p {
        font-size: 14px;
    }
}

.tmp_management .tmp_management_block .tmp_management_content ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 640px) {
    .tmp_management .tmp_management_block .tmp_management_content ul {
        gap: 15px;
    }
}

.tmp_management .tmp_management_block .tmp_management_content ul li {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: start;
    gap: 20px;
}

@media (max-width: 640px) {
    .tmp_management .tmp_management_block .tmp_management_content ul li {
        font-size: 14px;
    }
}

.tmp_management .tmp_management_block .tmp_management_img_box {
    border-radius: 21px;
    background: #EEF1F9;
    width: 50%;
}

@media (max-width: 992px) {
    .tmp_management .tmp_management_block .tmp_management_img_box {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .tmp_management .tmp_management_block .tmp_management_img_box.mob_last_order {
        order: 4;
    }
}

.tmp_management .tmp_management_block .tmp_management_img_box img {
    max-width: 100%;
}

.stages {
    padding: 60px 0;
}

@media (max-width: 992px) {
    .stages {
        padding: 45px 0;
    }
}

.stages .stages_block .stages_item {
    border-radius: 21px;
    background: #202838;
    padding: 25px 20px 0 20px;
    min-height: 373px;
    position: relative;
}

.stages .stages_block .stages_item p {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 640px) {
    .stages .stages_block .stages_item p {
        font-size: 14px;
    }
}

.stages .stages_block .stages_item p b {
    font-weight: 500;
    display: block;
}

.stages .stages_block .stages_item span {
    color: #FFF;
    font-family: Inter;
    font-size: 183px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    position: absolute;
    bottom: -55px;
    right: -2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.why {
    padding-top: 60px;
    padding-bottom: 120px;
}

@media (max-width: 992px) {
    .why {
        padding-bottom: 90px;
        padding-top: 45px;
    }
}

.why .why_block {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .why .why_block {
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 30px;
    }
}

.why .why_block .why_left {
    border-radius: 21px;
    background: #0076E2;
    padding: 60px;
    width: calc(100% - 338px);
}

@media (max-width: 1230px) {
    .why .why_block .why_left {
        padding: 60px 30px;
    }
}

@media (max-width: 992px) {
    .why .why_block .why_left {
        width: 100%;
    }
}

.why .why_block .why_left .why_left_text {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 60px;
}

@media (max-width: 1230px) {
    .why .why_block .why_left .why_left_text {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .why .why_block .why_left .why_left_text {
        font-size: 14px;
        margin-bottom: 40px;
    }
}

.why .why_block .why_left .why_l_bottom {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 640px) {
    .why .why_block .why_left .why_l_bottom {
        flex-direction: column;
        gap: 40px;
    }
}

.why .why_block .why_left .why_l_bottom p {
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .why .why_block .why_left .why_l_bottom p {
        font-size: 14px;
    }
}

.why .why_block .why_left .why_l_bottom p span {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 76px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

@media (max-width: 1230px) {
    .why .why_block .why_left .why_l_bottom p span {
        font-size: 50px;
    }
}

@media (max-width: 640px) {
    .why .why_block .why_left .why_l_bottom p span {
        font-size: 40px;
    }
}

.why .why_block .why_right {
    display: flex;
    gap: 30px;
    width: 308px;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 992px) {
    .why .why_block .why_right {
        width: 100%;
        gap: 15px;
    }
}

.why .why_block .why_right .why_right_item {
    border-radius: 21px;
    background: #FFF;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05), 0px 8px 24px 0px rgba(0, 0, 0, 0.05);
    padding: 20px;
    height: calc(33.33% - 20px);
    display: flex;
    align-items: center;
}

@media (max-width: 992px) {
    .why .why_block .why_right .why_right_item {
        height: 100%;
        padding: 30px;
    }
}

.why .why_block .why_right .why_right_item p {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .why .why_block .why_right .why_right_item p {
        font-size: 14px;
    }
}

.companies_block {
    overflow: hidden;
    user-select: none;
    display: flex;
}

.companies_block .companies {
    min-width: 100%;
    animation: 30s linear infinite scroll;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 46px;
}

.companies_block .companies li:last-child {
    margin-right: 46px;
}

.clients_block {
    display: flex;
    overflow: hidden;
    user-select: none;
    background-color: #fff;
    padding: 60px 0;
}

@media (max-width: 640px) {
    .clients_block {
        padding-bottom: 45px;
        padding-top: 0;
    }
}

.clients_block .clients_content {
    gap: 0 5px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    animation: 15s linear infinite scroll;
    gap: 0 30px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - 5px));
    }
}

.hero.platform_hero {
    padding-bottom: 90px;
}

@media (max-width: 992px) {
    .hero.platform_hero {
        padding-bottom: 60px;
    }
}

.business_mailing {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (max-width: 992px) {
    .business_mailing {
        padding-bottom: 45px;
    }
}

.business_mailing .section_title {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (max-width: 640px) {
    .business_mailing .section_title {
        margin-bottom: 30px;
    }
}

.business_mailing .section_title p {
    color: #202838;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 992px) {
    .business_mailing .section_title p {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .business_mailing .section_title p {
        font-size: 14px;
    }
}

@media (max-width: 1230px) {
    .business_mailing .business_mailing_tab_header_box {
        overflow-x: scroll;
    }
}

.business_mailing .business_mailing_tab_header {
    display: flex;
    gap: 30px;
}

@media (max-width: 1230px) {
    .business_mailing .business_mailing_tab_header {
        gap: 15px;
        min-width: 1200px;
    }
}

.business_mailing .business_mailing_tab_header button {
    border-radius: 9px;
    background: #EEF1F9;
    color: #202838;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: none;
    padding: 20px 10px;
    width: calc(20% - 24px);
    cursor: default;
}

@media (max-width: 1230px) {
    .business_mailing .business_mailing_tab_header button {
        font-size: 14px;
        width: calc(20% - 12px);
        padding: 15px 10px;
    }
}

.business_mailing .business_mailing_tab_content {
    padding-top: 60px;
}

@media (max-width: 640px) {
    .business_mailing .business_mailing_tab_content {
        padding-top: 30px;
    }
}

.kaskad_hero {
    background: linear-gradient(179deg, rgba(255, 255, 255, 0.5) 0.75%, rgba(139, 191, 239, 0.2) 45.06%, rgba(255, 255, 255, 0.5) 99.23%), url(../imgs/kaskad_bg_img.png);
    background-repeat: no-repeat;
    background-size: cover, 900px;
    background-position-x: center, calc(100% + 100px);
    background-position-y: center;
}

@media (max-width: 1230px) {
    .kaskad_hero {
        background-position-y: center, bottom;
        background-size: cover, 700px;
    }
}

@media (max-width: 992px) {
    .kaskad_hero {
        background-size: cover, 500px;
        background-position-x: center, calc(100% + 50px);
    }
}

@media (max-width: 640px) {
    .kaskad_hero {
        background-size: cover, 400px;
        background-position-y: center, calc(100% + 70px);
    }
}

.chat_pl_hero {
    background: linear-gradient(179deg, rgba(255, 255, 255, 0.5) 0.75%, rgba(139, 191, 239, 0.2) 45.06%, rgba(255, 255, 255, 0.5) 99.23%), url(../imgs/chat_pl_hero_img.png);
    background-repeat: no-repeat;
    background-size: cover, 900px;
    background-position-x: center, calc(100% + 170px);
    background-position-y: center, calc(100% - 250px);
}

@media (max-width: 1230px) {
    .chat_pl_hero {
        background-position-y: center, bottom;
        background-size: cover, 700px;
    }
}

@media (max-width: 992px) {
    .chat_pl_hero {
        background-size: cover, 500px;
        background-position-x: center, calc(100% + 50px);
    }
}

@media (max-width: 640px) {
    .chat_pl_hero {
        background-size: cover, 400px;
        background-position-y: center, calc(100% + 70px);
    }
}

@media (max-width: 640px) {
    .chat_pl_hero .hero_title_small br {
        display: block;
    }
}

.about_platform {
    background: #202838;
    padding: 100px 0;
}

@media (max-width: 992px) {
    .about_platform {
        padding: 90px 0;
    }
}

.about_platform .about_platform_block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 992px) {
    .about_platform .about_platform_block {
        flex-direction: column;
        gap: 60px;
    }
}

.about_platform .about_platform_block .about_platform_content {
    max-width: 527px;
}

@media (max-width: 992px) {
    .about_platform .about_platform_block .about_platform_content {
        max-width: 100%;
    }
}

.about_platform .about_platform_block .about_platform_content .section_title {
    margin-bottom: 30px;
    text-align: left;
}

@media (max-width: 992px) {
    .about_platform .about_platform_block .about_platform_content .section_title {
        text-align: center;
    }
}

.about_platform .about_platform_block .about_platform_content ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about_platform .about_platform_block .about_platform_content ul li {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .about_platform .about_platform_block .about_platform_content ul li {
        font-size: 14px;
    }
}

.about_platform .about_platform_block .about_platform_sxema img {
    max-width: 100%;
}

.advanvantages_section {
    padding-top: 120px;
    padding-bottom: 60px;
}

@media (max-width: 992px) {
    .advanvantages_section {
        padding-top: 90px;
        padding-bottom: 45px;
    }
}

.advanvantages_section .white_boxs .white_box.aic h5 {
    align-items: center;
}

.advanvantages_section .white_boxs .white_box h5 {
    align-items: start;
}

.advanvantages_section .white_boxs .white_box.aic img {
    padding-top: 0;
}

.why_sxdp {
    background: #202838;
    padding: 90px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

@media (max-width: 992px) {
    .why_sxdp {
        height: 100%;
    }
}

.why_sxdp .why_sxdp_block {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
}

@media (max-width: 992px) {
    .why_sxdp .why_sxdp_block {
        flex-wrap: wrap;
        gap: 60px 0;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .why_sxdp .why_sxdp_block {
        gap: 30px;
    }
}

.why_sxdp .why_sxdp_block .why_sxdp_item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.6);
    padding-right: 10px;
    margin-right: 10px;
    align-items: center;
    width: 25%;
}

@media (max-width: 992px) {
    .why_sxdp .why_sxdp_block .why_sxdp_item {
        width: 48%;
    }
}

@media (max-width: 640px) {
    .why_sxdp .why_sxdp_block .why_sxdp_item {
        width: 100%;
        padding: 0;
        border: none;
        gap: 15px;
    }
}

.why_sxdp .why_sxdp_block .why_sxdp_item:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

@media (max-width: 992px) {
    .why_sxdp .why_sxdp_block .why_sxdp_item:nth-child(2n) {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
    }
}

.why_sxdp .why_sxdp_block .why_sxdp_item img {
    max-width: 40px;
}

.why_sxdp .why_sxdp_block .why_sxdp_item h5 {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.why_sxdp .why_sxdp_block .why_sxdp_item .h3,.why_sxdp .why_sxdp_block .why_sxdp_item h3 {
    text-align: center;
}

@media (max-width: 640px) {
    .why_sxdp .why_sxdp_block .why_sxdp_item h5 {
        font-size: 18px;
    }
}

.why_sxdp .why_sxdp_block .why_sxdp_item p {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
}

@media (max-width: 640px) {
    .why_sxdp .why_sxdp_block .why_sxdp_item p {
        font-size: 14px;
    }
}

.we_help_sxdp {
    padding: 120px 0;
}

@media (max-width: 992px) {
    .we_help_sxdp {
        padding: 90px 0;
    }
}

.grey_boxs {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

@media (max-width: 1230px) {
    .grey_boxs {
        gap: 15px;
    }
}

.grey_boxs .grey_box {
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-radius: 21px;
    background: #EEF1F9;
    padding: 30px;
    width: calc(33.33% - 20px);
}

@media (max-width: 1230px) {
    .grey_boxs .grey_box {
        width: calc(33.33% - 10px);
    }
}

@media (max-width: 992px) {
    .grey_boxs .grey_box {
        width: 100%;
    }
}

.grey_boxs .grey_box h5 {
    color: #202838;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 1230px) {
    .grey_boxs .grey_box h5 {
        font-size: 18px;
    }
}

.grey_boxs .grey_box p {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 1230px) {
    .grey_boxs .grey_box p {
        font-size: 14px;
    }
}

.grey_boxs .grey_box img {
    max-width: 25px;
}

.our_clients.sxdp {
    padding-top: 0px;
    padding-bottom: 120px;
}

@media (max-width: 992px) {
    .our_clients.sxdp {
        padding-bottom: 90px;
    }
}

.cascade_mailing_for_any_business {
    padding-top: 60px;
    padding-bottom: 120px;
}

@media (max-width: 1230px) {
    .cascade_mailing_for_any_business {
        padding-top: 45px;
        padding-bottom: 90px;
    }
}

.cascade_mailing_for_any_business .btn_blue {
    margin: 0 auto;
    margin-top: 60px;
}

@media (max-width: 992px) {
    .cascade_mailing_for_any_business .white_boxs .white_box {
        width: 100%;
    }
}

.difference {
    background: #202838;
    padding: 90px 0;
}

.difference .section_title.white {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.difference .section_title.white p {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 992px) {
    .difference .section_title.white p br {
        display: none;
    }
}

@media (max-width: 640px) {
    .difference .section_title.white p {
        font-size: 14px;
    }
}

.difference .difference_block {
    display: flex;
}

.difference .difference_block ul {
    background-color: #fff;
    border-radius: 21px;
    overflow: hidden;
}

.difference .difference_block ul li {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 20.8px */
    border-bottom: 1px solid #D4D6D8;
    display: flex;
}

@media (max-width: 640px) {
    .difference .difference_block ul li {
        font-size: 14px;
    }
}

.difference .difference_block ul li:first-child {
    color: #202838;
    text-align: center;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; /* 28.6px */
    background-color: #eef1f9;
}

@media (max-width: 640px) {
    .difference .difference_block ul li:first-child {
        font-size: 18px;
    }
}

.difference .difference_block ul li p {
    width: 50%;
    padding: 20px 90px;
}

@media (max-width: 992px) {
    .difference .difference_block ul li p {
        padding: 20px 25px;
    }
}

@media (max-width: 640px) {
    .difference .difference_block ul li p {
        padding: 10px;
    }
}

.difference .difference_block ul li p:first-child {
    border-right: 1px solid #D4D6D8;
}

.difference .difference_block ul li h5,
.difference .difference_block ul li .h3,.difference .difference_block ul li h3 {
    width: 50%;
    padding: 30px 90px;
}

@media (max-width: 992px) {
    .difference .difference_block ul li h5,
    .difference .difference_block ul li .h3,    .difference .difference_block ul li h3 {
        padding: 30px 25px;
    }
}

@media (max-width: 640px) {
    .difference .difference_block ul li h5,
    .difference .difference_block ul li .h3,    .difference .difference_block ul li h3 {
        padding: 20px;
    }
}

.difference .difference_block ul li h5:first-child,
.difference .difference_block ul li .h3:first-child {
    border-right: 1px solid #D4D6D8;
}

.cascade_mailing {
    background: #202838;
    padding-top: 65px;
    padding-bottom: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

@media (max-width: 992px) {
    .cascade_mailing {
        padding: 90px 0;
        height: 100%;
    }
}

.cascade_mailing .cascade_mailing_block {
    display: flex;
    align-items: center;
    gap: 74px;
}

@media (max-width: 1230px) {
    .cascade_mailing .cascade_mailing_block {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .cascade_mailing .cascade_mailing_block {
        gap: 60px;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .cascade_mailing .cascade_mailing_block {
        gap: 30px;
    }
}

.cascade_mailing .cascade_mailing_block .cascade_mailing_content {
    width: calc(46% - 37px);
}

@media (max-width: 1230px) {
    .cascade_mailing .cascade_mailing_block .cascade_mailing_content {
        width: calc(45% - 25px);
    }
}

@media (max-width: 992px) {
    .cascade_mailing .cascade_mailing_block .cascade_mailing_content {
        width: 100%;
    }
}

.cascade_mailing .cascade_mailing_block .cascade_mailing_content .section_title {
    margin-bottom: 30px;
    text-align: left;
}

@media (max-width: 992px) {
    .cascade_mailing .cascade_mailing_block .cascade_mailing_content .section_title {
        text-align: center;
    }
}

.cascade_mailing .cascade_mailing_block .cascade_mailing_content p {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .cascade_mailing .cascade_mailing_block .cascade_mailing_content p {
        font-size: 14px;
    }
}

.cascade_mailing .cascade_mailing_block .cascade_mailing_right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: calc(54% - 37px);
}

@media (max-width: 1230px) {
    .cascade_mailing .cascade_mailing_block .cascade_mailing_right {
        width: calc(55% - 25px);
    }
}

@media (max-width: 992px) {
    .cascade_mailing .cascade_mailing_block .cascade_mailing_right {
        width: 100%;
    }
}

.cascade_mailing .cascade_mailing_block .cascade_mailing_right img {
    max-width: 100%;
}

.cascade_mailing .cascade_mailing_block .cascade_mailing_r_top {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cascade_mailing .cascade_mailing_block .cascade_mailing_r_top span {
    color: #BFBFBF;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.24px;
}

.cascade_mailing .cascade_mailing_block .cascade_mailing_r_top ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cascade_mailing .cascade_mailing_block .cascade_mailing_r_top ul li:last-child a::after {
    content: none;
}

.cascade_mailing .cascade_mailing_block .cascade_mailing_r_top ul li a {
    color: #fff;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    position: relative;
}

.cascade_mailing .cascade_mailing_block .cascade_mailing_r_top ul li a::after {
    position: absolute;
    content: "";
    background-image: url(../imgs/breadcrumb_ic_white.svg);
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    top: 0;
    right: -20px;
}

.why.kaskad {
    padding-top: 120px;
    padding-bottom: 60px;
}

@media (max-width: 1230px) {
    .why.kaskad {
        padding-top: 90px;
        padding-bottom: 45px;
    }
}

.we_help.kaskad {
    padding-bottom: 120px;
}

@media (max-width: 1230px) {
    .we_help.kaskad {
        padding-bottom: 90px;
    }
}

.hero.push {
    background: linear-gradient(180deg, rgba(139, 191, 239, 0.2) 0%, rgba(255, 255, 255, 0.5) 100%);
    background-repeat: no-repeat;
    background-size: cover;
}

.hero.push .hero_block {
    position: relative;
}

.hero.shlyuz {
    background: linear-gradient(180deg, rgba(139, 191, 239, 0.2) 0%, rgba(255, 255, 255, 0.5) 100%), url(../imgs/shlyuz_hero_img.png);
    background-repeat: no-repeat;
    background-size: cover, 900px;
    background-position-x: center, calc(100% + 30px);
    background-position-y: center, calc(100% - 110px);
}

@media (max-width: 1230px) {
    .hero.shlyuz {
        background-position-y: center, calc(100% - 205px);
        background-size: cover, 700px;
    }
}

@media (max-width: 992px) {
    .hero.shlyuz {
        background-size: cover, 580px;
        background-position-x: center, calc(100% + 100px);
        background-position-y: center, calc(100% + 70px);
    }
}

@media (max-width: 640px) {
    .hero.shlyuz {
        background-size: cover, 450px;
        background-position-y: center, calc(100% + 70px);
    }
}

.hero.sxdp_hero {
    position: relative;
    background: linear-gradient(180deg, rgba(139, 191, 239, 0.2) 0%, rgba(255, 255, 255, 0.5) 100%);
}

.hero.sxdp_hero::after {
    content: "";
    position: absolute;
    bottom: 110px;
    right: -30px;
    width: 640px;
    height: 640px;
    background: url(../imgs/sxdp_hero.png) no-repeat center/contain;
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 1230px) {
    .hero.sxdp_hero::after {
        width: 500px;
        height: 500px;
        bottom: 205px;
    }
}

@media (max-width: 992px) {
    .hero.sxdp_hero::after {
        width: 420px;
        height: 420px;
        right: -10px;
        bottom: -30px;
    }
}

@media (max-width: 640px) {
    .hero.sxdp_hero::after {
        width: 250px;
        height: 250px;
        bottom: -25px;
    }
}

.push_img_hero {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    position: absolute;
    right: -167px;
    top: 0;
    z-index: -1;
}

@media (max-width: 1230px) {
    .push_img_hero {
        right: -230px;
        top: 50px;
    }
}

@media (max-width: 992px) {
    .push_img_hero {
        top: 195px;
    }
}

@media (max-width: 640px) {
    .push_img_hero {
        right: -180px;
    }
}

.push_img_hero .push_box {
    border-radius: 34px;
    height: 133px;
    width: 598px;
    background-color: #a9d8f1;
}

@media (max-width: 1230px) {
    .push_img_hero .push_box {
        width: 500px;
        height: 110px;
    }
}

@media (max-width: 992px) {
    .push_img_hero .push_box {
        height: 80px;
    }
}

@media (max-width: 640px) {
    .push_img_hero .push_box {
        width: 359px;
    }
}

.push_img_hero .push_box:first-child {
    width: 497px;
    background-color: #a0c3e4;
}

@media (max-width: 1230px) {
    .push_img_hero .push_box:first-child {
        width: 400px;
    }
}

@media (max-width: 640px) {
    .push_img_hero .push_box:first-child {
        width: 298px;
    }
}

.comparison {
    background: #202838;
    padding: 90px 0;
}

@media (max-width: 640px) {
    .comparison .table-wrapper {
        overflow: scroll;
    }
}

.comparison .table-wrapper .comparison-table {
    border-collapse: collapse;
    border-radius: 21px;
    overflow: hidden;
}

@media (max-width: 640px) {
    .comparison .table-wrapper .comparison-table {
        min-width: 610px;
    }
}

.comparison .table-wrapper .comparison-table tr {
    min-height: 83px;
}

.comparison .table-wrapper .comparison-table tr td:nth-child(2) {
    background-color: #eef1f9;
}

.comparison .table-wrapper .comparison-table tr:first-child {
    border-radius: 21px 21px 0 0;
}

.comparison .table-wrapper .comparison-table tr:first-child th:first-child {
    border-radius: 21px 0 0 0;
}

.comparison .table-wrapper .comparison-table tr:first-child th:last-child {
    border-radius: 0 21px 0 0;
}

.comparison .table-wrapper .comparison-table tr:last-child td:first-child {
    border-radius: 0 0 0 21px;
}

.comparison .table-wrapper .comparison-table tr:last-child td:last-child {
    border-radius: 0 0 21px 0;
}

.comparison .table-wrapper .comparison-table th {
    background-color: #eff2f9;
    color: #202838;
    text-align: center;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; /* 28.6px */
    padding: 30px 12px;
    border: 1px solid #D4D6D8;
    width: 33.33%;
}

@media (max-width: 992px) {
    .comparison .table-wrapper .comparison-table th {
        font-size: 18px;
        padding: 30px 12px;
        height: 100%;
    }
}

.comparison .table-wrapper .comparison-table td {
    background-color: #fff;
    color: #202838;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 23.4px */
    padding: 15px 50px;
    border: 1px solid #D4D6D8;
    width: 33.33%;
    height: 83px;
}

@media (max-width: 992px) {
    .comparison .table-wrapper .comparison-table td {
        font-size: 14px;
        padding: 10px;
        height: 100%;
        text-align: left;
    }
}

.comparison .table-wrapper .comparison-table td .mob_br {
    display: none;
}

@media (max-width: 992px) {
    .comparison .table-wrapper .comparison-table td .mob_br {
        display: block;
    }
}

.app_push_section {
    padding-top: 100px;
    background: #202838;
}

@media (max-width: 992px) {
    .app_push_section {
        padding-top: 90px;
    }
}

.app_push_section .app_push_block {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
}

@media (max-width: 1230px) {
    .app_push_section .app_push_block {
        gap: 60px;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .app_push_section .app_push_block {
        gap: 30px;
    }
}

.app_push_section .app_push_block .app_push_tel {
    max-width: 422px;
}

.app_push_section .app_push_block .app_push_tel img {
    max-width: 100%;
}

@media (max-width: 1230px) {
    .app_push_section .app_push_block .app_push_tel {
        order: 2;
    }
}

.app_push_section .app_push_block .app_push_content {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (max-width: 1230px) {
    .app_push_section .app_push_block .app_push_content {
        order: 1;
        gap: 15px;
    }
}

.app_push_section .app_push_block .app_push_content h2 {
    text-align: left;
}

.app_push_section .app_push_block .app_push_content .feature {
    padding-bottom: 30px;
    display: flex;
    gap: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.46);
    align-items: center;
}

@media (max-width: 640px) {
    .app_push_section .app_push_block .app_push_content .feature {
        flex-direction: column;
        gap: 15px;
        align-items: start;
        padding-bottom: 15px;
    }
}

.app_push_section .app_push_block .app_push_content .feature:last-child {
    border-bottom: none;
}

.app_push_section .app_push_block .app_push_content .feature.active h5 {
    color: #fff;
}

.app_push_section .app_push_block .app_push_content .feature.active p {
    color: #fff;
}

.app_push_section .app_push_block .app_push_content .feature h5 {
    color: rgba(255, 255, 255, 0.46);
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    width: 330px;
}

@media (max-width: 992px) {
    .app_push_section .app_push_block .app_push_content .feature h5 {
        width: 50%;
    }
}

@media (max-width: 640px) {
    .app_push_section .app_push_block .app_push_content .feature h5 {
        font-size: 18px;
        width: 100%;
    }
}

/* Заголовок фичи в разметке — .h3 (не h5). Фиксируем ту же ширину колонки,
   чтобы левый край описаний .feature p совпадал во всех блоках. */
.app_push_section .app_push_block .app_push_content .feature .h3,.app_push_section .app_push_block .app_push_content .feature h3 {
    width: 330px;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .app_push_section .app_push_block .app_push_content .feature .h3,    .app_push_section .app_push_block .app_push_content .feature h3 {
        width: 50%;
    }
}

@media (max-width: 640px) {
    .app_push_section .app_push_block .app_push_content .feature .h3,    .app_push_section .app_push_block .app_push_content .feature h3 {
        width: 100%;
        flex-shrink: 1;
    }
}

.app_push_section .app_push_block .app_push_content .feature p {
    color: rgba(255, 255, 255, 0.46);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 350px;
}

@media (max-width: 992px) {
    .app_push_section .app_push_block .app_push_content .feature p {
        width: 50%;
    }
}

@media (max-width: 640px) {
    .app_push_section .app_push_block .app_push_content .feature p {
        font-size: 14px;
        width: 100%;
    }
}

.possibilities.push {
    padding-top: 0;
    padding-bottom: 120px;
}

@media (max-width: 992px) {
    .possibilities.push {
        padding-bottom: 90px;
    }
}

.advanvantages_section.push {
    padding-bottom: 120px;
}

@media (max-width: 992px) {
    .advanvantages_section.push {
        padding-bottom: 90px;
    }
}

@media (max-width: 992px) {
    .advanvantages_section.push .white_boxs .white_box {
        width: 100%;
    }
}

.our_clients.push {
    padding-bottom: 120px;
}

@media (max-width: 992px) {
    .our_clients.push {
        padding-bottom: 90px;
    }
}

@media (max-width: 640px) {
    .advan.push .white_boxs {
        margin-top: 30px;
    }
}

.shlyuz_sxema {
    padding-top: 60px;
}

.shlyuz_sxema .section_title {
    margin-bottom: 100px;
}

@media (max-width: 640px) {
    .shlyuz_sxema .section_title br {
        display: none;
    }
}

.shlyuz_sxema .shlyuz_sxema_box {
    border-radius: 21px;
    background: #EEF1F9;
    padding: 90px 45px;
}

@media (max-width: 1230px) {
    .shlyuz_sxema .shlyuz_sxema_box {
        padding: 90px 20px;
    }
}

.shlyuz_sxema .shlyuz_sxema_box .shlyuz_sxema_block {
    display: flex;
    gap: 25px;
    justify-content: space-between;
}

@media (max-width: 1230px) {
    .shlyuz_sxema .shlyuz_sxema_box .shlyuz_sxema_block {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
}

.shlyuz_sxema .shlyuz_sxema_box .shlyuz_sxema_block h6 {
    color: #202838;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.shlyuz_sxema .shlyuz_sxema_box .shlyuz_sxema_block p {
    color: #202838;
    text-align: center;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.shlyuz_sxema .shlyuz_sxema_box .shlyuz_sxema_block .shlyuz_sxema_item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    position: relative;
}

.shlyuz_sxema .shlyuz_sxema_box .shlyuz_sxema_block .shlyuz_sxema_item:last-of-type h6 {
    color: #0076E2;
}

.shlyuz_sxema .shlyuz_sxema_box .shlyuz_sxema_block .shlyuz_sxema_item .shlyuz_sxema_item_main {
    position: relative;
    z-index: 1;
}

.shlyuz_sxema .shlyuz_sxema_box .shlyuz_sxema_block .shlyuz_sxema_item .shlyuz_sxema_ic {
    position: absolute;
    top: -48px;
    right: -53px;
    z-index: 0;
}

.shlyuz_sxema .shlyuz_sxema_box .shlyuz_sxema_block .shlyuz_sxema_item_lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    padding-top: 13px;
}

@media (max-width: 1230px) {
    .shlyuz_sxema .shlyuz_sxema_box .shlyuz_sxema_block .shlyuz_sxema_item_lines {
        flex-direction: row;
        gap: 14px;
        height: 58px;
    }

    .shlyuz_sxema .shlyuz_sxema_box .shlyuz_sxema_block .shlyuz_sxema_item_lines img {
        transform: rotate(90deg);
        width: 58px;
        height: 11px;
    }
}

.what_is {
    background: #202838;
    padding-top: 50px;
    padding-bottom: 82px;
}

@media (max-width: 992px) {
    .what_is {
        padding-top: 96px;
        padding-bottom: 90px;
    }
}

@media (max-width: 640px) {
    .what_is {
        padding: 90px 0;
    }
}

.what_is .what_is_block {
    display: flex;
    gap: 50px;
    align-items: center;
}

@media (max-width: 992px) {
    .what_is .what_is_block {
        flex-direction: column;
        gap: 60px;
    }
}

@media (max-width: 640px) {
    .what_is .what_is_block {
        gap: 30px;
    }
}

@media (max-width: 1230px) {
    .what_is .what_is_block .what_is_right {
        max-width: 50%;
    }
}

@media (max-width: 992px) {
    .what_is .what_is_block .what_is_right {
        max-width: 100%;
    }
}

.what_is .what_is_block .what_is_content {
    width: 515px;
}

@media (max-width: 1230px) {
    .what_is .what_is_block .what_is_content {
        width: 50%;
    }
}

@media (max-width: 992px) {
    .what_is .what_is_block .what_is_content {
        width: 100%;
    }
}

.what_is .what_is_block .what_is_content h2 {
    margin-bottom: 30px;
    text-align: left;
}

@media (max-width: 992px) {
    .what_is .what_is_block .what_is_content h2 {
        text-align: center;
    }
}

.what_is .what_is_block .what_is_content p {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .what_is .what_is_block .what_is_content p {
        font-size: 14px;
    }
}

.what_is .what_is_block img {
    max-width: 100%;
}

.what_is.chat_pl {
    padding: 180px 0;
}

@media (max-width: 992px) {
    .what_is.chat_pl {
        padding: 90px 0;
    }
}

.what_is.chat_pl .what_is_block .what_is_right {
    width: 587px;
}

@media (max-width: 992px) {
    .what_is.chat_pl .what_is_block .what_is_right {
        width: 100%;
    }
}

.advan.shlyuz {
    padding-bottom: 120px;
}

@media (max-width: 992px) {
    .advan.shlyuz {
        padding-bottom: 90px;
    }
}

.advan.shlyuz .white_boxs_tmp .white_box_tmp {
    align-items: start;
}

@media (max-width: 640px) {
    .section_title br {
        display: none;
    }
}

.business_mailing.shlyuz {
    padding-top: 120px;
}

@media (max-width: 992px) {
    .business_mailing.shlyuz {
        padding-top: 90px;
    }
}

.business_mailing.shlyuz .white_boxs .white_box {
    padding-right: 20px;
}

@media (max-width: 992px) {
    .business_mailing.shlyuz .white_boxs .white_box {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .white_boxs .white_box h5 br, .white_boxs .white_box .h3 br {
        display: none;
    }
}

.possibilities_platform {
    padding-top: 60px;
    padding-bottom: 120px;
}

@media (max-width: 992px) {
    .possibilities_platform {
        padding-top: 45px;
        padding-bottom: 90px;
    }
}

.what_help_platform {
    padding-bottom: 60px;
}

@media (max-width: 992px) {
    .what_help_platform {
        padding-bottom: 45px;
    }
}

.your_benefits {
    padding-top: 60px;
}

@media (max-width: 992px) {
    .your_benefits {
        padding-top: 45px;
    }
}

.advan_platform {
    padding-top: 120px;
    padding-bottom: 60px;
}

@media (max-width: 992px) {
    .advan_platform {
        padding-top: 90px;
        padding-bottom: 45px;
    }
}

.advan_platform_block {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

@media (max-width: 992px) {
    .advan_platform_block {
        gap: 15px;
    }
}

.advan_platform_block .advan_platform_item {
    border-radius: 21px;
    background: #EEF1F9;
    width: 470px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 569px;
    align-items: center;
}

.advan_platform_block .advan_platform_item.big {
    width: calc(100% - 500px);
}

@media (max-width: 992px) {
    .advan_platform_block .advan_platform_item.big {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .advan_platform_block .advan_platform_item {
        width: 100%;
        padding: 30px 30px 0 30px;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .advan_platform_block .advan_platform_item {
        min-height: 0;
    }
}

.advan_platform_block .advan_platform_item .advan_platform_item_content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px;
}

@media (max-width: 992px) {
    .advan_platform_block .advan_platform_item .advan_platform_item_content {
        padding: 0;
    }
}

.advan_platform_block .advan_platform_item h6 {
    color: #202838;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 640px) {
    .advan_platform_block .advan_platform_item h6 {
        font-size: 18px;
    }
}

.advan_platform_block .advan_platform_item p {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .advan_platform_block .advan_platform_item p {
        font-size: 14px;
    }
}

.advan_platform_block .advan_platform_item:nth-child(2) img {
    width: 527px;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .advan_platform_block .advan_platform_item:nth-child(2) img {
        width: 100%;
    }
}

.advan_platform_block .advan_platform_item:nth-child(3) {
    align-items: end;
}

@media (max-width: 992px) {
    .advan_platform_block .advan_platform_item:nth-child(3) {
        padding: 30px 0 0 30px;
    }
}

.advan_platform_block .advan_platform_item:nth-child(3) img {
    border-radius: 0px 0px 21px 0px;
    background: #F6F3F3;
    padding-top: 22px;
    padding-left: 11px;
    width: 670px;
    max-width: 100%;
}

@media (max-width: 1230px) {
    .advan_platform_block .advan_platform_item:nth-child(3) img {
        max-width: 95%;
    }
}

@media (max-width: 992px) {
    .advan_platform_block .advan_platform_item:nth-child(3) img {
        width: 100%;
        max-width: 100%;
    }
}

.advan_platform_block .advan_platform_item:nth-child(4) {
    align-items: start;
}

.advan_platform_block .advan_platform_item:nth-child(4) img {
    margin-bottom: 35px;
}

@media (max-width: 992px) {
    .advan_platform_block .advan_platform_item:nth-child(4) img {
        margin-bottom: 0;
    }
}

.advan_platform_block .advan_platform_item:nth-child(5) img {
    width: 310px;
}

@media (max-width: 992px) {
    .advan_platform_block .advan_platform_item:nth-child(5) img {
        width: 100%;
    }
}

.advan_platform_block .advan_platform_item:last-child img {
    width: 592px;
}

@media (max-width: 992px) {
    .advan_platform_block .advan_platform_item:last-child img {
        width: 100%;
    }
}

.advan_platform_block .advan_platform_item .advan_platform_item_imgs {
    display: flex;
    gap: 42px;
    align-items: start;
}

@media (max-width: 640px) {
    .advan_platform_block .advan_platform_item .advan_platform_item_imgs {
        gap: 11px;
    }
}

.advan_platform_block .advan_platform_item .advan_platform_item_imgs img {
    width: 319px;
}

.advan_platform_block .advan_platform_item .advan_platform_item_imgs img:first-child {
    width: 48px;
}

@media (max-width: 640px) {
    .advan_platform_block .advan_platform_item .advan_platform_item_imgs img:first-child {
        width: 35px;
    }
}

@media (max-width: 640px) {
    .advan_platform_block .advan_platform_item .advan_platform_item_imgs img {
        width: 236px;
    }
}

.advan_platform_block .advan_platform_item img {
    max-width: 90%;
}

@media (max-width: 992px) {
    .advan_platform_block .advan_platform_item img {
        max-width: 100%;
        width: 100%;
    }
}

.advan_platform.possibilities_channels {
    padding-top: 0;
}

@media (max-width: 1230px) {
    .advan_platform.possibilities_channels .advan_platform_block .advan_platform_item {
        width: calc(40% - 15px);
        min-height: 0;
    }
}

@media (max-width: 992px) {
    .advan_platform.possibilities_channels .advan_platform_block .advan_platform_item {
        width: 100%;
    }
}

@media (max-width: 1230px) {
    .advan_platform.possibilities_channels .advan_platform_block .advan_platform_item.big {
        width: calc(60% - 15px);
    }
}

@media (max-width: 992px) {
    .advan_platform.possibilities_channels .advan_platform_block .advan_platform_item.big {
        width: 100%;
    }
}

.advan_platform.possibilities_channels .advan_platform_block .advan_platform_item:nth-child(2) img {
    width: 410px;
    margin-bottom: 0px;
}

@media (max-width: 992px) {
    .advan_platform.possibilities_channels .advan_platform_block .advan_platform_item:nth-child(2) img {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .advan_platform.possibilities_channels .advan_platform_block .advan_platform_item:nth-child(3) {
        padding: 30px 0 0 30px;
    }
}

.advan_platform.possibilities_channels .advan_platform_block .advan_platform_item:nth-child(3) img {
    border-radius: 0px;
    background: transparent;
    padding-top: 0px;
    padding-left: 0px;
    width: 670px;
    max-width: 100%;
}

@media (max-width: 1230px) {
    .advan_platform.possibilities_channels .advan_platform_block .advan_platform_item:nth-child(3) img {
        max-width: 94%;
    }
}

@media (max-width: 992px) {
    .advan_platform.possibilities_channels .advan_platform_block .advan_platform_item:nth-child(3) img {
        max-width: 100%;
        width: 100%;
    }
}

.advan_platform.possibilities_channels .advan_platform_block .advan_platform_item:nth-child(4) {
    align-items: center;
}

.advan_platform.possibilities_channels .advan_platform_block .advan_platform_item:nth-child(4) img {
    margin-bottom: 0px;
}

.advan_platform.possibilities_channels .advan_platform_block .advan_platform_item:nth-child(5) img {
    width: 410px;
}

@media (max-width: 992px) {
    .advan_platform.possibilities_channels .advan_platform_block .advan_platform_item:nth-child(5) img {
        width: 100%;
    }
}

.advan_platform.possibilities_channels .advan_platform_block .advan_platform_item:last-child img {
    width: 410px;
}

@media (max-width: 992px) {
    .advan_platform.possibilities_channels .advan_platform_block .advan_platform_item:last-child img {
        width: 100%;
    }
}

.advan_platform.advan_viber_bot .advan_platform_block .advan_platform_item {
    min-height: 0;
}

@media (max-width: 1230px) {
    .advan_platform.advan_viber_bot .advan_platform_block .advan_platform_item {
        width: calc(40% - 15px);
        min-height: 0;
    }
}

@media (max-width: 992px) {
    .advan_platform.advan_viber_bot .advan_platform_block .advan_platform_item {
        width: 100%;
    }
}

@media (max-width: 1230px) {
    .advan_platform.advan_viber_bot .advan_platform_block .advan_platform_item.big {
        width: calc(60% - 15px);
    }
}

@media (max-width: 992px) {
    .advan_platform.advan_viber_bot .advan_platform_block .advan_platform_item.big {
        width: 100%;
    }
}

.advan_platform.advan_viber_bot .advan_platform_block .advan_platform_item:nth-child(2) img {
    width: 430px;
    margin-bottom: 0px;
}

.advan_platform.advan_viber_bot .advan_platform_block .advan_platform_item:nth-child(3) {
    align-items: center;
}

@media (max-width: 992px) {
    .advan_platform.advan_viber_bot .advan_platform_block .advan_platform_item:nth-child(3) {
        padding: 30px 30px 0 30px;
    }
}

.advan_platform.advan_viber_bot .advan_platform_block .advan_platform_item:nth-child(3) img {
    border-radius: 0px;
    background: transparent;
    padding-top: 0px;
    padding-left: 0px;
    width: 430px;
}

.advan_platform.advan_viber_bot .advan_platform_block .advan_platform_item:nth-child(4) {
    align-items: center;
}

.advan_platform.advan_viber_bot .advan_platform_block .advan_platform_item:nth-child(4) img {
    margin-bottom: 0px;
}

.advan_platform.advan_viber_bot .advan_platform_block .advan_platform_item:nth-child(5) img {
    width: 430px;
}

.advan_platform.advan_viber_bot .advan_platform_block .advan_platform_item:last-child img {
    width: 410px;
}

@media (max-width: 992px) {
    .advan_platform.advan_viber_bot .advan_platform_block .advan_platform_item:last-child img {
        width: 430px;
    }
}

.advan_platform.advan_viber_bot .advan_platform_block .advan_platform_item img {
    max-width: 430px;
}

@media (max-width: 1230px) {
    .advan_platform.advan_viber_bot .advan_platform_block .advan_platform_item img {
        max-width: 90%;
    }
}

@media (max-width: 992px) {
    .advan_platform.advan_viber_bot .advan_platform_block .advan_platform_item img {
        max-width: 430px;
    }
}

@media (max-width: 640px) {
    .advan_platform.advan_viber_bot .advan_platform_block .advan_platform_item img {
        max-width: 100%;
    }
}

.possibilities.viber_business {
    padding-top: 120px;
}

@media (max-width: 992px) {
    .possibilities.viber_business {
        padding-top: 90px;
    }
}

.methods_viber_channel_con {
    padding-top: 60px;
}

@media (max-width: 992px) {
    .methods_viber_channel_con {
        padding-top: 45px;
    }
}

.methods_viber_channel {
    background: #202838;
    padding-top: 36px;
    overflow: clip;
}

@media (max-width: 1230px) {
    .methods_viber_channel {
        padding-top: 90px;
    }
}

.methods_viber_channel .methods_viber_channel_block {
    display: flex;
    transform: translateY(9px);
}

@media (max-width: 1230px) {
    .methods_viber_channel .methods_viber_channel_block {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 1230px) {
    .methods_viber_channel .methods_viber_channel_block .methods_viber_channel_img {
        order: 3;
    }
}

.methods_viber_channel .methods_viber_channel_block .methods_viber_channel_img img {
    width: 659px;
    max-width: 100%;
}

@media (max-width: 1230px) {
    .methods_viber_channel .methods_viber_channel_block .methods_viber_channel_img img {
        width: 100%;
    }
}

.methods_viber_channel .methods_viber_channel_block .methods_viber_channel_items {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 270px;
    padding: 78px 0;
}

@media (max-width: 1230px) {
    .methods_viber_channel .methods_viber_channel_block .methods_viber_channel_items {
        order: 1;
        max-width: calc(50% - 15px);
        gap: 30px;
        padding: 0;
    }
}

@media (max-width: 640px) {
    .methods_viber_channel .methods_viber_channel_block .methods_viber_channel_items {
        max-width: 100%;
    }
}

@media (max-width: 1230px) {
    .methods_viber_channel .methods_viber_channel_block .methods_viber_channel_items:last-child {
        order: 2;
    }
}

.methods_viber_channel .methods_viber_channel_block .methods_viber_channel_items .methods_viber_channel_item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.methods_viber_channel .methods_viber_channel_block .methods_viber_channel_items .methods_viber_channel_item h5 {
    color: #FFF;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 640px) {
    .methods_viber_channel .methods_viber_channel_block .methods_viber_channel_items .methods_viber_channel_item h5 {
        font-size: 18px;
    }
}

.methods_viber_channel .methods_viber_channel_block .methods_viber_channel_items .methods_viber_channel_item p {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .methods_viber_channel .methods_viber_channel_block .methods_viber_channel_items .methods_viber_channel_item p {
        font-size: 14px;
    }
}

.testing_viber {
    padding-top: 60px;
}

.testing_viber .open-modal, .why_with_wa_sms .open-modal, .why_app_push_advans .open-modal {
    width: 100%;
}
.testing_viber:has(> .container .open-modal), .why_with_wa_sms:has(> .container .open-modal), .why_app_push_advans:has(> .container .open-modal) {
    padding-top: 0!important;
}

@media (max-width: 992px) {
    .testing_viber {
        padding-top: 45px;
    }
}

@media (max-width: 640px) {
    .testing_viber .container {
        padding: 0;
    }
}

.testing_viber .form_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 21px;
    background: #202838;
    padding: 60px 50px 50px 120px;
    color: #fff;
    gap: 30px;
}

@media (max-width: 1230px) {
    .testing_viber .form_block {
        padding: 60px 50px;
    }
}

@media (max-width: 992px) {
    .testing_viber .form_block {
        gap: 70px;
        padding: 90px;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .testing_viber .form_block {
        padding: 90px 20px;
    }
}

.testing_viber .form_block .form_text {
    display: flex;
    flex-direction: column;
    gap: 58px;
}

.testing_viber .form_block .form_text p {
    color: #FFF;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.testing_viber .form_block .form_text .price {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.testing_viber .form_block .form_text .price span {
    color: #FFF;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.testing_viber .form_block .form_text .price strong {
    color: #FFF;
    font-family: Inter;
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.testing_viber .form_block .form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-width: 450px;
}

@media (max-width: 640px) {
    .testing_viber .form_block .form {
        min-width: 0;
    }
}

.testing_viber .form_block .form input[type=tel] {
    padding: 17px;
    border-radius: 12px;
    border: none;
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    outline: none;

}

.testing_viber .form_block .form input[type=tel]::placeholder {
    color: #A7AAB3;
}

.testing_viber .form_block .form button {
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    background-color: #0076E2;
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
    transition: all 0.3s ease;

    &:hover {
        background: #0064C0;
    }
}

.testing_viber .form_block .form button:disabled {
    background-color: #999;
    cursor: not-allowed;
}

.testing_viber .form_block .form .custom_checkbox {
    color: #fff;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 4px;
    user-select: none;
    cursor: pointer;
}

.testing_viber .form_block .form .custom_checkbox input {
    display: none;
}

.testing_viber .form_block .form .custom_checkbox .checkbox_visual {
    width: 20px;
    height: 20px;
    background: url("../imgs/checkbox_ic.svg") no-repeat center/cover;
    display: inline-block;
    flex-shrink: 0;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #0076E2;
    margin-right: 6px;
}

.testing_viber .form_block .form .custom_checkbox input:checked + .checkbox_visual {
    background-image: url("../imgs/checkbox_ic.svg");
    border: none;
    border-radius: 0;
    background-color: transparent;
}

.testing_viber .form_block .form .custom_checkbox a {
    color: #4072D6;
}

.hero.viber_business_hero {
    background: linear-gradient(179deg, rgba(255, 255, 255, 0.5) 0.75%, rgba(139, 191, 239, 0.2) 45.06%, rgba(255, 255, 255, 0.5) 99.23%);
    padding-bottom: 80px;
}

@media (max-width: 992px) {
    .hero.viber_business_hero {
        padding-bottom: 15px;
    }
}

.hero.viber_business_hero .hero_block {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 1230px) {
    .hero.viber_business_hero .hero_block {
        gap: 50px;
    }

    .hero.viber_business_hero .hero_block .hero_subtitle br {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero.viber_business_hero .hero_block {
        flex-direction: column;
        gap: 35px;
        align-items: center;
    }
}

@media (max-width: 992px) {
    .hero.viber_business_hero .hero_block .hero_left {
        width: 100%;
    }
}

.hero.viber_business_hero .hero_block ul {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 992px) {
    .hero.viber_business_hero .hero_block ul {
        display: none;
    }
}

.hero.viber_business_hero .hero_block ul li {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .hero.viber_business_hero .hero_block .hero_right {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.hero.viber_business_hero .hero_block .hero_right img {
    max-width: 430px;
}

@media (max-width: 992px) {
    .hero.viber_business_hero .hero_block .hero_right img {
        max-width: 430px;
    }
}

@media (max-width: 640px) {
    .hero.viber_business_hero .hero_block .hero_right img {
        max-width: 75%;
    }
}

.hero.viber_business_hero .hero_block .hero_right.big img {
    max-width: 600px;
}

@media (max-width: 992px) {
    .hero.viber_business_hero .hero_block .hero_right.big img {
        max-width: 540px;
    }
}

@media (max-width: 640px) {
    .hero.viber_business_hero .hero_block .hero_right.big img {
        max-width: 100%;
    }
}

.stages.viber_bot .stages_block .stages_item {
    min-height: 400px;
}

.what_viber_bot {
    background: #202838;
    padding-top: 30px;
    overflow: clip;
}

@media (max-width: 992px) {
    .what_viber_bot {
        padding-top: 90px;
    }
}

.what_viber_bot .what_viber_bot_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(6.5px);
}

@media (max-width: 1230px) {
    .what_viber_bot .what_viber_bot_block {
        align-items: start;
    }
}

@media (max-width: 992px) {
    .what_viber_bot .what_viber_bot_block {
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .what_viber_bot .what_viber_bot_block {
        gap: 30px;
        transform: translateY(2px);
    }
}

.what_viber_bot .what_viber_bot_block .what_viber_bot_left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 457px;
}

@media (max-width: 1230px) {
    .what_viber_bot .what_viber_bot_block .what_viber_bot_left {
        padding-top: 60px;
    }
}

@media (max-width: 992px) {
    .what_viber_bot .what_viber_bot_block .what_viber_bot_left {
        max-width: 100%;
        padding-top: 0;
    }
}

.what_viber_bot .what_viber_bot_block .what_viber_bot_left .section_title {
    margin-bottom: 0;
    text-align: left;
}

.what_viber_bot .what_viber_bot_block .what_viber_bot_left p {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.what_viber_bot .what_viber_bot_block .what_viber_bot_left p b {
    font-weight: 700;
}

@media (max-width: 640px) {
    .what_viber_bot .what_viber_bot_block .what_viber_bot_left p {
        font-size: 14px;
    }
}

.what_viber_bot .what_viber_bot_block .what_viber_bot_right {
    position: relative;
}

@media (max-width: 640px) {
    .what_viber_bot .what_viber_bot_block .what_viber_bot_right {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.what_viber_bot .what_viber_bot_block .what_viber_bot_right .what_viber_bot_img {
    width: 430px;
    position: relative;
    z-index: 2;
}

@media (max-width: 640px) {
    .what_viber_bot .what_viber_bot_block .what_viber_bot_right .what_viber_bot_img {
        width: 75%;
    }
}

.what_viber_bot .what_viber_bot_block .what_viber_bot_right .what_viber_bot_vector {
    position: absolute;
    z-index: 0;
    right: -245px;
    top: -30px;
}

@media (max-width: 1230px) {
    .what_viber_bot .what_viber_bot_block .what_viber_bot_right .what_viber_bot_vector {
        right: -280px;
    }
}

.advan.whatsapp_business .white_boxs_tmp {
    margin-top: -94px;
    padding-bottom: 120px;
}

@media (max-width: 992px) {
    .advan.whatsapp_business .white_boxs_tmp {
        padding-bottom: 90px;
        margin-top: -30px;
    }
}

.advan.whatsapp_business .white_boxs_tmp .white_box_tmp {
    align-items: start;
}

.mailing_whatsapp {
    background: #202838;
    padding-top: 90px;
    overflow: clip;
}

.mailing_whatsapp.aic {
    padding: 90px 0;
}

.mailing_whatsapp .section_title {
    margin-bottom: 30px;
}

.mailing_whatsapp .mailing_whatsapp_block {
    display: flex;
    justify-content: space-between;
    transform: translateY(5px);
}

@media (max-width: 1230px) {
    .mailing_whatsapp .mailing_whatsapp_block {
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .mailing_whatsapp .mailing_whatsapp_block {
        gap: 30px;
    }
}

.mailing_whatsapp .mailing_whatsapp_block.aic {
    align-items: center;
}

.mailing_whatsapp .mailing_whatsapp_block.aic .mailing_whatsapp_left .section_title {
    margin-bottom: 30px;
}

.mailing_whatsapp .mailing_whatsapp_block .mailing_whatsapp_left {
    max-width: 540px;
}

@media (max-width: 1230px) {
    .mailing_whatsapp .mailing_whatsapp_block .mailing_whatsapp_left {
        max-width: 100%;
    }
}

.mailing_whatsapp .mailing_whatsapp_block .mailing_whatsapp_left .section_title {
    text-align: left;
}

@media (max-width: 1230px) {
    .mailing_whatsapp .mailing_whatsapp_block .mailing_whatsapp_left .section_title {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .mailing_whatsapp .mailing_whatsapp_block .mailing_whatsapp_left .section_title br {
        display: block;
    }
}

.mailing_whatsapp .mailing_whatsapp_block .mailing_whatsapp_left p {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .mailing_whatsapp .mailing_whatsapp_block .mailing_whatsapp_left p {
        font-size: 14px;
    }
}

.mailing_whatsapp .mailing_whatsapp_block .mailing_whatsapp_left ul {
    display: flex;
    flex-wrap: wrap;
    gap: 17px 15px;
    margin-top: 30px;
}

@media (max-width: 640px) {
    .mailing_whatsapp .mailing_whatsapp_block .mailing_whatsapp_left ul {
        gap: 30px;
    }
}

.mailing_whatsapp .mailing_whatsapp_block .mailing_whatsapp_left ul li {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: calc(50% - 7.5px);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mailing_whatsapp .mailing_whatsapp_block .mailing_whatsapp_left ul li b {
    font-weight: 700;
    display: flex;
}

@media (max-width: 640px) {
    .mailing_whatsapp .mailing_whatsapp_block .mailing_whatsapp_left ul li {
        font-size: 14px;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .mailing_whatsapp .mailing_whatsapp_block .mailing_whatsapp_right {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.mailing_whatsapp .mailing_whatsapp_block .mailing_whatsapp_right img {
    width: 460px;
}

@media (max-width: 992px) {
    .mailing_whatsapp .mailing_whatsapp_block .mailing_whatsapp_right img {
        width: 430px;
    }
}

@media (max-width: 640px) {
    .mailing_whatsapp .mailing_whatsapp_block .mailing_whatsapp_right img {
        width: 75%;
    }
}

.mailing_whatsapp .mailing_whatsapp_block .mailing_whatsapp_right.mini img {
    width: 430px;
}

@media (max-width: 640px) {
    .mailing_whatsapp .mailing_whatsapp_block .mailing_whatsapp_right.mini img {
        width: 82%;
    }
}

.mailing_whatsapp .mailing_whatsapp_block .mailing_whatsapp_right.big img {
    width: 540px;
}

@media (max-width: 640px) {
    .mailing_whatsapp .mailing_whatsapp_block .mailing_whatsapp_right.big img {
        width: 82%;
    }
}

.mailing_whatsapp.what_notify {
    padding-top: 52px;
}

@media (max-width: 1230px) {
    .mailing_whatsapp.what_notify {
        padding-top: 90px;
    }
}

.mailing_whatsapp.what_notify .mailing_whatsapp_block .mailing_whatsapp_left {
    padding-top: 118px;
}

@media (max-width: 1230px) {
    .mailing_whatsapp.what_notify .mailing_whatsapp_block .mailing_whatsapp_left {
        padding-top: 0;
    }
}

.why_with_wa_sms {
    padding-top: 120px;
}

@media (max-width: 992px) {
    .why_with_wa_sms {
        padding-top: 90px;
    }
}

/* Restore top padding even when the section contains a CTA (.open-modal),
   which otherwise gets zeroed by the shared rule above. */
.why_with_wa_sms:has(> .container .open-modal) {
    padding-top: 120px !important;
}

@media (max-width: 992px) {
    .why_with_wa_sms:has(> .container .open-modal) {
        padding-top: 90px !important;
    }
}

.why_with_wa_sms .why_with_wa_sms_block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why_with_wa_sms .section_title {
    margin-bottom: 30px;
}

.why_with_wa_sms .text {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 75%;
    text-align: center;
}

.why_with_wa_sms .text.top {
    margin-bottom: 60px;
}

@media (max-width: 640px) {
    .why_with_wa_sms .text.top {
        margin-bottom: 30px;
    }
}

.why_app_push_advans .text {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 75%;
    text-align: center;
    margin: 0 auto;
}

.why_with_wa_sms .text.bottom, .why_app_push_advans .text.bottom {
    margin-top: 60px;
    margin-bottom: 30px;
}


@media (max-width: 640px) {
    .why_with_wa_sms .text.bottom, .why_app_push_advans .text.bottom {
        margin-top: 30px;
    }
}

@media (max-width: 640px) {
    .why_with_wa_sms .text, .why_app_push_advans .text.bottom {
        font-size: 14px;
    }
}

.why_with_wa_sms .btn_blue {
    margin: 0 auto;
    margin-top: 60px;
}

.why.kaskad.wa_business {
    padding-bottom: 120px;
}

@media (max-width: 992px) {
    .why.kaskad.wa_business {
        padding-bottom: 90px;
    }
}

@media (max-width: 640px) {
    .advan_platform.advan_viber_bot.possibilities_channel_wa .advan_platform_block .advan_platform_item img {
        max-width: 100%;
    }
}

.advan_platform.advan_viber_bot.possibilities_channel_wa .advan_platform_block .advan_platform_item:nth-child(3) {
    align-items: end;
}

@media (max-width: 992px) {
    .advan_platform.advan_viber_bot.possibilities_channel_wa .advan_platform_block .advan_platform_item:nth-child(3) {
        padding: 30px 0 0 30px;
    }
}

.advan_platform.advan_viber_bot.possibilities_channel_wa .advan_platform_block .advan_platform_item:nth-child(3) img {
    width: 670px;
    max-width: 100%;
}

@media (max-width: 1230px) {
    .advan_platform.advan_viber_bot.possibilities_channel_wa .advan_platform_block .advan_platform_item:nth-child(3) img {
        max-width: 95%;
    }
}

@media (max-width: 992px) {
    .advan_platform.advan_viber_bot.possibilities_channel_wa .advan_platform_block .advan_platform_item:nth-child(3) img {
        max-width: 100%;
        width: 100%;
    }
}

.advan_platform.advan_viber_bot.possibilities_channel_wa .advan_platform_block .advan_platform_item:last-child img {
    width: 430px;
}

.advan_platform.possibilities_channel_email .advan_platform_block .advan_platform_item {
    min-height: 0;
}

.advan_platform.possibilities_channel_email .advan_platform_block .advan_platform_item img {
    width: 410px;
    padding: 0;
    max-width: 100%;
}

@media (max-width: 1230px) {
    .advan_platform.possibilities_channel_email .advan_platform_block .advan_platform_item img {
        width: 100%;
        padding: 0 30px 0 30px;
    }
}

@media (max-width: 992px) {
    .advan_platform.possibilities_channel_email .advan_platform_block .advan_platform_item img {
        width: 540px;
        margin-bottom: 30px;
        padding: 0;
    }
}

.advan_platform.possibilities_channel_email .advan_platform_block .advan_platform_item:first-child img {
    margin-bottom: 76px;
}

@media (max-width: 992px) {
    .advan_platform.possibilities_channel_email .advan_platform_block .advan_platform_item:first-child img {
        margin-bottom: 30px;
    }
}

.advan_platform.possibilities_channel_email .advan_platform_block .advan_platform_item:nth-child(2) img {
    width: 640px;
    margin-bottom: 54px;
}

@media (max-width: 992px) {
    .advan_platform.possibilities_channel_email .advan_platform_block .advan_platform_item:nth-child(2) img {
        margin-bottom: 30px;
        width: 540px;
    }
}

.advan_platform.possibilities_channel_email .advan_platform_block .advan_platform_item:nth-child(3) {
    align-items: center;
}

@media (max-width: 992px) {
    .advan_platform.possibilities_channel_email .advan_platform_block .advan_platform_item:nth-child(3) {
        padding: 30px 30px 0 30px;
    }
}

.advan_platform.possibilities_channel_email .advan_platform_block .advan_platform_item:nth-child(3) img {
    width: 560px;
    margin-bottom: 30px;
    border-radius: 0px;
    background: transparent;
    max-width: 100%;
}

@media (max-width: 992px) {
    .advan_platform.possibilities_channel_email .advan_platform_block .advan_platform_item:nth-child(3) img {
        margin-bottom: 30px;
        width: 540px;
    }
}

.advan_platform.possibilities_channel_email .advan_platform_block .advan_platform_item:nth-child(4) {
    align-items: center;
}

.advan_platform.possibilities_channel_email .advan_platform_block .advan_platform_item:nth-child(4) img {
    margin-bottom: 150px;
}

@media (max-width: 992px) {
    .advan_platform.possibilities_channel_email .advan_platform_block .advan_platform_item:nth-child(4) img {
        margin-bottom: 30px;
    }
}

.mailing_whatsapp.what_app_push .section_title {
    margin-bottom: 30px;
}

.mailing_whatsapp.what_app_push .mailing_whatsapp_block .mailing_whatsapp_right.big img {
    width: 570px;
}

@media (max-width: 640px) {
    .mailing_whatsapp.what_app_push .mailing_whatsapp_block .mailing_whatsapp_right.big img {
        width: 90%;
    }
}

.mailing_whatsapp.what_app_push .mailing_whatsapp_block .mailing_whatsapp_left {
    padding-top: 70px;
}

@media (max-width: 1230px) {
    .mailing_whatsapp.what_app_push .mailing_whatsapp_block .mailing_whatsapp_left {
        padding-top: 0;
    }
}

.advan_app_push {
    padding: 120px 0;
}

@media (max-width: 992px) {
    .advan_app_push {
        padding: 90px 0;
    }
}

@media (max-width: 1230px) {
    .advan_app_push .white_boxs .white_box {
        width: calc(50% - 7.5px);
    }
}

@media (max-width: 992px) {
    .advan_app_push .white_boxs .white_box {
        width: 100%;
    }
}

.app_push_section.push_app {
    padding: 111px 0;
}

@media (max-width: 992px) {
    .app_push_section.push_app {
        padding: 90px 0;
    }
}

.app_push_section.push_app .app_push_block {
    align-items: center;
    gap: 60px;
}

@media (max-width: 1230px) {
    .app_push_section.push_app .app_push_block {
        gap: 60px;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 1230px) {
    .app_push_section.push_app .app_push_block .app_push_content {
        gap: 30px;
    }

    .app_push_section.push_app .app_push_block .app_push_content h2 {
        text-align: center;
    }
}

@media (max-width: 1230px) and (max-width: 640px) {
    .app_push_section.push_app .app_push_block .app_push_content h2 {
        margin-bottom: 15px;
    }
}

@media (max-width: 640px) {
    .app_push_section.push_app .app_push_block .app_push_content {
        gap: 15px;
    }
}

@media (max-width: 1230px) {
    .app_push_section.push_app .app_push_block .app_push_content.desc {
        display: none;
    }
}

.app_push_section.push_app .app_push_block .app_push_content.mob {
    display: none;
}

@media (max-width: 1230px) {
    .app_push_section.push_app .app_push_block .app_push_content.mob {
        display: flex;
    }

    .app_push_section.push_app .app_push_block .app_push_content.mob .app_push_mob_img {
        max-width: 422px;
        margin: 0 auto;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .app_push_section.push_app .app_push_block .app_push_content.mob .app_push_mob_img.show {
        max-height: max-content;
        opacity: 1;
    }
}

@media (max-width: 1230px) and (max-width: 640px) {
    .app_push_section.push_app .app_push_block .app_push_content.mob .app_push_mob_img {
        max-width: 85%;
    }
}

@media (max-width: 1230px) {
    .app_push_section.push_app .app_push_block .app_push_content.mob .app_push_mob_img img {
        max-width: 100%;
    }

    .app_push_section.push_app .app_push_block .app_push_content.mob .feature {
        border-bottom: none;
        transition: all 0.3s ease;
        padding-bottom: 0;
    }

    .app_push_section.push_app .app_push_block .app_push_content.mob .feature.active {
        padding-bottom: 30px;
    }
}

@media (max-width: 1230px) and (max-width: 640px) {
    .app_push_section.push_app .app_push_block .app_push_content.mob .feature.active {
        padding-bottom: 15px;
    }
}

@media (max-width: 1230px) {
    .app_push_section.push_app .app_push_block .app_push_content.mob .app_push_mob_item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.46);
        padding-bottom: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .app_push_section.push_app .app_push_block .app_push_content.mob .app_push_mob_item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 1230px) and (max-width: 640px) {
    .app_push_section.push_app .app_push_block .app_push_content.mob .app_push_mob_item {
        padding-bottom: 15px;
    }
}

@media (max-width: 1230px) {
    .app_push_section.push_app .app_push_block .app_push_tel {
        display: none;
    }
}

/* platforms/push: mobile per-slide image switching (mirrors push_app on mobile;
   desktop layout is left untouched — no align/gap overrides here). */
.app_push_section.push_platform .app_push_block .app_push_content.mob {
    display: none;
}

@media (max-width: 1230px) {
    .app_push_section.push_platform .app_push_block .app_push_content.desc {
        display: none;
    }
    .app_push_section.push_platform .app_push_block .app_push_tel {
        display: none;
    }
    .app_push_section.push_platform .app_push_block .app_push_content {
        gap: 30px;
    }
    .app_push_section.push_platform .app_push_block .app_push_content h2 {
        text-align: center;
    }
    .app_push_section.push_platform .app_push_block .app_push_content.mob {
        display: flex;
    }
    .app_push_section.push_platform .app_push_block .app_push_content.mob .app_push_mob_img {
        max-width: 422px;
        margin: 0 auto;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    .app_push_section.push_platform .app_push_block .app_push_content.mob .app_push_mob_img.show {
        max-height: max-content;
        opacity: 1;
    }
    .app_push_section.push_platform .app_push_block .app_push_content.mob .app_push_mob_img img {
        max-width: 100%;
    }
    .app_push_section.push_platform .app_push_block .app_push_content.mob .feature {
        border-bottom: none;
        transition: all 0.3s ease;
        padding-bottom: 0;
    }
    .app_push_section.push_platform .app_push_block .app_push_content.mob .feature.active {
        padding-bottom: 30px;
    }
    .app_push_section.push_platform .app_push_block .app_push_content.mob .app_push_mob_item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.46);
        padding-bottom: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .app_push_section.push_platform .app_push_block .app_push_content.mob .app_push_mob_item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 640px) {
    .app_push_section.push_platform .app_push_block .app_push_content {
        gap: 15px;
    }
    .app_push_section.push_platform .app_push_block .app_push_content h2 {
        margin-bottom: 15px;
    }
    .app_push_section.push_platform .app_push_block .app_push_content.mob .app_push_mob_img {
        max-width: 85%;
    }
    .app_push_section.push_platform .app_push_block .app_push_content.mob .feature.active {
        padding-bottom: 15px;
    }
    .app_push_section.push_platform .app_push_block .app_push_content.mob .app_push_mob_item {
        padding-bottom: 15px;
    }
}

.why_app_push_advans.gateway {
    padding-bottom: 120px;
}

@media (max-width: 992px) {
    .why_app_push_advans.gateway {
        padding-bottom: 90px;
    }
}

.why_app_push_advans .section_title {
    margin-bottom: 30px;
}

.why_app_push_advans .text {
    color: #202838;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .why_app_push_advans .text {
        text-align: center;
    }

    .why_app_push_advans .text br {
        display: none;
    }
}

@media (max-width: 640px) {
    .why_app_push_advans .text {
        font-size: 14px;
        margin-bottom: 30px;
    }
}

.why_app_push_advans .btn_blue {
    margin: 0 auto;
    margin-top: 60px;
    width: 100%;
    text-align: center;
}

.methods_viber_channel.method_notify {
    padding-top: 100px;
}

@media (max-width: 992px) {
    .methods_viber_channel.method_notify {
        padding-top: 90px;
    }
}

.methods_viber_channel.method_notify .methods_viber_channel_block .methods_viber_channel_items {
    padding: 0;
}

.methods_viber_channel.method_notify .methods_viber_channel_block .methods_viber_channel_img {
    margin: 0 10px;
}

@media (max-width: 1230px) {
    .methods_viber_channel.method_notify .methods_viber_channel_block .methods_viber_channel_img {
        margin: 0 auto;
    }
}

.methods_viber_channel.method_notify .methods_viber_channel_block .methods_viber_channel_img img {
    width: 640px;
    max-width: 100%;
}

.mailing_options {
    padding-top: 120px;
    padding-bottom: 60px;
}

@media (max-width: 992px) {
    .mailing_options {
        padding-top: 90px;
        padding-bottom: 45px;
    }
}

.mailing_options .mailing_options_block {
    background-color: #EEF1F9;
    padding-top: 90px;
    border-radius: 21px;
}

@media (max-width: 1230px) {
    .mailing_options .mailing_options_block {
        padding-bottom: 90px;
    }
}

@media (max-width: 640px) {
    .mailing_options .mailing_options_block {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.mailing_options .mailing_options_block .mailing_options_items {
    display: flex;
    gap: 90px;
    justify-content: center;
}

@media (max-width: 1230px) {
    .mailing_options .mailing_options_block .mailing_options_items {
        flex-direction: column;
        align-items: center;
    }
}

.mailing_options .mailing_options_block .mailing_options_items .mailing_option_item {
    width: calc(50% - 45px);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 430px;
}

@media (max-width: 1230px) {
    .mailing_options .mailing_options_block .mailing_options_items .mailing_option_item {
        width: 100%;
    }
}

.mailing_options .mailing_options_block .mailing_options_items .mailing_option_item .mailing_option_item_top {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 20px;
}

.mailing_options .mailing_options_block .mailing_options_items .mailing_option_item .mailing_option_item_top .arrs {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mailing_options .mailing_options_block .mailing_options_items .mailing_option_item .mailing_option_item_top .arr_r_to_l {
    transform: rotate(180deg);
}

.mailing_options .mailing_options_block .mailing_options_items .mailing_option_item p {
    color: #202838;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 30px;
}

.mailing_options .mailing_options_block .mailing_options_items .mailing_option_item .mailing_option_item_img {
    width: 430px;
    margin-top: auto;
}

@media (max-width: 640px) {
    .mailing_options .mailing_options_block .mailing_options_items .mailing_option_item .mailing_option_item_img {
        width: 100%;
    }
}

.hero.viber_business_hero.mailing_uzb_hero {
    padding-bottom: 0;
}

@media (max-width: 1230px) {
    .hero.viber_business_hero.mailing_uzb_hero {
        padding-bottom: 60px;
        padding-top: 100px;
    }
}

@media (max-width: 992px) {
    .hero.viber_business_hero.mailing_uzb_hero {
        padding-bottom: 0;
    }
}

@media (max-width: 1230px) {
    .hero.viber_business_hero.mailing_uzb_hero .hero_block {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .hero.viber_business_hero.mailing_uzb_hero .hero_block {
        gap: 90px;
    }
}

@media (max-width: 640px) {
    .hero.viber_business_hero.mailing_uzb_hero .hero_block {
        gap: 60px;
    }
}

.hero.viber_business_hero.mailing_uzb_hero .hero_block .hero_right {
    transform: translateY(-85px);
    margin-bottom: -90px;
}

@media (max-width: 1230px) {
    .hero.viber_business_hero.mailing_uzb_hero .hero_block .hero_right {
        transform: translateY(-24px);
        margin-bottom: -94px;
    }
}

@media (max-width: 992px) {
    .hero.viber_business_hero.mailing_uzb_hero .hero_block .hero_right {
        transform: translateY(6px);
        margin-bottom: 0;
    }
}

@media (max-width: 640px) {
    .hero.viber_business_hero.mailing_uzb_hero .hero_block .hero_right {
        transform: translateY(1px);
    }
}

.hero.viber_business_hero.mailing_uzb_hero .hero_block .hero_right img {
    max-width: 640px;
}

@media (max-width: 1230px) {
    .hero.viber_business_hero.mailing_uzb_hero .hero_block .hero_right img {
        max-width: 570px;
    }
}

@media (max-width: 992px) {
    .hero.viber_business_hero.mailing_uzb_hero .hero_block .hero_right img {
        max-width: 100%;
    }
}

.stages.connect_platform {
    padding-top: 120px;
    padding-bottom: 0;
}

@media (max-width: 992px) {
    .stages.connect_platform {
        padding-top: 90px;
    }
}

.stages.connect_platform .stages_block .stages_item span {
    justify-content: end;
}

.market_info {
    padding-top: 60px;
    padding-bottom: 111px;
    background: #202838;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 1230px) {
    .market_info {
        padding-top: 90px;
        padding-bottom: 90px;
        height: 100%;
    }
}

.market_info .charts-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 1230px) {
    .market_info .charts-container {
        gap: 60px;
        flex-direction: column;
    }
}

.market_info .charts-container .chart_block {
    width: calc(33.33% - 13.33px);
    display: flex;
    align-items: center;
    flex-direction: column;
}

@media (max-width: 1230px) {
    .market_info .charts-container .chart_block {
        width: 100%;
    }
}

.market_info .charts-container .chart_block .h3,.market_info .charts-container .chart_block h3 {
    padding-left: 35px;
}

@media (max-width: 1230px) {
    .market_info .charts-container .chart_block .h3,    .market_info .charts-container .chart_block h3 {
        padding-left: 0;
        text-align: center;
    }
}

.market_info .charts-container .chart_block .diagram_1 {
    transform: translateX(0px);
    width: 484px;
}

@media (max-width: 640px) {
    .market_info .charts-container .chart_block .diagram_1 {
        width: 100%;
    }
}

.market_info .charts-container .chart_circle_block {
    width: calc(33.33% - 13.33px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 20px;
    align-items: center;
}

@media (max-width: 1230px) {
    .market_info .charts-container .chart_circle_block {
        width: 100%;
        padding-bottom: 0;
    }
}

.market_info .charts-container .h3,.market_info .charts-container h3 {
    color: #FFF;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 60px;
}

@media (max-width: 640px) {
    .market_info .charts-container .h3,    .market_info .charts-container h3 {
        font-size: 18px;
        margin-bottom: 30px;
    }
}

.market_info .charts-container p {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .market_info .charts-container p {
        font-size: 14px;
    }
}

.market_info .charts-container .btn_blue {
    margin-top: 30px;
}

.market_info .charts-container .price-block {
    width: 30%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 1230px) {
    .market_info .charts-container .price-block {
        width: 100%;
    }
}

.market_info .charts-container .price-block .price_box {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    max-width: 366px;
}

.market_info .charts-container .price-block .price_box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.market_info .charts-container .price-block .price_box ul li {
    margin-bottom: 5px;
    color: #FFF;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.market_info .charts-container .price-block button {
    border-radius: 8px;
    background: #4072D6;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    width: 100%;
}

.market_info .diagramma_box {
    display: flex;
    flex-direction: column;
    gap: 41px;
    align-items: center;
}

@media (max-width: 640px) {
    .market_info .diagramma_box {
        width: 100%;
    }
}

.market_info .diagramma_titles {
    display: flex;
    gap: 26px;
}

@media (max-width: 640px) {
    .market_info .diagramma_titles {
        gap: 10px;
        justify-content: space-between;
        width: 100%;
    }
}

.market_info .diagramma_titles .diagramma_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
}

.market_info .diagramma_titles .diagramma_title:nth-child(2) span {
    background: linear-gradient(216deg, #6260FF 21.06%, #6823E0 80.92%);
}

.market_info .diagramma_titles .diagramma_title:nth-child(3) span {
    background: linear-gradient(180deg, #4D39FF 31.09%, #3BADFF 100.26%);
}

.market_info .diagramma_titles .diagramma_title:nth-child(4) span {
    background: linear-gradient(192deg, #2313B0 -31.6%, #3BCBFF 91.23%);
}

.market_info .diagramma_titles .diagramma_title:last-child span {
    background: linear-gradient(180deg, #180A91 -53.87%, #3BADFF 381.13%);
}

.market_info .diagramma_titles .diagramma_title span {
    width: 54px;
    height: 22px;
    box-shadow: 0px 0px 5.2px 0px rgba(60, 96, 255, 0.51) inset;
    background: linear-gradient(216deg, #595FFF 12.16%, #2344FF 80.7%);
}

.market_info .diagramma_titles .diagramma_title p {
    color: #FFF;
    text-align: right;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.popular_operators {
    padding-top: 120px;
}

@media (max-width: 992px) {
    .popular_operators {
        padding-top: 90px;
    }
}

.popular_operators .p_o_text {
    margin-bottom: 60px;
    color: #202838;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 992px) {
    .popular_operators .popular_operators_block {
        overflow-x: scroll;
    }
}

.popular_operators .popular_operators_block table {
    width: 100%;
    border-collapse: collapse;
}

@media (max-width: 992px) {
    .popular_operators .popular_operators_block table {
        min-width: 932px;
    }
}

.popular_operators .popular_operators_block table th {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 10px 12px;
    background: #eff2f9;
    text-align: left;
}

.popular_operators .popular_operators_block table th:first-child {
    width: 250px;
    text-align: center;
}

@media (max-width: 992px) {
    .popular_operators .popular_operators_block table th:first-child {
        width: 150px;
        text-align: left;
    }
}

.popular_operators .popular_operators_block table th:nth-child(2), .popular_operators .popular_operators_block table th:nth-child(3) {
    width: 100px;
}

@media (max-width: 992px) {
    .popular_operators .popular_operators_block table th:nth-child(2), .popular_operators .popular_operators_block table th:nth-child(3) {
        width: 120px;
    }
}

.popular_operators .popular_operators_block table th:nth-child(4) {
    width: 250px;
}

@media (max-width: 992px) {
    .popular_operators .popular_operators_block table th:nth-child(4) {
        width: 130px;
    }
}

.popular_operators .popular_operators_block table th:last-child {
    padding-right: 60px;
}

@media (max-width: 1230px) {
    .popular_operators .popular_operators_block table th:last-child {
        width: 300px;
    }
}

@media (max-width: 992px) {
    .popular_operators .popular_operators_block table th:last-child {
        width: 250px;
    }
}

.popular_operators .popular_operators_block table .blue_td {
    position: relative;
}

.popular_operators .popular_operators_block table .blue_td img {
    transform: rotate(180deg);
    position: absolute;
    right: 0px;
    transition: transform ease-in 0.2s;
}

.popular_operators .popular_operators_block table .blue_td.active img {
    transform: rotate(0deg);
}

.popular_operators .popular_operators_block table .open_info {
    display: none;
    transition: all ease-in 0.3s;
}

.popular_operators .popular_operators_block table .open_info.active {
    display: table-row;
    background-color: #f9fbff;
}

.popular_operators .popular_operators_block table td {
    color: #202838;
    text-align: left;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 15px 12px;
}

.popular_operators .popular_operators_block table td:first-child {
    color: #0076E2;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    width: 250px;
    text-align: center;
}

@media (max-width: 992px) {
    .popular_operators .popular_operators_block table td:first-child {
        width: 150px;
        text-align: left;
    }
}

.popular_operators .popular_operators_block table td:nth-child(2), .popular_operators .popular_operators_block table td:nth-child(3) {
    width: 100px;
}

@media (max-width: 992px) {
    .popular_operators .popular_operators_block table td:nth-child(2), .popular_operators .popular_operators_block table td:nth-child(3) {
        width: 120px;
    }
}

.popular_operators .popular_operators_block table td:nth-child(4) {
    width: 250px;
}

@media (max-width: 992px) {
    .popular_operators .popular_operators_block table td:nth-child(4) {
        width: 130px;
    }
}

.popular_operators .popular_operators_block table td:last-child {
    padding-right: 60px;
}

@media (max-width: 1230px) {
    .popular_operators .popular_operators_block table td:last-child {
        width: 300px;
    }
}

@media (max-width: 992px) {
    .popular_operators .popular_operators_block table td:last-child {
        width: 250px;
    }
}

.mvno {
    padding-top: 120px;
}

@media (max-width: 992px) {
    .mvno {
        padding-top: 90px;
    }
}

.mvno .mvno_block {
    background-color: #EEF1F9;
    border-radius: 21px;
    padding: 90px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1230px) {
    .mvno .mvno_block {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .mvno .mvno_block {
        flex-direction: column;
        gap: 60px;
    }
}

.mvno .mvno_block p {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 992px) {
    .mvno .mvno_block p {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .mvno .mvno_block p {
        font-size: 14px;
    }
}

.mvno .mvno_block .mvno_left {
    max-width: 460px;
}

@media (max-width: 1230px) {
    .mvno .mvno_block .mvno_left {
        max-width: 350px;
    }
}

@media (max-width: 992px) {
    .mvno .mvno_block .mvno_left {
        max-width: 85%;
    }
}

@media (max-width: 640px) {
    .mvno .mvno_block .mvno_left {
        max-width: 100%;
    }
}

.mvno .mvno_block .mvno_left .section_title {
    text-align: left;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .mvno .mvno_block .mvno_left .section_title {
        text-align: center;
    }
}

.mvno .mvno_block .mvno_midd {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.mvno .mvno_block .mvno_midd li {
    color: #202838;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 1230px) {
    .mvno .mvno_block .mvno_midd li {
        font-size: 30px;
    }
}

@media (max-width: 640px) {
    .mvno .mvno_block .mvno_midd li {
        font-size: 25px;
    }
}

.mvno .mvno_block .mvno_right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mvno .mvno_block .mvno_right li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .mvno .mvno_block .mvno_right li {
        font-size: 14px;
        align-items: start;
        line-height: 140%;
    }

    .mvno .mvno_block .mvno_right li img {
        width: 21px;
    }
}

.mailing_whatsapp.what_gateway {
    padding-top: 70px;
}

@media (max-width: 1230px) {
    .mailing_whatsapp.what_gateway {
        padding-top: 90px;
    }
}

.mailing_whatsapp.what_gateway .mailing_whatsapp_block .mailing_whatsapp_left {
    max-width: 555px;
    padding-top: 99px;
}

@media (max-width: 1230px) {
    .mailing_whatsapp.what_gateway .mailing_whatsapp_block .mailing_whatsapp_left {
        padding-top: 0;
    }
}

@media (max-width: 1230px) {
    .mailing_whatsapp.what_gateway .mailing_whatsapp_block .mailing_whatsapp_left p {
        text-align: center;
    }

    .mailing_whatsapp.what_gateway .mailing_whatsapp_block .mailing_whatsapp_left p br {
        display: none;
    }
}

.mailing_whatsapp.what_gateway .mailing_whatsapp_block .mailing_whatsapp_right img {
    width: 400px;
}

@media (max-width: 640px) {
    .mailing_whatsapp.what_gateway .mailing_whatsapp_block .mailing_whatsapp_right img {
        width: 80%;
    }
}

.testing_viber.connect_tg_gateway {
    padding-top: 0;
    margin-top: -60px;
}

/* Button-only variant (form is absent): don't pull the section fully up onto
   the previous block — leave the CTA ~30px of breathing room instead. */
.testing_viber.connect_tg_gateway:has(> .container > .open-modal) {
    margin-top: -30px;
}

.testing_viber.connect_tg_gateway .form_block {
    align-items: start;
}

@media (max-width: 640px) {
    .testing_viber.connect_tg_gateway .form_block {
        align-items: center;
    }
}

.testing_viber.connect_tg_gateway .form_block .form_text {
    gap: 30px;
}

.testing_viber.connect_tg_gateway .form_block .form_text h5 {
    color: #FFF;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.testing_viber.connect_tg_gateway .form_block .form_text p {
    color: #FFF;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .testing_viber.connect_tg_gateway .form_block .form_text p {
        font-size: 18px;
    }
}

.suitable_tg_gateway {
    background: #202838;
    padding-top: 100px;
    padding-bottom: 90px;
}

@media (max-width: 992px) {
    .suitable_tg_gateway {
        padding-top: 90px;
    }
}

.suitable_tg_gateway .section_title {
    margin-bottom: 90px;
}

@media (max-width: 992px) {
    .suitable_tg_gateway .section_title {
        margin-bottom: 60px;
    }
}

.suitable_tg_gateway .suitable_tg_gateway_block {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .suitable_tg_gateway .suitable_tg_gateway_block {
        flex-direction: column;
    }
}

.suitable_tg_gateway .suitable_tg_gateway_block .suitable_tg_gateway_item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 50%;
    align-items: center;
    min-height: 390px;
    justify-content: center;
}

@media (max-width: 992px) {
    .suitable_tg_gateway .suitable_tg_gateway_block .suitable_tg_gateway_item {
        min-height: 0;
        width: 100%;
    }
}

.suitable_tg_gateway .suitable_tg_gateway_block .suitable_tg_gateway_item:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.57);
    padding-right: 60px;
}

@media (max-width: 992px) {
    .suitable_tg_gateway .suitable_tg_gateway_block .suitable_tg_gateway_item:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.57);
        padding-right: 0;
        padding-bottom: 60px;
        margin-bottom: 60px;
    }
}

@media (max-width: 640px) {
    .suitable_tg_gateway .suitable_tg_gateway_block .suitable_tg_gateway_item:first-child {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}

.suitable_tg_gateway .suitable_tg_gateway_block .suitable_tg_gateway_item img {
    max-width: 150px;
}

@media (max-width: 992px) {
    .suitable_tg_gateway .suitable_tg_gateway_block .suitable_tg_gateway_item img {
        max-width: 83px;
    }
}

.suitable_tg_gateway .suitable_tg_gateway_block .suitable_tg_gateway_item p {
    color: #FFF;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    max-width: 335px;
}

@media (max-width: 640px) {
    .suitable_tg_gateway .suitable_tg_gateway_block .suitable_tg_gateway_item p {
        font-size: 14px;
    }
}

.suitable_tg_gateway .suitable_tg_gateway_block .suitable_tg_gateway_item p b {
    font-weight: 600;
    display: block;
}

.increase_efficiency_gateway {
    padding-top: 120px;
    padding-bottom: 60px;
}

@media (max-width: 992px) {
    .increase_efficiency_gateway {
        padding-top: 90px;
        padding-bottom: 45px;
    }
}

.increase_efficiency_gateway .section_title {
    margin-bottom: 30px;
}

@media (max-width: 1230px) {
    .increase_efficiency_gateway .section_title br {
        display: none;
    }
}

.increase_efficiency_gateway .text {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

@media (max-width: 640px) {
    .increase_efficiency_gateway .text {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .increase_efficiency_gateway .text br {
        display: none;
    }
}

.increase_efficiency_gateway .container {
    background-color: #EEF1F9;
    padding: 90px 60px;
    border-radius: 21px;
}

@media (max-width: 640px) {
    .increase_efficiency_gateway .container {
        padding: 90px 30px;
    }
}

.increase_efficiency_gateway .increase_efficiency_gateway_block h4,
.increase_efficiency_gateway .increase_efficiency_gateway_block > .h3,.increase_efficiency_gateway .increase_efficiency_gateway_block > h3 {
    color: #202838;
    text-align: center;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 30px 0;
}

@media (max-width: 640px) {
    .increase_efficiency_gateway .increase_efficiency_gateway_block h4,
    .increase_efficiency_gateway .increase_efficiency_gateway_block > .h3,    .increase_efficiency_gateway .increase_efficiency_gateway_block > h3 {
        font-size: 18px;
    }
}

.increase_efficiency_gateway .increase_efficiency_gateway_block h5 {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 640px) {
    .increase_efficiency_gateway .increase_efficiency_gateway_block h5 {
        font-size: 14px;
    }
}

.increase_efficiency_gateway .increase_efficiency_gateway_block p {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 992px) {
    .increase_efficiency_gateway .increase_efficiency_gateway_block p {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .increase_efficiency_gateway .increase_efficiency_gateway_block p {
        font-size: 14px;
    }
}

.increase_efficiency_gateway .increase_efficiency_gateway_block .increase_efficiency_gateway_items {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

@media (max-width: 992px) {
    .increase_efficiency_gateway .increase_efficiency_gateway_block .increase_efficiency_gateway_items {
        flex-direction: column;
    }
}

.increase_efficiency_gateway .increase_efficiency_gateway_block .increase_efficiency_gateway_items .increase_efficiency_gateway_item {
    width: calc(33.33% - 10px);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (max-width: 992px) {
    .increase_efficiency_gateway .increase_efficiency_gateway_block .increase_efficiency_gateway_items .increase_efficiency_gateway_item {
        width: 100%;
        align-items: center;
    }
}

.increase_efficiency_gateway .increase_efficiency_gateway_block .increase_efficiency_gateway_items .increase_efficiency_gateway_item img {
    max-width: 100%;
}

@media (max-width: 992px) {
    .increase_efficiency_gateway .increase_efficiency_gateway_block .increase_efficiency_gateway_items .increase_efficiency_gateway_item img {
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    .increase_efficiency_gateway .increase_efficiency_gateway_block .increase_efficiency_gateway_items .increase_efficiency_gateway_item img {
        max-width: 240px;
    }
}

.testing_viber.gateway_testing {
    padding-bottom: 60px;
}

@media (max-width: 992px) {
    .testing_viber.gateway_testing {
        padding-bottom: 45px;
    }
}

.stages.gateway_stages {
    padding-top: 120px;
}

@media (max-width: 992px) {
    .stages.gateway_stages {
        padding-top: 90px;
    }
}

.why_gateway {
    background-color: #202838;
    padding: 90px 0;
}

@media (max-width: 640px) {
    .why_gateway .compare-table {
        overflow-x: scroll;
    }
}

.why_gateway .compare-table table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 21px;
    overflow: clip;
}

@media (max-width: 640px) {
    .why_gateway .compare-table table {
        min-width: 450px;
    }
}

.why_gateway .compare-table table thead th {
    color: #202838;
    text-align: center;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; /* 28.6px */
    background-color: #eef1f9;
    padding: 30px 80px;
    border-bottom: 1px solid #D4D6D8;
    width: 50%;
}

.why_gateway .compare-table table thead th:first-child {
    border-radius: 21px 0 0 0;
    border-right: 1px solid #D4D6D8;
}

.why_gateway .compare-table table thead th:last-child {
    border-radius: 0 21px 0 0;
}

@media (max-width: 992px) {
    .why_gateway .compare-table table thead th {
        padding: 20px 30px;
    }
}

@media (max-width: 640px) {
    .why_gateway .compare-table table thead th {
        font-size: 18px;
        padding: 20px;
    }
}

.why_gateway .compare-table table tbody tr {
    border-top: 1px solid #eaeef6;
}

.why_gateway .compare-table table tbody tr:last-child {
    border-radius: 0 0 21px 21px;
}

.why_gateway .compare-table table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 21px;
}

.why_gateway .compare-table table tbody tr:last-child td:last-child {
    border-radius: 0 0 21px 0;
}

.why_gateway .compare-table table tbody tr td {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 20.8px */
    background-color: #fff;
    padding: 20px 80px;
    border-bottom: 1px solid #D4D6D8;
    width: 50%;
}

.why_gateway .compare-table table tbody tr td:first-child {
    border-right: 1px solid #D4D6D8;
}

@media (max-width: 992px) {
    .why_gateway .compare-table table tbody tr td {
        padding: 20px 30px;
    }
}

@media (max-width: 640px) {
    .why_gateway .compare-table table tbody tr td {
        font-size: 14px;
        padding: 15px 20px;
    }
}

.why_gateway .compare-table table tbody tr td .icon {
    display: inline-block;
    font-size: 18px;
}

.why_gateway .compare-table table tbody tr td .icon.check {
    color: #00C566;
}

.why_gateway .compare-table table tbody tr td .icon.cross {
    color: #ec0000;
}

.hero.gateway_hero.viber_business_hero {
    padding-bottom: 0;
}

@media (max-width: 1230px) {
    .hero.gateway_hero.viber_business_hero {
        padding-bottom: 60px;
        padding-top: 100px;
    }
}

@media (max-width: 992px) {
    .hero.gateway_hero.viber_business_hero {
        padding-bottom: 0;
    }
}

@media (max-width: 1230px) {
    .hero.gateway_hero.viber_business_hero .hero_block {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .hero.gateway_hero.viber_business_hero .hero_block {
        gap: 90px;
    }
}

@media (max-width: 640px) {
    .hero.gateway_hero.viber_business_hero .hero_block {
        gap: 60px;
    }
}

.hero.gateway_hero.viber_business_hero .hero_block .hero_right {
    transform: translateY(-85px);
    margin-bottom: -90px;
}

@media (max-width: 1230px) {
    .hero.gateway_hero.viber_business_hero .hero_block .hero_right {
        transform: translateY(-24px);
        margin-bottom: -94px;
    }
}

@media (max-width: 992px) {
    .hero.gateway_hero.viber_business_hero .hero_block .hero_right {
        transform: translateY(6px);
        margin-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero.gateway_hero.viber_business_hero .hero_block .hero_right {
        transform: translateY(1px);
    }
}

.hero.gateway_hero.viber_business_hero .hero_block .hero_right img {
    max-width: 467px;
}

@media (max-width: 1230px) {
    .hero.gateway_hero.viber_business_hero .hero_block .hero_right img {
        max-width: 370px;
    }
}

@media (max-width: 992px) {
    .hero.gateway_hero.viber_business_hero .hero_block .hero_right img {
        max-width: 80%;
    }
}

@media (max-width: 640px) {
    .hero.gateway_hero.viber_business_hero .hero_block .hero_right img {
        max-width: 90%;
    }
}

.licenses_page.archive_page .archive_page_block .archive_item {
    transition: all ease-in 0.3s;
}

.licenses_page.archive_page .archive_page_block .archive_item:hover {
    transform: translateY(-15px);
}

@media (max-width: 992px) {
    .licenses_page.archive_page .archive_page_block .archive_item:hover {
        transform: translateY(-7px);
    }
}

@media (max-width: 640px) {
    .licenses_page.archive_page .archive_page_block .archive_item {
        width: 100%;
    }
}

.licenses_page.archive_page .archive_page_block .archive_item .content {
    padding: 30px 25px 25px 25px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.licenses_page.archive_page .archive_page_block .archive_item img {
    border-radius: 19px;
}

.licenses_page.archive_page .archive_page_block .archive_item p {
    padding: 0;
}

@media (max-width: 640px) {
    .licenses_page.archive_page .archive_page_block .archive_item p {
        font-size: 14px;
    }
}

.licenses_page.archive_page .archive_page_block .archive_item .date {
    color: #202838;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.licenses_page.archive_page .archive_page_block .archive_item .date span {
    color: rgba(32, 40, 56, 0.6);
}

@media (max-width: 640px) {
    .licenses_page.archive_page .archive_page_block .archive_item .date {
        font-size: 12px;
    }
}

.faq-item {
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question svg, .faq-item.active .faq-question img {
    transform: rotate(0deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 10px 15px 0 15px;
    opacity: 1;
    pointer-events: all;
}

.faq-item .faq-question {
    cursor: pointer;
    color: rgba(32, 40, 56, 0.6);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
}

.faq-item .faq-question svg, .faq-item .faq-question img {
    transform: rotate(180deg);
}

.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0px 15px 0 15px;
    transition: max-height 0.4s ease, padding 0.4s ease;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.basic_tariff_left_top {
    display: flex;
    flex-direction: column;
    gap: 13px;
    width: 260px;
    margin-bottom: 70px;
}

.basic_tariff_left_top.mob {
    display: none;
}

@media (max-width: 992px) {
    .basic_tariff_left_top.mob {
        display: flex;
    }
}

.basic_tariff_left_top p {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.basic_tariff_left_top span, .basic_tariff_left_top a {
    color: rgba(32, 40, 56, 0.6);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
}

.basic_tariff_left_top ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.basic_tariff_left_top ul li a {
    color: rgba(32, 40, 56, 0.6);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.basic_tariff .basic_tariff_block {
    display: flex;
    gap: 60px;
}

.basic_tariff .basic_tariff_block.basic_tariff_block_top {
    padding-top: 68px;
}

@media (max-width: 640px) {
    .basic_tariff .basic_tariff_block.basic_tariff_block_top {
        padding-top: 40px;
    }
}

.basic_tariff .basic_tariff_left {
    height: 100%;
    width: 260px;
}

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

.basic_tariff .basic_tariff_left.sticky_left {
    position: sticky;
    top: 200px;
}

.basic_tariff .sidebar {
    width: 260px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.basic_tariff .sidebar h5 {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.basic_tariff .sidebar p {
    color: rgba(32, 40, 56, 0.6);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.basic_tariff .sidebar .tel {
    color: #202838;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.basic_tariff .sidebar .btn_call {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    justify-content: center;
    width: 155px;
    height: 38px;
    padding: 16px 12px;
    align-items: center;
    border-radius: 8px;
    background: #0076E2;
    transition: all ease-in 0.3s;
    border: 2px solid transparent;
}

.basic_tariff .sidebar .btn_call:disabled {
    cursor: not-allowed;
    background: #A7AAB3;
}

.basic_tariff .sidebar .btn_call:focus {
    background: #0076E2;
    border-color: #0064C0;
}

.basic_tariff .sidebar .btn_call:active {
    background: #2088E8;
}

.basic_tariff .sidebar .btn_call:hover:not(:disabled) {
    background: #0064C0;
}

.basic_tariff .basic_tariff_right {
    width: calc(88.5% - 30px);
}

@media (max-width: 992px) {
    .basic_tariff .basic_tariff_right {
        width: 100%;
    }
}

.basic_tariff .fines_block {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.basic_tariff .fines_block p {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .basic_tariff .fines_block p {
        font-size: 14px;
    }
}

.basic_tariff .fines_block b {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: block;
}

@media (max-width: 640px) {
    .basic_tariff .fines_block b {
        font-size: 14px;
    }
}

.basic_tariff h1 {
    color: #202838;
    font-family: Inter;
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 80px;
}

@media (max-width: 640px) {
    .basic_tariff h1 {
        font-size: 35px;
        margin-bottom: 48px;
    }
}

.basic_tariff .breadcrumbs {
    margin-bottom: 43px;
    display: flex;
    align-items: center;
    gap: 5px 27px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .basic_tariff .breadcrumbs {
        margin-bottom: 21px;
    }
}

.basic_tariff .breadcrumbs li {
    color: rgba(32, 40, 56, 0.6);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.basic_tariff .breadcrumbs li a {
    color: #202838;
    position: relative;

    &::after {
        content: url(../imgs/arr.svg);
        position: absolute;
        right: -22px;
        width: 17px;
        height: 17px;
        top: 0;
        bottom: 0;
        @media #{$big_mobile} {
            width: 14px;
            height: 14px;
            right: -18px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }
}

.basic_tariff table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    overflow: clip;
}

.basic_tariff table tr td:first-child {
    text-align: center;
    width: 58px;
}

@media (max-width: 640px) {
    .basic_tariff table tr td:first-child {
        width: 43px;
    }
}

.basic_tariff table tr td:last-child {
    text-align: center;
    width: 200px;
}

@media (max-width: 1230px) {
    .basic_tariff table tr td:last-child {
        width: 165px;
    }
}

@media (max-width: 640px) {
    .basic_tariff table tr td:last-child {
        width: 100px;
    }
}

.basic_tariff table tr td {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 15px 12px;
}

@media (max-width: 640px) {
    .basic_tariff table tr td {
        font-size: 14px;
    }
}

.basic_tariff table tr th {
    background-color: #f0f2f5;
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 20px 12px;
}

@media (max-width: 640px) {
    .basic_tariff table tr th {
        font-size: 14px;
    }
}

.basic_tariff table tr th:last-child {
    text-align: left;
}

@media (max-width: 640px) {
    .basic_tariff table tr th:last-child {
        font-size: 12px;
    }
}

.basic_tariff table th, .basic_tariff table td {
    border: 1px solid #D4D6D8;
}

.basic_tariff table tr:nth-child(even) td {
    background-color: #F9FBFF;
}

.basic_tariff .additional_services_table {
    padding-top: 120px;
}

.basic_tariff .additional_services_table .fines, .offerPrice{
    color: #0076E2;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 60px;
    display: flex;
}

.offerPrice {
    margin-top: 25px;
}

@media (max-width: 992px) {
    .basic_tariff .additional_services_table .fines{
        margin-top: 50px;
    }
}

@media (max-width: 640px) {
    .basic_tariff .additional_services_table .fines{
        margin-top: 30px;
    }
}

.basic_tariff .additional_services_table .section_title {
    margin-bottom: 30px;
}

@media (max-width: 640px) {
    .basic_tariff .additional_services_table .section_title {
        font-size: 25px;
    }
}

.basic_tariff .additional_services_table p {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 30px;
}

.basic_tariff .additional_services_table p a {
    color: #0076E2;
}

.basic_tariff .additional_services_table table tr:nth-child(odd) td {
    background-color: #F9FBFF;
}

.basic_tariff .additional_services_table table tr:nth-child(even) td {
    background-color: #fff;
}

.basic_tariff .additional_services_price {
    padding-top: 120px;
}

@media (max-width: 992px) {
    .basic_tariff .additional_services_price {
        padding-top: 90px;
    }
}

.basic_tariff .additional_services_price .section_title {
    text-align: left;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .basic_tariff .additional_services_price .section_title {
        margin-bottom: 30px;
    }
}

.basic_tariff .additional_services_price h6 {
    color: #202838;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 15px;
}

@media (max-width: 640px) {
    .basic_tariff .additional_services_price h6 {
        font-size: 18px;
    }
}

.basic_tariff .additional_services_price p {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 30px;
}

@media (max-width: 640px) {
    .basic_tariff .additional_services_price p {
        font-size: 14px;
    }
}

.target_hero {
    position: relative;
}

@media (max-width: 640px) {
    .target_hero .hero_title_small br {
        display: block;
    }
}

.target_hero.hero {
    background: linear-gradient(179deg, rgba(255, 255, 255, 0.5) 0.75%, rgba(139, 191, 239, 0.2) 45.06%, rgba(255, 255, 255, 0.5) 99.23%);
    padding-bottom: 80px;
}

.target_hero.hero .btn_blue {
    margin-bottom: 100px;
}

.target_hero::after {
    content: "";
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 1140px;
    height: 1140px;
    background: url(../imgs/target_hero_new.png) no-repeat center/contain;
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 1230px) {
    .target_hero::after {
        width: 900px;
        height: 900px;
    }
}

@media (max-width: 992px) {
    .target_hero::after {
        width: 820px;
        height: 820px;
        bottom: -254px;
    }
}

@media (max-width: 640px) {
    .target_hero::after {
        width: 600px;
        height: 600px;
        bottom: -200px;
        right: -180px;
    }
}

.save_up {
    padding-top: 60px;
}

@media (max-width: 992px) {
    .save_up {
        padding-top: 45px;
    }
}

.save_up .save_up_block {
    display: flex;
    background-color: #EEF1F9;
    border-radius: 21px;
    justify-content: space-between;
    overflow: hidden;
}

@media (max-width: 1230px) {
    .save_up .save_up_block {
        flex-direction: column;
        align-items: end;
    }
}

.save_up .save_up_block .save_up_content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 577px;
    padding-top: 65px;
    padding-left: 60px;
    padding-bottom: 65px;
}

@media (max-width: 1230px) {
    .save_up .save_up_block .save_up_content {
        padding-bottom: 0;
        padding-right: 60px;
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .save_up .save_up_block .save_up_content {
        padding: 90px 30px 0 30px;
    }
}

.save_up .save_up_block .save_up_content h5 {
    color: #202838;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 640px) {
    .save_up .save_up_block .save_up_content h5 {
        font-size: 18px;
    }
}

.save_up .save_up_block .save_up_content p {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .save_up .save_up_block .save_up_content p {
        font-size: 14px;
    }
}

.save_up .save_up_block .save_up_content ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 640px) {
    .save_up .save_up_block .save_up_content ul {
        gap: 15px;
    }
}

.save_up .save_up_block .save_up_content ul li {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    gap: 18px;
    align-items: start;
}

@media (max-width: 640px) {
    .save_up .save_up_block .save_up_content ul li {
        font-size: 14px;
        gap: 15px;
    }
}

.save_up .save_up_block .save_up_right {
    margin-bottom: -5px;
}

@media (max-width: 1230px) {
    .save_up .save_up_block .save_up_right.desc {
        display: none;
    }
}

.save_up .save_up_block .save_up_right.mob {
    display: none;
}

@media (max-width: 1230px) {
    .save_up .save_up_block .save_up_right.mob {
        display: block;
    }
}

.save_up .save_up_block .save_up_right img {
    max-width: 100%;
}

.save_up.mobile_id {
    padding: 120px 0;
}

@media (max-width: 992px) {
    .save_up.mobile_id {
        padding: 90px 0;
    }
}

.save_up.mobile_id .save_up_block .save_up_content ul {
    list-style: disc;
}

.advanvantages_section.target {
    padding-top: 0;
}

.stages.target {
    padding-top: 0;
    padding-bottom: 120px;
}

@media (max-width: 992px) {
    .stages.target {
        padding-bottom: 90px;
    }
}

.our_clients.target {
    padding: 120px 0;
}

@media (max-width: 992px) {
    .our_clients.target {
        padding: 90px 0;
    }
}

.mobile_id_hero {
    position: relative;
}

.mobile_id_hero .hero_left {
    padding-bottom: 157px;
}

@media (max-width: 1230px) {
    .mobile_id_hero .hero_left {
        max-width: 60%;
    }
}

@media (max-width: 992px) {
    .mobile_id_hero .hero_left {
        max-width: 100%;
    }
}

.hero.mobile_id_hero::after {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -30px;
    width: 640px;
    height: 640px;
    background: url(../imgs/mobile_id_hero_new.png) no-repeat center/contain;
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 1230px) {
    .hero.mobile_id_hero::after {
        width: 600px;
        height: 600px;
        right: -100px;
    }
}

@media (max-width: 992px) {
    .hero.mobile_id_hero::after {
        width: 620px;
        height: 620px;
        right: -130px;
        bottom: -254px;
    }
}

@media (max-width: 640px) {
    .hero.mobile_id_hero::after {
        width: 450px;
        height: 450px;
        bottom: -15px;
        right: -90px;
    }
}

.how_it_work {
    background: #202838;
    padding: 90px 0;
}

@media (max-width: 992px) {
    .how_it_work {
        padding-bottom: 77px;
    }
}

@media (max-width: 640px) {
    .how_it_work {
        padding-bottom: 40px;
    }
}

@media (max-width: 992px) {
    .how_it_work.flashcall {
        padding-bottom: 90px;
    }
}

@media (max-width: 640px) {
    .how_it_work.flashcall {
        padding-bottom: 90px;
    }
}

@media (max-width: 640px) {
    .how_it_work.flashcall .how_it_work_block h5 {
        margin-bottom: 30px;
        margin-top: 30px;
    }
}

.how_it_work.flashcall .how_it_work_block .how_it_work_right {
    max-width: 530px;
}

@media (max-width: 1230px) {
    .how_it_work.flashcall .how_it_work_block .how_it_work_right {
        max-width: 430px;
    }
}

.how_it_work.flashcall .how_it_work_block ul {
    max-width: 468px;
    padding-left: 17px;
}

.how_it_work.flashcall .how_it_work_block ul li {
    list-style: disc;
}

.how_it_work .how_it_work_block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1230px) {
    .how_it_work .how_it_work_block {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .how_it_work .how_it_work_block {
        flex-direction: column;
        gap: 90px;
    }
}

@media (max-width: 640px) {
    .how_it_work .how_it_work_block {
        gap: 60px;
    }
}

.how_it_work .how_it_work_block .section_title {
    margin-bottom: 30px;
    text-align: left;
}

.how_it_work .how_it_work_block p {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .how_it_work .how_it_work_block p {
        font-size: 14px;
    }
}

.how_it_work .how_it_work_block .how_it_work_content {
    display: flex;
    flex-direction: column;
    max-width: 541px;
}

@media (max-width: 1230px) {
    .how_it_work .how_it_work_block .how_it_work_content {
        max-width: 50%;
    }
}

@media (max-width: 992px) {
    .how_it_work .how_it_work_block .how_it_work_content {
        max-width: 100%;
    }
}

.how_it_work .how_it_work_block .how_it_work_right {
    max-width: 427px;
}

.how_it_work .how_it_work_block .how_it_work_right img {
    max-width: 100%;
}

.how_it_work .how_it_work_block b {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 640px) {
    .how_it_work .how_it_work_block b {
        font-size: 14px;
    }
}

.how_it_work .how_it_work_block ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.how_it_work .how_it_work_block ul li {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .how_it_work .how_it_work_block ul li {
        font-size: 14px;
    }
}

.how_it_work .how_it_work_block h5,
.how_it_work .how_it_work_block .how_it_work_content .h3,.how_it_work .how_it_work_block .how_it_work_content h3 {
    color: #FFF;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 43px;
    margin-top: 60px;
}

@media (max-width: 640px) {
    .how_it_work .how_it_work_block h5,
    .how_it_work .how_it_work_block .how_it_work_content .h3,    .how_it_work .how_it_work_block .how_it_work_content h3 {
        font-size: 18px;
    }
}

.why.mobile_id {
    padding-bottom: 60px;
}

@media (max-width: 992px) {
    .why.mobile_id {
        padding-bottom: 45px;
    }
}

.stages.mobile_id {
    padding-top: 120px;
}

@media (max-width: 992px) {
    .stages.mobile_id {
        padding-top: 90px;
    }
}

.stages.mobile_id .stages_block .stages_item {
    background: #EEF1F9;
}

.stages.mobile_id .stages_block .stages_item p {
    color: #202838;
}

.our_clients.mobile_id {
    padding-top: 0;
    padding-bottom: 120px;
}

@media (max-width: 992px) {
    .our_clients.mobile_id {
        padding-bottom: 90px;
    }
}

.how_it_work.imsi .how_it_work_block .how_it_work_right {
    max-width: 551px;
}

.save_up.imsi .save_up_block .save_up_right {
    max-width: 420px;
}

@media (max-width: 1230px) {
    .save_up.imsi .save_up_block .save_up_right {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .why_sxdp.imsi .why_sxdp_block {
        gap: 15px;
        padding-top: 0;
    }
}

@media (max-width: 640px) {
    .why_sxdp.imsi .why_sxdp_block {
        padding-top: 30px;
    }
}

.why_sxdp.imsi {
    height: auto;
    padding: 90px 0;
}

.why_sxdp.imsi .why_sxdp_block .why_sxdp_item {
    width: 33.33%;
}

.why_sxdp.imsi .why_sxdp_block .why_sxdp_item .h3,.why_sxdp.imsi .why_sxdp_block .why_sxdp_item h3 {
    text-align: center;
}

@media (max-width: 992px) {
    .why_sxdp.imsi .why_sxdp_block .why_sxdp_item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 992px) {
    .why_sxdp.imsi .why_sxdp_block .why_sxdp_item {
        width: 100%;
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.6);
        padding-bottom: 15px;
    }
}

.why.imsi {
    padding-top: 120px;
}

@media (max-width: 992px) {
    .why.imsi {
        padding-top: 90px;
    }
}

.save_up.imsi {
    padding: 120px 0;
}

@media (max-width: 992px) {
    .save_up.imsi {
        padding: 90px 0;
    }
}

.advan.imsi .white_boxs {
    margin-top: 90px;
    padding-bottom: 100px;
}

.imsi_hero {
    position: relative;
}

.imsi_hero.hero {
    padding-top: 200px;
}

.imsi_hero::after {
    content: "";
    position: absolute;
    bottom: -557px;
    right: -10px;
    width: 1213px;
    height: 1213px;
    background: url(../imgs/imsi_hero_new.png) no-repeat center/contain;
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 1230px) {
    .imsi_hero::after {
        width: 1100px;
        height: 1100px;
        bottom: -407px;
    }
}

@media (max-width: 992px) {
    .imsi_hero::after {
        width: 900px;
        height: 900px;
        bottom: -300px;
    }
}

@media (max-width: 640px) {
    .imsi_hero::after {
        width: 550px;
        height: 550px;
        bottom: -260px;
    }
}

@media (max-width: 1230px) {
    .imsi_hero .hero_left {
        max-width: 60%;
    }
}

@media (max-width: 992px) {
    .imsi_hero .hero_left {
        max-width: 100%;
        padding-bottom: 200px;
    }
}

@media (max-width: 640px) {
    .imsi_hero .hero_left {
        padding-bottom: 100px;
    }
}

.flashcall_in_numbers {
    padding-bottom: 60px;
}

@media (max-width: 992px) {
    .flashcall_in_numbers {
        padding-bottom: 45px;
    }
}

.flashcall_in_numbers .flashcall_in_numbers_block {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

@media (max-width: 1230px) {
    .flashcall_in_numbers .flashcall_in_numbers_block {
        gap: 15px;
    }
}

.flashcall_in_numbers .flashcall_in_numbers_block .flashcall_in_numbers_item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: calc(50% - 15px);
    border-radius: 21px;
    background-color: #EEF1F9;
    padding: 30px;
}

@media (max-width: 1230px) {
    .flashcall_in_numbers .flashcall_in_numbers_block .flashcall_in_numbers_item {
        width: calc(50% - 7.5px);
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .flashcall_in_numbers .flashcall_in_numbers_block .flashcall_in_numbers_item {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .flashcall_in_numbers .flashcall_in_numbers_block .flashcall_in_numbers_item {
        padding: 20px;
    }
}

.flashcall_in_numbers .flashcall_in_numbers_block .flashcall_in_numbers_item.w_100 {
    width: 100%;
}

.flashcall_in_numbers .flashcall_in_numbers_block .flashcall_in_numbers_item.blue_item {
    background-color: #0076E2;
}

.flashcall_in_numbers .flashcall_in_numbers_block .flashcall_in_numbers_item.blue_item .h3,.flashcall_in_numbers .flashcall_in_numbers_block .flashcall_in_numbers_item.blue_item h3 {
    color: #fff;
}

.flashcall_in_numbers .flashcall_in_numbers_block .flashcall_in_numbers_item.blue_item p {
    color: #fff;
}

.flashcall_in_numbers .flashcall_in_numbers_block .flashcall_in_numbers_item .h3,.flashcall_in_numbers .flashcall_in_numbers_block .flashcall_in_numbers_item h3 {
    color: #202838;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 992px) {
    .flashcall_in_numbers .flashcall_in_numbers_block .flashcall_in_numbers_item .h3,    .flashcall_in_numbers .flashcall_in_numbers_block .flashcall_in_numbers_item h3 {
        font-size: 25px;
    }
}

@media (max-width: 640px) {
    .flashcall_in_numbers .flashcall_in_numbers_block .flashcall_in_numbers_item .h3,    .flashcall_in_numbers .flashcall_in_numbers_block .flashcall_in_numbers_item h3 {
        font-size: 22px;
    }
}

.flashcall_in_numbers .flashcall_in_numbers_block .flashcall_in_numbers_item p {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 992px) {
    .flashcall_in_numbers .flashcall_in_numbers_block .flashcall_in_numbers_item p {
        font-size: 14px;
    }
}

.testing_viber.flashcall .form_block .form_text h5 {
    color: #FFF;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 640px) {
    .testing_viber.flashcall .form_block .form_text h5 {
        font-size: 18px;
    }
}

.testing_viber.flashcall .form_block .form_text p {
    color: #FFF;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .testing_viber.flashcall .form_block .form_text p {
        font-size: 18px;
    }
}

.why.flashcall {
    padding-bottom: 120px;
    padding-top: 120px;
}

@media (max-width: 992px) {
    .why.flashcall {
        padding-bottom: 90px;
        padding-top: 90px;
    }
}

.increase_efficiency_gateway.scheme_of_flashcall {
    padding-top: 0;
    padding-bottom: 0;
}

@media (max-width: 1230px) {
    .increase_efficiency_gateway.scheme_of_flashcall .increase_efficiency_gateway_block p br {
        display: none;
    }
}

.increase_efficiency_gateway.scheme_of_flashcall .increase_efficiency_gateway_block .increase_efficiency_gateway_items .increase_efficiency_gateway_item img {
    max-width: 300px;
}

@media (max-width: 1230px) {
    .increase_efficiency_gateway.scheme_of_flashcall .increase_efficiency_gateway_block .increase_efficiency_gateway_items .increase_efficiency_gateway_item img {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .increase_efficiency_gateway.scheme_of_flashcall .increase_efficiency_gateway_block .increase_efficiency_gateway_items .increase_efficiency_gateway_item img {
        max-width: 300px;
    }
}

.flashcall.possibilities .possibilities_block p {
    max-width: 441px;
}

.flashcall.possibilities .possibilities_block .possibilities_item_big_left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 1230px) {
    .flashcall.possibilities .possibilities_block .possibilities_item_big_left {
        gap: 60px;
    }
}

@media (max-width: 992px) {
    .flashcall.possibilities .possibilities_block .possibilities_item_big_left {
        gap: 30px;
    }
}

@media (max-width: 1230px) {
    .flashcall.possibilities .possibilities_item_big {
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .flashcall.possibilities .possibilities_item_big {
        gap: 40px;
    }
}

.hero.viber_business_hero.flashcall_hero {
    padding-bottom: 50px;
}

@media (max-width: 1230px) {
    .hero.viber_business_hero.flashcall_hero .hero_block .hero_subtitle br {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero.viber_business_hero.flashcall_hero .hero_block .hero_subtitle br {
        display: block;
    }
}

@media (max-width: 640px) {
    .hero.viber_business_hero.flashcall_hero .hero_block .hero_subtitle br {
        display: none;
    }
}

.hero.viber_business_hero.flashcall_hero .hero_block .hero_right img {
    max-width: 507px;
}

@media (max-width: 1230px) {
    .hero.viber_business_hero.flashcall_hero .hero_block .hero_right img {
        max-width: 430px;
    }
}

@media (max-width: 640px) {
    .hero.viber_business_hero.flashcall_hero .hero_block .hero_right img {
        max-width: 80%;
    }
}

.api_page_left {
    width: 260px;
    padding-top: 90px;
    height: 100%;
}

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

.api_page_left.sticky_api {
    position: sticky;
    top: 120px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

@media (max-width: 992px) {
    .api_page_left.mob {
        display: block;
        padding-top: 0;
        width: 70%;
        overflow-y: scroll;
    }
}

@media (max-width: 640px) {
    .api_page_left.mob {
        width: 100%;
    }
}

.api_page_left ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.api_page_left ul li, .api_page_left ul a {
    color: rgba(32, 40, 56, 0.6);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.api_page_left ul li b, .api_page_left ul a b {
    color: #202838;
    font-weight: 600;
}

.api_page_left .accordion-header {
    color: rgba(32, 40, 56, 0.6);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    background-color: #fff;
}

.api_page_left .accordion-header .icon {
    transform: rotate(180deg);
}

.api_page_left .accordion-header.active {
    padding-bottom: 10px;
}

.api_page_left .accordion-header.active .icon {
    transform: rotate(0deg);
}

.api_page_left .accordion-header.text_bold {
    color: #000;
}

.api_page_left .accordion-content {
    overflow: hidden;
    padding: 0 15px;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.api_page_left .accordion-content ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.api_page_left .accordion-content p, .api_page_left .accordion-content li, .api_page_left .accordion-content a {
    color: rgba(32, 40, 56, 0.6);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.api_page .api_page_block {
    display: flex;
    justify-content: space-between;
}

.api_page .api_page_right {
    width: calc(100% - 320px);
    padding-top: 280px;
}

@media (max-width: 992px) {
    .api_page .api_page_right {
        width: 100%;
        padding-top: 200px;
    }
}

@media (max-width: 640px) {
    .api_page .api_page_right {
        padding-top: 190px;
    }
}

.api_page .api_page_right h1 {
    color: #202838;
    font-family: Inter;
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 92px;
}

@media (max-width: 992px) {
    .api_page .api_page_right h1 {
        margin-bottom: 60px;
    }
}

@media (max-width: 640px) {
    .api_page .api_page_right h1 {
        font-size: 35px;
    }
}

.api_page .api_page_right p {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.api_page .api_page_right p a {
    color: #0076E2;
    transition: all ease-in 0.2s;
}

.api_page .api_page_right p a:hover {
    color: #0064C0;
}

.api_page .api_page_right p a:active {
    color: #2088E8;
}

.api_page .api_page_right p a:disabled {
    color: #A7AAB3;
    cursor: not-allowed;
}

@media (max-width: 640px) {
    .api_page .api_page_right p {
        font-size: 14px;
    }
}

.api_page .api_page_right h5 {
    color: #0076E2;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 640px) {
    .api_page .api_page_right h5 {
        font-size: 18px;
    }
}

.api_page .api_page_right table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    overflow: clip;
}

.api_page .api_page_right table tr td {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 15px 12px;
}

@media (max-width: 640px) {
    .api_page .api_page_right table tr td {
        font-size: 14px;
    }
}

.api_page .api_page_right table tr td a {
    color: #0076E2;
    transition: all ease-in 0.2s;
}

.api_page .api_page_right table tr td a:hover {
    color: #0064C0;
}

.api_page .api_page_right table tr td a:active {
    color: #2088E8;
}

.api_page .api_page_right table tr td a:disabled {
    color: #A7AAB3;
    cursor: not-allowed;
}

.api_page .api_page_right table tr th {
    background-color: #f0f2f5;
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    padding: 10px 12px;
    text-align: left;
}

@media (max-width: 640px) {
    .api_page .api_page_right table tr th {
        font-size: 14px;
    }
}

.api_page .api_page_right table tr th a {
    color: #0076E2;
}

.api_page .api_page_right table th, .api_page .api_page_right table td {
    border: 1px solid #D4D6D8;
}

.api_page .api_page_right table tr:nth-child(even) td {
    background-color: #F9FBFF;
}

.api_page .code_box {
    background: #F4F4F4;
    padding: 20px;
}

@media (max-width: 1230px) {
    .api_page .code_box {
        overflow-x: scroll;
    }
}

.api_page .code_box pre {
    color: #000;
    font-family: "Source Code Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

@media (max-width: 1230px) {
    .api_page .code_box pre {
        min-width: 1000px;
    }
}

.api_page .item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

.api_page .item.mb_100 {
    margin-bottom: 100px;
}

@media (max-width: 992px) {
    .api_page .item.mb_100 {
        margin-bottom: 90px;
    }
}

@media (max-width: 640px) {
    .api_page .item.mb_100 {
        margin-bottom: 60px;
    }
}

.api_page .item.w_1_2_250 table td:first-child, .api_page .item.w_1_2_250 table td:nth-child(2) {
    width: 250px;
}

@media (max-width: 640px) {
    .api_page .item.w_1_2_250 table td:first-child, .api_page .item.w_1_2_250 table td:nth-child(2) {
        width: 150px;
    }
}

.api_page .item span {
    color: #202838;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.api_page .item .code_itemcha {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.api_page .item h6 {
    color: #202838;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.api_page .item h4 {
    color: #202838;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 640px) {
    .api_page .item h4 {
        font-size: 18px;
    }
}

.api_page .grey_box {
    padding: 20px;
    background: #F4F4F4;
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: inline-flex;
    max-width: max-content;
}

.api_page .example_two_part_sms {
    display: flex;
    align-items: center;
    gap: 10px;
}

.api_page .example_two_part_sms .grey_box {
    max-width: 100%;
    min-width: 360px;
}

@media (max-width: 1230px) {
    .api_page .table_box {
        overflow-x: scroll;
    }
}

@media (max-width: 1230px) {
    .api_page .table_box table {
        min-width: 1000px;
    }
}

@media (max-width: 640px) {
    .api_page .table_box table {
        min-width: 700px;
    }
}

.api_page .table_box.white table td:first-child {
    width: 152px;
}

@media (max-width: 640px) {
    .api_page .table_box.white table td:first-child {
        width: 50px;
    }
}

.api_page .table_box.white table td:last-child {
    width: calc(100% - 154px);
}

.api_page .table_box.white table tr:nth-child(even) td {
    background-color: #fff;
}

.api_page .table_box.w_1_232 table td:first-child {
    width: 232px;
}

@media (max-width: 640px) {
    .api_page .table_box.w_1_232 table td:first-child {
        width: 150px;
    }
}

.api_page .table_box.w_1_152 table td:first-child {
    width: 152px;
}

@media (max-width: 640px) {
    .api_page .table_box.w_1_152 table td:first-child {
        width: 72px;
    }
}

.api_page .table_box.w_1_2_250 table td:first-child {
    width: 250px;
}

@media (max-width: 640px) {
    .api_page .table_box.w_1_2_250 table td:first-child {
        width: 150px;
    }
}

.api_page .table_box.w_1_2_250 table td:nth-child(2) {
    width: 250px;
}

@media (max-width: 640px) {
    .api_page .table_box.w_1_2_250 table td:nth-child(2) {
        width: 150px;
    }
}

.api_page .table_box.w_1_363 table td:first-child {
    width: 363px;
}

@media (max-width: 640px) {
    .api_page .table_box.w_1_363 table td:first-child {
        width: 150px;
    }
}

.api_page .table_box.w_25_4 table td {
    width: 25%;
}

@media (max-width: 640px) {
    .api_page .table_box.w_25_4 table td {
        width: 150px;
    }
}

.services_lists_section {
    padding-top: 120px;
}

@media (max-width: 992px) {
    .services_lists_section {
        padding-top: 90px;
    }
}

.services_lists_section .services_lists {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

@media (max-width: 1230px) {
    .services_lists_section .services_lists {
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .services_lists_section .services_lists {
        flex-wrap: wrap;
    }
}

.services_lists_section .services_lists li {
    width: calc(33.33% - 15px);
    border-radius: 9px;
    background: #EEF1F9;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1230px) {
    .services_lists_section .services_lists li {
        width: calc(33.33% - 10px);
    }
}

@media (max-width: 640px) {
    .services_lists_section .services_lists li {
        width: 100%;
    }
}

.services_lists_section .services_lists li a {
    color: #202838;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 20px;
    width: 100%;
}

.increase_efficiency_gateway.perexod .section_title {
    margin-bottom: 60px;
}

.increase_efficiency_gateway.perexod .increase_efficiency_gateway_block .increase_efficiency_gateway_items .increase_efficiency_gateway_item {
    align-items: center;
}

.increase_efficiency_gateway.perexod .increase_efficiency_gateway_block p {
    text-align: center;
}

.possibilities.perexod .possibilities_block p {
    max-width: 577px;
}

.why_sxdp.perexod {
    height: auto;
    padding: 90px 0;
}

.why_sxdp.perexod .section_title {
    margin-bottom: 30px;
}

.why_sxdp.perexod .why_sxdp_block .why_sxdp_item .h3,.why_sxdp.perexod .why_sxdp_block .why_sxdp_item h3 {
    text-align: center;
}

.why_sxdp.perexod .text_p {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .why_sxdp.perexod .text_p br {
        display: none;
    }
}

.why_sxdp.perexod .why_sxdp_block {
    padding-top: 60px;
    margin-bottom: 60px;
}

.why_sxdp.perexod .why_sxdp_block .why_sxdp_item {
    width: auto;
    padding-right: 30px;
    margin-right: 30px;
    padding-bottom: 20px;
}

@media (max-width: 992px) {
    .why_sxdp.perexod .why_sxdp_block .why_sxdp_item {
        padding-right: 10px;
        margin-right: 10px;
        width: 48%;
    }
}

@media (max-width: 640px) {
    .why_sxdp.perexod .why_sxdp_block .why_sxdp_item {
        width: 100%;
        padding: 0;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.6);
        padding-bottom: 20px;
    }
}

.why_sxdp.perexod .why_sxdp_block .why_sxdp_item:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

@media (max-width: 640px) {
    .why_sxdp.perexod .why_sxdp_block .why_sxdp_item:last-child {
        padding: 0;
        border-bottom: none;
    }
}

@media (max-width: 992px) {
    .why_sxdp.perexod .why_sxdp_block .why_sxdp_item:nth-child(2n) {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
    }
}

.stages.perexod {
    padding-bottom: 0;
    padding-top: 120px;
}

@media (max-width: 992px) {
    .stages.perexod {
        padding-top: 90px;
    }
}

.stages.perexod .text_top_p {
    color: #202838;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
}

.stages.perexod .section_title {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stages.long .stages_block .stages_item {
    min-height: 430px;
}

.our_clients.perexod {
    padding-bottom: 120px;
}

@media (max-width: 992px) {
    .our_clients.perexod {
        padding-bottom: 90px;
    }
}

.possibilities_platform.perexod {
    padding-bottom: 60px;
    padding-top: 120px;
}

@media (max-width: 992px) {
    .possibilities_platform.perexod {
        padding-bottom: 45px;
        padding-top: 90px;
    }
}

.possibilities_platform.perexod .white_boxs .white_box {
    transition: all ease-in 0.3s;
}

.possibilities_platform.perexod .white_boxs .white_box:hover {
    transform: translateY(-15px);
}

@media (max-width: 1230px) {
    .possibilities_platform.perexod .white_boxs .white_box:hover {
        transform: translateY(-7px);
    }
}

.hero.perexod {
    position: relative;
    background: linear-gradient(179deg, rgba(255, 255, 255, 0.5) 0.75%, rgba(139, 191, 239, 0.2) 45.06%, rgba(255, 255, 255, 0.5) 99.23%);
    padding-bottom: 80px;
}

.hero.perexod::after {
    content: "";
    position: absolute;
    top: 250px;
    right: -20px;
    width: 540px;
    height: 540px;
    background: url(../imgs/perexod_hero.png) no-repeat center/contain;
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 992px) {
    .hero.perexod::after {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 640px) {
    .hero.perexod::after {
        width: 300px;
        height: 300px;
        top: auto;
        bottom: -35px;
    }
}

@media (max-width: 1230px) {
    .hero.perexod.hero.viber_business_hero .hero_block .hero_subtitle br {
        display: block;
    }
}

@media (max-width: 992px) {
    .hero.perexod.hero.viber_business_hero .hero_block .hero_subtitle br {
        display: none;
    }
}

/* Overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(32, 40, 56, 0.66);
    display: none;
    z-index: 999999;
}

/* Modal base */
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 90px;
    width: 100%;
    max-width: 784px;
    display: none;
    z-index: 1000000;
    transition: all 0.3s ease;
    border-radius: 21px;
    background: #EEF1F9;
}

@media (max-width: 992px) {
    .modal {
        width: 90%;
        padding: 90px 50px;
    }
}

@media (max-width: 640px) {
    .modal {
        padding: 50px 20px;
        width: 96%;
    }
}

.modal.active {
    display: block;
    transform: translate(-50%, -50%) scale(1);
}

/* Close button */
.modal-close {
    position: absolute;
    top: -50px;
    right: -50px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

@media (max-width: 992px) {
    .modal-close {
        top: -50px;
        right: -20px;
    }
}

@media (max-width: 640px) {
    .modal-close {
        top: -40px;
        right: -10px;
    }
}

/* Buttons */
.btn-submit, .btn-close {
    background: #007bff;
    border: none;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
}

.btn-submit:hover, .btn-close:hover {
    background: #0069d9;
}

/* Animations */
.modal-content {
    position: relative;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal .section_title {
    margin-bottom: 30px;
}

.modal .back_btn_m {
    margin-top: 60px;
    width: 240px;
    height: 48px;
    padding: 16px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #0076E2;
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 640px) {
    .modal .back_btn_m {
        margin-top: 30px;
        height: 42px;
    }
}

.modal .any_ques_subtitle {
    color: #202838;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .modal .any_ques_subtitle br {
        display: none;
    }
}

@media (max-width: 640px) {
    .modal .any_ques_subtitle {
        font-size: 14px;
        gap: 15px;
    }

    .modal .any_ques_subtitle br {
        display: none;
    }
}

.modal .tel_ques {
    color: #0076E2;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 640px) {
    .modal .tel_ques {
        font-size: 14px;
    }
}

.modal.modal-thanks .modal-content {
    width: 100%;
}

.modal.modal-thanks .any_questions_top {
    margin-bottom: 0;
}

.modal.modal-thanks.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal .any_questions_top {
    margin-bottom: 60px;
}

@media (max-width: 640px) {
    .modal .any_questions_top {
        margin-bottom: 30px;
    }
}

.modal .any_questions_top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal .any_ques_form {
    max-width: 604px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal .any_ques_form button {
    border: none;
}

.modal .any_ques_form .inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
    width: 100%;
}

@media (max-width: 640px) {
    .modal .any_ques_form .inputs {
        margin-bottom: 30px;
        gap: 12px;
    }
}

.modal .any_ques_form .inputs .input_z {
    color: #202838;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 12px;
    border: 1px solid #E1E1E1;
    background: #FFF;
    padding: 8px 18px;
    height: 48px;
    outline: none;
}

.modal .any_ques_form .inputs .input_z::placeholder {
    color: #A7AAB3;
}

@media (max-width: 640px) {
    .modal .any_ques_form .inputs .input_z {
        font-size: 14px;
        height: 42px;
    }
}

.modal .any_ques_form .label_z {
    color: #202838;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    border: none;
    gap: 4px;
    cursor: pointer;
}

.modal .any_ques_form .label_z a {
    color: #4072D6;
}

.modal .any_ques_form .label_z input {
    display: none;
}

.modal .any_ques_form .label_z .checkbox_visual {
    width: 20px;
    height: 20px;
    background: url("../imgs/checkbox_ic.svg") no-repeat center/cover;
    display: inline-block;
    flex-shrink: 0;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #0076E2;
    margin-right: 6px;
}

.modal .any_ques_form .label_z input:checked + .checkbox_visual {
    background-image: url("../imgs/checkbox_ic.svg");
    border: none;
    border-radius: 0;
    background-color: transparent;
}

.modal .any_ques_form .btn_blue {
    margin-bottom: 20px;
    border: none;
    cursor: pointer;
}

@media (max-width: 640px) {
    .modal .any_ques_form .btn_blue {
        height: 42px;
    }
}

.modal .any_ques_form .btn_blue.btn-submit:disabled {
    cursor: not-allowed; /* mishka ko‘rsatkichi */
    background: #A7AAB3;
}

.modal .any_ques_form .btn_blue.btn-submit:focus {
    background: #0076E2;
    border: 2px solid #0064C0;
}

.modal .any_ques_form .btn_blue.btn-submit:active {
    background: #2088E8;
}

.modal .any_ques_form .btn_blue.btn-submit {
    cursor: pointer;
    transition: 0.3s ease;
    background: #0076E2;
}

.modal .any_ques_form .btn_blue.btn-submit:hover:not(:disabled) {
    background: #0064C0; /* hover paytidagi rangi */
}

.modal .input_z.error {
    border: 1px solid red;
}

.modal .label_z input.error + .checkbox_visual {
    outline: 2px solid red;
}

.feedback_btn.btn_blue:disabled {
    cursor: not-allowed; /* mishka ko‘rsatkichi */
    background: #A7AAB3;
}

.feedback_btn.btn_blue:focus {
    background: #0076E2;
    border: 2px solid #0064C0;
}

.feedback_btn.btn_blue:active {
    background: #2088E8;
}

.feedback_btn.btn_blue {
    cursor: pointer;
    transition: 0.3s ease;
    background: #0076E2;
}

.feedback_btn.btn_blue:hover:not(:disabled) {
    background: #0064C0; /* hover paytidagi rangi */
    color: #FFF;
}

.feedback_input.error {
    border: 1px solid red;
}

.error-message {
    color: red;
    font-size: 12px;
    margin-top: 3px;
}

/*# sourceMappingURL=main.css.map */

/*Тарифы*/

.text-24 {
    font-family: Inter;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #202838;
}

.text-22 {
    font-family: Inter;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #202838;
}

.text-16 {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #202838;
}

.service-payment_block {
    padding: 65px 60px;
    border-radius: 21px;
    background: #EEF1F9;
    margin-bottom: 120px;
    position: relative;
    overflow: hidden;
}

.service-payment_block::before {
    content: '';
    width: 906px;
    height: 906px;
    position: absolute;
    background-image: url(../imgs/3d-rendering.png);
    left: 543px;
    top: -155px;
    background-size: cover;
    opacity: .38;
}

.service-payment p {
    padding-top: 30px;
    white-space: pre-line;
}

.service-payment ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    margin-top: 30px;
}

.service-payment ul li {
    display: flex;
    align-items: center;
    gap: 18px;
}

.tariffs_hero {
    overflow: hidden;
    background: linear-gradient(359.56deg,
    rgba(255, 255, 255, 0.2) 0.39%,
    rgba(139, 191, 239, 0.6) 138.71%);
    position: relative;
    padding-bottom: 120px;
    width: 100%;
}

.tariff-why {
    padding-top: 120px;
}

.tariffs_hero::before {
    content: '';
    width: 940px;
    height: 940px;
    position: absolute;
    right: 0;
    user-select: none;
    z-index: -1;
    background: url(../imgs/tariffs_hero.png);
    opacity: .5;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.tariffs_hero-1::before {
    right: 0;
    top: 65px;
}

.tariffs_hero-2::before {
    width: 786px;
    height: 786px;
    right: 7%;
    top: 220px;
    background-image: url(../imgs/tariffs_hero-2.png);
    transform: rotateY(180deg);
}

.tariffs_hero-3::before {
    width: 740px;
    height: 740px;
    background-image: url(../imgs/tariffs_hero-3.png);
    top: 315px;
    right: 10%;
}

.tariffs_hero-4::before {
    background-image: url(../imgs/tariff_hero-4.png);
}

.tariffs_hero-5::before {
    background-image: url(../imgs/tariff_hero-5.png);
}

.tariffs_hero .hero_block .hero_subtitle {
    margin-bottom: 150px;
}

.tariff_type-left .tariff_type-blue {
    border: 1px solid #0076E2;
    background: #0076E2;
    color: #fff;
}
.tariff_type-left .tariff_type-blue a {
    color: #fff;
}

.t_dis {
    color: #A7AAB3;
}

.tariffs_block {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
}

.tariff-card {
    background: #fff;
    position: relative;
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.05),
    0px 2px 8px 0px rgba(0, 0, 0, 0.05);
    padding: 30px;
    border-radius: 21px;
    display: flex;
    flex-direction: column;
}

.tariff-card.last {
    background: #0076E2;
}
.tariff-card.last .text-24, .tariff-card.last .text-16 {
    color: #fff;
}
.tariff-card.last .tariff-card_des .text-16 {
    color: #202838;
}
.tariff-card.last .tariff-socails {
    border: none;
    background: #fff;
}
.tariff-card.last .btn_blue {
    background: #fff;
    color: #202838;
}

.tariff-card_des {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-radius: 21px;
    background: #EEF6FE;
}

.tariff-card_des > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.price-table th {
    text-align: left;
    padding: 10px 12px;
    background: #dc2626;
    color: #fff;
    font-weight: 600;
}

.price-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #e5e7eb;
}

.price-table tr:nth-child(even) td {
    background: #f9fafb;
}

.price-table tr:hover td {
    background: #fef2f2;
}

.price-table td:first-child {
    width: 40px;
    text-align: center;
    color: #6b7280;
}

.price-table td:last-child {
    text-align: right;
    font-weight: 600;
    white-space: nowrap;
}

.tariff-card_top p {
    margin-top: 20px;
}

.tariff-socails {
    position: absolute;
    top: 21px;
    right: 21px;
    padding: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 21px;
    border: 1px solid #A7AAB3;
}

.tariff-socails span {
    width: 32px;
    height: 32px;
    filter: grayscale(100%) brightness(1.1);
    opacity: 0.8;
    position: relative;
}

.tariff-socails span > p {
    position: absolute;
    padding: 10px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    background: #202838CF;
    color: #fff;
    top: calc(100% + 10.5px);
    left: 16px;
    /* transform: translateX(-50%); */
    z-index: -1;
    opacity: 0;
    transition: .3s;
    margin-top: 0;
}

.tariff-socails span:hover p {
    opacity: 1;
    z-index: 1;
    white-space: nowrap;
}

.tariff-socails img {
    width: 100%;
}

.tariff-socails span.active {
    filter: none;
    opacity: 1;
}

.tariff-card ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    flex-grow: 1;
}

.tariff-card ul li {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.tariff-card a.btn_blue {
    display: flex;
    color: #fff;
    width: 100%;
    margin-top: 20px;
}

.tariff-card_blue {
    background-color: #0076E2;
}

.tariff-card_blue .text-24,
.tariff-card_blue .text-16,
.tariff-card_blue .text-22 {
    color: #fff;
}

.tariff-card_blue .tariff-socails {
    background: #fff;
}

.btn_white {
    background: #fff;
}

.btn_white a,
.btn_white {
    color: #202838;
}

.btn_white:hover a,
.btn_white:hover {
    color: #fff;
}

.tariff-card button a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tariff-card_blue .tariff-card_des {
    background: #EEF6FE;
}

.tariff-card_blue .tariff-card_des span,
.tariff-card_blue .tariff-card_des p {
    color: #202838;
}

.tariff-card_blue .tariff-socails a {
    filter: none;
    opacity: 1;
}

.tariff-title {
    padding: 30px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
    border-radius: 21px;
    background: #0076E2;
    margin-bottom: 30px;
}

.tariff-title h2 {
    margin-bottom: 0;
    color: #fff;
}

.tariff-title .h3,
.tariff-title p {
    color: #fff;
}

.tariffs-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tariffs-cont > button {
    margin-top: 60px;
    width: 100%;
}

.tariff_type-left {
    padding: 30px;
    border-radius: 21px;
    background: #EEF1F9;
}

.tariff_type-left > div {
    display: flex;
    flex-wrap: wrap;
    /* flex-direction: column; */
    gap: 17px;
    margin-top: 30px;
}

.tariff_type-left p {
    width: fit-content;
    padding: 12px 20px;
    border-radius: 21px;
    border: 1px solid #0076E2;
    background: #fff;
}

.cost {
    margin-bottom: 120px;
}

.cost_block {
    padding: 90px 60px;
    border-radius: 21px;
    background: #0076E2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 90px;
}

.cost_block h2 {
    margin-bottom: 0;
    color: #fff;
}

.cost_block > div {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.cost_block-item {
    width: 100%;
    padding-right: 15px;
    border-right: 1px solid #FFFFFF;
    display: flex;
    text-align: center;
    flex-direction: column;
    gap: 30px;
}

.cost_block-item span,
.cost_block-item p {
    color: #fff;
}

.cost_block-item:last-of-type {
    padding-right: 0;
    border: none;
}

.cost_block-item > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.extended-cost_block > div {
    grid-template-columns: 1fr 1fr;
}

.extended-cost_block .cost_block-item > div:last-of-type {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 1230px) {
    .text-24 {
        font-size: 22px;
    }

    .text-22 {
        font-size: 18px;
    }

    .text-16 {
        font-size: 14px;
    }

    .tariff-card {
        padding: 20px;
    }

    .tariff-socails {
        top: 10px;
        right: 10px;
        gap: 5px;
    }

    .tariff-card_des {
        padding: 10px;
    }

    .tariffs_block {
        grid-template-columns: 1fr;
    }

    .tariffs_hero-1::before {
        width: 901px;
        height: 555px;
        right: -17%;
    }

    .tariffs_hero-2::before {
        right: 0%;
        top: 110px;
        width: 586px;
        height: 586px;
    }

    .tariffs_hero-3::before {
        width: 540px;
        height: 540px;
        top: 170px;
        right: 0;
    }

    .service-payment_block {
        padding: 30px;
    }

    .cost_block {
        gap: 40px;
    }

    .extended-cost_block .cost_block-item > div:last-of-type {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 992px) {
    .tariffs_hero-2::before {
        top: 135px;
        width: 384px;
        height: 384px;
    }

    .tariffs_hero-3::before {
        top: 70px;
    }

    .tariff-why, .tariffs_hero {
        padding-bottom: 90px;
    }
}

@media screen and (max-width: 630px) {
    .tariffs {
        margin-top: 0px;
    }

    .tariff-card_top p {
        margin-top: 15px;
    }
    .service-payment p, .tariff_type-left p {
         font-size: 14px;
     }

    .tariff-socails {
        width: fit-content;
        margin-top: 20px;
        gap: 8px;
        position: relative;
        top: auto;
        right: auto;
    }

    .tariff-card {
        padding: 30px;
    }

    .tariff-card_des {
        flex-direction: column;
        padding: 20px;
        gap: 24px;
    }

    .tariff-card ul li {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .tariff-card ul,
    .tariff-card_des > div {
        gap: 10px;
    }

    .tariff-card button {
        margin-top: 40px;
    }

    .text-24 {
        font-size: 24px;
    }

    .tariffs_hero {
        min-height: 568px;
    }

    /*  */
    .tariffs_hero::before {
        width: 420px;
        height: 420px;
        right: auto;
        left: 45%;
        transform: translateX(-50%);
    }

    .tariffs_hero-1::before {
        top: 245px;
    }

    .tariffs_hero-2::before {
        transform: translateX(-45%) rotateY(180deg);
        top: 255px;
    }

    .tariffs_hero-3::before {
        top: 250px;
        transform: translateX(-44%);
    }

    .tariffs_hero .hero_block .hero_subtitle {
        margin-bottom: 268px;
    }

    .tariffs_hero.tariffs_hero-2 .hero_block .hero_subtitle,
    .tariffs_hero.tariffs_hero-3 .hero_block .hero_subtitle {
        margin-bottom: 350px;
    }

    /*  */
    .service-payment_block::before {
        width: 457px;
        height: 457px;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: -103px;
    }

    .service-payment_block {
        padding: 90px 30px 323px 30px;
    }

    .tariff-title {
        gap: 15px;
        margin-bottom: 15px;
    }

    .tariff_type-left > div {
        gap: 15px;
        margin-top: 15px;
    }

    .cost_block {
        gap: 60px;
    }

    .cost_block > div {
        grid-template-columns: 1fr;
    }

    .cost_block-item {
        width: fit-content;
        margin: auto;
        border-bottom: 1px solid #fff;
        border-right: none;
        padding-right: 0;
        padding-bottom: 15px;
    }

    .cost {
        margin-bottom: 90px;
    }
}

.mailings {
    padding-top: 158px !important;
}

.mailings .container {
    display: contents;
    display: grid;
    grid-template-columns: 24fr 76fr;
}

.mailings-left {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding-right: 30px;
    border-right: 1px solid #EEF1F9;
    gap: 13px;
    padding-top: 60px;
}

.mailings-left li {
    font-weight: 600;
    font-size: 16px;
    color: #202838;
}

.mailings-left li a {
    color: #20283899;
    font-weight: 400;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.breadcrumbs li {
    color: #20283899;
}

.breadcrumbs a {
    color: #202838;
}

.mailings-right {
    padding-top: 60px;
    padding-left: 30px;
}

.mailings_intro {
    height: 415px;
    display: flex;
    align-items: flex-end;
    padding: 15px;
    border-radius: 21px 21px 0 0;
    background: url(../imgs/m_bg.png);
    margin-top: 30px;
}

.mailings_intro h2 {
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    line-height: 100%;
    color: #fff;
    white-space: pre-line;
}

.mail-intro-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 47px;
}

.mail-intro-bottom p {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #20283899;
    font-weight: 500;
    font-size: 14px;
}

.mailings-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mailings-item .h3,.mailings-item h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 100%;
    color: #0076E2;
}

.mailings-item li {
    /* white-space: pre-line; */
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: #202838;
}

.mailings-item ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
}

.mailings-item>li {
    list-style: none;
}

.mailings-item ul.num {
    list-style: decimal;
    padding-left: 20px;
}

.mailings-item ul.disc {
    list-style: disc;
    padding-left: 20px;
}

.mailings-block {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-top: 60px;
}

.mailings-item p,
.mailings-item span {
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    color: #202838;
}

.mailings-item_ex {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0px 8px 24px 0px #0000000D;
    box-shadow: 0px 4px 4px 0px #0000000D;
    border-radius: 20px;
}

.mailings-item_ex img {
    max-width: 100%;
    object-fit: cover;
    width: fit-content;
}

.mailings-item_ex-block ul:not(:first-of-type) {
    margin-top: 60px;
}

.mailings-item_ex-block ul {
    gap: 30px;
}

.mailings-item.r {
    gap: 60px;
}

.mailings-ex_bottom {
    padding-top: 10px;
    border-top: 1px solid #A0A0A0;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.mailings-ex_bottom p {
    font-weight: 400;
    font-size: 14px;
    color: #A0A0A0;
}

.mailings-ex_bottom>div {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-radius: 0 0 21px 21px;
    background: #0076E2;
}

.mailings-ex_bottom span {
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    color: #fff;
}

.mailing-rate {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mailing-rate img {
    cursor: pointer;
}

.contact h1 {
    font-family: Inter;
    font-weight: 700;
    font-style: Bold;
    font-size: 98px;
    line-height: 100%;
    color: #202838;
}

.contact>div.container {
    display: flex;
    flex-direction: column;
    gap: 90px;
}

.contact-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-radius: 21px;
    background: #EEF1F9;
}

.contact-item>div {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item h2 {
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 22px;
    line-height: 100%;
    color: #0076E2;
    text-transform: uppercase;
}

.contact-item p {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: #202838;
}

.contact-item a {
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 22px;
    color: #202838;
}

.contact-item>div>div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-top {
    display: flex;
    gap: 30px;
}

.contact-top>div {
    justify-content: space-between;
}

.contact-item .h3,.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    color: #202838;
}

.contact-bottom .contact-item p {
    white-space: pre-line;
}

.transition_hero.hero {
    position: relative;
    background: linear-gradient(179deg, rgba(255, 255, 255, 0.5) 0.75%, rgba(139, 191, 239, 0.2) 45.06%, rgba(255, 255, 255, 0.5) 99.23%);
    padding-bottom: 80px;
}

.transition_hero::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: 150px;
    width: 700px;
    height: 700px;
    background: url(../imgs/transition-intro.png) no-repeat center / contain;
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

.why_sxdp_transition {
    z-index: 111;
    height: 592px;
    position: relative;
}

.why_sxdp_transition h5 {
    white-space: pre-line;
    text-align: center;
}

.why_sxdp_transition h2 {
    margin-bottom: 30px;
}

/* .why_sxdp_transition .why_sxdp_block .why_sxdp_item {

} */

.why_sxdp_transition p {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    white-space: pre-line;
}

.why_sxdp_transition .why_sxdp_block {
    padding-top: 60px;
    padding-bottom: 60px;
}

.why_sxdp_transition .container {
    width: 100%;
}

.relevant_block {
    background: #EEF1F9;
    border-radius: 21px;
    padding: 90px 60px;
}

.relevant-items {
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr 1fr 1fr;
}

.relevant_block img {
    object-fit: cover;
    max-width: 100%;
}

.relevant-items>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.relevant_block p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #202838;
    white-space: pre-line;
}

.relevant-img {
    flex-grow: 1;
}

.advanvantages_section.transition {
    margin-top: 120px;
    margin-bottom: 60px;
}

.stages.transition {
    margin-top: 120px;
}


.stages.transition>div>p {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #202838;
    margin-bottom: 60px;
    margin-top: -30px;
}

@media screen and (max-width:1230px) {
    .mailings .container {
        display: flex;
    }

    .mailings-left {
        max-width: 30%;
        flex-shrink: 0;
        padding-right: 0;
    }

    .mailings-right {
        width: 70%;
    }

    .mailings_intro h2 {
        font-size: 35px;
    }

    .mailings_intro {
        background-position: right;
    }

    .contact-top {
        flex-direction: column;
    }

    .contact h1 {
        font-size: 35px;
        text-align: center;
    }

    .contact>div.container {
        gap: 60px;
    }

    .contact-item {
        text-align: center;
    }

    .contact-top>div {
        align-items: center;
    }

    .contact-item>div {
        align-items: center;
        text-align: center;
    }

    .contact img {
        max-width: 100%;
    }

    .transition_hero::after {
        right: 0;
    }

    .relevant_block p {
        white-space: inherit;
    }
}

@media screen and (max-width:992px) {
    .mailings-left {
        display: none;
    }

    .mailings-right {
        padding-top: 0;
        width: 100%;
        padding-left: 0;
    }

    .mailings .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .mailings_intro {
        height: 472px;
        border-radius: 0;
        background: #0076E2;
        position: relative;
    }

    .mailings_intro::before {
        content: '';
        width: 100%;
        height: 301px;
        position: absolute;
        left: 0;
        top: 0;
        background: url(../imgs/m_bg.png);
        background-size: cover;
        background-position: right;
        background-repeat: no-repeat;
    }

    .mailings-right .breadcrumbs {
        padding-left: 20px;
    }

    .breadcrumbs li {
        font-size: 12px;
    }

    .mail-intro-bottom {
        padding: 0 20px;
    }

    .mailings-block {
        padding: 0 20px;
        gap: 60px;
    }

    .mailings {
        padding-top: 140px;
    }

    .transition_hero::after {
        width: 550px;
        height: 550px;
        right: -50px;
    }

    .why_sxdp_transition .why_sxdp_block {
        flex-direction: column;
        align-items: center;
    }

    .why_sxdp .why_sxdp_block .why_sxdp_item {
        width: 100%;
        padding-right: 0;
        padding-bottom: 30px;
        gap: 15px;
        margin-right: 0;
        border: none;
        position: relative;
    }

    .why_sxdp .why_sxdp_block .why_sxdp_item::after {
        content: '';
        width: 135px;
        height: 1px;
        background: #FFFFFF99;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .why_sxdp_transition h5,
    .why_sxdp_transition p {
        white-space: unset;
    }

    .why_sxdp_transition {
        height: fit-content;
    }

    .relevant .container {
        max-width: 100%;
        padding: 0;
    }

    .relevant_block {
        padding: 90px 20px;
    }

    .relevant-items {
        grid-template-columns: 300px;
        align-content: center;
        justify-content: center;
    }

    .relevant_block>div {
        align-items: center;
        justify-content: center;
    }

    .advanvantages_section.transition {
        margin-top: 90px;
        margin-bottom: 45px;
    }
}

@media screen and (max-width:640px) {
    .mail-intro-bottom {
        margin-top: 35px;
    }

    .mailings-block {
        padding: 0 16px;
        margin-top: 30px;
    }

    .mailings_intro h2 {
        font-size: 22px;
    }

    .mailings_intro {
        height: 348px;
    }

    .mailings_intro::before {
        height: 220px;
    }

    .contact h1 {
        font-size: 25px;
    }

    .contact-item h2,
    .contact-item a {
        font-size: 18px;
    }

    .contact-item p {
        font-size: 16px;
    }

    .transition_hero::after {
        width: 450px;
        height: 450px;
        bottom: -100px;
    }

    .transition_hero.hero {
        padding-bottom: 180px;
    }
}

/* Fix: headings on dark (#202838) background sections inherit dark color — force white */
.app_push_section .section_title,
.app_push_section h2,
.app_push_section .h3,
.app_push_section h3,
.what_is .section_title,
.what_is h2,
.what_is .h3,
.what_is h3,
.high_load .section_title,
.high_load h2,
.high_load .h3,
.high_load h3,
.tmp_management .section_title,
.tmp_management h2,
.tmp_management .h3,
.tmp_management h3,
.about_platform .about_platform_block .about_platform_content .section_title,
.why_sxdp .section_title,
.why_sxdp h2,
.why_sxdp .h3,
.why_sxdp h3,
.cascade_mailing .cascade_mailing_block .cascade_mailing_content .section_title,
.comparison .section_title,
.comparison h2,
.comparison .h3,
.comparison h3,
.methods_viber_channel .section_title,
.methods_viber_channel h2,
.methods_viber_channel .h3,
.methods_viber_channel h3,
.what_viber_bot .section_title,
.what_viber_bot h2,
.what_viber_bot .h3,.what_viber_bot h3 {
    color: #fff;
}
