* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    background-color: white;
    color: var(--text);
    font-size: clamp(14px, 2.5vw, 16px);
    font-family: "Roboto", Arial, sans-serif;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text);
}

h2 {
    font-size: clamp(26px, 4.2vw, 38px);
    font-weight: 600;
    line-height: 1.2;
    color: #1a2332;
}

h2 span {
    color: var(--color_brand);
}

h3 {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 600;
    line-height: 1.2;
    color: #1a2332;
}

a {
    color: var(--text);
    text-decoration: none;
}

a:hover {
    color: var(--link_hover);
}

ul {
    margin-bottom: 0;
    padding-left: 0;
}

ul li {
    list-style: none;
}

img {
    width: 100%;
    height: 100%;
    /*max-width: 500px;*/
    -o-object-fit: contain;
    object-fit: contain;
}

input {
    position: relative;
}

.hover:hover {
    color: var(--color_brand);
    cursor: pointer;
}

input:focus {
    outline: none;
}

.text-theme {
    color: var(--color_brand) !important;
}

.hover:hover {
    text-decoration: underline;
}

.icon-footer svg {
    height: 16px;
    width: 16px;
}


/*------ Для блока block-header --------*/

.site-header {
    --_nav-h: 64px;
    --_top-h: 36px;
    --_drawer-w: min(340px, 90vw);
    --_ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --_t: 0.18s ease;
    --_dark: #212121;
    --_white: #ffffff;
    --_gray-1: #f4f6f9;
    --_gray-2: #e8eaed;
    --_text: #1e2228;
    --_text-2: #5a6170;
    --_text-3: #8f96a3;
    --_brand: var(--color_brand);
    --_brand-dark: color-mix(in srgb, var(--color_brand) 78%, #000);
    --_brand-light: color-mix(in srgb, var(--color_brand) 10%, #fff);

    position: sticky;
    top: 0;
    z-index: 900;
    width: 100%;
}

.topbar {
    background: var(--_dark);
    height: var(--_top-h);
    display: flex;
    align-items: center;
}

.topbar-inner {
    /*max-width: 1524px;*/
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end !important;
    gap: 24px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
    transition: color var(--_t);
}

.topbar-item:hover {
    color: #fff;
}

.topbar-item svg {
    color: var(--_brand);
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.topbar-sep {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.15);
}

.nav-bar {
    background: var(--_white);
    border-bottom: 2.5px solid var(--_brand);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.nav-inner {
    /*max-width: 1524px;*/
    margin: 0 auto;

    height: var(--_nav-h);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo {

    align-items: center;
    flex-shrink: 0;
    margin-right: 32px;
    max-width: 180px;
}

.logo img {
    max-height: 60px;
}

.logo svg {
    width: 72px;
    height: auto;
    display: block;
}

.logo .text_brand {
    font-size: 16px;
    font-weight: 800;
    display: block;
    line-height: 1;
    color: var(--color_brand);
}

.logo .text_sc {
    display: flex;
    font-size: 12px;
    margin-top: 5px;
    line-height: 1;
}

.nav-panel {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.drawer-head {
    display: none;
}

.contact-block {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 2px;
    min-width: 0;
}

.nav-links>li {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 13px;
    font-size: 14px;
    font-weight: 500;
    color: var(--_text);
    border-radius: 8px;
    transition: background var(--_t), color var(--_t);
    white-space: nowrap;
    cursor: pointer;
}

.nav-link .chev {
    width: 12px;
    height: 12px;
    color: var(--_text-3);
    transition: transform var(--_t), color var(--_t);
    flex-shrink: 0;
}

.nav-links>li:hover>.nav-link,
.nav-links>li.open>.nav-link {
    background: var(--_brand-light);
    color: var(--_brand);
}

.nav-links>li:hover>.nav-link .chev,
.nav-links>li.open>.nav-link .chev {
    transform: rotate(180deg);
    color: var(--_brand);
}


.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    width: max-content;
    left: 0;
    max-height: 315px;
    overflow-y: auto;
    background: var(--_white);
    border: 1px solid var(--_gray-2);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity var(--_t), transform var(--_t), visibility var(--_t);
    z-index: 100;
}

.nav-links>li:hover .dropdown,
.nav-links>li.open .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    font-size: 13.5px;
    color: var(--_text);
    border-radius: 8px;
    transition: background var(--_t), color var(--_t);
}

.dropdown a svg {
    width: 16px;
    height: 16px;
    color: var(--_brand);
    flex-shrink: 0;
}

.dropdown a:hover {
    background: var(--_brand-light);
    color: var(--_brand);
}

.dropdown-sep {
    height: 1px;
    background: var(--_gray-2);
    margin: 4px 8px;
}

.panel-cta {
    flex-shrink: 0;
    margin-left: 16px;
    background: var(--_brand);
    color: #fff;
    padding: 10px 20px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .01em;
    white-space: nowrap;
    transition: background var(--_t), transform var(--_t), box-shadow var(--_t);
}

.panel-cta:hover {
    background: var(--_brand-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.panel-cta:active {
    transform: none;
    box-shadow: none;
}


.icon-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 9px;
    border: 1.5px solid var(--_gray-2);
    color: var(--_brand);
    background: var(--_white);
    transition: background var(--_t), border-color var(--_t);
    flex-shrink: 0;
    cursor: pointer;
}

.icon-btn svg {
    width: 20px;
    height: 20px;
}

.icon-btn:hover {
    background: var(--_brand-light);
    border-color: var(--_brand);
}


.bar-actions {
    display: none;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
}


.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 18, 28, 0.42);
    z-index: 910;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1023px) {
    .site-header {
        --_nav-h: 60px;
    }

    .topbar {
        display: none;
    }

    .nav-inner {
        padding: 0 20px;
        gap: 6px;
    }

    .logo {
        margin-right: 0;
    }

    .logo svg {
        width: 60px;
    }


    .nav-panel {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: var(--_drawer-w);
        flex-direction: column;
        align-items: stretch;
        background: var(--_white);
        z-index: 920;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.13);
        overflow-y: auto;
        overscroll-behavior: contain;
        transform: translateX(100%);
        transition: transform 0.28s var(--_ease);
    }

    .nav-panel.open {
        transform: translateX(0);
    }


    .drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px 14px;
        border-bottom: 1px solid var(--_gray-2);
        flex-shrink: 0;
    }

    .drawer-head-title {
        font-size: 14px;
        font-weight: 600;
        color: var(--_dark);
    }

    .drawer-close-btn {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        border: 1.5px solid var(--_gray-2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--_text-2);
        background: transparent;
        transition: background var(--_t);
        cursor: pointer;
    }

    .drawer-close-btn svg {
        width: 18px;
        height: 18px;
    }

    .drawer-close-btn:hover {
        background: var(--_gray-1);
    }


    .nav-links {
        flex-direction: column;
        align-items: stretch;
        flex: none;
        padding: 8px 0;
    }

    .nav-links>li {
        position: static;
    }

    .nav-link {
        padding: 13px 22px;
        font-size: 15px;
        border-radius: 0;
        justify-content: space-between;
    }

    .nav-link .chev {
        transform: rotate(-90deg) !important;
    }

    .nav-links>li.open>.nav-link .chev {
        transform: rotate(0deg) !important;
    }

    .nav-links>li:hover>.nav-link,
    .nav-links>li.open>.nav-link {
        background: var(--_brand-light);
    }


    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        border-top: 1px solid var(--_gray-2);
        border-bottom: 1px solid var(--_gray-2);
        background: var(--_gray-1);
        padding: 4px 0;
        display: none;
    }

    .nav-links>li.open .dropdown {
        display: block;
    }

    .dropdown a {
        padding: 11px 22px 11px 36px;
        border-radius: 0;
        font-size: 14px;
    }

    .dropdown a:hover {
        background: var(--_brand-light);
    }

    .dropdown-sep {
        margin: 4px 0;
    }


    .nav-divider {
        display: block;
        height: 1px;
        background: var(--_gray-2);
        margin: 6px 16px;
    }


    .contact-block {
        display: block;
        padding: 16px 20px 8px;
        border-top: 1px solid var(--_gray-2);
        margin-top: auto;
        flex-shrink: 0;
    }

    .contact-block-label {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--_text-3);
        margin-bottom: 14px;
    }

    .contact-row {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 12px;
    }

    .contact-row svg {
        width: 18px;
        height: 18px;
        color: var(--_brand);
        flex-shrink: 0;
        margin-top: 1px;
    }

    .cr-main {
        font-size: 14px;
        font-weight: 600;
        color: var(--_text);
    }

    .cr-sub {
        font-size: 12px;
        color: var(--_text-3);
        margin-top: 2px;
    }


    .panel-cta {
        display: block;
        margin: 0 20px 24px;
        padding: 13px;
        font-size: 15px;
        text-align: center;
        border-radius: 10px;
        width: calc(100% - 40px);
        flex-shrink: 0;
    }


    .bar-actions {
        display: flex;
    }

    .icon-btn {
        display: flex;
    }
}

@media (max-width: 639px) {
    .site-header {
        --_nav-h: 56px;
    }

    .nav-inner {
        padding: 0 14px;
        gap: 6px;
    }

    .logo svg {
        width: 52px;
    }
}

@media (min-width: 1024px) {
    .nav-divider {
        display: none;
    }

    .contact-block {
        display: none !important;
    }

    .bar-actions {
        display: none;
    }


    .panel-cta {
        margin-left: 16px;
    }
}

/*------ Конец для блока block-header --------*/

.select-device {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 20px;
    gap: 14px;
}

.data-device {
    width: auto;
    height: 36px;
    border-radius: 20px;
    background-color: var(--color_brand);
    border: 1px solid var(--color_brand);
    color: white;
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    padding: 10px 20px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.data-device:hover {
    -webkit-box-shadow: 0 6px 10px rgb(0 0 0 / 15%);
    box-shadow: 0 6px 10px rgb(0 0 0 / 15%);
}

.politika {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.politika input {
    margin-right: 10px;
}

.text-politika {
    color: #393b43;
}

.main-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 500px;
}

.form input[name="phone"] {
    height: 50px;
    border-radius: 100px;
    border: 0px;
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
    background-color: white;
}

.form input[type="submit"],
.form input[type="button"] {
    height: 50px;
    border-radius: 100px;
    border: 0px;
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
    background-color: var(--color_brand);
    opacity: 0.85;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    cursor: pointer;
}

/* Desktop hover — только там, где есть настоящая мышь */
@media (hover: hover) {

    .form input[type="submit"]:hover,
    .form input[type="button"]:hover {
        opacity: 1;
    }
}

/* Нажатие — главное для мобильных, реагирует мгновенно */
.form input[type="submit"]:active,
.form input[type="button"]:active {
    opacity: 1;
    transform: scale(0.96);
}

/* Фокус с клавиатуры */
.form input[type="submit"]:focus-visible,
.form input[type="button"]:focus-visible {
    outline: 2px solid var(--color_brand);
    outline-offset: 2px;
}

/* Состояние отправки — т.к. у input нет ::after, крутим фон */
.form input[type="submit"].is-loading,
.form input[type="button"].is-loading {
    opacity: 1;
    color: transparent;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 50 50'%3E%3Ccircle cx='25' cy='25' r='20' fill='none' stroke='%23ffffff' stroke-width='5' stroke-linecap='round' stroke-dasharray='90 60'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
    animation: form-btn-spin 0.7s linear infinite;
}

@keyframes form-btn-spin {
    from {
        background-position: center;
        transform: none;
    }

    to {
        transform: rotate(360deg);
    }
}

/* Успех */
.form input[type="submit"].is-success,
.form input[type="button"].is-success {
    opacity: 1;
    background-color: #2e9e4f;
    background-image: none;
    color: white;
}

/* Ошибка (тряска) */
.form input[type="submit"].is-error,
.form input[type="button"].is-error {
    animation: form-btn-shake 0.3s ease;
}

@keyframes form-btn-shake {
    25% {
        transform: translateX(-4px);
    }

    75% {
        transform: translateX(4px);
    }
}

.form input[type="submit"]:disabled,
.form input[type="button"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-last .politika {
    font-family: "Roboto", sans-serif;
    color: #888;
    font-size: 14px;
    font-weight: 400;
    line-height: 18.2px;
    letter-spacing: 0.03em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.form-last .politika a {
    font-weight: 600;
    text-decoration: none;
    color: var(--color_brand);
}

.form-last .politika a:hover {
    text-decoration: underline;
}

.form.form-last {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.form.form-last input {
    height: 17px;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 20px 30px;
    border: 0px solid;
    text-align: center;
}

.form.form-last button {
    margin-top: 20px;
    background-color: var(--color_brand);
    color: white;
    border-radius: 30px;
    height: 50px;
    border: 0px solid;
    margin-bottom: 18px;
}

/*---------- Price ---------------*/
.svg-update {
    width: 21px;
    height: 21px;
    margin-right: 10px;
}

.update-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 34px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.text-update span {
    color: var(--color_brand);
}

.line-table {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50% 10px 2fr 10px 1fr;
    grid-template-columns: 50% 2fr 1fr;
    gap: 10px;
}

.column {
    font-size: 18px;
    line-height: 22px;
    font-family: "Roboto", sans-serif;
    color: #282828;
    font-weight: 500;
    padding: 15px 20px;
    cursor: pointer;
}

.table-price .line-table:nth-child(2n) {
    background-color: #f3f3f3;
}

.header-table {
    border-top: 1px solid #eaeaea;
}

.column-4 span {
    color: var(--color_brand);
    cursor: pointer;
}

.column-4 span:hover {
    text-decoration: underline;
}

.table-zakaz {
    background-color: #f3f3f3;
    padding: 30px 50px;
    border-radius: 20px;
    margin-top: 40px;
}

.table-zakaz .left {
    color: var(--color_brand);
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
}

.table-phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.table-phone span {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

.table-phone a {
    font-size: 32px;
    line-height: 40px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    margin-top: 6px;
    color: var(--color_brand);
}

.table-zakaz .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.table-zakaz .right .table-btn {
    margin-left: auto;
}

.table-zakaz .right .table-btn button {
    width: 250px;
    height: 50px;
    border-radius: 100px;
    background-color: var(--color_brand);
    border: 1px solid var(--color_brand);
    color: white;
    font-size: 18px;
    line-height: 21px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
}



.price-all .table-price {
    display: none;
}

.price-all .table-price.active {
    display: block;
}


@media (max-width: 992px) {

    .text-politika {
        font-size: 12px;
    }

    .table-zakaz {
        margin-top: 30px;
        padding: 12px;
    }

    .table-zakaz .left {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 12px;
        text-align: center;
    }

    .table-zakaz .right {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .table-phone a {
        font-size: 22px;
        text-align: center;
    }

    .table-zakaz .right .table-btn {
        margin-right: auto;
    }

    .table-zakaz .right .table-btn button {
        height: 40px;
    }

    .contact-page .card-contact-title {
        margin-top: 0;
        text-align: center;
    }

    .price-main-block {
        margin-bottom: 30px;
    }

    .update-info {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        position: relative;
        top: -10px;
    }

    .header-table {
        display: none;
    }

    .line-table {
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
        padding: 8px 0;
    }

    .body-table {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .column {
        padding: 4px 12px;
        font-size: 14px;
    }

    .body-table .column-1 {
        width: 100%;
        text-align: center;
    }

    .body-table .column-2,
    .body-table .column-3 {
        width: 50%;
        text-align: center;
    }

    .body-table .column-4 {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .body-table .column-4 span {
        display: inline-block;
    }
}

.modals {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 999;
}

.modals.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.bg_modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 35%);
}

.box-modal {
    width: 100%;
    max-width: 400px;
    padding: 28px 14px;
    min-height: 200px;
    background-color: white;
    position: relative;
    z-index: 5;
    border-radius: 8px;
    margin: 0 14px;
}

.head-modal {
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.modal-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.modal-form input[name="phone"] {
    border: 1px solid var(--color_brand);
}

.close {
    background: white;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 0;
    top: -17px;
    width: 20px;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 100%;
    border: 1px solid var(--color_brand);
    color: var(--color_brand);
    padding: 0 0 4px 0px;
}

.close:hover {
    background-color: var(--color_brand);
    color: white;
}

.stopScroll {
    overflow-y: hidden;
}

.box-flex-crumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 8px;
    padding-bottom: 8px;
}

.crumb-line {
    margin-left: 4px;
    margin-right: 4px;
}

.btn-succsess {
    height: 50px;
    border-radius: 100px;
    border: 0px;
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
    background-color: var(--color_brand);
    opacity: 0.85;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    padding-left: 24px;
    padding-right: 24px;
}

.body-modal.succ {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (min-width: 992px) {
    .card-service .name-card a {
        max-height: 44px;
        /*overflow-y: hidden;*/
    }

    .dop-price ul {
        min-height: 144px;
    }
}

@media (max-width: 992px) {
    .col-lg-6.card-contact {
        margin-bottom: 16px;
    }
}

form {
    position: relative;
}

form .message {
    position: absolute;
    bottom: 100%;
    background: white;
    left: 0;
    right: 0;
    margin: 0 auto 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.message.red {
    color: red;
    padding: 4px 12px;
    border-radius: 6px;
    text-align: center;
}

.message.green {
    color: green;
    padding: 4px 12px;
    border-radius: 6px;
    text-align: center;
}

.main_box .right img.defoult {
    max-width: initial;
    -o-object-fit: cover;
    object-fit: cover;
}

.li-clc-btn {
    color: white;
}

.card-model {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    padding: 7px 25px;
    border: 1px solid var(--color_brand);
    min-height: 60px;
}

.row .card-model:nth-child(n + 21) {
    display: none;
}

.card-model a {
    width: 100%;
    text-align: center;
    display: inline-block;
}

.card-model:hover {
    background-color: var(--color_brand);
}

.card-model:hover a {
    color: white;
}

.card-model:hover div {
    color: white;
}

.card-model div {
    width: 100%;
    text-align: center;
    display: inline-block;
    cursor: pointer;
}

.silverColor {
    background-color: #f3f3f3;
}

.cards-models .row {
    gap: 10px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
}

@media (max-width: 992px) {
    .models.model-block {
        padding-left: 12px;
        padding-right: 12px;
    }

    .cards-models .row {
        -ms-grid-columns: (1fr) [3];
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .cards-models .row {
        -ms-grid-columns: (1fr) [2];
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .cards-models .row {
        -ms-grid-columns: (1fr) [1];
        grid-template-columns: repeat(1, 1fr);
    }
}

#all-price-ajax-btn {
    margin: 20px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#all-price-ajax-btn button {
    width: 250px;
    height: 50px;
    border-radius: 100px;
    background-color: var(--color_brand);
    border: 1px solid var(--color_brand);
    color: white;
    font-size: 18px;
    line-height: 21px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    margin: 0 auto;
}

#all-price-ajax-btn button:hover {
    opacity: 0.8;
}

.hide-cards .line-table.body-table:nth-child(n + 10) {
    display: none;
}



.repair-block {
    margin-bottom: 100px;
}

.row-repair {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    font-family: Roboto, sans-serif;
}

.card-repair-count {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    min-height: 120px;
}

.card-repair-count .count {
    width: 300px;
    height: 300px;
    background: var(--color_brand);
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 60px;
    position: absolute;
    top: -90px;
    left: -107px;
    padding-left: 100px;
}

.card-repair-count .text {
    padding-left: 220px;
    padding-right: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    line-height: 24px;
    background: #f3f3f3;
    width: 100%;
}

@media (max-width: 992px) {
    .card-repair-count .count {
        width: 100px;
        height: 100%;
        border-radius: 0;
        font-size: 34px;
        position: absolute;
        top: 0;
        left: 0;
        padding-left: 0;
        bottom: 0;
        margin: auto;
    }

    .card-repair-count .text {
        padding-left: 120px;
        padding-right: 20px;
        padding-top: 14px;
        padding-bottom: 14px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 16px;
        line-height: 20px;
        background: #f3f3f3;
        width: 100%;
    }
}

.fix-button {
    position: fixed;
    bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    right: 30px;
}

.button {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 24px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0 10px;
    cursor: pointer;
}

.blue-button {
    background-color: #1e3e9e;
}

.red-button {
    display: none;
    position: relative;
    background: -o-radial-gradient(circle, #ff5151, #ff8484, #ffdada);
    background: radial-gradient(circle, #ff5151, #ff8484, #ffdada);
}

@media (max-width: 992px) {
    .red-button {
        display: block;
    }
}

.icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.icon svg {
    width: 40px;
    height: 40px;
}



.sale-new_form {
    margin-bottom: 100px;
}

.sale-new_form .row {
    padding-left: 50px;
    padding-right: 50px;
    background-color: #eef1f1;
    border-radius: 20px;
    margin: 0;
}

.sale-img__wrapper {
    height: 370px;
    position: relative;
}

.sale-img__wrapper .bg__img-sale-gerl {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 400px;
    height: 400px;
    border-radius: 100%;
    background: rgb(255, 255, 255);
    background: -webkit-gradient(linear,
            left bottom,
            left top,
            from(rgba(255, 255, 255, 0)),
            to(rgba(255, 255, 255, 1)));
    background: -o-linear-gradient(bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(0deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 1) 100%);
    margin-left: auto;
    margin-right: auto;
}

.sale-img__wrapper img {
    position: relative;
    z-index: 5;
    height: 369px;
}

.sale-container {
    padding: 50px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}

.form-btn-input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.form-btn-input input[type="tel"] {
    width: 280px;
    margin-right: 20px;
}

.form-btn-input input[type="button"],
.form-btn-input input[type="submit"] {
    width: 280px;
}

.sale-title {
    font-size: 2rem;
    font-weight: 500;
    width: 1000px;
}

.sale-title strong {
    color: var(--color_brand);
}

@media (max-width: 992px) {
    .sale-title {
        width: inherit;
    }

    .form-btn-input {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .sale-new_form .row {
        padding-left: 14px;
        padding-right: 14px;
    }

    .form-btn-input input[type="tel"] {
        margin-right: 0px;
    }

    .sale-new_form {
        padding-left: 14px;
        padding-right: 14px;
    }

    .sale-container {
        padding: 20px 0;
    }

    .sale-img__wrapper img {
        -o-object-position: bottom;
        object-position: bottom;
    }

    .sale-new_form {
        margin-bottom: 30px;
    }

    .sale-img__wrapper .bg__img-sale-gerl {
        margin: auto;
    }

    .sale-img__wrapper {
        height: 370px;
        position: relative;
        overflow: hidden;
        right: -14px;
        display: none;
    }
}

.seo-block {
    padding-top: 40px;
    margin-bottom: 20px;
}

.seo-text {
    background-color: #fff;
    color: #333;
    margin-top: 24px;
    max-height: 180px;
    overflow: hidden;
    padding: 30px;
    position: relative;
    -webkit-transition: height 0.2s ease-out 0ms;
    -o-transition: height 0.2s ease-out 0ms;
    transition: height 0.2s ease-out 0ms;
    width: 100%;
    /* box-shadow: 0 5px 10px 0 #0000001a; */
    border: 2px solid #f3f3f3;
    border-radius: 16px;
}

.seo-text p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 24px;
}

.seo-block .seo-text ul,
.seo-block .seo-text ol {
    margin-bottom: 24px;
    padding-left: 20px;
    margin-left: 0;
    margin-right: 0;
}

.seo-block .seo-text ul li {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 12px;
    list-style-type: disc;
}

.seo-block .seo-text ol li {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 12px;
}

.seo-block .seo-text a {
    background-image: -o-linear-gradient(bottom, #fff 40px, hsla(0, 0%, 100%, 0));
    background-image: linear-gradient(0deg, #fff 40px, hsla(0, 0%, 100%, 0));
    bottom: 0;
    height: 150px;
    left: 0;
    padding-top: 110px;
    position: absolute;
    text-align: center;
    text-decoration: none;
    width: 100%;
    z-index: 10;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.seo-block .seo-text.active {
    max-height: 100%;
    padding-bottom: 60px;
}

.seo-block .seo-text.active a {
    padding-top: 0;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.seo-block .seo-text a::before {
    content: "Развернуть ↓";
    border-bottom: 1px dotted;
    font-size: 18px;
    color: #0d61af;
}

.seo-block .seo-text.active a::before {
    content: "Свернуть ↑";
}

.seo-block .seo-text h2,
.seo-block .seo-text h3 {
    margin-bottom: 12px;
    font-weight: 600;
}

.seo-block .seo-text h2 {
    font-size: 22px;
}

.seo-block .seo-text h3 {
    font-size: 20px;
}

@media (max-width: 992px) {
    .seo-block .seo-text h2 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .seo-block .seo-text {
        padding: 14px;
    }

    .seo-block .seo-text p,
    .seo-block .seo-text ul li,
    .seo-block .seo-text ol li {
        font-size: 14px;
        line-height: 20px;
    }

    .seo-block .seo-text a::before {
        font-size: 14px;
    }

    .seo-block .seo-text.active {
        padding-bottom: 50px;
    }
}

.box-prices {

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.box-prices .right {
    padding: 0 0px 0 10px;
}

.price-block {
    background: #f3f3f3;
    padding: 15px;
    margin-bottom: 10px;
}

.price-block button {
    width: 250px;
    height: 50px;
    border-radius: 100px;
    background-color: var(--color_brand);
    border: 1px solid var(--color_brand);
    color: white;
    font-size: 18px;
    line-height: 21px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    margin: 0 auto;
}

.price-block .title {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.price-block .subtitle {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .box-prices .right {
        display: none;
    }
}

#cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    color: #fff;
    padding: 15px 20px;
    /* font-family: Arial, sans-serif; */
    z-index: 9999;
    max-width: 600px;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 40px;
    border-radius: 16px;
    border: 1px solid var(--color_brand);
    box-shadow: 0 10px 10px rgb(0 0 0 /25%);
}

#cookie-consent p {
    margin: 0;
    font-size: 14px;
    color: #000;
}

#cookie-consent a {
    color: var(--color_brand);
}

#accept-cookie {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    min-width: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color_brand);
    transition: all 0.3s;
}

#accept-cookie:hover {
    background-color: var(--color_brand);
    color: white;
}

#cookie-consent h4 a {
    text-decoration: underline;
    color: var(--color_brand);
}

#cookie-consent h4 a:hover {
    text-decoration: none;
}

#cookie-consent.hidden {
    display: none !important;
}

@media (max-width: 768px) {
    #cookie-consent {
        transform: scale(0.9);
        bottom: 100px;
        padding: 10px 17px;
        gap: 10px;
    }

    #cookie-consent h4 {
        font-size: 16px;
    }

    #cookie-consent p {
        font-size: 13px;
    }

    #accept-cookie {
        padding: 6px 16px;
    }
}