/*
* 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: 14px;
    font-family: 'Roboto', sans-serif;
}

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

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




/* HEADER  */
.header {
    padding: 8px 0;
    -webkit-box-shadow: 0 0 7px -3px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 7px -3px rgba(0, 0, 0, 0.5);
}

header .icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    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;
}

header .icon svg path {}

.bottom-header ul.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 6px 10px;
}

.bottom-header ul.menu li {
    display: none;
    /* Скрываем все элементы по умолчанию */
}

/* Для ПК (ширина > 992px): показываем первые N элементов для menu_pc или моделей */
@media (min-width: 992.01px) {

    /* Для блока if: показываем menu_pc для первых N элементов */
    .bottom-header ul.menu[data-limit="2"] li:nth-child(-n+2),
    .bottom-header ul.menu[data-limit="3"] li:nth-child(-n+3),
    .bottom-header ul.menu[data-limit="4"] li:nth-child(-n+4),
    .bottom-header ul.menu[data-limit="5"] li:nth-child(-n+5),
    .bottom-header ul.menu[data-limit="6"] li:nth-child(-n+6),
    .bottom-header ul.menu[data-limit="7"] li:nth-child(-n+7),
    .bottom-header ul.menu[data-limit="8"] li:nth-child(-n+8) {
        display: block;
        /* Показываем первые N <li> */
    }

    .bottom-header ul.menu li .menu_pc {
        display: block;
        /* Показываем menu_pc для выбранных элементов */
    }

    .bottom-header ul.menu li .menu_mobile {
        display: none;
        /* Скрываем menu_mobile */
    }

    /* Для блока else: показываем модели (без menu_pc/menu_mobile) */
    .bottom-header ul.menu[data-limit="2"] li:nth-child(-n+2),
    .bottom-header ul.menu[data-limit="3"] li:nth-child(-n+3),
    .bottom-header ul.menu[data-limit="4"] li:nth-child(-n+4),
    .bottom-header ul.menu[data-limit="5"] li:nth-child(-n+5),
    .bottom-header ul.menu[data-limit="6"] li:nth-child(-n+6) {
        display: block;
        /* Показываем первые N <li> для моделей */
    }
}

/* Для мобильной версии (ширина ≤ 992px): показываем все menu_mobile или все модели */
@media (max-width: 992px) {
    .bottom-header ul.menu li {
        display: block;
        /* Показываем все <li> */
    }

    .bottom-header ul.menu li .menu_pc {
        display: none;
        /* Скрываем menu_pc */
    }

    .bottom-header ul.menu li .menu_mobile {
        display: flex;
        /* Показываем все menu_mobile */
    }
}

.top-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.top-header .row div {
    width: auto;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.top-header .row div:first-child {
    margin-left: 0;
}

.top-header .row .city-select div:last-child {
    margin-right: 0;
    font-weight: 400;
    color: var(--color_brand);
}

.top-header .row div.logo {
    width: 145px;
}

.top-header .row div.logo img {
    max-height: 33px;
}

.top-header .row div.logo .text_brand {
    font-size: 25px;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.top-header .row div.logo .text_sc {
    font-size: 12px;
}

.phone.header-phone {
    display: block !important;
}

.phone.header-phone .free {
    font-size: 12px;
    text-align: center;
    display: block !important;
}

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

.city-select div:first-child {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.city-select div:last-child {
    font-size: 12px;
    line-height: 1.2;
}

.top-menu ul li a {
    display: block;
    padding: 8px 12px;
}

.top-menu ul li a span {
    border-bottom: 1px solid var(--text);
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    font-size: 16px;
}

.top-menu ul li a:hover {
    color: var(--text);
}

.top-menu ul li a:hover span {
    border-bottom: 2px solid var(--text);
}

.phone a {
    color: var(--color_brand);
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.phone a:hover {
    color: var(--text);
}

.bottom-header {
    margin-top: 10px;
}

.bottom-header .row {
    border-top: 1px solid #e5e5e5;
    padding-top: 5px;
}

.menu li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
}

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

.menu li a:hover svg path {
    fill: var(--color_brand);
    stroke: var(--color_brand);
}

.menu li a:hover svg circle {
    stroke: var(--color_brand);
}

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


/* 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;
}

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

    .utp_mobile {
        display: block;
        font-size: 14px;
        padding: 0 30px;
    }

    .utp_mobile li {
        margin-bottom: 1vh;
        position: relative;
        padding-left: 25px;
        margin-bottom: 7px;
        line-height: 1.4;
    }

    .utp_mobile li::before {
        content: '✔';
        position: absolute;
        left: 0;
        color: var(--color_brand);
        font-size: 16px;
    }

    .utp_mobile li.li_alert::before {
        content: '!' !important;
        color: red;
    }

    .utp_mobile li.li_alert span::before {
        content: 'Не берем технику на официальной гарантии, не проводим консультации, не продаем запчасти' !important;
        color: red;
    }

    .utp_mobile li span {
        color: var(--color_brand);
    }
}

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

    .alert {
        position: absolute;
        top: 29%;
        left: 79%;
        transform: translate(-50%, -50%);
        background-color: color-mix(in srgb, var(--color_brand), white 20%);
        border-radius: 50%;
        width: 200px;
        height: 200px;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 16px;
        color: #f3f3f3 !important;
        font-weight: bold;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        line-height: 1.4;
    }

    .alert::before {
        content: 'Не берем технику на официальной гарантии' !important;
    }

    .main-text span::before {
        color: red;
    }
}

.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: #888;
}

.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: .85;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

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

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




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




/* Categories  */
.categories {
    margin-top: 96px;
}

.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 .3s;
    -o-transition: all .3s;
    transition: all .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: #9881FF;*/
    background-color: var(--color_brand);
    ;
}

.color-2 {
    /*background-color: #91A3FF;*/
    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,
.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: 17px;
    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: 16px;
    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;
    border-radius: 10px;
    position: relative;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.answer {
    display: none;
    background-color: #6C7EE0;
    color: white;
    padding: 20px 30px;
    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 .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .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: 280px;
    height: 50px;
}

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

.vopros-text {
    color: rgb(255 255 255 / 50%);
}

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

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

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

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

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





.footer {
    background-color: #F3F3F3;
    padding: 50px 0;
}

.footer div.logo {
    width: 148px;
    height: 65px;
}

.footer div.logo span,
.footer div.service {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: #282828;
}

.footer div.logo span.text_brand {
    font-size: 25px;
    font-weight: 800;
}

.footer div.service {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: #888;
}

.lv-1 {
    padding-bottom: 40px;
}

.footer .lv-1 .ul-nav ul {
    margin-top: 20px;
}

.footer .lv-1 .ul-nav a {
    color: #888888;
}

.footer .lv-1 .ul-nav a:hover {
    text-decoration: underline;
}

.lv-2 {
    padding-top: 20px;
    border-top: 1px solid #BEBEBE;
}

.lv-2 .left {
    color: #888888;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.lv-2 .right a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    color: #888888;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.lv-2 .right a:hover {
    text-decoration: underline;
}

.lv-2 .info {
    color: #888888;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 12px;
    padding-top: 10px;
}

.footer-title {
    color: var(--color_brand);
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 20px;
}

.footer-menu li {
    display: flex;
}

.footer-menu li a,
.footer-menu li span {
    display: inline-block;
    color: #888888;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 19px;
}

.footer-menu li a:hover {
    text-decoration: underline;
}

.icon-footer {
    width: 24px;
    height: 18px;
}

.footer-menu.contacts li a,
.footer-menu.contacts li span {
    display: inline-block;
    color: #282828;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 22px;
}

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

.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: 500px;
}

.image-offer {
    display: none;
}

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

}

.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: 105px;
    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: .3;
    cursor: pointer;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
}

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

/* .show-text {
    display: none;
} */

/* .shadow-text::before {
    background: rgb(243, 243, 243);
    background: linear-gradient(90deg, rgba(243, 243, 243, 0) 0%, rgba(243, 243, 243, 0.4976584383753502) 25%, rgba(243, 243, 243, 0.9066220238095238) 50%, rgba(243, 243, 243, 1) 75%, rgba(243, 243, 243, 1) 100%);
    content: "";
    height: 67px;
    width: 137px;
    display: block;
    position: absolute;
    bottom: -17px;
    right: 100%;
}

.single-h1::after {
    content: 'ещё';
    position: absolute;
    right: 45px;
    bottom: 16px;
    font-size: 15px;
    padding: 0;
    border: 1px solid #282828;
    width: 56px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    opacity: .3;
    cursor: pointer;
} */

.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(.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) .01%, #f3f3f3 57.29%);
    background: linear-gradient(90deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 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;
    }

    .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;
    /*grid-template-columns: 50% 2fr 2fr 1fr;*/
    -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 .3s;
    -o-transition: all .3s;
    transition: all .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: .4;
    }

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

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

    .form input[name="phone"] {
        height: 40px;
    }

    .form input[type="submit"],
    .form input[type="button"] {
        height: 40px;
    }

    .main_box h1 {
        margin-bottom: 30px;
        padding-top: 30px;
        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;
    }

    .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 .3s;
        -o-transition: all .3s;
        transition: all .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 .3s;
    -o-transition: all .3s;
    transition: all .3s;
    top: 100%;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    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: .85;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .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);
}

@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: .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 .3s;
    -o-transition: background-color .3s;
    transition: background-color .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: 500;
    margin-bottom: 12px;
}

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

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

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

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

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



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

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

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

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

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

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







.title-review {
    margin-bottom: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.title-review .title {
    width: calc(100% - 110px);
}

.title-review .title h2 {
    color: white;
}

.pagination-review {
    position: relative;
    width: 110px;
}

.reviews {
    margin-bottom: 100px;
}

.stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 20px;
    width: 90px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

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

.review-head .right {
    width: 100%;
}

.review-head .right .lv1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.left.avatar {
    width: 40px;
    height: 40px;
    margin-right: 16px;
}

.review-body {
    margin-top: 12px;
    margin-bottom: 36px;
    max-height: 107px;
    overflow-y: auto;
}

.reviews .container {
    background-color: #6C7EE0;
    padding-top: 50px;
    border-radius: 20px;
    padding: 50px 50px 60px;
    overflow: hidden;
    position: relative;
}

.box-review-slide {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
}

.pagination-review .swiper-button-prev,
.pagination-review .swiper-button-next {
    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;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: white;
    overflow: hidden;
}

.pagination-review .swiper-button-prev:after,
.pagination-review .swiper-button-next:after {
    font-size: 18px;
}

.swiper-button-lock {
    display: none !important;
}

@media (max-width: 992px) {
    .reviews {
        padding-left: 14px;
        padding-right: 14px;
        margin-bottom: 30px;
    }

    .reviews .container {
        padding: 20px;
    }

    .title-review {
        margin-bottom: 20px;
    }

    .box-review-slide {
        padding: 14px;
    }
}

.circle-rev-1 {
    position: absolute;
    top: 10%;
    left: -10%;
    width: 600px;
    height: 600px;
    border-radius: 100%;
    background: rgb(255, 255, 255);
    background: -o-linear-gradient(346deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15312062324929976) 100%);
    background: linear-gradient(104deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15312062324929976) 100%);
}

.circle-rev-2 {
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 100%;
    background: rgb(255, 255, 255);
    background: -o-linear-gradient(89deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15312062324929976) 100%);
    background: linear-gradient(1deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15312062324929976) 100%);
}

.review-footer strong {
    color: var(--color_brand);
}

/* .left.avatar circle {
    fill: var(--color_brand);
} */

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

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

.main_box.static-page .right .img {
    height: 240px;
    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 .3s;
    -o-transition: all .3s;
    transition: all .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 .3s;
    -o-transition: all .3s;
    transition: all .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;
}

.warning_no_text,
.warning_no_text_service {
    margin-bottom: 20px;
    font-size: 20px;
    color: red;
}

@media (max-width: 767px) {

    .warning_no_text,
    .warning_no_text_service {
        padding: 0px 40px;
        font-size: 16px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .warning {
        grid-template-columns: repeat(1, 1fr);
    }
}

.warning_no_text::before {
    content: "Не принимаем устройства в ремонт на данный момент";
}

.warning_no_text_service::before {
    content: "Внимание! Не берем устройство с данной проблемой";
}

.warning {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
    margin: 20px 0;
    font-size: 17px;
}

.warning_one,
.warning_two,
.warning_three {
    background-color: red;
    color: #fff;
    padding: 20px 0;
    border-radius: 10px;
    font-weight: bold;
}

.warning_one::before {
    content: "Не берем технику на официальной гарантии";
}

.warning_two::before {
    content: "Не предоставляем консультации";
}

.warning_three::before {
    content: "Не продаем запчасти на технику";
}

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


/*
.single-main-screen .single-h1 {
    margin-bottom: 0;
}
*/

.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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
}

.card-error {
    background-color: #eef1f1;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    padding: 10px;
}

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

.box-error-flex.noShow .card-error:nth-child(n + 11) {
    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 + 10) {
        display: none;
    }
}

.card-error .name {
    background-color: white;
    padding: 8px 14px;
    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: .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-between;
    -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);
}

/* 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 .2s ease-out 0ms;
    -o-transition: height .2s ease-out 0ms;
    transition: height .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;
    }
}









/* 
.show_box [type="submit"] {
    position: relative;
    overflow: hidden;
}

.show_box [type="submit"]:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: all 650ms;
}

.show_box [type="submit"]:hover:before {
    left: 100%;
} */

/* Анимация призыв к действию */
.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;
    counter-reset: sign-counter;
    margin-bottom: 50px;
}

.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: 16px;
    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: 20px;
    margin-left: 20px;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}

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

@media (max-width: 768px) {
    .card-sign {
        grid-template-columns: 1fr;
    }
}

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


/* 
.new_price {
    color: var(--color_brand);
} */

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