/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

html {
    overflow-x: hidden;
}

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

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

h2 {
    font-size: clamp(26px, 4.2vw, 38px);
    font-family: "Roboto", sans-serif;
    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-family: "Roboto", sans-serif;
    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;
}

svg {
    width: 100%;
    height: 100%;
}

input {
    position: relative;
}

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

input:focus {
    outline: none;
}

.mr-20 {
    margin-right: 20px;
}

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

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

* {
    box-sizing: border-box;
}

.my-background,
.my-background:hover {
    background-color: var(--color_brand);
}


.my-background:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

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

/*------ Для блока 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 --------*/

/* MAIN BLOCK  */
.main_box {
    background-color: #f3f3f3;
}

.main_box .left {
    padding-top: 44px;
    padding-bottom: 59px;
    padding-right: 45px;
}

.main_box .right {
    height: 100%;
}

.main_box .right img {
    -o-object-fit: contain;
    object-fit: contain;
    max-width: 500px;
    border-radius: 20px;
}

.utp .icon-utp {
    width: 28px;
    height: 28px;
    margin-right: 14px;
}


.utp_block {
    display: none;
}

@media (max-width: 767px) {
    .main_box .right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: relative;
    }

    .main_box .right img {
        max-width: 250px;
    }
}

@media (min-width: 768px) {
    .utp_pc {
        display: block;
    }
}

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

.main_box h1 {
    margin-bottom: 28px;
}

.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;
}

.main-text {
    color: #666;
    margin-top: 30px;
}

.main-text--home {
    margin-bottom: 58px;
}

.block-main-text {
    display: none;
    color: #666;
    padding: 0 30px;
}

@media (max-width: 767px) {
    .main-text-mobile--none {
        opacity: 0;
        height: 0;
    }
}

@media (min-width: 768px) {
    .main-text-pc {
        display: block;
    }
}

.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;
}

/* --------------------- */

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap");

.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.roboto-light {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
}

:root {
    --theme_color: #f5f5f5;
    --text: #303030;
    --link: #303030;
    --link_hover: #ee6c2d;
    --color_brand: #ee6c2d;
}

.title-section h2 {
    color: var(--text);
    margin-bottom: 45px;
}

.select-categories {
    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;
}

.select-categories div {
    margin-right: 60px;
    margin-bottom: 12px;
    color: #888;
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.line {
    margin-bottom: 53px;
    height: 2px;
    background-color: #eaeaea;
}

.select-categories div.active {
    color: var(--text);
    position: relative;
}

.select-categories div.active::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color_brand);
    bottom: -14px;
}

.card-service {
    padding: 47px 50px 42px 50px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 24px;
}

.color-1 {
    background-color: #77c2fe;
}

.color-3 {
    background-color: var(--color_brand);
}

.color-2 {
    background-color: #77d165;
}

.color-4 {
    background-color: #5595f5;
}

.card-service .left {
    width: 60%;
    position: relative;
    z-index: 25;
}

@media (min-width: 992px) {
    .card-service .left .name-card {
        width: 475px;
    }
}

.card-service .right {
    width: 40%;
    position: relative;
    z-index: 5;
    max-width: 240px;
    max-height: 280px;
}

.card-service::after {
    content: "";
    position: absolute;
    top: -115px;
    right: -150px;
    width: 520px;
    height: 520px;
    border-radius: 100%;
    background: rgb(255, 255, 255);
    background: -o-linear-gradient(239deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 47%,
            rgba(255, 255, 255, 0.4640449929971989) 100%);
    background: linear-gradient(211deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 47%,
            rgba(255, 255, 255, 0.4640449929971989) 100%);
}

.card-service .name-card a {
    display: block;
    color: white;
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.2;
}

.dop-price ul {
    /*margin-bottom: 40px;*/
    padding: 20px 0;
}

.dop-price li {
    margin-bottom: 20px;
}

.dop-price a {
    color: white;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
}

.link-page-service {
    color: white;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
}

.card-service-mini {
    background-color: #f3f3f3;
    height: calc(100% - 24px);
    border-radius: 20px;
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px 45px;
    min-height: 360px;
    margin-bottom: 24px;
}

.card-service-mini .mini-img {
    margin-top: auto;
    height: 200px;
}

.card-service-mini .mini-text {
    font-size: 18px;
    line-height: 19.8px;
    font-weight: 500;
    margin-top: auto;
    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;
    text-align: center;
    margin-top: 14px;
}

.content-cards .row.box {
    display: none;
}

.content-cards .row.box.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/* ------------- */
.advantage {
    margin-top: 50px;
    margin-bottom: 50px;
}

.faqs,
.seo-text {
    margin-top: 100px;
    margin-bottom: 100px;
}

.price-title,
.faq-title,
.advantage-title {
    font-family: Roboto, sans-serif;
    font-size: 34px;
    font-weight: 500;
    line-height: 40.8px;
    text-align: left;
    margin-bottom: 50px;
}

.card-advantage {
    background-color: #f3f3f3;
    padding: 25px 15px;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
}

.card-advantage .icon {
    margin-right: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 40px;
}

.box-text .title {
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
    text-transform: uppercase;
    border-bottom: 2px solid var(--color_brand);
    color: var(--color_brand);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.box-text .txt {
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
    /*max-width: 190px;*/
}

.box-text .signs-title {
    font-family: Roboto, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 27px;
    text-align: left;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color_brand);
    color: var(--color_brand);
    display: flex;
    align-items: center;
}

.box-text .signs-txt {
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: left;
}

.card-faq {
    background-color: #f3f3f3;
    border-radius: 20px;
    height: 100%;
    max-height: 422px;
}

.card-faq.two {
    padding: 40px 70px;
}

.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;
}

.seo-text ul {
    list-style-type: disc;
    margin: 20px;
    padding: 0 10px;
}

.seo-text ul li {
    margin: 8px 0;
    list-style: disc;
}

.card-question {
    margin-bottom: 10px;
    cursor: pointer;
}

.block-silver {
    background-color: #f3f3f3;
    padding: 50px;
    border-radius: 20px;
}


.quest,
.answer {
    font-size: 18px;
    line-height: 21px;
    font-weight: 500;
}

.quest {
    background-color: white;
    padding: 20px 50px 20px 30px;
    margin: 0;
    border-radius: 10px;
    position: relative;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.answer {
    display: none;
    background-color: #6c7ee0;
    color: white;
    padding: 20px 30px;
    margin: 0;
    border-radius: 0 0 10px 10px;
    position: relative;
}

.answer p {
    color: white;
}

.quest .plus {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    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;
}

.quest .plus span:first-child {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #d9d9d9;
    position: absolute;
}

.quest .plus span:last-child {
    display: block;
    height: 100%;
    width: 2px;
    background-color: #d9d9d9;
    position: absolute;
}

.card-question .quest.show {
    border-radius: 10px 10px 0 0;
    background-color: #6c7ee0;
    color: white;
}

.card-question .quest .plus {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.card-question .quest.show .plus {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.card-question .quest.show .plus span:last-child {
    display: none;
}

/* WORK  */
.work {
    margin-top: 100px;
    margin-bottom: 100px;
}

.form-work {
    background-color: #6c7ee0;
    padding: 35px 50px;
    border-radius: 20px;
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.form-work .left {
    position: relative;
}

.form-work .left .last-vopros {
    position: absolute;
    right: 50px;
    bottom: -35px;
}

.form-work .left .title-text-white {
    font-size: 34px;
}

.form-work .left p {
    font-size: 18px;
    max-width: 342px;
}

.form-work .right {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .form-work .right {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.form.form-vopros {
    padding-bottom: 50px;
}

.form-vopros .input {
    width: 276px;
    height: 50px;
}

.form-vopros input:first-child {
    text-align: center;
    font-size: 16px;
    padding: 0 24px;
}

.vopros-text,
.vopros-text a {
    color: rgb(255 255 255 / 100%);
}

.vopros-text a {
    text-decoration: underline;
}

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

.work .top .right {
    background-color: #6c7ee0;
    border-radius: 20px;
    margin-bottom: 10px;
    min-height: 455px;
    height: 100%;
    position: relative;
}

.work .right img {
    position: absolute;
    top: -53px;
    height: 500px;
    max-height: 500px;
}

.work .left {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
    color: white;
}

.work-card {
    background-color: #f3f3f3;
    padding: 24px 50px;
    cursor: pointer;
}

.work-card:first-child {
    border-radius: 20px 20px 0 0;
}

.work-card:last-child {
    border-radius: 0 0 20px 20px;
}

.work-card .head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.work-card .head::after {
    content: "";
}

.work-card .text {
    display: none;
}

.work-card.active .text {
    display: block;
    font-size: 18px;
    line-height: 25px;
    margin-top: 20px;
    font-weight: 400;
    color: var(--text);
}

.work-card.active .title {
    color: #6c7ee0;
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
}

.work-card .count {
    color: #6c7ee0;
    font-size: 30px;
    line-height: 36px;
    font-weight: 500;
    margin-right: 30px;
}

.work-card.active .count {
    border-radius: 100%;
    background: white;
    width: 64px;
    height: 64px;
    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;
    padding: 0;
}

.work-card .title {
    font-size: 20px;
    line-height: 24px;
    color: #282828;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.work-card .plus {
    position: absolute;
    width: 22px;
    height: 22px;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    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;
}

.work-card.active .plus span:last-child {
    display: none;
}

.work-card .plus span:first-child {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #6c7ee0;
}

.work-card .plus span:last-child {
    position: absolute;
    display: block;
    height: 100%;
    width: 2px;
    background-color: #6c7ee0;
}

/*------- Блок отзывы новый------------*/
.reviews {
    --rev-gap: 20px;
    --rev-radius: 22px;
    --rev-card-radius: 16px;
    --rev-pad: clamp(20px, 3.2vw, 40px);
    --rev-per-view: 3;
    --rev-brand: var(--color_brand);

    position: relative;
    box-sizing: border-box;
    padding: var(--rev-pad);
    border-radius: var(--rev-radius);
    color: #fff;
    overflow: hidden;
    background:
        radial-gradient(120% 150% at 14% -10%,
            color-mix(in srgb, var(--rev-brand) 74%, #fff) 0%,
            transparent 52%),
        linear-gradient(135deg,
            var(--rev-brand) 0%,
            color-mix(in srgb, var(--rev-brand) 82%, #000) 100%);
}



/* заголовок + навигация (в одну строку на всех экранах) */
.reviews .row.title-review {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: clamp(20px, 3vw, 30px);
}

.reviews .row.title-review>.title {
    flex: 0 1 auto;
    width: auto;
    max-width: none;
    min-width: 0;
    margin: 0;
}

.reviews .row.title-review>.pagination-review {
    flex: 0 0 auto;
    width: auto;
    margin: 0;
}

.reviews .title h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(23px, 3.3vw, 40px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -.01em;
}

.reviews .pagination-review {
    position: static;
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.reviews__arrow {
    --sz: clamp(40px, 5vw, 48px);
    width: var(--sz);
    height: var(--sz);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--rev-brand);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background .2s, color .2s, opacity .2s, transform .1s;
}

.reviews__arrow svg {
    width: 24px;
    height: 24px;
    display: block;
}

.reviews__arrow:hover {
    background: color-mix(in srgb, #fff 90%, var(--rev-brand));
}

.reviews__arrow:active {
    transform: scale(.94);
}

.reviews__arrow:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.reviews__arrow:disabled,
.reviews__arrow[aria-disabled="true"] {
    background: color-mix(in srgb, #fff 26%, transparent);
    color: color-mix(in srgb, #fff 82%, transparent);
    cursor: default;
    pointer-events: none;
}

/* трек (нативный скролл + snap) */
.reviews__track {
    position: relative;
    z-index: 1;
    display: flex;
    gap: var(--rev-gap);
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 14px;
}

.reviews__track::-webkit-scrollbar {
    display: none;
}

.reviews__track:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
    border-radius: 10px;
}

/* слайд */
.reviews .slider-review {
    flex: 0 0 auto;
    margin: 0;
    height: auto;
    width: calc((100% - (var(--rev-per-view) - 1) * var(--rev-gap)) / var(--rev-per-view));
    scroll-snap-align: start;
}

/* карточка */
.reviews .box-review-slide {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--rev-card-radius);
    padding: clamp(16px, 1.6vw, 22px);
    box-shadow: 0 12px 26px -14px rgba(20, 30, 55, .35);
}

.reviews .review-head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.reviews .review-head .left.avatar {
    flex-shrink: 0;
    line-height: 0;
}

.reviews .review-head .avatar svg {
    display: block;
    width: 40px;
    height: 40px;
}

.reviews .review-head .right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.reviews .lv1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.reviews .fio {
    min-width: 0;
    font-weight: 700;
    font-size: 15px;
    color: #1c2430;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.reviews .stars {
    display: inline-flex;
    gap: 2px;
    flex-shrink: 0;
    line-height: 0;
}

.reviews .stars svg {
    display: block;
    width: 18px;
    height: 17px;
}

.reviews .date {
    font-size: 13px;
    color: #98a1ad;
    line-height: 1.3;
    margin-top: 2px;
}

.reviews .review-body {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.5;
    color: #3d4550;
    word-break: break-word;
}

.reviews .review-footer {
    margin-top: auto;
    padding-top: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #98a1ad;
}

.reviews .review-footer strong {
    color: var(--rev-brand);
    font-weight: 700;
}

/* декоративные круги фона */
.reviews .circle-rev-1,
.reviews .circle-rev-2 {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    pointer-events: none;
}

.reviews .circle-rev-1 {
    width: min(46vw, 520px);
    aspect-ratio: 1;
    top: -18%;
    left: -8%;
    background: radial-gradient(circle, color-mix(in srgb, #fff 22%, transparent), transparent 70%);
}

.reviews .circle-rev-2 {
    width: min(40vw, 420px);
    aspect-ratio: 1;
    right: -10%;
    bottom: -30%;
    background: radial-gradient(circle, color-mix(in srgb, #000 16%, transparent), transparent 70%);
}

/* адаптив */
@media (max-width:1023px) {
    .reviews {
        --rev-per-view: 2;
    }
}

@media (max-width:639px) {
    .reviews {
        --rev-per-view: 1;
        --rev-gap: 14px;
    }

    .reviews .slider-review {
        width: 85%;
    }

    /* пик следующей — подсказка о свайпе */
}

@media (prefers-reduced-motion:reduce) {
    .reviews__track {
        scroll-behavior: auto;
    }

    .reviews__arrow {
        transition: none;
    }
}

/*---------Конец блока для отзывов--------------*/
.icon-footer svg {
    width: 16px;
    height: 16px;
}

.card-contact-title {
    margin-top: 40px;
    margin-bottom: 30px;
}

.single-main-screen {
    margin-bottom: 50px;
}

.single-main-screen .box {
    background-color: #f3f3f3;
    border-radius: 20px;
    position: relative;
    height: auto;
    overflow: hidden;
    margin: 0;
}

.single-main-screen .box .right {
    height: 100%;
}

.single-main-screen .box .right .bg-img {
    width: 32%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.image {
    height: 460px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
}

.image img {
    max-width: 450px;
}

.image-offer {
    display: none;
}

@media (max-width: 767px) {
    .image img {
        max-width: 200px;
        margin: 0 auto;
        max-height: 200px;
    }
}

@media (max-width: 767px) {
    .image-offer {
        display: block;
        position: absolute;
        right: 0;
        border-radius: 10px;
        padding: 0 8px;
        color: #fff;
    }

    .image-offer__one {
        top: 20px;
        background: #f91155;
    }

    .image-offer__two {
        top: 50px;
        background: #10c44c;
    }

    .image-offer__three {
        top: 80px;
        background: #22a4f5;
    }
}

.models {
    position: relative;
}

/* как и было на десктопе */
.models-trigger {
    display: block;
    position: absolute;
    right: 36px;
    margin-top: -5px;
    padding: 8px 16px;
    background-color: #ff4d4d;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.models-trigger:hover {
    background-color: #ff3333;
}

.models-list {
    position: absolute;
    bottom: 6px;
    left: 70%;
    transform: translateX(-50%);
    background-color: white;
    color: #333;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 10;
    padding: 10px 0;
    text-align: center;
}

/* показ на десктопе по hover — как было */
.models-trigger:hover+.models-list,
.models-list:hover {
    opacity: 1;
    visibility: visible;
}

.models-list ul {
    list-style-type: none;
}

.models-list li {
    padding: 8px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.models-list li:last-child {
    border-bottom: none;
}

.models-list li:hover {
    background-color: #f5f5f5;
}

/* МОБИЛЬНЫЕ ПРАВКИ */
@media (max-width: 767px) {
    .models {
        position: static;
    }

    /* делаем триггер якорем для выпадашки */
    .models-trigger {
        right: 0px;
        top: 90px;
        border-radius: 10px;
        padding: 0 8px;
    }

    .models-list {
        /* ставим список ПОД триггер — ровно на 5px ниже */
        top: calc(50% + 5px);
        /* 100% высоты триггера + 5px */
        left: 60%;
        bottom: auto;
        /* снимаем "bottom" */
        transform: none;
        /* без смещения по X */
        width: max-content;
        /* чтобы подстраивался; при желании можно 200px */
        min-width: 200px;
    }

    /* на мобилках hover нет — открываем по focus/active на триггере */
    .models-trigger:focus+.models-list,
    .models-trigger:active+.models-list,
    .models-list:focus-within {
        opacity: 1;
        visibility: visible;
    }
}

.wa .single-h1 {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 42px;
    line-height: 54px;
    color: #282828;
    margin-bottom: 60px;
}

.box-h1 {
    max-height: 120px;
    overflow-y: hidden;
    position: relative;
    margin-bottom: 30px;
}

.shadow-text {
    position: absolute;
    right: 0;
    bottom: 5px;
}

.show-text {
    font-size: 15px;
    border: 1px solid #282828;
    width: 56px;
    height: 32px;
    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: 6px;
    opacity: 0.3;
    cursor: pointer;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.show-text:hover {
    opacity: 1;
}

.single-h1:hover::after {
    opacity: 1;
}

.single-h1::before {
    background: -webkit-gradient(linear,
            left top,
            right top,
            from(hsla(0, 0%, 100%, 0)),
            color-stop(0.01%, hsla(0, 0%, 100%, 0)),
            color-stop(57.29%, #f3f3f3));
    background: -o-linear-gradient(left,
            hsla(0, 0%, 100%, 0),
            hsla(0, 0%, 100%, 0) 0.01%,
            #f3f3f3 57.29%);
    background: linear-gradient(90deg,
            hsla(0, 0%, 100%, 0),
            hsla(0, 0%, 100%, 0) 0.01%,
            #f3f3f3 57.29%);
    content: "";
    height: 65px;
    width: 137px;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
}

@media (min-width: 992px) {
    .box-h1.active {
        /* height: 105px; */
        overflow: inherit;
        height: auto;
        position: inherit;
        max-height: none;
    }

    .box-h1.active .single-h1 {
        /* position: absolute; */
        z-index: 5;
        background: #f3f3f3;
    }

    .box-h1.hide .single-h1::before {
        display: none;
    }

    .shadow-text.hide {
        display: none;
    }

    .box-h1.active .single-h1::before {
        display: none;
    }
}

@media (max-width: 992px) {
    .single-h1::before {
        display: none;
    }

    .shadow-text {
        display: none;
    }

    .box-h1 {
        max-height: inherit !important;
        margin-bottom: 0;
    }

    .form.form-vopros {
        padding-bottom: 20px;
    }
}

.single-main-screen .box .left {
    padding-top: 40px;
    padding-left: 60px;
}

.title-utp {
    color: #282828;
    font-size: 26px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 3px;
}

.text-utp {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 17px;
}

.text-utp--v2 {
    font-size: 16px;
}

.text-price {
    display: inline-block;
    border: 1px solid;
    padding: 10px;
    border-radius: 20px;
    font-size: 20px;
    margin-bottom: 10px;
    background: #fff;
}

.text-price--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.utp .col-lg-6 {
    margin-bottom: 25px;
}

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

.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;
}

.text-page {
    padding-top: 100px;
}

.text-page .description {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
}

.text-page h3 {
    margin-top: 20px;
}

.text-page ul {
    padding-left: 22px;
    margin-bottom: 20px;
}

.text-page ul li {
    list-style-type: disc;
}

.map {
    height: 400px;
    width: 100%;
}

.map iframe {
    width: 100%;
}

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

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

.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%);
}

@media (min-width: 993px) {
    .mobile-btn {
        display: none;
    }
}

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

    .select-categories div.active::before {
        bottom: -2px;
    }

    .select-categories div {
        margin-right: 10px;
        margin-bottom: 12px;
        font-size: 18px;
        line-height: 24px;
    }

    .card-service {
        padding: 14px;
    }

    .card-service .name-card a {
        font-size: 18px;
        margin-bottom: 10px;
        text-align: center;
    }

    .dop-price ul {
        margin-bottom: 20px;
    }

    .dop-price li {
        margin-bottom: 4px;
        text-align: center;
    }

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

    .work .top .right {
        display: none;
    }

    .form-work {
        padding: 14px;
    }

    .work .left {
        position: relative;
        z-index: 5;
    }

    .form-work .left .last-vopros {
        z-index: -1;
        opacity: 0.4;
    }

    .form-work .right {
        position: relative;
        z-index: 5;
    }

    .form-vopros .input {
        width: 100%;
        max-width: 400px;
        height: 40px;
    }

    .main_box h1 {
        text-align: center;
    }

    .title-utp {
        font-size: 18px;
        line-height: 22px;
    }

    .text-utp {
        font-size: 12px;
        line-height: 14px;
    }

    .main-text {
        margin-top: 10px;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .utp .col-lg-6 {
        margin-bottom: 14px;
    }

    .main-form {
        padding: 0 30px 30px;
    }

    .work-card {
        padding: 14px;
    }

    .categories {
        margin-top: 30px;
    }

    .title-section h2 {
        margin-bottom: 20px;
    }

    .line {
        margin-bottom: 20px;
    }

    .card-service {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 14px;
    }

    .card-service .left {
        width: 100%;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .card-service .right {
        width: 100%;
        height: 140px;
        margin: 0 auto 0;
        padding: 0 20px 20px;
    }

    .card-service-mini {
        min-height: 220px;
        padding: 14px;
        margin-bottom: 14px;
    }

    .dop-price a {
        display: inline-block;
        margin: auto;
        width: 100%;
        text-align: center;
    }

    .card-service-mini .mini-text {
        font-size: 14px;
        line-height: 1.2;
    }

    .card-service-mini .mini-img {
        padding-bottom: 20px;
    }

    .work {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .title-section h2 {
        font-size: 24px;
    }

    .price-title,
    .faq-title,
    .advantage-title {
        font-size: 24px;
    }

    .work-card.active .title {
        font-size: 18px;
    }

    .work-card .count {
        font-size: 16px;
        margin-right: 14px;
    }

    .work-card.active .count {
        width: 32px;
        height: 32px;
    }

    .work-card.active .text {
        font-size: 14px;
        line-height: 1.4;
        margin-top: 14px;
    }

    .work-card .title {
        font-size: 18px;
    }

    .header .bottom-header,
    .header .top-menu {
        display: none !important;
    }

    .top-header {
        width: 80%;
    }

    .mobile-btn {
        width: 20%;
        padding-right: 12px;
        position: relative;
    }

    /* .mobile-btn-fixed {
        width: 60;
    } */

    .header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        z-index: 100;
    }

    .top-header .address,
    .top-header .city-select {
        display: none !important;
    }

    .top-header .row div {
        margin: 0 auto 0 0;
    }

    .mobile-btn span {
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }

    .mobile-btn.active span:nth-child(2) {
        display: none;
        width: 0;
    }

    .mobile-btn.active span:nth-child(1) {
        position: absolute;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .mobile-btn.active span:nth-child(3) {
        position: absolute;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .form-vopros .input {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .mobile-none {
        /*display: none;*/
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .mob-ord-1 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
}

.menu-mobile .bottom-header,
.menu-mobile .top-menu {
    display: block !important;
}

.menu-mobile .top-menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.menu-mobile .top-menu ul li a {
    padding: 4px 12px;
}

.menu-mobile .top-menu {
    margin-bottom: 12px;
}

.menu-mobile .bottom-header ul.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 12px;
}

.menu-mobile .city-select {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 12px;
}

.menu-mobile .address {
    padding-left: 12px;
    padding-right: 12px;
}

.menu-mobile {
    position: absolute;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    top: 100%;
    -webkit-transform: translateX(-150%);
    -ms-transform: translateX(-150%);
    transform: translateX(-150%);
    z-index: -1;
}

.mobile-btn button {
    width: 100%;
    height: 100%;
    border: 0;
    background: white;
    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: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 0;
}

.mobile-btn button span {
    display: block;
    width: 40px;
    height: 2px;
    background-color: black;
}

.mobile-btn button span:nth-child(2) {
    margin: 5px 0;
}

.menu-mobile.active .bottom-header .row {
    border-top: 0;
}

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

@media (max-width: 992px) {
    .menu-mobile.active {
        display: block;
        z-index: 1;
        top: 100%;
        width: 100%;
        background: white;
        padding: 0 0 20px 0;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .block-silver {
        padding: 12px;
    }

    .advantage,
    .faqs {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .quest {
        padding: 12px;
        font-size: 14px;
        line-height: 1.2;
        border-radius: 4px;
    }

    .question {
        padding-left: 12px;
        padding-right: 12px;
    }

    .price-title,
    .faq-title,
    .advantage-title {
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .card-faq.two {
        padding: 12px;
    }

    .card-service-mini .mini-img {
        height: 140px;
    }

    .card-advantage {
        height: inherit;
        margin-bottom: 12px;
    }

    .box-text .title {
        margin-bottom: 10px;
    }

    .answer {
        font-size: 14px;
        line-height: 18px;
        padding: 14px;
    }

    .card-contact-title {
        margin-top: 30px;
    }

    .footer-menu li a,
    .footer-menu li span {
        font-size: 14px;
    }

    .footer-title {
        margin-top: 30px;
    }

    .lv-2 .left {
        text-align: center;
    }

    .lv-2 .right a {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .form.form-last button {
        height: 40px;
    }

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

    .single-main-screen {
        padding-left: 12px;
        padding-right: 12px;
    }

    .single-main-screen .box .left {
        padding: 12px;
    }

    .single-h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 20px;
        text-align: center;
    }

    .image {
        position: relative;
        height: 100%;
    }

    .single-main-screen .box .right {
        height: 200px;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .single-main-screen .box .right .bg-img {
        display: none;
    }

    .single-main-screen .box {
        height: auto;
        padding-bottom: 14px;
    }

    .single-main-screen {
        margin-bottom: 30px;
    }

    .title-utp {
        font-size: 16px;
    }

    .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;
    }

    .box-none-mobile .right .img {
        display: none;
    }

    .box-none-mobile .right {
        padding-top: 0;
    }

    .text-page {
        padding-top: 30px;
    }

    .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;
}

.select-city {
    cursor: pointer;
}

.modal-city ul li {
    text-align: center;
    font-size: 16px;
}

.select-footer {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px 0;
    border-top: 1px solid #bebebe;
    border-bottom: 1px solid #bebebe;
}

.right-style {
    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;
}

.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;
    }
}

.text-no-price {
    width: 100%;
    display: block;
    text-align: center;
    padding: 40px 0;
    font-size: 32px;
    font-weight: 500;
    background: var(--bs-border-color);
}

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

svg path[fill="#FB6A29"] {
    fill: var(--color_brand);
}

svg path[fill="url(#paint0_linear_131_3004)"] {
    fill: var(--color_brand);
}

svg path[fill="url(#paint0_linear_131_3008)"] {
    fill: var(--color_brand);
}

svg path[fill="url(#paint0_linear_131_1066)"] {
    fill: var(--color_brand);
}

svg path[fill="url(#paint1_linear_131_1066)"] {
    fill: var(--color_brand);
}

svg path[fill="url(#paint2_linear_131_1066)"] {
    fill: var(--color_brand);
}

svg path[fill="url(#paint0_linear_131_1076)"] {
    fill: var(--color_brand);
}

svg path[fill="url(#paint0_linear_131_1060)"] {
    fill: var(--color_brand);
}

svg path[fill="url(#paint0_linear_131_1055)"] {
    fill: var(--color_brand);
}

svg path[fill="url(#paint0_linear_131_3002)"] {
    fill: var(--color_brand);
}

svg path[fill="url(#paint0_linear_131_3000)"] {
    fill: var(--color_brand);
}

svg path[fill="url(#paint0_linear_1_1418)"] {
    fill: var(--color_brand);
}

svg path[fill="url(#paint1_linear_1_1418)"] {
    fill: var(--color_brand);
}

svg path[fill="url(#paint2_linear_1_1418)"] {
    fill: var(--color_brand);
}

svg path[fill="url(#paint3_linear_1_1418)"] {
    fill: var(--color_brand);
}

svg path[fill="url(#paint4_linear_1_1418)"] {
    fill: var(--color_brand);
}

svg path[fill="url(#paint5_linear_1_1418)"] {
    fill: var(--color_brand);
}

svg path[fill="url(#paint6_linear_1_1418)"] {
    fill: var(--color_brand);
}

svg path[fill="url(#paint7_linear_1_1418)"] {
    fill: var(--color_brand);
}

svg path[fill="url(#paint8_linear_1_1418)"] {
    fill: var(--color_brand);
}

svg path[fill="url(#paint9_linear_1_1418)"] {
    fill: var(--color_brand);
}

svg path[fill="url(#paint10_linear_1_1418)"] {
    fill: var(--color_brand);
}

svg path[fill="url(#paint11_linear_1_1418)"] {
    fill: var(--color_brand);
}

svg path[stroke="#FB6A29"],
svg circle[stroke="#FB6A29"] {
    stroke: var(--color_brand);
}

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-box {
    display: none !important;
}

.page-repair-model {
    margin-bottom: 100px;
}

@media (max-width: 992px) {
    .page-repair-model {
        margin-bottom: 40px;
    }
}

.section-info-reapirs {
    margin-bottom: 0;
}

.card-info-repair {
    margin-bottom: 24px;
    background-color: #f4f6f8;
    padding: 20px;
    min-height: auto;
    overflow: hidden;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
    border-radius: 15px;
    width: 100%;
}

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

.card-info-repair:hover .name,
.card-info-repair:hover .price,
.card-info-repair:hover .text {
    color: white;
}

.card-info-repair a {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card-info-repair .name {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    min-height: 40px;
}

.card-info-repair .text {
    font-size: 14px;
    line-height: 20px;
    height: 88px;
}

.card-info-repair .text ul {
    list-style-type: disc;
    padding-left: 20px;
}

.card-info-repair .text ul li {
    list-style: inherit;
}

.card-info-repair .text .symptom {
    margin-bottom: 5px;
}

.card-info-repair .text .symptom::before {
    content: "Симптом: ";
    font-weight: bold;
}

.card-info-repair .text .service::before {
    content: "Услуга: ";
    font-weight: bold;
}

.card-info-repair .price {
    margin-top: auto;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 14px;
    cursor: pointer;
}

.card-info-repair .price span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 26px;
    /*width: 40%;*/
    white-space: pre;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.card-info-repair .price span.time:hover {
    text-decoration: underline;
}

.card-info-repair .price span.time::before {
    content: "Вызвать мастера";
}

.card-info-repair .price svg {
    width: 28px;
}

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

.card-info-repair:hover span.curs svg path {
    stroke: white;
}

.card-info-repair:hover span.time svg path {
    stroke: white;
    fill: white;
}

.problem-modal {
    position: absolute;
    z-index: 5;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.section-slide-devices {
    margin-top: 100px;
    margin-bottom: 100px;
}

.swiper-devices {
    padding: 0 0 40px 0;
}

.img-device-slide {
    height: 160px;
}

.img-device-slide img {
    max-height: 150px;
}

.slide-device {
    position: relative;
    border: 1px solid var(--color_brand);
    cursor: pointer;
    /* height: 260px; */
    border-radius: 8px;
}

.slide-device a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    padding: 14px;
}

.title-device-slide {
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: var(--color_brand);
    margin-top: 14px;
    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;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--color_brand);
}

.slide-device:hover {
    background-color: var(--color_brand);
}

.slide-device:hover .title-device-slide {
    color: white;
}

.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;
}

/* Пульсация */
.button.red-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(255, 81, 81, 0.5);
    border-radius: 50%;
    z-index: -1;
    -webkit-animation: pulse 1.5s infinite;
    animation: pulse 1.5s infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        -webkit-transform: translate(-50%, -50%) scale(1.5);
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.4;
    }

    100% {
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        -webkit-transform: translate(-50%, -50%) scale(1.5);
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.4;
    }

    100% {
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.button.blue-button svg circle {
    fill: red;
    -webkit-animation: color-change 2s infinite alternate;
    animation: color-change 2s infinite alternate;
}

@-webkit-keyframes color-change {
    0% {
        fill: red;
    }

    50% {
        fill: white;
    }

    100% {
        fill: red;
    }
}

@keyframes color-change {
    0% {
        fill: red;
    }

    50% {
        fill: white;
    }

    100% {
        fill: red;
    }
}

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

    .button {
        width: 50px;
        height: 50px;
    }

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

    .fix-button {
        bottom: 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;
    }
}

.end-text-svgs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 60px;
    gap: 10px;
}

.end-text-svgs svg {
    border: 1px solid #e3e3d3;
    border-radius: 7px;
    overflow: hidden;
    background: white;
}

.end-text-svgs svg path {
    stroke: white;
}

.end-text span {
    display: block;
    margin-top: 30px;
    margin-bottom: 6px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: #888;
}

.box-flex-crumb {
    overflow-x: auto;
}

.box-flex-crumb span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: pre;
}

.main-text p strong span {
    color: var(--color_brand);
}

.main_box.static-page .left {
    margin: auto;
}

.main_box.static-page .right .img {
    margin-bottom: 20px;
}

.features {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 70px;
}

.feature-card {
    background: #fff;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(33.333% - 40px);
    flex: 1 1 calc(33.333% - 40px);
    max-width: calc(33.333% - 40px);
}

.feature-card h3 {
    color: var(--color_brand);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
}

@media (max-width: 1024px) {
    .feature-card {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(50% - 20px);
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }

    .features {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .feature-card {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.feature-card svg path {
    fill: var(--color_brand);
}

.feature-card .icon {
    margin-bottom: 10px;
}

.repair-guarantee {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.content-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* Секция с изображением */
.image-section {
    width: 100%;
}

.image-section img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

/* Текстовая секция */
.text-section h2 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 15px;
}

.text-section h2 span {
    color: var(--color_brand);
    /* Синий цвет для ключевого слова */
}

.text-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

/* Адаптивность для планшетов */
@media (max-width: 1024px) {
    .content-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }

    .image-section img {
        max-width: 300px;
    }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .text-section h2 {
        font-size: 1.5rem;
    }

    .text-section p {
        font-size: 0.9rem;
    }
}

.steps {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.steps-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* Карточки шагов */
.step-card {
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(25% - 40px);
    flex: 1 1 calc(25% - 40px);
    /* 4 карточки на ряд */
    max-width: calc(25% - 40px);
    text-align: center;
}

.step-number {
    background: var(--color_brand);
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    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;
    margin: 0 auto 10px;
}

.step-card h3 {
    margin: 10px 0;
    color: #000;
    font-size: 1.1rem;
}

.step-card p {
    color: #666;
    font-size: 0.95rem;
}

/* CTA Блок */
.cta-card {
    background: var(--color_brand);
    color: #fff;
    border-radius: 10px;
    padding: 30px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(25% - 40px);
    flex: 1 1 calc(25% - 40px);
    /* 4 карточки на ряд */
    max-width: calc(25% - 40px);
    text-align: center;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.cta-button {
    background: #fff;
    color: var(--color_brand);
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    -webkit-transition: background 0.3s, color 0.3s;
    -o-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
}

.cta-button:hover {
    background: var(--color_brand);
    color: #fff;
    border: 1px solid white;
}

/* Адаптив для планшетов */
@media (max-width: 1024px) {

    .step-card,
    .cta-card {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(50% - 20px);
        flex: 1 1 calc(50% - 20px);
        /* Две карточки на ряд */
        max-width: calc(50% - 20px);
    }
}

/* Адаптив для мобильных устройств */
@media (max-width: 768px) {

    .step-card,
    .cta-card {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        /* Одна карточка на ряд */
        max-width: 100%;
    }

    h2 {
        font-size: 1.5rem;
    }
}

.features.page-about .feature-card h3 {
    text-align: left;
}

.features.page-about .feature-card p {
    text-align: left;
}

.plus-card {
    margin-bottom: 30px;
}

.card-text {
    padding: 12px;
    margin-bottom: 14px;
}

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

.card-text .count {
    width: 30px;
    height: 30px;
    font-size: 20px;
    font-weight: 700;
    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;
    color: white;
    background-color: var(--color_brand);
    padding: 20px;
    margin-right: 14px;
    border-radius: 6px;
}

.card-text .text {
    font-size: 16px;
}

.text-delivery {
    display: block;
    font-size: 18px;
    line-height: 25px;
    margin-top: 20px;
    font-weight: 400;
}

.text-delivery ul {
    margin: 20px 0 0;
    padding-left: 20px;
}

.text-delivery ul li {
    list-style: disc;
}

.text-delivery ul li ul {
    position: relative;
    top: -20px;
    padding-left: 20px;
    margin-bottom: 0;
}

.text-delivery ul li ul li {
    list-style: circle;
}

.btn-delivery {
    margin-top: 40px;
}

.btn-delivery a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 50px;
    border-radius: 100px;
    border: 0px;
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
    background-color: var(--color_brand);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    padding: 0 24px;
}

.btn-delivery button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 50px;
    border-radius: 100px;
    border: 0px;
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--color_brand);
    background-color: white;
    border: 1px solid var(--color_brand);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    padding: 0 24px;
}

.btn-delivery a {
    margin-right: 20px;
}

.btn-delivery a:hover {
    background-color: white;
    border: 1px solid var(--color_brand);
    color: var(--color_brand);
}

.btn-delivery button:hover {
    background-color: var(--color_brand);
    border: 1px solid var(--color_brand);
    color: white;
}

.super-garant p {
    display: block;
    font-size: 18px;
    line-height: 25px;
    margin-top: 20px;
    font-weight: 400;
}

.super-garant .left {
    padding-top: 40px;
}

.super-garant .right {
    padding-left: 40px;
}

.super-garant .right img {
    border-radius: 20px;
}

@media (max-width: 992px) {
    .super-garant .right {
        padding-left: 12px;
    }

    .super-garant .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

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

    .btn-delivery a {
        margin-right: 0;
    }
}

.dop-advantage {
    margin-bottom: 100px;
}

.card-advan-page {
    padding: 5px;
}

.card-advan-page .box {
    background-color: #f3f3f3;
    padding: 20px;
}

.card-advan-page .box .name {
    display: block;
    font-size: 22px;
    line-height: 25px;
    margin-top: 20px;
    font-weight: 700;
}

.card-advan-page .box .text {
    display: block;
    font-size: 18px;
    line-height: 25px;
    margin-top: 20px;
    font-weight: 400;
}

.card-advan-page .box .icon {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.card-advan-page .box .icon svg {
    width: 100px;
    height: 100px;
}

@media (max-width: 992px) {
    .card-advan-page .box .icon svg {
        width: 50px;
        height: 50px;
    }
}

.card-advan-page:nth-child(1) .box .icon svg path {
    fill: var(--color_brand);
}

.card-advan-page:nth-child(2) .box .icon svg path {
    fill: var(--color_brand);
}

.card-advan-page:nth-child(3) .box .icon svg path {
    stroke: var(--color_brand);
}

.card-advan-page:nth-child(4) .box .icon svg path {
    fill: var(--color_brand);
}

.card-info-repair-box:nth-child(n + 5) {
    display: none;
}

.active-card .card-info-repair-box:nth-child(n + 5) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.box-btn-repair-hide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.box-btn-repair-hide button {
    border: none;
    background: white;
    color: var(--color_brand);
    text-decoration: underline;
}

.box-btn-repair-hide button:hover {
    text-decoration: none;
}

.error-title span {
    color: var(--color_brand);
}

.box-error {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.box-error-flex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Карточка */
.card-error {
    position: relative;
    background-color: #eef1f1;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    padding: 4px;
    cursor: pointer;
    line-height: 1.25;
    transition: box-shadow .15s ease, transform .15s ease;
    max-width: 100%;
    outline: none;
}

.card-error:focus-visible {
    box-shadow: 0 0 0 3px rgba(0, 120, 255, .35);
}

/* Всплывающий блок с текстом */
.card-error .info {
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    min-width: 260px;
    max-width: min(520px, 80vw);
    background: #fff;
    color: #222;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.4;
    z-index: 1000;
    display: none;
    /* по умолчанию спрятано */
}

/* Маленький треугольник-подсказка */
.card-error .info::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 14px;
    border: 8px solid transparent;
    border-bottom-color: #fff;
}

/* Гарантируем, что всплывашка окажется поверх соседей */
@media (hover: hover) and (pointer: fine) {
    .card-error {
        overflow: visible;
        /* на всякий случай, вдруг где-то переопределено */
    }

    .card-error:hover,
    .card-error:focus-within {
        z-index: 999;
        /* поднимаем всю карточку выше соседей */
        position: relative;
        /* фиксируем контекст позиционирования */
    }

    .card-error:hover .info,
    .card-error:focus-within .info {
        display: block;
        /* уже есть у вас, оставляю для наглядности */
    }
}


/* ===== Десктоп (есть hover, pointer: fine) — показываем по ховеру/фокусу ===== */
@media (hover: hover) and (pointer: fine) {

    .card-error:hover .info,
    .card-error:focus-within .info {
        display: block;
    }
}

/* ===== Сенсорные устройства (нет hover) — показываем по .is-open ===== */
@media (hover: none) and (pointer: coarse) {
    .card-error .info {
        /* На мобилках лучше раскрывать в потоке под карточкой */
        position: static;
        display: none;
        /*margin-top: 8px;*/
        max-width: 100%;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, .08);
    }

    .card-error .info::before {
        display: none;
    }

    .card-error.is-open .info {
        display: block;
    }
}

/* Небольшой “эффект кнопки” */
@media (hover: hover) and (pointer: fine) {
    .card-error:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
    }
}


.box-error.noShow .card-error:nth-child(n + 7) {
    display: none;
}

.box-error-flex.noShow .card-error:nth-child(n + 12) {
    display: none;
}

@media (max-width: 767px) {
    .box-error-flex {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .box-error-flex.noShow .card-error:nth-child(n + 11) {
        display: none;
    }
}

.card-error .name {
    background-color: white;
    padding: 4px;
    border-radius: 4px;
    width: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    line-height: 20px;
    font-family: "Roboto", sans-serif;
    color: #282828;
    font-weight: 500;
}

.card-error .text {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    line-height: 20px;
    font-family: "Roboto", sans-serif;
    color: #282828;
    font-weight: 500;
}

.box-btn-error {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
}

.btn-error {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 20px;
    padding-right: 20px;
    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;
}

.btn-error:hover {
    opacity: 0.75;
}

/* Подтипы */
.cat_type {
    padding-top: 80px;
}

.cat_type-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 32px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-evenly;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.cat_type-inner .cat_type-item {
    max-width: 33%;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 27%;
    flex: 1 0 27%;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 10px;
    position: relative;
    min-width: 165px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0 4px 6px 0 #6060600d;
    box-shadow: 0 4px 6px 0 #6060600d;
    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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cat_type-inner .cat_type-item .item-img-box {
    max-width: 350px;
    max-height: 270px;
}

.cat_type-inner .cat_type-item .item-img-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.cat_type-inner .cat_type-item .cat-item-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--Orange);
    text-align: center;
}

/* slider-podcat */

.cat_type-inner.mySwiperType {
    display: block;
}

.cat_type-inner.mySwiperType .cat_type-item {
    max-width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    padding: 15px 20px;
}

.cat_type-inner.mySwiperType .cat_type-item .item-img-box {
    max-height: 270px;
}

.cat_type-inner.mySwiperType .cat_type-item .item-img-box img {
    width: 100%;
    height: 100%;
    max-height: 270px;
    -o-object-fit: contain;
    object-fit: contain;
}

/* slider-podcat */

/* Подтипы */

@media (max-width: 920px) {
    .cat_type-inner.mySwiperType .swiper-slide {
        height: 206px;
    }

    .cat_type-inner.mySwiperType .cat_type-item {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        height: 100%;
    }

    .cat_type-inner .cat_type-item .cat-item-text {
        font-size: 18px;
    }

    .malfuctions_inner {
        gap: 12px;
    }

    .malfuctions_inner .card-info-repair-box {
        min-height: 176px;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 47%;
        flex: 1 0 47%;
        max-width: 350px;
        padding: 10px;
    }

    .error_inner .error-item .error-text {
        font-size: 14px;
    }

    .cat_type-inner .cat_type-item {
        max-width: 46%;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 43%;
        flex: 1 0 43%;
        padding: 10px 15px;
        gap: 15px;
    }

    .cat_type-inner .cat_type-item .item-img-box {
        max-height: 175px;
    }

    .malfuctions_inner .card-info-repair-box .price {
        font-size: 12px;
    }

    .malfuctions_inner .card-info-repair-box svg {
        max-width: 20px;
    }

    .malfuctions_inner .card-info-repair-box .time,
    .malfuctions_inner .card-info-repair-box .curs {
        gap: 5px;
    }
}

.problems {
    padding-top: 80px;
}

.problem-title {
    background-color: rgba(108, 126, 224, 1);
    color: white;
    font-size: 34px;
    font-weight: 500;
    line-height: 40.8px;
    text-align: left;
    text-underline-position: from-font;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    padding: 30px 50px;
    border-radius: 42px 42px 0 0;
    margin-bottom: 0;
}

.box-container {
    background-color: rgba(243, 243, 243, 1);
    padding: 30px 50px;
    border-radius: 0 0 14px 14px;
}

.title-card-problem {
    color: rgba(108, 126, 224, 1);
    font-size: 16px;
    font-weight: 600;
    line-height: 22.4px;
    text-align: left;
    text-underline-position: from-font;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    text-transform: uppercase;
    margin-bottom: 19px;
}

.card-problem ul {
    gap: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-problem li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.card-problem li .text {
    width: calc(100% - 27px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    font-weight: 500;
    line-height: 25.2px;
    text-align: left;
    text-underline-position: from-font;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    color: rgba(40, 40, 40, 1);
}

.icon-svg {
    display: block;
    width: 15px;
    height: 15px;
    margin-right: 12px;
}

.icon-svg svg {
    width: 100%;
    height: 100%;
}

.problems .swiper-pagination {
    position: relative;
    bottom: -13px;
}

.fix-button {
    z-index: 100;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.btn-tg {
    margin-bottom: 10px;
}

.icon-tg svg {
    width: 60px;
    height: 60px;
}

@media (max-width: 992px) {
    .box-container {
        padding: 20px 14px;
    }

    .problem-title {
        font-size: 24px;
        line-height: 1.3;
        padding: 20px 14px;
        border-radius: 24px 24px 0 0;
    }

    .btn-tg {
        margin-bottom: 20px;
    }

    .icon-tg svg {
        width: 50px;
        height: 50px;
    }
}

form .success {
    position: relative;
}

form .success::before {
    content: "!";
    display: block;
    position: absolute;
    left: 14px;
    background-color: green;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

.news-message {
    background: rgb(255 0 0);
    color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 21px;
    font-weight: 700;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px 0;
}

.news-message::before {
    content: "Извините, не принимаем заявки с Вашего города в данный момент";
}

.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;
    }
}

.main_new_style {
    max-width: inherit;
    min-width: 606px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.container_box {
    padding: 32px 0 32px 32px;
}

.form_bg {
    background-color: var(--color_brand);
    width: 100%;
    height: 100%;
    position: absolute;
}

.main_new_style .show_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.main_new_style .show_box [name="phone"] {
    width: 300px;
    text-align: left;
    padding-left: 32px;
}

.main_new_style .show_box [type="submit"] {
    width: 295px;
    position: relative;
    left: -40px;
    opacity: 1;
    border-color: white;
    border: 1px solid white;
}

.circle-1 {
    width: 614px;
    height: 614px;
    border-radius: 100%;
    position: absolute;
    background: -o-radial-gradient(circle,
            rgba(255, 242, 123, 0%) 0%,
            rgba(255, 232, 163, 20%) 100%);
    background: radial-gradient(circle,
            rgba(255, 242, 123, 0%) 0%,
            rgba(255, 232, 163, 20%) 100%);
    right: -64%;
    top: -153%;
}

.circle-2 {
    width: 400px;
    height: 400px;
    border-radius: 100%;
    position: absolute;
    background: -o-radial-gradient(circle,
            rgba(255, 242, 123, 0%) 0%,
            rgba(255, 232, 163, 20%) 100%);
    background: radial-gradient(circle,
            rgba(255, 242, 123, 0%) 0%,
            rgba(255, 232, 163, 20%) 100%);
    left: -21%;
    top: -92%;
}

.circle-3 {
    width: 200px;
    height: 200px;
    border-radius: 100%;
    position: absolute;
    background: -o-radial-gradient(circle,
            rgba(255, 242, 123, 0%) 0%,
            rgba(255, 232, 163, 20%) 100%);
    background: radial-gradient(circle,
            rgba(255, 242, 123, 0%) 0%,
            rgba(255, 232, 163, 20%) 100%);
    left: 54%;
    top: -20%;
}

.circle-4 {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    position: absolute;
    background: -o-radial-gradient(circle,
            rgba(255, 242, 123, 0%) 0%,
            rgba(255, 232, 163, 20%) 100%);
    background: radial-gradient(circle,
            rgba(255, 242, 123, 0%) 0%,
            rgba(255, 232, 163, 20%) 100%);
    left: 24%;
    top: 19%;
}

.container_box p {
    color: white;
    position: relative;
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 22px;
}

.container_box .politika .text-politika {
    color: white;
    position: relative;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    padding-left: 20px;
}

@media (max-width: 992px) {
    .main_new_style .show_box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .main_new_style .show_box [name="phone"] {
        width: 100%;
        text-align: center;
        padding-left: 0;
    }

    .main_new_style .show_box [type="submit"] {
        width: 100%;
        left: 0;
    }

    .main_new_style {
        padding: 0;
        min-width: inherit;
    }

    .container_box {
        padding: 20px;
    }

    .container_box .politika .text-politika {
        padding-left: 0;
    }

    .container_box p {
        margin-bottom: 12px;
    }

    .container_box p br {
        display: none;
    }
}

/* Анимация призыв к действию */
.btn-success {
    animation: call-to-action 2s infinite ease-in-out;
}

@keyframes call-to-action {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

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

.card-sign {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    font-family: Roboto, sans-serif;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .card-sign {
        grid-template-columns: 1fr;
        /* Одна колонка на мобильных */
    }
}

.card-sign-box {
    padding: 20px;
    border-radius: 12px;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
        var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    counter-increment: sign-counter;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.card-sign-box:hover {
    transform: translateY(-5px);
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1),
        0 8px 10px -6px rgb(0 0 0 / 0.1);
    z-index: 10;
}

.card-sign-box-block {
    display: flex;
    margin-bottom: 16px;
}

.card-sign-box-block-number {
    position: relative;
    font-weight: 600;
    visibility: hidden;
}

.card-sign-box-block-number::before {
    content: counter(sign-counter);
    visibility: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 18px;
    background-color: var(--color_brand);
    border-radius: 50%;
    color: #fff;
}

.card-sign-box-block-title {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    margin-left: 20px;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}

.card-sign-txt {
    font-size: 15px;
    margin-left: 60px;
}

@media (min-width: 769px) {
    .card-sign-box:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }
}

.prem-advantages {
    margin: 40px 0;
}

.prem-advantages h2 {
    text-align: center;
}

.prem-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease;
    box-sizing: border-box;
}

.prem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

/* Для мобильных: 1 карточка в строке */
@media (max-width: 767px) {
    .prem-grid {
        justify-content: center;
    }

    .prem-card {
        width: 100%;
        max-width: none;
        box-sizing: border-box;
    }
}

/* Планшеты */
@media (min-width: 768px) and (max-width: 991px) {
    .prem-card {
        width: calc(50% - 10px);
        box-sizing: border-box;
    }
}

/* Настольные ПК до 1198px */
@media (min-width: 992px) and (max-width: 1198px) {
    .prem-card {
        width: calc(50% - 10px);
        box-sizing: border-box;
    }
}

/* Большие экраны */
@media (min-width: 1199px) {
    .prem-card {
        width: calc(33.333% - 14px);
        box-sizing: border-box;
    }
}

.prem-card:hover {
    transform: translateY(-4px);
}

.prem-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.prem-card::before {
    background: var(--color_brand);
}

.prem-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 24px;
}

.prem-card .prem-icon {
    --light-brand: color-mix(in srgb, var(--color_brand), white 80%);
    background: var(--light-brand);
    color: var(--color_brand);
}

.prem-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #1e293b;
}

.prem-desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.5;
}



.stages-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    position: relative;
}

.stages-container h2 {
    text-align: center;
}

/* Вертикальная линия */
.stages-container::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 92px;
    bottom: 50px;
    width: 2px;
    background-color: #9E9E9E;
    z-index: 1;
}

.stage-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    padding-left: 60px;
}

.stage-number {
    position: absolute;
    left: -15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color_brand);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    z-index: 2;
}

.stage-content {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.stage-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stage-title i {
    color: var(--color_brand);
    font-size: 20px;
    /* Делаем иконку "тоньше" — используем regular стиль вместо solid */
}

/* Для всех иконок в заголовке — делаем их regular (тоньше) */
.stage-title i.fas {
    font-weight: normal !important;
}

.stage-description {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 10px;
}

.stage-time {
    font-size: 14px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .stages-container {
        padding: 10px;
        margin: 20px 10px;
    }

    .stage-item {
        padding-left: 50px;
    }

    .stage-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
        left: 0;
    }

    .stage-content {
        padding: 15px;
    }

    .stage-title {
        font-size: 16px;
    }

    .stage-description {
        font-size: 13px;
    }

    .stage-time {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .stages-container {
        margin: 15px 5px;
    }

    .stage-item {
        padding-left: 40px;
    }

    .stage-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
        left: 3px;
    }

    .stage-content {
        padding: 12px;
    }

    .stage-description {
        font-size: 14px;
    }
}

.discont-utp {
    margin-bottom: 30px;
}

.old_price {
    display: flex;
    align-items: center;
    color: #757575;
}

.text-discount {
    background-color: var(--color_brand);
    color: white;
}

.box-discount {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.utp .icon-utp svg path {
    fill: var(--color_brand);
}

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

@media (min-width: 992px) {
    .hide--mob {
        display: none;
    }
}

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

.bg-theme {
    background-color: var(--color_brand);
}

.custom-title-h1 {
    overflow-y: auto;
    max-height: 70px;
}

.bg-custom-discount {
    background-color: var(--color_brand);
    opacity: 0.15;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 10px;
}

.table-discount span {
    color: var(--color_brand);
    font-size: 18px;
    font-weight: 600;
}

.button-succes {
    border-radius: 6px;
}

/* Контейнер для табов */
.tabs-container {
    max-width: 800px;
    margin: 10px 0;
    padding: 14px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Табы */
.tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 8px;
}

.tab {
    background-color: #fff;
    border: 1px solid var(--theme_color);
    border-radius: 6px;
    padding: 5px 14px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tab.active {
    background-color: #eaeaea;
}

/* Список пунктов */
.tab-content {
    display: none;
}

.tab-content ul {
    list-style: none;
}

.tab-content li {
    margin-bottom: 10px;
    font-size: 16px;
}

.tab-content .icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    vertical-align: middle;
    position: relative;
    z-index: 5;
    top: -8px;
    left: 9px;
    font-size: 19px;
}

.tab-content .icon::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: white;
    position: absolute;
    width: 18px;
    height: 18px;
    top: 1px;
    left: -4px;
    z-index: -1;
}

.tab-content .icon.check::before {
    content: "✓";
    color: #00b300;
    /* Зелёный галочка */
    font-size: 14px;
    text-align: center;
    line-height: 16px;
}

#offer .icon {
    color: green;
}

#important .icon {
    color: red;
}

.tab.active:focus-visible {
    outline: none;
}

/* #offer .icon::before {
    background-color: #00b300;
  } */

#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;
    }
}

.phone-mobile {
    display: none;
}

@media (max-width: 992px) {
    .phone.header-phone .free {
        display: none !important;
    }

    .phone.header-phone a.phone-pc {
        display: none;
    }

    .phone-mobile {
        display: block;
        width: 30px;
        height: 30px;
    }

    .phone-mobile svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .top-header .row div {
        margin: 0 0 0 auto;
    }

    .fix-button {
        display: none;
    }
}

.mobile-block {
    display: none;
}

@media (max-width: 992px) {

    /* Основные стили */
    .mobile-block {
        background-color: #f9f9f9;
        padding: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        z-index: 999;
        bottom: 0;
        width: 100%;
        border: 1px solid #e5e7eb;
    }

    .mobile-block .button-container {
        display: flex;
        justify-content: space-around;
        width: 100%;
        align-items: center;
    }

    .mobile-block .icon-button {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .mobile-block .icon {
        font-size: 18px;
        color: #333;
    }

    .mobile-block .icon svg {
        width: 25px;
        height: 25px;
    }

    .mobile-block p,
    .mobile-btn-fixed p {
        font-size: 12px;
        color: #666;
        margin-top: 5px;
        line-height: 1;
    }

    .mobile-block .main-button button {
        background-color: var(--color_brand);
        color: white;
        border: none;
        padding: 12px 24px;
        border-radius: 8px;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        min-height: 48px;
    }

    .mobile-block .main-button button:hover {
        background-color: #0056b3;
    }

    .mobile-block .mobile-btn {
        width: 60px;
        top: 6px;
    }

    .mobile-block .mobile-btn.active {
        height: 0px;
    }

    .mobile-block .icon-button p {
        margin-bottom: 0;
    }

    .mobile-block .mobile-btn.active button span {
        width: 25px;
    }

    .mobile-block .mobile-btn.active .icon {
        left: 33px;
    }

    .col-xl-9.col-lg-9.table-price.hide-cards {
        width: 100%;
    }
}

.menu-mobile.menuDowns {
    transform: translate3d(0px, 140%, 0px) !important;
    top: 0;
    position: fixed;
    background: white;
    width: 100%;
    z-index: -1;
}

.menu-mobile.menuDowns.active_down {
    z-index: 999;
    transform: translate3d(0px, 0%, 0px) !important;
}

.block-price {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.block-price-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    border-radius: 50%;
    background-color: var(--color_brand);
    flex-shrink: 0;
}

.block-price-img svg {
    width: 20px;
    height: 20px;
}

.block-price-text {
    font-size: 22px;
    line-height: 1.2;
}

@media (max-width: 992px) {
    .block-price-text {
        font-size: 20px;
    }
}

.no-remont-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    border-radius: 50%;
    flex-shrink: 0;
    --tw-bg-opacity: 1;
    background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}

.no-remont-img svg {
    width: 15px;
    height: 15px;
}

.no-remont-head {
    font-size: 20px;
}

.border-red-200 {
    --tw-border-opacity: 1;
    border-color: rgb(254 202 202 / var(--tw-border-opacity, 1)) !important;
}

.grid-container-price {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 равные колонки */
    gap: 20px;
    /* Поля между элементами */
}

@media (max-width: 992px) {
    .grid-container-price {
        grid-template-columns: repeat(1, 1fr);
    }
}

.card-price {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
    border: 1px dashed var(--color_brand);
    padding: 10px 15px;
    border-radius: 15px;
    text-align: left;
    transition: transform 0.3s ease;
    min-height: 120px;
    /* Минимальная высота для всех карточек */
}

.card-price:hover {
    transform: scale(1.02);
    /* Легкое увеличение при наведении */
}

.card-price div {
    font-size: 18px;
    color: #333;
    margin-bottom: auto;
    /* Отталкивает контент вверх */
}

.card-price p {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: #666;
    margin-top: auto;
    /* Отталкивает контент вниз */
    width: 100%;
    /* Убедиться, что занимает всю ширину */
    margin-bottom: 0;
}

.card-price span {
    color: var(--color_brand);
    font-weight: 600;
}

.card-price a {
    color: var(--color_brand);
    text-decoration: none;
    margin-left: 10px;
}

.card-price a:hover {
    text-decoration: underline;
}

.btn-show-link-partner {
    cursor: pointer;
}

.menu-city-link {
    display: none;
    overflow-x: hidden;
    gap: 10px;
    flex-direction: column;
    direction: rtl;
    padding-right: 12px;
}

.menu-city-link.show {
    display: flex;
}

.menu-city-link::-webkit-scrollbar {
    width: 8px;
    display: block !important;
}

.menu-city-link::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
    margin: 4px 0;
}

.menu-city-link::-webkit-scrollbar-thumb {
    background: var(--color_brand);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.menu-city-link::-webkit-scrollbar-thumb:hover {
    background: var(--color_brand);
}

.menu-city-link li {
    direction: ltr;
}

.menu-city-link li a {
    display: flex;
    padding-left: 8px;
    width: 100%;
    justify-content: flex-start;
    text-align: left;
}

.btn-show-link-partner {
    display: inline-block;
    background: var(--color_brand);
    color: white !important;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(101, 117, 101, 0.2);
    border: none;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.btn-show-link-partner:hover {
    background: var(--color_brand);
    box-shadow: 0 6px 16px rgba(136, 138, 136, 0.3);
    transform: translateY(-2px);
}

.btn-show-link-partner:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}

.btn-show-link-partner::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.btn-show-link-partner:active::after {
    width: 200px;
    height: 200px;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .btn-show-link-partner {
        font-size: 20px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .btn-show-link-partner {
        font-size: 18px;
        padding: 8px 16px;
    }
}

.utp-section {
    max-width: 1200px;
    margin: 0 auto;
}

/* грид */
.utp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* карточка */
.utp-item {
    display: flex;
    align-items: center;
    justify-content: center;
    /* центрируем содержимое (иконка + текст) */
    gap: 15px;
    /* расстояние между иконкой и текстом = 15px */
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform .2s ease, box-shadow .2s ease;
}

/* первый элемент занимает всю ширину грид-строки */
.utp-item:first-child {
    grid-column: 1 / -1;
    /* text-align не нужен, т.к. мы используем flex */
}

/* hover */
.utp-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* иконка как реальный элемент */
.utp-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    border-radius: 50%;
    background: var(--color_brand);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

/* иконка символ */
.utp-icon::after {
    content: "✔";
    display: block;
}

/* параграф внутри карточки */
.utp-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: #333;
}

/* адаптив */
@media (max-width: 600px) {
    .utp-section {
        padding: 20px 10px;
    }

    .utp-item p {
        font-size: 14px;
    }

    /* при очень узких экранах можно уменьшить gap/иконку */
    .utp-item {
        gap: 12px;
        padding: 12px;
    }

    .utp-icon {
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px;
        font-size: 11px;
    }
}









@media (min-width: 992px) {
    .page-device .box-obj {
        display: none;
    }

    .new-table-mobile {
        display: none;
    }
}

/* Мобильная версия страницы утсрйоство */
@media (max-width: 992px) {
    .page-device .image {
        display: none;
    }

    .page-device .box .right {
        height: 0;
    }

    .page-device .box {
        background-color: white;
    }

    .page-device .image-offer__one,
    .page-device .image-offer__two {
        position: initial;
        display: inline-flex;
        padding: 2px 11px;
        border-radius: 25px;
    }

    .page-device .form input[name="phone"] {
        border: 1px solid rgb(229 231 235 / 1);
    }

    .page-device .box-obj {
        display: flex;
        gap: 8px;
        justify-content: center;
    }

    .page-device .single-h1 {
        font-size: 24px;
        font-weight: 600;
    }

    .page-device .utp_block.utp_mobile {
        display: none;
    }
}

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

.min_price_box {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    color: #878686;
    position: absolute;
    bottom: 16px;
}







/* TOOLTYPE */
[tooltip] {
    position: relative;
    border-bottom: 1px dashed;
}

[tooltip]::before,
[tooltip]::after {
    text-transform: none;
    font-size: .7em;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    position: absolute;
    display: none;
    opacity: 0;
}

[tooltip]::before {
    content: '';
    border: 5px solid transparent;
    z-index: 1001;
}

[tooltip]::after {
    content: attr(tooltip);
    font-family: Helvetica, sans-serif;
    text-align: center;
    min-width: 3em;
    max-width: 21em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 1ch 1.5ch;
    border-radius: .3ch;
    box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
    background: #333;
    color: #fff;
    z-index: 1000;
    /* absurdity 2 */
}

[tooltip]:hover::before,
[tooltip]:hover::after {
    display: block;
}

[tooltip='']::before,
[tooltip='']::after {
    display: none !important;
}

[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
    bottom: 100%;
    border-bottom-width: 0;
    border-top-color: #333;
}

[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
    bottom: calc(100% + 5px);
}

[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
    left: 50%;
    transform: translate(-50%, -.5em);
}

@keyframes tooltips-vert {
    to {
        opacity: .9;
        transform: translate(-50%, 0);
    }
}

@keyframes tooltips-horz {
    to {
        opacity: .9;
        transform: translate(0, -50%);
    }
}

[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="down"]:hover::after {
    animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
    animation: tooltips-horz 300ms ease-out forwards;
}

/* TOOLTYPE */

@media (min-width: 992px) {
    #static-bottom-menu {
        display: none;
    }
}

.box-dropdownsservice {
    max-height: 400px;
}

.back-box-dropdoen {
    max-height: 303px;
    overflow-y: auto;
}


.box-mobile {
    display: none;
}

@media (max-width: 992px) {

    .box-mobile {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .card-sign {
        margin-bottom: 0;
    }

    .prem-advantages .prem-card:nth-child(n + 3) {
        display: none;
    }

    .prem-advantages.show .prem-card:nth-child(n + 3) {
        display: block;
    }

    .priznaki .card-sign .card-sign-box:nth-child(n + 3) {
        display: none;
    }

    .priznaki .card-sign.show .card-sign-box:nth-child(n + 3) {
        display: block;
    }

    #device-select {
        margin-bottom: 40px !important;
    }

    #device-select .cards-models .row .card-model:nth-child(n + 9) {
        display: none;
    }

    #device-select .cards-models .row.show .card-model:nth-child(n + 9) {
        display: block;
    }

}