* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding-top: 70px;
    background-color: #ffffff;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 1030;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.header-container {
    width: 100%;
    padding-right: 2rem;
    padding-left: 2rem;
    margin-right: auto;
    margin-left: auto;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-block {
    flex-shrink: 0;
}

.logo {
    text-decoration: none;
    font-size: 1.5rem;
}

.right-block-desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    margin-left: 2rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu li a {
    text-decoration: none;
}

.phone-number {
    text-decoration: none;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    opacity: .7;
    transition: transform 0.3s ease, opacity 0.25s ease, visibility 0.25s;
}

.phone-number:hover {
    opacity: 0.9;
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1040;
    position: relative;
}

.burger-btn span {
    width: 100%;
    height: 3px;
    background-color: #000000;
    transition: all 0.25s ease-in-out;
    transform-origin: center;
}

.burger-btn.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger-btn.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 1.5rem 1.5rem 2rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.25s ease, visibility 0.25s;
    z-index: 1029;
    border-top: 1px solid #e0e0e0;
}

.mobile-menu-overlay.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-close-btn {
    display: none;
}

@keyframes animation_1 {
    0% {
        opacity: 1;
        transform: translateX(0px) translateY(0px);
    }
    50% {
        opacity: 0.7;
        transform: translateX(2px) translateY(2px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px) translateY(0px);
    }
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-list li a {
    text-decoration: none;
    /* font-size: 1.2rem; */
    display: block;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: #000000;
    -webkit-transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.mobile-phone {
    display: inline-block;
    font-size: 1.2rem;
    text-decoration: none;
    width: 100%;
    color: #000000;
    margin-bottom: 20px;
}

.local_btn {
    /*color: #ffffff;*/
    /*background-color: #1239d1;*/
    color: #1239d1;
    background-color: #ffffff;
    border: #1239d1 solid 2px;
    border-radius: 15px;
    box-shadow: none !important;
    transition-duration: 0.2s;
    transition-property: background-color, color, border-color, box-shadow, opacity, transform, gap;
    transition-timing-function: ease-in-out;
    padding-left: 30px;
    padding-right: 30px;
    text-decoration: none;
    outline: none;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-image: none;
    cursor: pointer;
    user-select: none;
    height: 40px;
}

.local_blue_btn {
    background-color: #1239d1;
    color: #ffffff;
    border-color: #1239d1;
}

.local_blue_btn:hover {
    color: #1239d1;
    background-color: #ffffff;
    border: #1239d1 solid 2px;
}

.local_white_btn:hover {
    color: #ffffff;
    background-color: #1239d1;
    border: #1239d1 solid 2px;
}

.local_btn_big {
    padding-left: 60px;
    padding-right: 60px;
    font-size: 14px;
    height: 58px;
    font-weight: 500;
}

.desktop_menu li a {
    color: #000000;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    -webkit-transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.desktop_menu li:hover a {
    opacity: .7;
}

img.logo_img {
    max-width: 200px;
    width: 200px;
}

.top_banner {
    display: flex;
    justify-content: center;
}

.top_banner_img {
    max-width: 100%;
}

.zontes_btn_row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top_title {
    text-align: center;
    font-weight: 600;
    font-size: 62px !important;
    line-height: 1.23;
}

.top_title h1, .top_title h2 {
    font-size: 62px !important;
}

img.top_price_img {
    max-width: 100%;
    max-height: 100%;
    -webkit-transition: opacity 0.1s linear;
    transition: opacity 0.1s linear;
    border-radius: 15px;
}

.top_price_btn {
    font-size: 13px;
    border: #1239d1 solid 1px;
    color: #1239d1;
    border-radius: 5px;
    box-shadow: none !important;
    transition-duration: 0.2s;
    transition-property: background-color, color, border-color, box-shadow, opacity, transform, gap;
    transition-timing-function: ease-in-out;
    text-decoration: none;
    padding: 6px 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.top_price_blue_btn {
    color: #ffffff;
    background-color: #1239d1;
}

.top_price_blue_btn:hover {
    color: #1239d1;
    background-color: #ffffff;
}

.top_price_white_btn:hover {
    color: #ffffff;
    background-color: #1239d1;
}

.top_price_block {
    margin-top: 85px;
}

.top_price_bl_item {
    padding: 0 20px;
}

.top_price_img_wr {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 350px;
}

.ttl_second_block {
    margin-top: 40px;
    margin-bottom: 50px;
}

.badge_img {
    max-width: 100%;
    width: 100%;
    border-radius: 15px;
    pointer-events: auto;
    overflow: hidden;
    background-position: center center;
    border: #ffffff solid 2px;
    box-shadow: 12px 12px 27px 0px rgba(5, 37, 85, 0.58);
    transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out, border-color 0.1s ease-in-out, box-shadow 0.2s ease-in-out;
}

.badge_col {
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
    animation: animation_1 2s linear forwards;
}

.badge_col:hover {
    animation: shakeAnimation 0.5s linear forwards;
}

.badge_lnk {
    text-decoration: none;
}

.row.badge_row {
    margin: 0 230px;
}

.moto_model_block {
    margin-top: 70px;
}

.m_model_col_left img {
    border-radius: 25px;
    max-width: 100%;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.m_model_col_left a:hover img {
    transform: scale(1.05);
}

.moto_model_title {
    font-size: 28px;
    margin-bottom: 10px;
    line-height: 1.35;
}

.moto_model_blue_txt {
    font-size: 18px;
    color: #0351c1;
}

.moto_model_price_txt {
    line-height: 1.35;
    margin: 18px 0;
    font-size: 20px;
    font-weight: 700;
}

.moto_model_txt strong {
    line-height: 1.55;
    font-size: 18px;
}

.m_model_col_right {
    max-width: 460px;
}

.moto_model_txt ul li {
    line-height: 31px;
    font-size: 18px;
    font-weight: 300;
}

.m_model_col_left {
    padding-right: 20px;
}

.local_dark_blue_btn {
    color: #ffffff;
    background-color: #0043a4;
    border: #0043a4 solid 1px;
    width: 100%;
    font-weight: 600;
}

.local_dark_blue_btn:hover {
    color: #0043a4;
    background-color: #ffffff;
}

.moto_model_btn {
    margin-bottom: 30px;
}

.compare_table thead tr th {
    padding: 40px 40px 40px 10px;
    font-size: 18px;
    font-weight: 500;
    background-color: #0043a4;
    vertical-align: baseline;
    color: white;
}

.blue_block {
    background-color: #0043a4 !important;
    color: white !important;
}

.blue_bold_text {
    color: #0043a4 !important;
    font-weight: bold !important;
}

.compare_table tbody tr td {
    padding: 20px 40px 20px 20px;
    font-weight: normal;
}

.table_wr {
    margin: 0 95px;
}

th.compare_table_c_1 {
    width: 35%;
}

.fin_b_wr img {
    width: 100%;
    max-width: 100%;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
    animation: animation_1 2s linear forwards;
}

.fin_b_wr img:hover {
    animation: shakeAnimation 0.5s linear forwards;
}

.fin_bottom_banner_bl {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.fin_bottom_banner_bl .fin_b_wr {
    width: 50%;
}

.fin_banner_txt {
    padding: 20px 0 20px 100px;
}

.about_diler {
    display: flex;
    margin-bottom: 40px;
}

.about_diler_left {
    max-width: 460px;
    margin: 0 20px;
    width: 100%;
}

.about_diler_title {
    color: #0043a4;
    padding-bottom: 28px;
    font-size: 28px;
    line-height: 1.17;
    font-weight: 600;
}

.about_diler_text {
    opacity: .85;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
}

.about_diler_right img {
    border-radius: 25px;
    width: 100%;
    max-width: 100%;
}

.adv_row {
    display: flex;
    width: 100%;
    margin-bottom: 60px;
}

.adv_col {
    width: 33.3%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
}

.border_desktop_lr {
    border-left: 1px solid #d1d1d1;
    border-right: 1px solid #d1d1d1;
}

.adv_col {
    border-bottom: none;
}

.adv_col img {
    max-width: 100%;
    width: 200px;
    margin-bottom: 30px;
}

.adv_ttl {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 600;
}

.adv_txt {
    font-size: 16px;
    line-height: 1.55;
}

.form_block {
    display: flex;
    justify-content: center;
    min-width: 100%;
}

.form_block_in {
    max-width: 760px;
    background-image: url(form_bg.jpg);
    border-radius: 25px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
}

.form_block_content {
    background-image: linear-gradient(to bottom, rgba(3, 81, 193, 0.70), rgba(13, 44, 82, 0.70));
    border-radius: 25px;
    padding: 58px 40px 62px;
    text-align: center;
}

.form_block_title {
    color: #fff;
    margin-bottom: 16px;
    font-size: 34px;
    line-height: 1.23;
    font-weight: 600;
}

.form_block_descr {
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.55;
}

.carousel_block {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.carousel_block_wr {
    width: 560px;
    height: 560px;
    position: relative;
    border-radius: 25px;
}

.carousel_srt_wrapper_item {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 25px;
    overflow: hidden;
}

.carousel_srt_img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.carousel_single_btn {
    width: 40px;
    height: 40px;
    outline: none;
    background-color: #eee;
    border-radius: 100px;
    transition: background-color .2s ease-in-out, border-color .2s ease-in-out;

    border: none;
    cursor: pointer;
    display: inline-block;
    outline-offset: 5px;
    padding: 0;
    position: absolute;
    top: 200px;
}

.js_carousel_single_prev {
    left: -80px;
}

.js_carousel_single_next {
    right: -80px;
}

.js_carousel_single_next div {
    left: 17px;
    position: absolute;
    top: 13px;
    width: 9px;
}

.js_carousel_single_prev div {
    left: 50%;
    position: absolute;
    top: 50%;
    width: 9px;
    -webkit-transform: translate(-55%, -50%) rotate(180deg);
    transform: translate(-55%, -50%) rotate(180deg);
}
.map_block {
    margin-bottom: 50px;
}
.cont_soclink {
    margin-top: 30px;
}
.cont_txt_title {
    margin-bottom: 30px;
    font-size: 26px;
    line-height: 1.17;
    font-weight: 600;
}
.cont_txt_text a {
    color: inherit;
    text-decoration: none;
}
.cont_txt_text {
    font-size: 18px;
    line-height: 1.55;
}
.cont_txt_wr {
    padding: 15px;
}
.moto_map_wrapper {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    background-color: rgb(229, 227, 223);
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}
.callback_modal_moto_close_btn {
    right: 10px;
    position: absolute;
}
.callback_mod_content {
    padding: 40px 45px 47px;
    border-radius: 25px !important;
    min-width: 690px;
}
.modal_title {
    font-size: 34px;
    line-height: 1.23;
    margin-bottom: 11px;
    font-weight: 600;
}
.modal_description {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 24px;
}
.carousel_single_items {
    max-width: 100%;
    width: 560px;
}
@media (max-width: 991.98px) {
    body {
        padding-top: 65px;
    }

    .fixed-header {
        padding: 10px 0;
    }

    .right-block-desktop {
        display: none !important;
    }

    .burger-btn {
        display: flex;
    }

    .zontes_btn_row {
        flex-direction: column;
        -webkit-flex-direction: column;
    }

    .local_btn_big {
        min-width: 100%;
    }

    .top_title, .top_title h1, .top_title h2 {
        font-size: 38px !important;
    }

    .compare_table thead tr th {
        padding: 0;
    }

    .top_price_img_btn_wr {
        margin-top: 20px;
    }

    .top_price_img_wr {
        justify-content: start;
        height: 430px;
    }

    .second_title {
        font-size: 28px;
    }

    .row.badge_row {
        margin: 0;
        row-gap: 50px;
    }

    .moto_model_title {
        margin-top: 20px;
    }

    .m_model_col_right {
        max-width: unset;
    }

    .table_wr {
        margin: 0;
    }

    .fin_bottom_banner_bl .fin_b_wr {
        width: 100%;
    }

    .fin_bottom_banner_bl {
        margin-top: 5px;
    }

    .fin_banner_txt {
        padding: 20px;
    }

    .about_diler {
        flex-direction: column;
    }

    .about_diler_left, .about_diler_right {
        margin: 0 20px;
    }

    .about_diler_title {
        font-size: 22px;
    }

    .about_diler_text {
        font-size: 13px;
        line-height: 1.45;
        margin-bottom: 30px;
    }

    .adv_row {
        display: flex;
        width: 100%;
        flex-direction: column;
        margin-bottom: 0;
    }

    .adv_col {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        padding: 20px 40px;
    }

    .border_desktop_lr {
        border-left: none;
        border-right: none;
    }

    .adv_col {
        border-bottom: 1px solid #d1d1d1;
    }

    .form_block_content {
        padding: 48px 30px 52px;
    }

    .form_block_title {
        font-size: 26px;
    }

    .js_carousel_single_next {
        right: 10px;
        z-index: 1;
    }

    .js_carousel_single_prev {
        left: 10px;
        z-index: 1;
    }
    .cont_txt_title {
        margin-bottom: 24px;
        font-size: 22px;
    }
    .cont_txt_text {
        font-size: 14px;
        line-height: 1.45;
    }
    .modal_title {
        font-size: 26px;
        margin-bottom: 6px;
    }
    .modal_description {
        font-size: 12px;
        margin-bottom: 14px;
    }
    .callback_mod_content {
        padding: 0;
        min-width: 600px;
    }
}