<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&amp;display=swap');

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

html {
    overflow-x: hidden;
}

body {
    background-color: white;
    color: var(--text);
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    /* overflow-x: hidden; */
}

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

.text-white p{
    color:rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}
.text-white ul{
    color:rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}
.text-white li{
    color:rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

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

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


ul li {
    list-style: none;
}

img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

/* div.row {
    height: 100%;
} */

input {
    position: relative;
}

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

input:focus {
    outline: none;
}

/* HEADER */

.header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 5px 10px rgb(0 0 0 / 5%);
}

.data-about {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.head-menu {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-around;
}

.head-menu li {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.head-menu li:nth-child(odd) {
    margin-right: 25px;
}

/* .head-menu li:last-child {
    margin-right: 0;
} */

.header-top {
    background-color: var(--theme_color);
    padding-bottom: 10px;
    padding-top: 15px;
}

.header-bottom {
    background-color: white;
    transition: all .3s;
}

@media (min-width: 992px) {
    .header-bottom.fixed {
        bottom: 100%;
        width: 100%;
        left: 0;
        position: fixed;
        z-index: 999;
        box-shadow: 0 5px 10px rgb(0 0 0 / 14%);
        transform: translateY(100%);
    }
}

.header .logo {
    display: flex;
    align-items: center;
}

.header .logo a {
    display: flex;
    flex-direction: column;
    padding: 8px 8px;
}

.header .logo a img {
    max-height: 40px;
}

.header .logo a span {
    font-size: 10px;
    color: #888;
}

.header-city {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header-city span {
    font-size: 11px;
    color: #888888;
    font-weight: 500;
}

.header-city .hover {
    white-space: pre;
    text-decoration: underline;
}

.select-city {
    display: flex;
    height: 20px;
    font-weight: 500;
    font-size: 14px;
}

.data-about svg {
    margin-right: 6px;
}

.head-box-phone {
    display: flex;
    justify-content: flex-end;
    font-size: 13px;
    font-weight: 500;
}

.head-phone {
    justify-content: flex-end;
}

.head-phone a {
    white-space: pre;
}

.data-about.address {
    display: flex;
    flex-direction: column;
}

.city-address {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    height: 18px;
    display: flex;
    align-items: center;
}

.city-address svg {
    width: 18px;
}

.week-worktime {
    font-size: 12px;
    font-weight: 500;
    color: #888;
    line-height: 1.2;
}

.head-box-btn {
    display: flex;
    justify-content: space-around;
}

.btn-style {
    font-size: 11px;
    border: 1px solid var(--color_brand);
    color: white;
    background: var(--color_brand);
    padding: 5px 10px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all .3s;
    border-radius: 4px;
}

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

.drop-down {
    position: relative;
    padding: 0 20px 0 10px !important;
}

.drop-down::after {
    content: 'в–ј';
    font-size: 8px;
    position: absolute;
    right: 10px;
    top: calc(50% - 6px);
    transform: rotate(0);
    transition: all .3s;
}

.drop-down:hover::after {
    color: var(--color_brand);
    transform: rotate(180deg);
    top: calc(50% - 8px);
}

.support-menu {
    position: absolute;
    bottom: 100%;
    left: 0;
    padding: 10px 0;
    background: white;
    transition: all .3s;
    transform: translateY(-150%);
    border-radius: 0 0 4px 4px;
}

.support-menu.show {
    transform: translateY(0%);
    box-shadow: 0 10px 15px rgb(0 0 0 / 10%);
    bottom: inherit;
    top: 100%;
    z-index: -1;
}

.support-menu li {
    text-transform: capitalize;
}

.support-menu li a {
    width: 100%;
    white-space: pre;
    font-size: 14px;
    padding-top: 2.5px;
    padding-bottom: 2.5px;
    margin-right: 10px;
}


@media (max-width: 992px) {
    .head-phone a {
        font-size: 16px;
    }

    .header-city .hover {
        font-size: 16px;
    }
}

/* the end HEADER  */


/* BODY  */
main {
    margin-top: 90px;
}

/* MIAN SECTION */
.main-section {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.main-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 40%);
}

.main-right form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-window {
    padding: 80px 0;
    display: flex;
    position: relative;
}

.main-window .row {
    justify-content: space-around;
}

form input {
    width: 100%;
    max-width: 260px;
    margin-bottom: 8px;
    height: 36px;
    border: 0px;
    border-radius: 4px;
    padding: 0 16px;
}

form button[type="submit"] {
    width: 100%;
    background-color: white;
    color: var(--color_brand);
    max-width: 260px;
    height: 34px;
    border: 1px solid var(--color_brand);
    border-radius: 4px;
    padding: 0 16px;
    transition: all .3s;
    margin-top: 16px;
}

form button[type="submit"]:hover {
    background-color: var(--color_brand);
    color: white;
}

.main-right {
    background-color: rgb(0 0 0 / 70%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 32px;
    border-radius: 4px;
}

.main-left {
    background-color: rgb(0 0 0 / 70%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px 40px 32px 40px;
    border-radius: 4px;
}

h1.h2 {
    width: 100%;
    line-height: 1.2;
    margin-bottom: 16px;
}

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

[type="tel"]::placeholder {
    content: '*';
    color: #888;
}

.form-text {
    font-size: 14px;
    color: white;
    width: 250px;
    position: relative;
}

.form-text.req::after {
    content: '*';
    padding-left: 5px;
    font-size: 10px;
    position: relative;
    top: -3px;
}

.politika {
    width: 260px;
    color: white;
    display: flex;
    line-height: 1.2;
    font-size: 11px;
    padding-top: 8px;
    color: #888;
}

.politika a {
    color: var(--color_brand);
}

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

form input[type='checkbox'] {
    width: 14px;
    height: 14px;
    margin: 0px 7px 0 0;
}



/* BLOCK SLIDER DEVICES  */
.block-devices {
    padding: 80px 0;
    background-color: var(--theme_color);
    border-top: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
}

.block-devices .swiper-wrapper {
    height: 240px;
}

.block-devices .swiper-slide {
    height: 200px;
    background-color: white;
    border-radius: 8px;
    transition: all .3s;
}

.block-devices .swiper-slide:hover {
    box-shadow: 0 10px 10px rgb(0 0 0 / 10%);
}

.box-device {
    display: block;
    height: 100%;
    padding: 16px 16px 50px;
    width: 100%;
}

.box-device div {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    text-align: center;
}

.swiper-pagination-bullet {
    border-radius: 2px;
}

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




/* ADVANTAGE  */
.advantage {
    padding: 80px 0;
}




/* SEO  */
.seo {
    padding: 80px 0;
    background-color: var(--theme_color);
    border-top: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
}

.seo .text-seo {
    padding: 24px;
    background: white;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
}

.seo .text-seo h2 {
    font-size: calc(1.275rem + .3vw);
}

.seo .text-seo ul li {
    margin-left: 20px;
    list-style: inherit;
    list-style-type: disc;
}

.seo .text-seo ul {
    padding-left: 0;
}

.map {
    height: 400px;
    position: relative;
}

.map div,
.map iframe {
    width: 100%;
    height: 100%;
}

.map .box-map {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: white;
    width: 300px;
    border-radius: 8px;
    box-shadow: 0 0px 15px rgb(0 0 0 / 25%);
    left: 20%;
    height: 256px;
}

.title-form-map {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    padding-top: 12px;
}

.box-map form {
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box-map .form-text {
    font-size: 12px;
    line-height: 1.2;
    display: inline-flex;
    color: #858383 !important;
}

.box-map form input[type="tel"] {
    border-radius: 4px;
    padding: 0 16px;
    border: 1px solid #858383;
    height: 32px;
    margin-top: 14px;
}



/* FOOTER  */
footer {
    padding: 80px 0;
    background-color: #393939;
}

footer .logo {
    display: flex;
    align-items: center;
    height: 50px;
    margin-top: 6px;
}

footer .logo a {
    display: inline-flex;
    height: 58px;
    padding: 10px 26px;
    border: 1px solid var(--color_brand);
    border-radius: 4px;
    background-color: white;
}

footer .payment {
    max-width: 100px;
}

footer .payment .text {
    color: white;
    margin-top: 14px;
    padding-bottom: 3px;
    font-weight: 600;
    font-size: 12px;
}

.footer__content {
    display: flex;
    flex-direction: column;
}

.footer__content .link-footer {
    color: white;
}

.footer__content a span:hover {
    text-decoration: underline;
}

.footer__content_block .footer__type_title {
    text-transform: uppercase;
    color: var(--color_brand);
}

.link-footer span i {
    color: var(--color_brand);
}

.link-footer span.icon {
    width: 20px;
    display: inline-block;
}

footer .select-city {
    margin-top: 7px;
    font-size: 12px;
}

footer .select-city span {
    margin-left: 4px;
    color: var(--color_brand);
    cursor: pointer;
}




/* Р­С‚Р°РїС‹ СЂР°Р±РѕС‚  */

.slide_advantage {
    display: none;
}

.slide_advantage.show {
    display: block;
}

.box_adv_ {
    display: flex;
    background-color: white;
}

.slide_advantage .left {
    width: 45%;
    padding: 3%;
    border: 1px solid var(--color_brand);
    height: 250px;
    border-radius: 6px;
}

.slide_advantage .right {
    width: 55%;
    padding-left: 40px;
}

.slide_advantage .right .h4 {
    color: var(--color_brand);
}

.slide_advantage .right p {
    font-size: 16px;
    line-height: 1.2;
}

.slide_advantage .right p span {
    color: var(--color_brand);
}

.lv_advantage {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px 50px;
    margin-bottom: 30px;
}

.lv_advantage .text-advantage {
    border: 1px solid var(--color_brand);
    border-radius: 4px;
    padding: 10px;
    color: var(--color_brand);
    font-size: 20px;
    font-weight: 600;
    display: flex;
    cursor: pointer;
    position: relative;
    transition: all .9s;
}

.lv_advantage .text-advantage:hover {
    transform: .3s !important;
    box-shadow: 0 10px 10px rgb(0 0 0 / 10%);
}

.lv_advantage .text-advantage::before {
    content: '. . .';
    position: absolute;
    left: calc(100% - -4px);
    width: 42px;
    color: var(--color_brand);
    top: 5px;
    display: flex;
    justify-content: center;
}

.lv_advantage .text-advantage.active::before {
    top: -5px;
}

.lv_advantage .text-advantage:last-child::before {
    display: none;
}

.lv_advantage .text-advantage span {
    color: #888;
    font-size: 12px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.lv_advantage .text-advantage.active {
    border-radius: 100%;
    justify-content: center;
    background: var(--color_brand);
    color: white;
    font-size: 30px;
    padding: 0;
    align-items: center;
    box-shadow: 0 10px 10px rgb(0 0 0 / 10%);
}

.lv_advantage .text-advantage.active span {
    display: none;
}

.content-slide {
    height: 250px;
    overflow-y: hidden;
}




/* Modal  */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.modal.activeForm {
    display: block;
}

.modal .bg_modal {
    background-color: rgb(0 0 0 / 50%);
    width: 100%;
    height: 100%;
}

.content_modal {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 300px;
    height: fit-content;
    max-height: 340px;
    background: white;
    padding: 20px 10px 20px 10px;
    border-radius: 6px;
}

.content_modal form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content_modal form input {
    border: 1px solid var(--color_brand);
}

.content_modal .form-text {
    color: var(--text);
}

.modal .close {
    width: 16px;
    height: 16px;
    position: absolute;
    right: 5px;
    top: 5px;
    font-size: 20px;
    transform: rotate(45deg);
    color: #888;
    border-radius: 100%;
    border: 1px solid #888;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.modal .close:hover {
    color: var(--color_brand);
    border: 1px solid var(--color_brand);
}

.menu-hamburger {
    height: 32px;
    border: 1px solid var(--color_brand);
    background: white;
    border-radius: 4px;
    width: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.menu-hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color_brand);
}

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

@media (max-width: 767px) {
    .lv_advantage {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .lv_advantage .text-advantage {
        margin-bottom: 40px;
    }

    .lv_advantage .text-advantage:last-child {
        margin-bottom: 0;
    }

    .lv_advantage .text-advantage::before {
        content: '. . .';
        position: absolute;
        left: 0;
        width: 42px;
        color: var(--color_brand);
        top: 5px;
        display: flex;
        justify-content: center;
        transform: rotate(90deg);
        top: calc(100% - -6px);
        right: -13px;
        margin-left: auto;
        margin-right: auto;
    }

    .lv_advantage .text-advantage.active::before {
        top: 36px;
        right: -18px;
    }

    .header-bottom {
        display: none;
    }

    .main-window {
        padding: 0;
    }

    .main-left {
        padding-bottom: 0;
    }

    .block-devices,
    .advantage,
    .seo,
    footer {
        padding: 40px 0;
    }

    .box_adv_ {
        flex-direction: column;
    }

    .content-slide {
        height: auto;
    }

    .slide_advantage .right,
    .slide_advantage .left {
        width: 100%;
    }

    .slide_advantage .right {
        padding: 16px 0 0 0;
    }

    footer .col-lg-3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 100%;
        margin-bottom: 24px;
    }

    footer .payment .text,
    .footer__content .link-footer {
        text-align: center;
    }

    .map {
        height: inherit;
    }

    .map .box-map {
        position: inherit;
        margin-top: 16px;
        margin-bottom: 16px;
    }

    .data-about.address {
        align-items: flex-end;
    }

    .mobile-none {
        display: none;
    }

    .head-box-btn {
        display: flex;
        justify-content: flex-start;
    }

    .header-top {
        height: 90px;
        position: fixed;
        top: 0;
        box-shadow: 0 10px 10px rgb(0 0 0 / 10%);
    }

    .menu_mobile {
        position: fixed;
        top: 0;
        background: white;
        width: 100%;
        height: 100%;
        display: flex;
        padding: 120px 16px 16px;
        transition: all .5s;
        transform: translateY(-100%);
        display: flex;
        flex-direction: column;
        z-index: 99;
    }

    .menu_mobile.active {
        transform: translateY(0%);
    }
}

.stopScroll {
    overflow: hidden;
}

.parent li {
    font-weight: 600;
}

.children li {
    font-weight: 400;
    padding-left: 16px;
}

/* *** PAGE MAIN INDEX */



.page {
    padding-bottom: 120px;
}

main {
    min-height: calc(100vh - 428px);
}



/* PAGE - CONTCT  */
.breadcrumbs {
    background-color: #f9f9f9;
    padding-top: 14px;
    padding-bottom: 14px;
    display: flex;
    align-items: center;
}

.breadcrumbs ul,
.breadcrumbs ul li {
    display: flex;
}

.breadcrumbs ul li,
.breadcrumbs ul li a {
    color: #676767;
}

.breadcrumbs ul li a {
    white-space: pre;
}

.breadcrumbs ul li a:hover {
    color: var(--color_brand);
}

.breadcrumbs ul li:last-child {
    font-weight: 700;
}

.main-icon {
    padding-right: 6px;
    position: relative;
    top: -2px;
}

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

.separator {
    width: 14px;
    display: flex;
    justify-content: center;
}

.line-cont {
    display: flex;
    margin-bottom: 30px;
}

.icon-cont {
    width: 24px;
    height: 24px;
    margin-right: 16px;
}

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

.line-cont .text-a {
    font-size: 18px;
    font-weight: 700;
}

.line-cont .text-div {
    font-size: 18px;
    font-weight: 400;
}

form.form-cont {
    padding-top: 40px;
}

.form-cont .politika {
    width: 100%;
}

.form-cont input {
    border: 1px solid var(--color_brand);
    height: 40px;
    margin: 0 16px 0 0;
}

form.form-cont button[type="submit"] {
    max-width: 160px;
    height: 40px;
    margin: 0;
}

.page-contact #map {
    box-shadow: 0px 5px 15px rgb(0 0 0 / 8%);
    border-radius: 8px;
    height: 100%;
}

#map div,
#map iframe {
    height: 100%;
    width: 100%;
}

/*  *** PAGE - CONTCT  */




/* 404  */
.title-404 {
    display: flex;
    padding-top: 80px;
    justify-content: center;
}

.title-404 h1 {
    font-size: 187px;
    line-height: 187px;
    color: var(--color_brand);
    margin: 0;
    display: flex;
    align-items: flex-end;
    position: relative;
    top: 21px;
    padding-right: 30px;
}

.title-404 p {
    font-size: 48px;
    line-height: 48px;
    color: #727171;
    margin: 0;
    display: flex;
    align-items: flex-end;
}

/* *** 404  */



/* Page-Delivery */
.block-form-delivery {
    padding-top: 80px;
}

.block-form_delivery {
    padding: 46px 40px;
    background-color: var(--color_brand);
    border-radius: 8px;
    position: relative;
    background-image: url('../img/bg-delivery-form.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}

.title-form_delivery {
    font-size: 28px;
    font-weight: 700;
    color: white;
    max-width: 480px;
    line-height: 33px;
    margin-bottom: 28px;
}

.subtitle-form_delivery {
    font-size: 18px;
    font-weight: 300;
    color: white;
    line-height: 23px;
    margin-bottom: 28px;
}

.form-delivery input,
.form-delivery button[type="submit"] {
    margin: 0;
    height: 51px;
    border: 1px solid var(--color_brand);
}

.form-delivery input {
    margin-right: 24px;
}

.form-delivery button[type="submit"] {
    background-color: var(--color_brand);
    border: 1px solid white;
    color: white;
}

.form-delivery button[type="submit"]:hover {
    background-color: white;
    color: var(--color_brand);
}

.form-delivery .politika {
    width: 100%;
    color: white;
    font-size: 15px;
}

.form-delivery .politika a {
    text-decoration: underline;
    color: white;
}

.form-delivery .politika a:hover {
    text-decoration: none;
}

/* *** Page-Delivery  */




/* Page-about  */
.img-about {
    max-height: 370px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 8%);
}

.status-about {
    box-shadow: 0 5px 10px rgb(0 0 0 / 5%);
    padding: 40px;
    margin: 24px 0;
    max-width: 468px;
}

.column-about {
    display: flex;
}

.column-about div:first-child {
    width: 50px;
    background-color: var(--color_brand);
    border-radius: 6px;
    height: auto;
    display: block;
    margin-right: 16px;
}

.column-about div:last-child {
    font-size: 18px;
    line-height: 21px;
    color: #727171;
}

.col-about-1 {
    margin-bottom: 10px;
}

.col-about-1:first-child {
    height: 70px;
}

.card-advant-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-advant-about div {
    text-align: center;
}

.advantage-about {
    background-color: #F9F9F9;
    padding: 76px 0;
    margin: 46px 0 0;
}

.card-advant-about div:first-child {
    font-size: 86px;
    line-height: 80px;
    color: var(--color_brand);
}

.card-advant-about div:last-child {
    color: #727171;
    font-size: 18px;
    line-height: 24px;
}

.statistic {
    padding-bottom: 76px;
}

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

.card-statistic {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.card-statistic span {
    display: block;
    width: 100%;
    height: 270px;
    border-radius: 8px;
    background-color: var(--color_brand);
    position: relative;
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    padding-top: 20px;
}

.card-statistic div {
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    color: #727171;
    font-weight: 700;
    padding-top: 20px;
}

.skala {
    background-color: #007bff;
    display: block;
    height: 20px;
    transition: width 0.5s;
}

.text-delivery {
    background-color: #F9F9F9;
    padding-top: 76px;
    padding-bottom: 76px;
}

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

.text-delivery p {
    font-size: 18px;
    font-weight: 400;
    color: #727171;
}

.last-form-about {
    margin-bottom: 76px;
}

/* *** Page - about  */




/* PAGE CATALOG  */
.card_catalog {
    height: 160px;
    display: flex;
    padding: 40px 36px;
    box-shadow: 0 0px 10px rgb(0 0 0 / 19%);
    border-radius: 8px;
    transition: all .3s;
}

.card_catalog:hover {
    box-shadow: 0 0px 3px rgba(150, 95, 95, 0.08);
}

.left_data {
    width: 50%;
}

.left_data h2 {
    font-size: 20px;
    font-weight: 700;
}

.rigt_img {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
}

.rigt_img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    max-height: 290px;
}

.card_catalog .min_price {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 18px;
    color: #727171;
    font-weight: 400;
}

.link_type li a {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: #727171;
    margin-bottom: 12px;
    text-decoration: underline;
}

.link_type li a:hover {
    text-decoration: none;
}

.left_data .btn {
    margin-top: 14px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
}







/* PRICE  */
.select-type_price {
    margin: 0 5px 10px;
}

.prices-table {
    border: 1px solid var(--color_brand);
    padding: 14px;
    border-radius: 8px;
}

.stroks {
    display: flex;
    background-color: #F9F9F9;
    padding: 20px 20px;
    transition: all .3s;
}

.stroks:nth-child(2n) {
    background-color: white;
}

.stroks:hover {
    box-shadow: 0 0px 10px rgb(0 0 0 / 10%);
    position: relative;
    z-index: 1;
    transform: scale(1.02);
}

.stroks .columns {
    font-size: 18px;
    color: #727171;
    font-weight: 400;
}

.stroks .column-1 {
    width: 55%;
}

.stroks .column-2 {
    width: 15%;
}

.stroks .column-3 {
    width: 15%;
}

.stroks .column-4 {
    width: 15%;
    color: var(--color_brand);
}

.stroks .column-4:hover {
    color: white;
}

.body-price {
    display: none;
}

.body-price.active {
    display: block;
}

.bg-price-single {
    background-color: #F9F9F9;
    padding-bottom: 60px;
    /* margin-top: 60px; */
}




/* modals  */
.block-modals {
    padding: 60px 0;
}

.card-model {
    padding: 14px;
}

.card-model a {
    padding: 14px;
    display: block;
    box-shadow: 0 3px 8px rgb(0 0 0 / 14%);
    border-radius: 6px;
    transition: all .3s;
}

.card-model a:hover {
    box-shadow: 0 5px 14px rgb(0 0 0 / 18%);

}

.card-model .img-model {
    height: 75px;
}

.card-model .name-model {
    min-height: 20px;
    font-size: 12px;
    line-height: 1.2;
    display: flex;
    align-content: center;
    justify-content: center;
    padding-top: 8px;
    text-align: center;
}

.click-up {
    position: fixed;
    bottom: 30px;
    right: 30px;
}

.click-up button {
    width: 60px;
    height: 60px;
    padding: 6px;
    border-radius: 100%;
    border: 1px solid var(--color_brand);
    background-color: white;
    opacity: .25;
    transition: opacity .3s;
}

.click-up button:hover {
    opacity: 1;
}

.click-up button svg path {
    fill: var(--color_brand)
}

@media (max-width: 1200px) and (min-width: 992px) {
    .block-form_delivery .col-lg-6 {
        padding: 14px;
        background-color: rgb(0 0 0 / 24%);
    }

    .form-delivery input {
        margin-bottom: 20px;
    }
}

@media (max-width: 992px) {
    .click-up button {
        width: 40px;
        height: 40px;
    }

    .form-cont input {
        margin: 0 auto 20px;
        width: 100%;
    }

    form.form-cont button[type="submit"] {
        margin: 0 auto 10px;
        max-width: 260px;
    }

    form.form-cont {
        padding-top: 10px;
        display: flex;
        flex-direction: column;
    }

    .block-form_delivery {
        background-image: none;
    }

    .card-statistic div {
        padding-top: 6px;
    }
}

@media(max-width: 768px) {
    .stroks .column-1 {
        width: 100%;
        text-align: center;
    }

    .stroks .column-2 {
        width: 100%;
        text-align: center;
    }

    .stroks .column-3 {
        width: 100%;
        text-align: center;
    }

    .stroks .column-4 {
        width: 100%;
        text-align: center;
    }

    .stroks {
        flex-direction: column;
    }
}

.modal_select_city {
    height: 100%;
    overflow-y: auto;
    max-height: 255px;
    border: 1px solid var(--color_brand);
    border-radius: 3px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.modal_select_city::-webkit-scrollbar {
    width: 4px;
    background-color: #dedede;
}

.modal_select_city::-webkit-scrollbar-thumb {
    background-color: var(--color_brand);
    border-radius: 4px;
}

.modal_select_city li {
    text-align: center;
}

.wind-main {
    padding: 40px 0;
    position: relative;
}

.wind-main .container {
    position: relative;
    z-index: 5;
}

.wind-main .bg_type {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: brightness(0.65);
}

.wind-main .container .col-lg-6:first-child {
    background-color: rgb(0 0 0 / 80%);
    border-radius: 6px;
    border: 1px solid var(--color_brand);
    padding: 30px;
}

.column-header {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 10px;
}

.scroll--type {
    max-height: 318px;
    overflow-y: auto;
    direction: rtl;
    padding-left: 10px;
}

.scroll--type::-webkit-scrollbar {
    width: 4px;
    background-color: #dedede;
}

.scroll--type::-webkit-scrollbar-thumb {
    background-color: var(--color_brand);
    border-radius: 4px;
}

.scroll--type .link-footer {
    text-align: left;
}

.text-div-dtype,
.text-div-dtype p {
    color: #fff;
}

.text-div-dtype ul {
    padding-left: 0 14px;
}

.text-div-dtype li {
    list-style-type: disc
}


@media (min-width: 1200px) {
    .head-box-phone svg {
        display: none;
    }

    .head-phone a {
        font-size: 20px;
    }

    .header .btn-style {
        font-size: 14px;
    }

    .header-city .hover {
        font-size: 16px;
    }
}


.page-type h1 {
    color: white;
    font-size: 32px;
}

.btn-show-modal::before {
    content: 'РџРѕРєР°Р·Р°С‚СЊ РІСЃС‘';
}

.show_modal .btn-show-modal::before {
    content: 'РЎРєСЂС‹С‚СЊ';
}

.block-modals .card-model:nth-child(n + 19) {
    display: none;
}

.block-modals .show_modal .card-model {
    display: block;
}

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

.head-box-phone {
    height: 24px;
}

.header-top {
    height: auto;
}

.row-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.row-grid .btn-style {
    font-size: 12px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 992px) {
    .garant_img {
        object-position: top;
    }

    .title_none_garant {
        opacity: 0;
    }
}

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

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

@media (max-width: 767px) {

    .box_adv_ {
        flex-direction: column-reverse;
    }

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

    .row-grid .btn-style {
        font-size: 12px;
        line-height: 1.2;
    }
}

.parent li {
    font-size: 18px;
}

.menu_mobile .btn {
    font-size: 16px;
    width: 100%;
    margin-bottom: 14px;
}

.menu_mobile .parent {
    padding-left: 0;
}

.menu_mobile .children li {
    padding-left: 0;
}

.scroll--type {
    margin-bottom: 10px;
    max-height: 265px;
}

@media (max-width: 576px) {
    .city-address {
        font-size: 12px;
    }

    .scroll--type {
        max-height: 160px;
    }
}




/* --- РЎР»Р°Р№РґРµСЂ Р”Рћ Рё РџРћРЎР›Р•  */
.card_after_before {
    display: flex;
    height: 400px;
}

.card_after_before img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.card_after_before .before,
.card_after_before .after {
    padding: 0 60px;
    width: 50%;
}

.before_and_after {
    padding: 80px 0;
}

.slider_aft_bef {
    padding-bottom: 40px;
}

.swiper-pagination {
    bottom: 0;
}

.swiper-button-next:after {
    color: var(--color_brand);
    padding: 10px;
    background: rgb(255 255 255 / 30%);
    font-size: 30px;
    border-radius: 6px 0 0 6px;
}

.swiper-button-prev:after {
    color: var(--color_brand);
    padding: 10px;
    background: rgb(255 255 255 / 30%);
    font-size: 30px;
    border-radius: 0 6px 6px 0;
}

@media (max-width: 992px) {

    .card_after_before .before,
    .card_after_before .after {
        padding: 0 6px;
    }
}

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

    .card_after_before .before,
    .card_after_before .after {
        padding: 0 6px 12px;
        width: 100%;
        height: 50%;
    }
}

/* РЎР»Р°Р№РґРµСЂ Р”Рћ Рё РџРћРЎР›Р•  --- */</pre></body></html>