

/* Start:/local/templates/Lopal_new/css/styles.css?177503772731783*/
@font-face {
    font-family: "Montserrat-Regular";
    src: url("/local/templates/Lopal_new/css/../fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: "Montserrat-Bold";
    src: url("/local/templates/Lopal_new/css/../fonts/Montserrat/Montserrat-Bold.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: "Montserrat-Medium";
    src: url("/local/templates/Lopal_new/css/../fonts/Montserrat/Montserrat-Medium.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

:root {
    --green-dark: #2f7d55;
    --green-main: #499d72;
    --green-light: #00a96a;
    --red-main: #f2442e;
    --bg-light: #f4f5f7;
    --font-main: "Montserrat-Regular", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

input:focus {
    outline: none;
}


html {
    height: 100%;
}

body {
    margin: 0;
    font-family: var(--font-main);
    color: #111;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

header {
    flex: 0 0 auto;
}

.hero {
    flex: 1 0 auto;
}

footer {
    flex: 0 0 auto;
}

/* Общий контейнер */

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 16px;
    margin: 0 auto;
}

/* Шапка */

.h1_bg {
    max-width: 1200px;
    margin: 0 auto;
    font-family: "Montserrat-Medium", sans-serif;
    color: #fff;
    text-transform: uppercase;
    font-size: 40px;
    padding-top: 80px;

}

.topbar {
    position: relative;
    top: 0;
    z-index: 100;
    background: var(--green-dark);
    color: #fff;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 20px 0;
}

.logo {
    max-width: 170px;
}
.second_menu_block {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.nav {
    display: flex;
    gap: 24px;
    margin-right: 20px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
    font-family: "Montserrat-Bold", sans-serif;
    border-bottom: 2px solid transparent;
}
.nav a:hover {
    border-bottom: 2px solid #fff;
    transition: 0.3s;
}
/* Поисковик начало */
.search-box {
    width: fit-content;
    height: fit-content;
    position: relative;
    margin-right: 35px;
}
.btn-search {
    display: none;
}
.input-search {
    height: 40px;
    border-style: none;
    font-size: 18px;
    letter-spacing: 1px;
    outline: none;
    padding-right: 40px;
    color: #000;
    width: 300px;
    border-radius: 0px;
    background-color: transparent;
    border-bottom: 1px solid #000;
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}
.lab {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    right: 0;
}
.lab:before {
    display: inline-block;
    vertical-align: middle;
    content: "";
    width: 23px;
    height: 23px;
    background: url(/local/templates/Lopal_new/css/../img/search_b.svg) 0 0 no-repeat;
    background-size: cover;
}
.search-box label input, .search-box label button {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.top-bg-block {
    display: block;
    height: 195px;
    background: url(/local/templates/Lopal_new/css/../img/top-green-bg.jpg);
    background-position: bottom center;
    background-size: cover;
}

#openModal {
    cursor: pointer;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    z-index: 1000;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
    flex-direction: column;
    flex-wrap: nowrap;
}

.close {
    float: right;
    cursor: pointer;
}

.modal--open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    max-width: 400px;
    padding: 20px;
    border-radius: 8px;

    transform: translateY(-20px) scale(.95);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
}

.modal--open .modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}
/* Поисковик конец */
/* Бургер для мобилки */

.burger {
    display: none;
    width: 32px;
    height: 24px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    display: block;
    height: 3px;
    margin: 4px 0;
    background: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.burger--open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger--open span:nth-child(2) {
    opacity: 0;
}

.burger--open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero */

.hero {
    /*color: #fff;*/
}

.hero-overlay {
    background: rgba(0, 80, 50, 0.7);
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0 40px;
    gap: 40px;
}

.hero-text h1 {
    font-size: 32px;
    line-height: 1.3;
    margin: 0 0 16px;
}

.hero-text p {
    margin: 0;
    max-width: 360px;
}

.hero-product img {
    max-width: 340px;
    width: 100%;
    display: block;
}

/* VIN‑форма */

.hero-vin {
    margin-top: -24px;
    position: relative;
}

.vin_number_line {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #dadada;
    max-width: max-content;
    margin: 0 auto;
    padding: 20px 35px;
    border-radius: 5px;
    position: relative;
    z-index: 50;
}
.vin_text {
    color: #000;
    font-size: 16px;
    text-transform: uppercase;
    font-family: "Montserrat-Bold", sans-serif;
    padding: 0;
    margin: 0 20px 0 0;
}
.vin_number {
    width: 480px;
    height: 35px;
    margin-right: 20px;
}
.car_number_input_in0 {
    width: 100%;
    font-size: 16px;
    display: block;
    color: #000;
    height: 100%;
    background: #fff !important;
    border-radius: 4px;
    border: 1.5px solid #dadada !important;
}
.car_number {
    width: auto;
    height: 35px;
    position: relative;
    margin-right: 20px;
}
.car_number_img {
    height: inherit;
    position: relative;
    z-index: 1;
}
.car_number_img svg {
    display: block;
    position: relative;
    width: 156px;
    /* max-width: 100%; */
    height: inherit;
}
.car_number_input {
    position: absolute;
    top: 0;
    left: 0;
    width: 156px;
    height: 35px;
    z-index: 1;
}
.car_number_input_in1 {
    position: absolute;
    left: 15px;
    top: 5px;
    width: 90px;
    font-size: 20px;
    letter-spacing: 3px;
    display: block;
    color: #000;
    padding: 0 !important;
    text-transform: uppercase;
    border: none !important;
    background: unset !important;
}
.car_number_input_in2 {
    position: absolute;
    right: 0px;
    top: 3px;
    width: 36px;
    text-transform: uppercase;
    font-size: 17px;
    display: block;
    color: #000;
    padding: 0 !important;
    border: none !important;
    background: unset !important;
}
.search_sub {
    display: flex;
    width: 141px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    color: #fff;
    background: #499d72;
    font-size: 16px;
    padding: 7px 15px;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    font-family: "Montserrat-Bold", sans-serif;
    transition: 0.3s;
}
.search_sub:hover {
    background: #006b44;
    transition: 0.3s;
}
.search_sub img {
    height: 22px;
}
/* Категории */

.categories {
    padding: 40px 0 32px;
    background: #fff;
}

.categories h2 {
    text-transform: uppercase;
    font-size: 24px;
    font-family: "Montserrat-Bold", sans-serif;
    margin-bottom: 4.0px;
    color: #000;
}

/* О нас */

.about {
    background: url(/local/templates/Lopal_new/css/../img/bg_about_company.jpg);
    background-size: cover;
    background-position: center;
    color: #fff;
}

.about-inner {
    padding: 60px 0 70px 0;
}

.about h2 {
    margin-top: 0;
    font-size: 24px;
    color: #fff;
    font-family: "Montserrat-Bold", sans-serif;
}

.about-text {
    max-width: 470px;
}

.for_opacity {
    opacity: 0;
    transform: translateY(50px);
    transition: transform 0.9s, opacity 0.9s;
}

.about-text p {
    color: #fff;
    font-size: 14px;
    line-height: 19px;
}

/* Статистика */

.about-stats {
    background: #e73522;
    color: #fff;
    padding: 18px 0 26px;
}

.stats-grid {
    display: flex;
    text-align: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

.stat {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.grey-line {
    border-right: 1px solid #dadada;
    height: 60px;
}

.stat-value {
    font-size: 46px;
    font-family: "Montserrat-Medium", sans-serif;
    margin-right: 10px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    font-family: "Montserrat-Regular", sans-serif;
    max-width: 140px;
    text-align: left;
}

/* Представитель */

.represent {
    background: url(/local/templates/Lopal_new/css/../img/grey-bg.jpg);
    background-size: cover;
    background-position: center;
    color: #000;
    padding: 40px 0;
}

.represent h2 {
    font-size: 24px;
    text-transform: uppercase;
    font-family: "Montserrat-Bold", sans-serif;
}

.represent-text p {
    font-size: 14px;
    font-family: "Montserrat-Regular", sans-serif;
    max-width: 400px;
}

.represent-text span {
    font-size: 14px;
    font-family: "Montserrat-Bold", sans-serif;
}
.represent-docs p {
    font-size: 14px;
    font-family: "Montserrat-Regular", sans-serif;
    min-height: 51px;
    max-width: 470px;
}
.represent-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 32px;
    align-items: flex-start;
}
.represent-docs span {
    font-size: 14px;
    font-family: "Montserrat-Bold", sans-serif;
}
.represent-docs img {
    width: auto;
    border-radius: 4px;
    background: #fff;
    height: 218px;
}

/* Новости */

.news {
    padding: 40px 0 70px;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.news-header h2 {
    font-size: 24px;
    text-transform: uppercase;
    color: #000;
    font-family: "Montserrat-Bold", sans-serif;
}
.news-all {
    font-size: 12px;
    color: var(--green-main);
    text-decoration: none;
    font-family: "Montserrat-Bold", sans-serif;
    text-transform: uppercase;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.news-card {
    display: flex;
    flex-direction: column;
}

.news-img {
    height: 180px;
    width: auto;
    background-size: cover;
    background-position: top center;
    border-radius: 5px;
    margin-bottom: 20px;
}

.news-img img {
    width: 100%;
    display: block;
}

.news-body h3 {
    margin: 0 0 6px;
    font-size: 15px;
}

.news-body a {
    font-family: "Montserrat-Bold", sans-serif;
    color: #000;
    font-size: 14px;
    line-height: 19px;
    text-decoration: none;
}

.news-body time {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #ACACAB;
    font-family: "Montserrat-Regular", sans-serif;
}

/* Подвал */

.footer {
    background: var(--green-dark);
    color: #fff;
    padding: 40px 0 70px;
}
.soc_in img {
    width: 35px;
    height: auto;
    margin-right: 10px;
}
.soc_mob {
    display: none;
}
.logo_block {
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-logo p{
    font-size: 12px;
    margin: 25px 0 0 0;
}

.soc_in {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-left: 25px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
}

.footer-nav a {
    color: #fff;
    font-family: "Montserrat-Bold", sans-serif;
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
}
.footer-nav a:hover {
    border-bottom: 2px solid #fff;
    transition: 0.3s;
}
.footer-info {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    color: #5be69f;
}
.soc_mob {
    display: none;
}
.footer-info a{
    text-decoration: none;
    color: #5be69f;
}
.footer-info p{
    padding: 0 5px;
}
.mobile_bg {
    display: none;
}

/*О компании*/
.about_company {
    max-width: 1667px;
    padding-left: 75px;
    margin-top: 20px;
}
.company_info {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    margin: 40px 0 75px 0;
}
.company_info_text {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #212523;
    max-width: 570px;
    margin-right: 120px;
}
.company_info_text2 {
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    color: #fff;
    background: url('/local/templates/Lopal_new/css/../img/green_bg.jpg');
    max-width: 616px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    padding: 20px;
    border-radius: 9px;
}
.company_banner {
    background: url(/local/templates/Lopal_new/css/../img/third_china.jpg);
    max-width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.company_banner_block {
    padding: 75px 0 280px 75px;
}
.company_banner img {
    max-width: 270px;
    margin-bottom: 40px;
}
.company_banner_block p {
    font-style: italic;
    font-weight: 550;
    font-size: 40px;
    line-height: 120%;
    color: #fff;
}
.uniq_brend {
    max-width: 1620px;
    margin-left: 75px;
    padding-top: 75px;

}
.little_string_about h2 {
    position: relative;
    font-size: 40px;
    margin-left: 0;
    margin-bottom: 0;
}
.highlight-bar {
    position: absolute;
    left: -150px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 2px;
    background-color: #21925E;
    flex: none;
    order: 0;
    flex-grow: 0;
}
.for_opacity_right {
    opacity: 0;
    transform: translateX(100px);
    transition: transform 1.5s, opacity 1.5s;
}
.for_opacity_left {
    opacity: 0;
    transform: translateX(-100px);
    transition: transform 1.5s, opacity 1.5s;
}
.little_string_about {
    display: flex;
    color: #000;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-end;
    justify-content: flex-start;
    align-items: center;
    transition: 0.3s;
    margin-left: 150px;
}
.little_string_about_uniq {
    display: flex;
    color: #000;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-end;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    margin-left: 645px;
}
.little_string_about_uniq h2 {
    position: relative;
    font-size: 40px;
}
.uniq_brend_block {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 50px;
    margin-bottom: 130px;
    margin-right: 20px;
}
.uniq_brend_block_text {
    max-width: 750px;
    margin-left: 80px;
}
.uniq_brend_block_text p {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #212523;
}
.uniq_brend_block_text img {
    margin: 35px 0;
    max-width: 140px;
}
.about_certification {
    max-width: 100%;
    margin-left: 75px;
    margin-bottom: 120px;
}
.about_certification_block {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-end;
    align-items: flex-start;
    margin-top: 40px;
}
.about_certification_block p {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #212523;
    max-width: 550px;
}
.about_certification_block_text {
    padding: 35px;
    border: 1px solid #21925e;
    background: url('/local/templates/Lopal_new/css/../img/brend_bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0 1.7%;
}
.about_certification_block_text p{
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #212523;
    max-width: 350px;
}
.about_certification_block img {
    max-width: 640px;
}
.little_string_about_history {
    display: flex;
    color: #000;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-end;
    justify-content: center;
    align-items: center;
}
.lopal_history {
    margin-bottom: 130px;
}
.little_string_about_history h2 {
    position: relative;
    font-size: 40px;
}
.lopal_history_block {
    margin-top: 75px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    margin-right: 30px;
}
.lopal_history_block img {
    max-width: 620px;
}
.lopal_history_block_content {
    margin-left: 50px;
}
.history_time_line {
    display: flex;
    width: 840px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    height: 67px;
}
.first_per, .second_per, .third_per, .fourth_per {
    font-weight: 700;
    font-size: 32px;
    line-height: 110%;
    color: #cfcfcf;
    cursor: pointer;
    transition: 0.3s;
}
.first_per:hover, .second_per:hover, .third_per:hover, .fourth_per:hover {
    color: rgba(33, 146, 94, 0.7);
    transition: 0.3s;
}
.per_active {
    font-weight: 700;
    font-size: 60px;
    line-height: 110%;
    color: #21925e;
}
.history_facts_blocks {
    margin-top: 40px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: flex-start;
}
.history_facts_block:not(:last-child) {
    width: 35% !important;
}
.history_facts_block {
    width: 60%;
}
.history_fact {
    margin-bottom: 30px;
}
.history_facts_block h3 {
    margin-bottom: 30px;
}
.history_fact span {
    font-weight: 700;
    font-size: 20px;
    line-height: 110%;
    color: #21925e;
}
.history_fact p {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #212523;
    margin-top: 10px;
}
.active_history {
    display: flex !important;
    opacity: 0;
    transform: translateX(100px);
    transition: transform 1.5s, opacity 1.5s;
}
.hss {
    display: flex !important;
    opacity: 1;
    transform: unset !important;
    transition: unset !important;
}
.first_history, .second_history, .third_history, .fourth_history {
    display: none;
}

/*О компании*/
/* Адаптивность */
@media screen and (max-width: 1700px) {
    .about_certification_block img {
        max-width: 500px;
    }
}
@media (max-width: 1500px) {
    .progress-group {
        left: 5%;
    }
    .lopal_history_block img {
        max-width: 490px;
    }
    .about_certification_block img {
        max-width: 400px;
    }
    .uniq_brend_block img {
        max-width: 45%;
    }
    .uniq_brend_block_text {
        margin-left: 30px;
    }
    }
@media screen and (max-width: 1400px) {
    .uniq_brend {
        max-width: 100%;
        margin-left: 0;
        padding-top: 75px;
        padding: 40px 20px 0 20px;
    }
    .lopal_history_block_content {
        margin-left: 0;
    }
    .lopal_history_block img {
        max-width: 100%;
        margin-bottom: 35px;
    }
    .lopal_history_block {
        margin-top: 40px;
        flex-direction: column;
        justify-content: flex-start;
        margin-right: 0;
        padding: 0 20px;
    }
    .little_string_about_history {
        justify-content: flex-start;
        margin-left: 175px;
    }
    .about_certification_block p {
        max-width: 350px;
    }
    .about_certification_block_text {
        padding: 20px;
    }
    .little_string_about_uniq {
        justify-content: flex-start;
        margin-left: 155px;
    }
    .about_company {
        max-width: 100%;
        padding: 0 20px;
    }
    .company_info_text {
        margin-right: 25px;
    }
    .about_certification_block p {
        max-width: 350px;
    }
}
@media (max-width: 1270px) {
    .progress-group {
        left: 0;
        padding: 15px;
    }
    .highlight-bar {
        left: -110px;
        width: 66px;
    }
    .slide {
        background-position: bottom left;
    }
    .slider {
        height: 400px;
    }
    .topbar-inner {
        padding: 15px;
    }
    .nav {
        gap: 15px;
    }
    .progress-label {
        display: none;
    }
    .progress-item {
        width: 20%;
    }
    .vin_number_line {
        margin: 0 15px;
    }
    .about-inner {
        padding: 60px 15px 70px 15px;
    }
    .footer-nav {
        gap: 10px 5px;
        font-size: 12px;
    }
    .footer-info a {
        font-size: 14px;
    }
    .top-bg-block {
        height: 130px;
    }
    .h1_bg {
        padding-top: 40px;
        padding: 40px 15px 0 15px;
    }
    .product {
        padding: 0 15px;
    }
    .photo_and_fas {
        flex-direction: column;
        align-items: flex-start;
    }
    .main_card_img {
        width: 100%;
        height: 380px;
        margin-right: 20px;
    }
    .main_product_photo {
        height: 360px;
    }
    /*.fasovka_varint {*/
    /*    flex-direction: row;*/
    /*    max-width: 100%;*/
    /*    margin-top: 30px;*/
    /*    justify-content: flex-start;*/
    /*}*/
    /*.fasovka_varint a {*/
    /*    width: 49%;*/
    /*}*/
    .fasovka_varint a:not(:last-child){
        margin-right: 10px;
    }
}
@media screen and (max-width: 1100px) {
    .company_info_text {
        margin-bottom: 40px;
        max-width: 100%;
    }
    .uniq_brend_block_text {
        margin-left: 0;
    }
    .uniq_brend_block img {
        max-width: 100%;
        margin-bottom: 30px;
    }
    .about_certification_block_text {
        padding: 35px;
        margin: 30px 0;
    }
    .per_active {
        font-size: 45px !important;
    }
    .about_certification_block p {
        max-width: 100%;
    }
    .first_per, .second_per, .third_per, .fourth_per {
        font-size: 30px;
    }
    .about_certification_block img {
        max-width: 100%;
    }
    .history_time_line {
        width: 100%;
    }
    .about_certification {
        max-width: 100%;
        margin-left: 0;
        margin-bottom: 60px;
        padding: 0 20px;
    }
    .about_certification_block {
        flex-direction: column;
        justify-content: flex-start;
    }
    .about_certification_block p {
        max-width: 100%;
    }
}
@media (max-width: 1024px) {
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-inner {
        grid-template-columns: 1fr;
    }

    .represent-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .logo {
        max-width: 100px;
    }
    .topbar-inner {
        padding: 10px;
    }
    .nav {
        gap: 10px;
    }
    .nav a {
        font-size: 9px;
    }
    .slider {
        height: 280px;
    }
    .progress-group {
        padding: 0 10px;
    }
    .stat-value {
        font-size: 34px;
    }
    .stat-label {
        font-size: 11px;
    }
    .footer-info {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .footer-info p {
        display: none;
    }
    .vin_text {
        font-size: 10px;
        margin-right: 5px;
    }
    .vin_number_line {
        padding: 15px;
    }
    .footer-nav {
        width: 195px;
        font-size: 10px;
        margin-bottom: 20px;
        justify-content: flex-start;
    }
    .footer {
        padding: 20px 0 40px;
    }
    .h1_bg {
        font-size: 28px;
    }
}
@media screen and (max-width: 1100px) {
    .company_info {
        flex-direction: column;
        align-items: flex-start;
    }
    .highlight-bar {
        width: 33px;
        left: -50px;
    }
    .uniq_brend_block {
        flex-direction: column;
        justify-content: flex-start;
        margin-top: 40px;
        margin-bottom: 70px;
        margin-right: 0;
    }
    .product-head {
        flex-direction: column;
    }
    .product-photo {
        position: relative;
        top: 0;
        width: 100%;
    }
}
@media (max-width: 768px) {
    .nav {
        position: absolute;
        inset: 85px 0 auto;
        background: var(--green-dark);
        flex-direction: column;
        padding: 12px 16px 16px;
        gap: 12px;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }
    .company_info_text2 {
        font-weight: 600;
        font-size: 16px;
        line-height: 117%;
        padding: 15px;
    }
    .little_string_about_history {
        justify-content: flex-start;
        margin-left: 20px;
    }
    .single {
        padding: 0 10px;
    }
    .for_opacity_right {
        opacity: 0;
        transform: translateX(0) !important;
        transition: transform 1.5s, opacity 1.5s;
    }
    .nav--open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .first_per, .second_per, .third_per, .fourth_per {
        font-size: 16px;
    }
    .per_active {
        font-size: 18px !important;
    }
    .history_facts_blocks {
        margin-top: 15px;
        flex-direction: column;
        justify-content: flex-start;
    }
    .history_facts_block {
        width: 100%;
    }
    .history_facts_block:not(:last-child) {
        width: 100% !important;
    }
    .history_facts_blocks {
        margin-top: 15px;
        flex-direction: column;
        justify-content: flex-start;
    }
    .nav a {
        border-bottom: 0 solid transparent;
    }
    .nav a:hover {
        border-bottom: 0 solid #fff;
    }

    .burger {
        display: block;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
    }
    .lopal_history_block {
        margin-top: 0;
    }
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-vin {
        margin-top: 0;
    }

    .vin-form {
        flex-direction: column;
    }

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

    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: space-between;
        height: 240px;
    }
    .nav a {
        font-size: 12px;
    }
    .stats-grid {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .gr-two {
        display: none;
    }
    .stat-value {
        font-size: 21px;
    }
    .grey-line {
        border-right: 1px solid #dadada;
        height: 50px;
        margin: 0 10px;
    }
    .hero-overlay {
        display: none;
    }
    .mobile_bg {
        display: block;
        max-width: 100%;
    }
    .soc_mob {
        display: flex;
    }
    .about_certification_block {
        margin-top: 18px;
    }
    .soc_desc {
        display: none;
    }
    .soc_in {
        margin-left: 0;
        margin-top: 40px;
    }
    .footer-logo {
        max-width: 48%;
    }
    .container {
        padding: 0 10px;
    }
    .footer-top {
        align-items: flex-start;
    }
    .footer-nav a {
        font-size: 10px;
        transition: 0.3s;
        min-width: 95px;
    }
    .footer-info a {
        font-size: 10px;
        line-height: 16px;
    }
    .logo {
        max-width: 180px;
    }
    .soc_in img {
        width: 35px;
    }
    .certificates img {
        max-width: 47%;
    }
    .represent h2 {
        font-size: 20px;
    }
    .represent-grid {
        display: flex;
        gap: 15px;
        align-items: flex-start;
    }
    .certificates {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: flex-start;
        align-items: center;
    }
    .company_info {
        margin: 20px 0 40px 0;
    }
    .represent-docs img {
        height: auto;
        max-width: 100%;
    }
    .stat {
        min-width: 175px;
    }
    .about_certification {
        margin-bottom: 40px;
    }
    .little_string_about h2 {
        font-size: 24px;
    }
    .little_string_about {
        margin-left: 50px;
    }
    .topbar-inner {
        padding: 15px 10px !important;
    }
    .nav {
        margin-right: 0;
    }
    #openModal {
        cursor: pointer;
        position: absolute;
        right: 65px;
        height: 30px;
    }
    .vin_number_line {
        padding: 0 10px;
        margin: 0;
        border-radius: 0;
    }
    .vin_number_line {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .uniq_brend_block {
        margin-bottom: 40px;
        margin-top: 0;
    }
    .vin_text {
        font-size: 16px;
        margin: 15px auto;
    }
    .vin_number {
        width: 100%;
        height: 35px;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .for_opacity_right {
        opacity: 0;
        transform: translateX(0) !important;
        transition: transform 1.5s, opacity 1.5s;
    }
    .car_number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .search_sub {
        margin-bottom: 20px;
    }
    .categories {
        padding: 20px 0 0;
    }
    .little_string_about_history h2 {
        font-size: 24px;
    }
    .highlight-bar {
        width: 33px;
        left: -50px;
    }
    .catalog-section-list-line-list {
        flex-direction: column;
    }
    .catalog-section-list-line-list .catalog-section-list-item {
        width: 100%;
    }
    .catalog-section-list-item-img {
        height: 110px;
        flex-direction: column;
        margin-bottom: 15px;
        font-size: 15px;
        line-height: 20px;
        padding: 0 90px 0 20px;
    }
    .about h2 {
        font-size: 18px;
    }
    .about-inner {
        padding: 20px !important;
    }
    .top-bg-block {
        height: 110px;
    }
    .h1_bg {
        font-size: 24px;
    }
    .about_certification_block_text {
        padding: 20px;
    }
    .company_banner_block {
        padding: 20px 0 50px 20px;
    }
    .little_string_about_uniq {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .categories h2 {
        font-size: 16px;
    }
    /*.fasovka_varint a {*/
    /*    width: 24%;*/
    /*    height: auto;*/
    /*    padding: 5px;*/
    /*}*/
    .gr_fas {
        padding: 4px 5px;
        top: 10px;
        right: 10px;
    }
    .fasovka_varint img {
        height: auto;
        max-height: 96px;
    }
    .company_info_text2 {
        padding: 8px;
        font-size: 11px;
    }

    .cat-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .stat-value {
        font-size: 22px;
    }
}

/* End */


/* Start:/local/templates/Lopal_new/components/bitrix/menu/new_top_menu/style.css?1765446764625*/
/* Left menu*/
ul.left-menu
{
	list-style:none;
	margin:0; padding:0;
	margin-bottom:8px;
	position: relative; /*IE bug*/
}

ul.left-menu li
{
	padding: 10px 16px;
	background:#F5F5F5 url(/local/templates/Lopal_new/components/bitrix/menu/new_top_menu/images/left_menu_bg.gif) top repeat-x;
}

ul.left-menu li a
{
	font-size:100%;
	color:#BC262C;
	font-weight:bold;
	text-decoration:none;
}

ul.left-menu li a:visited
{
	color:#BC262C;
}

ul.left-menu li a:hover
{
	color:#BC262C;
}


ul.left-menu li a.selected:link,
ul.left-menu li a.selected:visited,
ul.left-menu li a.selected:active,
ul.left-menu li a.selected:hover
{
	color:#FC8D3D;
}




/* End */


/* Start:/local/templates/Lopal_new/components/bitrix/menu/new_bottom_menu/style.css?1765538642625*/
/* Left menu*/
ul.left-menu
{
	list-style:none;
	margin:0; padding:0;
	margin-bottom:8px;
	position: relative; /*IE bug*/
}

ul.left-menu li
{
	padding: 10px 16px;
	background:#F5F5F5 url(/local/templates/Lopal_new/components/bitrix/menu/new_bottom_menu/images/left_menu_bg.gif) top repeat-x;
}

ul.left-menu li a
{
	font-size:100%;
	color:#BC262C;
	font-weight:bold;
	text-decoration:none;
}

ul.left-menu li a:visited
{
	color:#BC262C;
}

ul.left-menu li a:hover
{
	color:#BC262C;
}


ul.left-menu li a.selected:link,
ul.left-menu li a.selected:visited,
ul.left-menu li a.selected:active,
ul.left-menu li a.selected:hover
{
	color:#FC8D3D;
}




/* End */


/* Start:/local/components/cookie.notification/templates/.default/style.css?17326293682576*/
.cookie-notification-modal{
    width:100%;
    font-size: 13px;
    position:fixed;
    bottom:0;
    left:0;
    z-index:1060;
    padding:10px;
    line-height:1.5;
    background:#e2e2e2
}
.cookie-agree{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:justify;
    -ms-flex-pack:justify;
    justify-content:space-between;
    width:100%
}
@media (max-width:767px){
    .cookie-agree{
        -webkit-box-orient:vertical;
        -webkit-box-direction:normal;
        -ms-flex-direction:column;
        flex-direction:column
    }
}
.cookie-agree__text{
    line-height:1.5;
    margin:0;
}
@media (min-width:768px){
    .cookie-agree__text{
        padding-right:10px
    }
}
@media (max-width:767px){
    .cookie-agree__text{
        margin-bottom:10px
    }
}
.cookie-agree__buttons{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex
}
@media (max-width:767px){
    .cookie-agree__buttons{
        -ms-flex-item-align:center;
        align-self:center;
        -webkit-box-pack:stretch;
        -ms-flex-pack:stretch;
        justify-content:stretch;
        width:100%
    }
}
.cookie-agree__button{
    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:#fff;
    font-size:12px;
    height:35px;
    border-radius:4px;
    -webkit-transition:color .3s ease-out,background .3s ease-out;
    transition:color .3s ease-out,background .3s ease-out;
    cursor:pointer
}
@media (min-width:768px){
    .cookie-agree__button{
        width:140px
    }
}
@media (max-width:767px){
    .cookie-agree__button{
        -webkit-box-flex:1;
        -ms-flex:1 0 140px;
        flex:1 0 140px
    }
}
.cookie-agree__button:not(:last-child){
    margin-right:10px
}
.cookie-agree__button.btn-green{
    background:#66c05d;
    border:1px solid #66c05d
}
@media (min-width:992px){
    .cookie-agree__button.btn-green:hover{
        color:#71c768;
        background:#fff
    }
}
@media (max-width:991px){
    .cookie-agree__button.btn-green:active{
        color:#71c768;
        background:#fff
    }
}
.cookie-agree__button.btn-dark{
    background:#333f46;
    border:1px solid #333f46
}
@media (min-width:992px){
    .cookie-agree__button.btn-dark:hover{
        color:#333f46;
        background:#fff
    }
}
@media (max-width:991px){
    .cookie-agree__button.btn-dark:active{
        color:#333f46;
        background:#fff
    }
}
/* End */
/* /local/templates/Lopal_new/css/styles.css?177503772731783 */
/* /local/templates/Lopal_new/components/bitrix/menu/new_top_menu/style.css?1765446764625 */
/* /local/templates/Lopal_new/components/bitrix/menu/new_bottom_menu/style.css?1765538642625 */
/* /local/components/cookie.notification/templates/.default/style.css?17326293682576 */
