@charset "UTF-8";
* {
    font-family: "Proxima Nova", sans-serif;
    font-style: normal;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    overflow-x: hidden;
}

/* Отключаем стандартный стиль чекбокса */
.checkbox-input {
    appearance: none;
    -webkit-appearance: none;
    /* для поддержки в Safari */
}

/* Стилизация чекбокса */
.checkbox-input {
    appearance: none;
    width: 1rem;
    height: 1rem;
    border: 1px solid #A4A4A4;
    border-radius: 0.25rem;
    background-color: #fff;
    cursor: pointer;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin: 0;
}

/* Оформление состояния checked */
.checkbox-input:checked {
    background-color: #015AA8;
    border-color: #015AA8;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

/* Эффект нажатия */
.checkbox-input:active {
    filter: brightness(90%);
}

/* Смена цвета границы при наведении */
.checkbox-input:hover:not(:disabled) {
    border-color: #015AA8;
}

/* Стили для чекбокса при фокусе */
.checkbox-input:focus {
    border-color: #015AA8;
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(44, 47, 54, 0.25);
}

/* Отключенный чекбокс */
.checkbox-input:disabled {
    filter: none;
    opacity: 0.5;
    cursor: not-allowed;
}

.checkbox-input:disabled ~ .checkbox-label {
    opacity: 0.5;
    cursor: not-allowed;
}

.checkbox-content {
    gap: 8px;
    display: flex;
}

.checkbox-content input {
    margin: auto;
    min-height: 16px;
    min-width: 16px;
    max-height: 16px;
    max-width: 16px;
    padding: 0 !important;
}

.checkbox-content p {
    margin-bottom: 0;
    max-width: 100% !important;
    text-align: start !important;
}

.checkbox-content a {
    text-decoration: underline !important;
}

.page-title {
    font-weight: 600;
    font-size: clamp(1.875rem, 1.696rem + 0.89vw, 2.5rem);
    line-height: clamp(2.5rem, 2.357rem + 0.71vw, 3rem);
    margin-bottom: clamp(1.875rem, 1.518rem + 1.79vw, 3.125rem);
    margin-top: clamp(1.875rem, 1.696rem + 0.89vw, 2.5rem);
}

.section-title {
    font-weight: 600;
    font-size: clamp(1.5rem, 1.214rem + 1.43vw, 2.5rem);
    line-height: clamp(2rem, 1.714rem + 1.43vw, 3rem);
    padding-bottom: 5px;
    margin-bottom: clamp(1.5rem, 1.036rem + 2.32vw, 3.125rem);
}

.section-title::after {
    content: "";
    width: 160px;
    height: 2px;
    background-color: #41474d;
    display: block;
    margin-top: 5px;
}

.section-blue {
    padding: 60px 0;
    background-color: rgba(1, 90, 168, 0.2509803922);
}

@media (min-width: 768px) and (max-width: 992px) {
    .section-blue {
        padding: 60px 0;
        background-color: transparent;
    }
}

@media (max-width: 768px) {
    .section-blue {
        padding: 35px 0;
        background-color: transparent;
    }
}

.btn {
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    border-radius: 6px;
    padding: 9px 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-blue-black {
    color: #fff;
    border: 2px solid #015AA8;
    background-color: #015AA8;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.btn-blue-black:hover {
    color: #fff !important;
    background-color: #004786 !important;
}

.btn-trnsp-black {
    color: #333940;
    background-color: transparent;
    border: 2px solid #101010;
}

.btn-trnsp-black:hover {
    color: #fff !important;
    background-color: #333940 !important;
}

.btn-trnsp-white {
    color: #fff;
    background-color: transparent;
    border: 2px solid #fff;
}

.btn-trnsp-white:hover {
    color: #101010 !important;
    background-color: #fff !important;
}

.btn-white-trnsp {
    color: #000;
    background-color: #fff;
    border: 2px solid #fff;
}

.btn-white-trnsp:hover {
    color: #fff !important;
    background-color: transparent !important;
}

.btn-black-trnsp {
    color: #fff !important;
    background-color: #333940;
    border: 1px solid #333940;
    width: 208px;
}

.btn-black-trnsp:hover {
    color: #333940 !important;
    background-color: transparent !important;
    border: 1px solid #333940;
}

.btn-red-trnsp {
    color: #fff;
    background-color: #EC1B2E;
    border: 2px solid #EC1B2E;
}

.btn-red-trnsp:hover {
    color: #EC1B2E !important;
    background-color: transparent !important;
}

.btn-trnsp-red {
    color: #EC1B2E;
    background-color: transparent;
    border: 2px solid #EC1B2E;
}

.btn-trnsp-red:hover {
    color: #fff !important;
    background-color: #EC1B2E !important;
}

header {
    z-index: 9;
    position: relative;
    top: 0;
}

header .header_upper {
    background-color: #101010;
    padding: 10px 0;
}

header .header_upper > div, header .header_upper-contacts > div > div, header .header_upper-contacts > div > a {
    color: #fff;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-decoration: none;
}

header .header_upper-contacts {
    column-gap: 60px;
}

header .header_upper-contacts > div {
    column-gap: 12px;
}

.sticky-header {
    z-index: 100;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.1s ease;
    background-color: #fff;
    min-height: 66px;
    border-bottom: 1px solid #C5C5C5;
}

.sticky-header.active {
    -webkit-box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.sticky-header .header_mid {
    background: transparent;
}

.sticky-header .header_mid > div {
    column-gap: 110px;
}

@media (max-width: 1400px) {
    .sticky-header .header_mid > div {
        column-gap: 30px;
    }
}

.sticky-header .header_mid.scroll {
    padding: 5px 0;
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.sticky-header .header_mid-contacts {
    gap: 12px;
}

.sticky-header .header_mid .logo {
    width: 100%;
    height: 100%;
    max-width: 224px;
}

.sticky-header .header_mid #logo {
    background: #fff;
    position: relative;
    z-index: 1;
}

.sticky-header .header_mid #logo img {
    height: clamp(2.5rem, 1.911rem + 2.95vw, 4.563rem);
    padding-right: 12px;
}

.sticky-header .header_mid #logo_bash img {
    height: 24px;
}

.sticky-header .header_mid nav {
    column-gap: 40px;
}

.sticky-header .header_mid nav .btn.btn-black-trnsp {
    font-size: 16px;
}

.sticky-header .header_mid nav .link,
.sticky-header .header_mid nav .links {
    font-style: normal;
    white-space: nowrap;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #000;
    padding: 22px 0;
    text-decoration: none;
    transition: all 0.2s ease;
    column-gap: 10px;
    /* вложенные подсписки-аккордеоны по желанию */
}

.sticky-header .header_mid nav .link > a,
.sticky-header .header_mid nav .links > a {
    font-style: normal;
    white-space: nowrap;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #000;
    text-decoration: none;
    transition: all 0.2s ease;
    column-gap: 10px;
}

.sticky-header .header_mid nav .link--service a,
.sticky-header .header_mid nav .links--service a {
    white-space: wrap;

}

.sticky-header .header_mid nav .link > img,
.sticky-header .header_mid nav .links > img {
    filter: brightness(0);
    transition: filter 0.3s ease;
}

.sticky-header .header_mid nav .link .catalogList,
.sticky-header .header_mid nav .links .catalogList {
    display: flex;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    background-color: #F3F3F3;
    position: absolute;
    top: 100%;
    overflow-y: auto;
    left: 0;
    right: 0;
    border: 1px solid #E4E4E4;
    box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.1019607843);
    margin: 0 auto;
    max-width: 1070px;
    height: 459px;
}

.sticky-header .header_mid nav .link .serviceList,
.sticky-header .header_mid nav .links .serviceList {
    display: flex;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    background-color: #F3F3F3;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: fit-content;
    height: fit-content;
}

.sticky-header .header_mid nav .link .catalogList-line,
.sticky-header .header_mid nav .links .catalogList-line {
    width: 1px;
    height: 340px;
    background-color: #C5C5C5;
}

.sticky-header .header_mid nav .link .serviceList-main,
.sticky-header .header_mid nav .links .serviceList-main {
    list-style: none;
    margin: 0;
    padding: 16px 12px;
    max-width: 100%;
}

.sticky-header .header_mid nav .link .catalogList-main,
.sticky-header .header_mid nav .links .catalogList-main {
    list-style: none;
    margin: 0;
    padding: 30px 30px 0 30px;
    width: 280px;
    flex: 1;
}

.sticky-header .header_mid nav .link .catalogList-main li,
.sticky-header .header_mid nav .links .catalogList-main li {
    /*cursor: pointer;*/
    padding: 8px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
}

.sticky-header .header_mid nav .link .serviceList-main li,
.sticky-header .header_mid nav .links .serviceList-main li {
    cursor: pointer;
    padding: 10px 5px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}

.sticky-header .header_mid nav .link .serviceList-main li:not(:last-child),
.sticky-header .header_mid nav .links .serviceList-main li:not(:last-child) {
    margin-bottom: 11px;
    padding: 10px 5px;
}

.sticky-header .header_mid nav .link .catalogList-main li:hover,
.sticky-header .header_mid nav .link .catalogList-main li.active,
.sticky-header .header_mid nav .links .catalogList-main li:hover,
.sticky-header .header_mid nav .links .catalogList-main li.active {
    background: #0A5BD7;
    color: #fff;
}

.sticky-header .header_mid nav .link .serviceList-main li:hover,
.sticky-header .header_mid nav .link .serviceList-main li.active,
.sticky-header .header_mid nav .links .serviceList-main li:hover,
.sticky-header .header_mid nav .links .serviceList-main li.active {
    background: #0A5BD7;
    color: #fff;
}

.sticky-header .header_mid nav .link .catalogList-sub,
.sticky-header .header_mid nav .links .catalogList-sub {
    flex: 1;
    padding: 34px 0 0 70px;
}

.sticky-header .header_mid nav .link .catalogList-sub > ul,
.sticky-header .header_mid nav .links .catalogList-sub > ul {
    display: none;
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.sticky-header .header_mid nav .link .catalogList-sub > ul.active,
.sticky-header .header_mid nav .links .catalogList-sub > ul.active {
    display: block;
}

.sticky-header .header_mid nav .link .catalogList-sub li,
.sticky-header .header_mid nav .links .catalogList-sub li {
    margin: 8px 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}

.sticky-header .header_mid nav .link .catalogList-sub li:hover,
.sticky-header .header_mid nav .links .catalogList-sub li:hover {
    color: #0A5BD7;
}

.sticky-header .header_mid nav .link .catalogList-sub li > li:hover,
.sticky-header .header_mid nav .links .catalogList-sub li > li:hover {
    color: #000000;
}

.sticky-header .header_mid nav .link .catalogList-sub li.has-children > ul,
.sticky-header .header_mid nav .links .catalogList-sub li.has-children > ul {
    display: none;
    margin-top: 6px;
    padding-left: 16px;
}

.sticky-header .header_mid nav .link .catalogList-sub li.has-children.open > ul,
.sticky-header .header_mid nav .links .catalogList-sub li.has-children.open > ul {
    display: block;
}

.sticky-header .header_mid nav .link .catalogList-sub li.has-children svg,
.sticky-header .header_mid nav .links .catalogList-sub li.has-children svg {
    vertical-align: middle;
    transition: transform 0.2s;
}

.sticky-header .header_mid nav .link .catalogList-sub li.has-children.open svg,
.sticky-header .header_mid nav .links .catalogList-sub li.has-children.open svg {
    transform: rotate(180deg);
}

.sticky-header .header_mid nav .link .ownerGrid,
.sticky-header .header_mid nav .links .ownerGrid {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    background-color: #fff;
    padding: 20px;
    position: absolute;
    top: 100%;
    overflow-y: auto;
    border: 1px solid #E4E4E4;
    box-shadow: 7px 10px 37px rgba(11, 69, 127, 0.07);
}

.sticky-header .header_mid nav .link .ownerGrid > div > div,
.sticky-header .header_mid nav .links .ownerGrid > div > div {
    row-gap: 40px;
    column-gap: 50px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
}

.sticky-header .header_mid nav .link .ownerGrid a,
.sticky-header .header_mid nav .links .ownerGrid a {
    text-decoration: none !important;
}

.sticky-header .header_mid nav .link .ownerGrid-el,
.sticky-header .header_mid nav .links .ownerGrid-el {
    flex-grow: 1;
}

.sticky-header .header_mid nav .link .ownerGrid-el img,
.sticky-header .header_mid nav .links .ownerGrid-el img {
    max-height: 160px;
    max-width: 275px;
}

.sticky-header .header_mid nav .link .ownerGrid-el > div h2,
.sticky-header .header_mid nav .links .ownerGrid-el > div h2 {
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 0;
    color: #000;
}

.sticky-header .header_mid nav .link .ownerGrid-el > div p,
.sticky-header .header_mid nav .links .ownerGrid-el > div p {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #000;
}

.sticky-header .header_mid nav .link:hover,
.sticky-header .header_mid nav .links:hover {
    color: #1862E5;
}

.sticky-header .header_mid nav .link:hover img,
.sticky-header .header_mid nav .links:hover img {
    filter: brightness(1);
}

.sticky-header .header_mid nav .link:hover .catalogList,
.sticky-header .header_mid nav .links:hover .catalogList {
    opacity: 1;
    pointer-events: auto;
}

.sticky-header .header_mid nav .link:hover .serviceList,
.sticky-header .header_mid nav .links:hover .serviceList {
    opacity: 1;
    pointer-events: auto;
}

.sticky-header .header_mid nav .link:hover,
.sticky-header .header_mid nav .links:hover {
    color: #1862E5;
}

.sticky-header .header_mid nav .link:hover img,
.sticky-header .header_mid nav .links:hover img {
    filter: brightness(1);
}

.sticky-header .header_mid nav .link:hover .ownerGrid,
.sticky-header .header_mid nav .links:hover .ownerGrid {
    opacity: 1;
    pointer-events: auto;
}

.sticky-header .header_mid-burger {
    display: block;
    position: relative;
    width: 50px;
    height: 30px;
    cursor: pointer;
    padding: 0 !important;
}

.sticky-header .header_mid-burger::after, .sticky-header .header_mid-burger::before,
.sticky-header .header_mid-burger div {
    position: absolute;
    width: 50px;
    height: 2px;
    background: #015AA8;
}

.sticky-header .header_mid-burger::after, .sticky-header .header_mid-burger::before {
    content: "";
}

.sticky-header .header_mid-burger::after {
    bottom: 3.5px;
}

.sticky-header .header_mid-burger::before {
    top: 3.5px;
}

footer {
    background-color: #f3f3f3;
    color: #101010;
}

footer p {
    margin-bottom: 0;
}

.footerTop {
    padding: clamp(1.875rem, 1.339rem + 2.68vw, 3.75rem) 10px clamp(3.125rem, 1.339rem + 8.93vw, 9.375rem) !important;
    border-bottom: #c5c5c5 1px solid;
    display: flex;
    justify-content: space-between;
    gap: 77px;
}

span[itemprop=telephone] {
    white-space: nowrap;
}

.footerTop__logo {
    width: 119px;
    height: auto;
}

.footerTop__logo img {
    width: 100%;
    height: 100%;
}

.footerTop-wrapper-common {
    display: flex;
    gap: clamp(1.875rem, 0.455rem + 2.27vw, 2.5rem);
    flex-grow: 1;
}

.footerTop-wrapper1 {
    display: flex;
    gap: clamp(1.875rem, 0.455rem + 2.27vw, 2.5rem);
}

.footerTop-wrapper2 {
    display: flex;
    gap: clamp(1.875rem, 0.455rem + 2.27vw, 2.5rem);
}

.footerTop__links p {
    color: #101010 !important;
}

.footerTop__links {
    display: flex;
    flex-direction: column;
    gap: clamp(0.625rem, 0.518rem + 0.54vw, 1rem);
}

.footerTop__links a {
    color: inherit;
}

.footerTop__subtitle {
    font-weight: 600;
    font-size: clamp(1rem, 0.964rem + 0.18vw, 1.125rem);
    line-height: 24px;
    /* margin-bottom: 0 !important; */
}

.footerTop__links nav {
    display: flex;
    flex-direction: column;
    gap: clamp(0.25rem, 0.179rem + 0.36vw, 0.5rem);
}

.footerTop__links nav a {
    font-size: clamp(0.875rem, 0.839rem + 0.18vw, 1rem);
}

.footerTop__numbers {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: clamp(0.5rem, 0.464rem + 0.18vw, 0.625rem);
}
.footerTop__phone-title {
    font-weight: 600;
    line-height: 150%;
    font-size: clamp(14px, 13.43px + 0.18vw, 16px);
}
.footerTop__phone-link {
    font-weight: 600;
    line-height: 24px;
    transition: color 3ms ease-in;
}
.footerTop__phone-link, .footerTop__phone-clock{
    display: flex;
    gap: 4px;
    font-size: clamp(14px, 13.43px + 0.18vw, 16px);
}
.footerTop__phone-link img, .footerTop__phone-clock img{
    height: 16px;
    width: 16px;
}

.footerTop__phone-link:hover, .footerTop__email:hover {
    color: #0A56A2;

}

.footerTop__address {
    margin-top: clamp(0.5rem, 0.357rem + 0.71vw, 1rem);
}

.footerTop__email {
    font-weight: 600;
    font-size: clamp(0.875rem, 0.839rem + 0.18vw, 1rem);
    line-height: 24px;
    margin-top: 15px;
    transition: color 3ms ease-in;
    display: block;
    margin: 10px auto;
}

.work-time__title {
    font-weight: 600;
    margin-bottom: 6px;
}

.socials {
    display: flex;
    gap: 16px;
}

.socials__title {
    font-weight: 600;
}

.socials__item {

}

.footerTop__btn {
    width: 208px;
}

.footerBottom {
    font-size: clamp(0.75rem, 0.714rem + 0.18vw, 0.875rem);
    line-height: clamp(1.25rem, 1.179rem + 0.36vw, 1.5rem);
    display: flex;
    gap: 40px;
    justify-content: space-between;
    padding-top: clamp(0.625rem, 0.446rem + 0.89vw, 1.25rem) !important;
    padding-bottom: clamp(1.875rem, 1.696rem + 0.89vw, 2.5rem) !important;
}

.footerBottom div {
    display: flex;
    gap: 30px;

}

.footerBottom a {
    color: #41474d !important;
    text-align: center;
    text-decoration: underline;
}

.footerBottom p {
    color: #41474d !important;
    text-align: center;
}

.footerBottom p a {
    color: #41474D !important;
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .footerTop__logo {
        width: 95px;
    }

    .footerTop-wrapper1 {
        display: flex;
        gap: clamp(1.875rem, 0.455rem + 2.27vw, 2.5rem);
        flex-direction: column-reverse;
        justify-content: flex-end;
    }
}

@media (max-width: 880px) {
    .footerTop__logo {
        width: 83px;
    }

    .footerTop {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        gap: 30px;
    }

    .footerTop-wrapper-common {
        display: flex;
        gap: 10px;
        flex-grow: 1;
    }

    .footerTop-wrapper1 {
        display: flex;
        gap: 20px;
        justify-content: flex-end;
        flex-direction: column-reverse;
    }

    .footerTop-wrapper2 {
        display: flex;
        gap: clamp(1.875rem, 0.455rem + 2.27vw, 2.5rem);
        flex-direction: column;
    }

    .footerTop__links {
        width: 264px;
    }
}

@media (max-width: 999px) {

    .footerBottom div {
        gap: 4px;
        flex-direction: column;
    }

    .footerBottom a {
        text-align: start;
    }

}

@media (max-width: 575px) {

    .footerBottom {
        gap: 15px;
        flex-direction: column;
    }

    .footerBottom p {
        text-align: start;
    }

}

@media (max-width: 558px) {
    .footerTop__logo {
        width: 65px;
    }

    .footerTop-wrapper-common {
        display: flex;
        gap: 10px;
        flex-grow: 1;
        justify-content: flex-start;
        flex-direction: column;
    }

    .footerTop__links {
        width: auto;
    }

    .footerTop__numbers {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 10px;
    }
}

.mainBlock {
    overflow: hidden;
}

.mainBlock .swiper-pagination {
    /*position: relative;*/
    display: flex;
    align-items: center;
    -moz-column-gap: 12px;
    column-gap: 12px;
    justify-content: center;
    bottom: 32px;
}

.mainBlock .swiper-pagination .swiper-pagination-bullet {
    opacity: 1;
    background-color: #4E525F;
}

.mainBlock .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #fff;
}

.mainBlockSlider-arrows {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 20px);
    max-width: 1410px;
}

.mainBlockSlider-arrows .swiper-button-prev,
.mainBlockSlider-arrows .swiper-button-next {
    position: relative;
    width: 40px;
    height: 40px;
    left: unset;
    right: unset;
    top: unset;
    margin-top: 0;
}

.mainBlockSlider-arrows .swiper-button-prev img,
.mainBlockSlider-arrows .swiper-button-next img {
    width: 100%;
    height: 100%;
}

.mainBlockSlider-arrows .swiper-button-prev::after, .mainBlockSlider-arrows .swiper-button-prev::before,
.mainBlockSlider-arrows .swiper-button-next::after,
.mainBlockSlider-arrows .swiper-button-next::before {
    content: unset;
}

.mainBlockSlider .swiper-slide {
    position: relative;
}

.mainBlockSlider .swiper-slide .photo img {
    width: 100%;
    /*height: 710px;*/
    object-fit: cover;
}

@media (max-width: 767.96px) {
    .mainBlockSlider .swiper-slide .photo--birthday img {
        height: 450px !important;
    }
}

@media (max-width: 575.96px) {
    .mainBlockSlider .swiper-slide .photo--birthday img {
        height: 300px !important;
    }
}

.mainBlockSlider .swiper-slide .info {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
}

@media (max-width: 768px) {
    .mainBlockSlider .swiper-slide .info {
        top: 11%;
        left: 8%;
    }
}

.mainBlockSlider .swiper-slide .info-upper {
    row-gap: 60px;
    /*max-width: 90dvw;*/
}

@media (max-width: 568px) {
    .mainBlockSlider .swiper-slide .info-upper {
        max-width: 80dvw;
    }
}

.mainBlockSlider .swiper-slide .info-upper .text-header {
    color: #FFF;
    font-size: clamp(1.625rem, 1.196rem + 2.14vw, 3.125rem) !important;
    font-weight: 700;
    line-height: normal;
}

.mainBlockSlider .swiper-slide .info-upper .text-description {
    color: #FFF;
    font-size: 48px;
    font-weight: 700;
    line-height: 125%;
}

.mainBlockSlider .swiper-slide .info-upper .text-price {
    color: #FFF;
    font-size: clamp(0.875rem, 0.679rem + 0.98vw, 1.563rem);
    font-weight: 500;
    line-height: normal;
}

.mainBlockSlider .swiper-slide .info-upper .text-spec {
    row-gap: 25px;
}

.mainBlockSlider .swiper-slide .info-upper .text-spec .text-header {
    color: #FFF;
    font-size: clamp(1.625rem, 1.196rem + 2.14vw, 3.125rem) !important;
    font-weight: 700;
    line-height: 95%;
}

.mainBlockSlider .swiper-slide .info-upper .text-spec .text-description {
    font-size: 30px;
    font-weight: 700;
    line-height: 125%;
    color: #FFF;
}

.mainBlockSlider .swiper-slide .info-upper .text-spec .text-attention {
    font-size: 28px;
    font-weight: 700;
    line-height: 125%;
    color: #FFF;
}

.mainBlockSlider .swiper-slide .info-upper .btns {
    column-gap: 10px;
}

.mainBlockSlider .swiper-slide .info-bottom > div {
    padding: 40px 25px;
}

.mainBlockSlider .swiper-slide .info-bottom > div .swiper-pagination {
    position: relative;
    text-align: start;
    display: flex;
    align-items: center;
    column-gap: 12px;
    justify-content: start;
}

.mainBlockSlider .swiper-slide .info-bottom > div .swiper-pagination .swiper-pagination-bullet {
    opacity: 1;
    background-color: #4E525F;
}

.mainBlockSlider .swiper-slide .info-bottom > div .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #fff;
}

.mainBlockSlider .swiper-slide .info-bottom > div p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    max-width: 590px;
}

.mainBlockSlider .swiper-slide .info-bottom > div:nth-of-type(1) {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(196, 196, 196, 0) 156.08%);
    row-gap: 14px;
    width: 340px;
}

.mainBlockSlider .swiper-slide .info-bottom > div:nth-of-type(1) p {
    white-space: nowrap;
}

.mainBlockSlider .swiper-slide .info-bottom > div:nth-of-type(2) {
    background-color: #31343C;
}

.mainBlockSlider .swiper-slide .info-bottom > div:nth-of-type(3) {
    padding: 40px;
    width: 340px;
}

.mainBlockSlider .swiper-slide .info-bottom > div:nth-of-type(3) .btn {
    white-space: nowrap;
}

@media (max-width: 767.96px) {
    .mainBlockSlider .swiper-slide .info--birthday {
        height: 520px !important;
    }
}

.favs {
    padding: 70px 0 35px;
}

.favs > div {
    gap: 10px;
}

.favs-item {
    background: #FFF;
    padding: 10px 15px;
    gap: 24px;
}

.favs-item p {
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: #101010;
    margin: 0;
}

.favs-item img {
    max-width: 40px;
    max-height: 40px;
    width: 100%;
    height: 100%;
    min-width: 30px;
    min-height: 30px;
}

.models {
    padding: 70px 0;
    overflow: hidden;
}

.models .desc-chars_switcher div {
    padding: 10px 15px;
    background-color: #fff;
    border: 2px solid #0A0A0A;
    color: rgb(44, 47, 54);
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
}

.models .desc-chars_switcher div.active {
    cursor: unset;
    background-color: rgb(44, 47, 54);
    color: #fff;
}

@media (max-width: 576px) {
    .models .desc-chars_switcher div {
        width: 100%;
        font-size: 14px;
    }
}

.models-header {
    row-gap: 30px;
    position: relative;
}

.models-header .stickers {
    padding: 12px 20px;
    font-size: 20px;
    line-height: 100%;
    color: white;
    background: #101010;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.models-header .stickers p {
    white-space: nowrap;
}

.models-header .stickers-wrap {
    column-gap: 40px;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.modelsSwiper {
    row-gap: 40px;
}

.modelsSwiper .model {
    opacity: 0 !important;
    row-gap: 30px;
}

@media (max-width: 576px) {
    .modelsSwiper .model-container {
        flex-direction: column;
        gap: 10px;
    }
}

.modelsSwiper .model-name {
    color: #101010;
    font-size: 40px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0;
}

.modelsSwiper .model-nameWrap {
    row-gap: 15px;
}

.modelsSwiper .model-nameWrap span {
    color: #101010;
    font-size: 24px;
    font-weight: 400;
    line-height: 110%;
    margin-bottom: 0;
}

.modelsSwiper .model-switcherWrap {
    row-gap: 16px;
}

.modelsSwiper .model-switcherWrap > p {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    color: #8C8C8C;
}

.modelsSwiper .model-switcher > div {
    user-select: none;
    white-space: nowrap;
    position: relative;
    border-radius: 0;
    background: none;
    opacity: 1;
    width: unset;
    height: unset;
    margin: 0 !important;
    color: #8C8C8C;
    padding: 0 18px 10px 18px;
    font-weight: 500;
    font-size: 24px;
    line-height: 140%;
    transition: color 0.3s ease;
}

.modelsSwiper .model-switcher > div:after {
    content: "";
    height: 2px;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    position: absolute;
    background-color: #8C8C8C;
    transition: background-color 0.3s ease;
}

.modelsSwiper .model-switcher > div.active {
    color: #000;
}

.modelsSwiper .model-switcher > div.active:after {
    background-color: #000;
}

.modelsSwiper .model .photo img {
    display: block;
    width: 100%;
    z-index: 1;
}

.modelsSwiper .model .photo .popover {
    border-radius: 50%;
    z-index: 10;
    background-color: unset;
    border: unset;
}

.modelsSwiper .model .photo .popover-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: 80%;
    left: -285%;
    z-index: 11;
    transform: translate(0, 10px);
    background-color: rgb(44, 47, 54);
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.0588235294), 0 0 4px 0 rgba(0, 0, 0, 0.0392156863);
    width: 180px;
}

@media (max-width: 768px) {
    .modelsSwiper .model .photo .popover-content {
        padding: 8px;
        bottom: 50%;
        width: 150px;
        left: -230%;
    }
}

.modelsSwiper .model .photo .popover-content p {
    text-align: center;
    font-weight: 400;
    font-size: 12px;
    line-height: 110%;
    color: #fff;
    margin: 0;
}

.modelsSwiper .model .photo .popover:hover .popover-content {
    z-index: 10;
    opacity: 1;
    visibility: visible;
    transform: translate(0, -20px);
    transition: all 0.5s cubic-bezier(0.75, -0.02, 0.2, 0.97);
}

.modelsSwiper .model .photo .J7-1 {
    top: 210px;
    left: 120px;
}

@media (max-width: 1400px) {
    .modelsSwiper .model .photo .J7-1 {
        top: 180px;
        left: 80px;
    }
}

@media (max-width: 992px) {
    .modelsSwiper .model .photo .J7-1 {
        top: 45%;
        left: 10%;
    }
}

@media (max-width: 768px) {
    .modelsSwiper .model .photo .J7-1 {
        top: 37%;
        left: 10%;
    }
}

@media (max-width: 576px) {
    .modelsSwiper .model .photo .J7-1 {
        top: 40%;
        left: 10%;
    }
}

.modelsSwiper .model .photo .J7-2 {
    top: 210px;
    left: 330px;
}

@media (max-width: 1400px) {
    .modelsSwiper .model .photo .J7-2 {
        top: 180px;
        left: 270px;
    }
}

@media (max-width: 992px) {
    .modelsSwiper .model .photo .J7-2 {
        top: 45%;
        left: 40%;
    }
}

@media (max-width: 768px) {
    .modelsSwiper .model .photo .J7-2 {
        top: 35%;
        left: 40%;
    }
}

@media (max-width: 576px) {
    .modelsSwiper .model .photo .J7-2 {
        top: 35%;
        left: 40%;
    }
}

.modelsSwiper .model .photo .J7-3 {
    top: 270px;
    left: 330px;
}

@media (max-width: 1400px) {
    .modelsSwiper .model .photo .J7-3 {
        top: 220px;
        left: 270px;
    }
}

@media (max-width: 992px) {
    .modelsSwiper .model .photo .J7-3 {
        top: 56%;
        left: 38%;
    }
}

@media (max-width: 768px) {
    .modelsSwiper .model .photo .J7-3 {
        top: 47%;
        left: 38%;
    }
}

@media (max-width: 576px) {
    .modelsSwiper .model .photo .J7-3 {
        top: 45%;
        left: 35%;
    }
}

.modelsSwiper .model .photo .J7-4 {
    top: 340px;
    left: 450px;
}

@media (max-width: 1400px) {
    .modelsSwiper .model .photo .J7-4 {
        top: 280px;
        left: 380px;
    }
}

@media (max-width: 992px) {
    .modelsSwiper .model .photo .J7-4 {
        top: 70%;
        left: 55%;
    }
}

@media (max-width: 768px) {
    .modelsSwiper .model .photo .J7-4 {
        top: 60%;
        left: 54%;
    }
}

@media (max-width: 576px) {
    .modelsSwiper .model .photo .J7-4 {
        top: 55%;
        left: 50%;
    }
}

.modelsSwiper .model .photo .J8-1 {
    top: 50%;
    left: 12%;
}

@media (max-width: 768px) {
    .modelsSwiper .model .photo .J8-1 {
        top: 40%;
        left: 12%;
    }
}

.modelsSwiper .model .photo .J8-2 {
    top: 45%;
    left: 40%;
}

@media (max-width: 768px) {
    .modelsSwiper .model .photo .J8-2 {
        top: 37%;
        left: 40%;
    }
}

.modelsSwiper .model .photo .J8-3 {
    top: 60%;
    left: 50%;
}

@media (max-width: 768px) {
    .modelsSwiper .model .photo .J8-3 {
        top: 50%;
        left: 50%;
    }
}

.modelsSwiper .model .photo .J8-4 {
    top: 40%;
    left: 70%;
}

@media (max-width: 768px) {
    .modelsSwiper .model .photo .J8-4 {
        top: 30%;
        left: 70%;
    }
}

.modelsSwiper .model .desc {
    row-gap: 30px;
    min-width: 400px;
}

.modelsSwiper .model .desc-chars {
    row-gap: 40px;
}

.modelsSwiper .model .desc-chars_switcher_motors {
    gap: 16px;
}

.modelsSwiper .model .desc-chars_switcher_motors p {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    color: #8C8C8C;
}

.modelsSwiper .model .desc-chars .desc-chars_switcher_content {
    row-gap: 20px;
    column-gap: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
}

.modelsSwiper .model .desc-chars .desc-chars_switcher_content > div {
    max-width: 130px;
}

.modelsSwiper .model .desc-chars .desc-chars_switcher_content > div .val_desc {
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    color: #8C8C8C;
    margin-bottom: 0;
}

.modelsSwiper .model .desc-chars .desc-chars_switcher_content > div .val {
    color: #101010;
    font-size: 28px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 8px;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .modelsSwiper .model .desc-chars .desc-chars_switcher_content {
        max-width: 244px;
    }
}

.modelsSwiper .model .desc-btns {
    max-width: 745px;
    gap: 15px !important;
}

.modelsSwiper .model.swiper-slide-active {
    opacity: 1 !important;
}

.modelsSwiper .swiper-pagination {
    position: unset;
}

.modelsSwiper .swiper-pagination .swiper-pagination-bullet {
    user-select: none;
    white-space: nowrap;
    position: relative;
    border-radius: 0;
    opacity: 1;
    width: unset;
    height: unset;
    margin: 0 !important;
    padding: 8px 13px;
    background-color: #fff;
    border: 2px solid #101010;
    color: #101010;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
}

.modelsSwiper .swiper-pagination .swiper-pagination-bullet-active {
    cursor: unset;
    background-color: #101010;
    color: #fff;
}

.specials-header h2,
.services-header h2,
.exterior-header h2,
.interior-header h2,
.technologies-header h2,
.news-header h2,
.models-header h2,
.specialsOffers-header h2 {
    color: #101010;
    font-size: 40px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0;
}

.specials {
    padding: 90px 0;
    overflow-x: hidden;
}

.specials > div {
    row-gap: 50px;
}

.specials-list {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.specials-list-el {
    padding: 40px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
}

.specials-list-el:nth-of-type(1) {
    grid-column: span 3;
}

.specials-list-el:nth-of-type(1) .content {
    max-width: 585px;
}

.specials-list-el:nth-of-type(2) {
    grid-column: span 1;
}

.specials-list-el:nth-of-type(3) {
    grid-column: span 2;
}

.specials-list-el .background {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -2;
}

.specials-list-el::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: transparent;
    z-index: -1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.specials-list-el .content {
    row-gap: 40px;
}

.specials-list-el .content h3 {
    color: #FFF;
    font-size: 40px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0;
}

.specials-list-el .content p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0;
}

.mobileApplication {
    padding: 90px 0;
}

.mobileApplication > div {
    gap: 40px;
}

.mobileApplication-info {
    row-gap: 35px;
    max-width: 470px;
}

.mobileApplication-info h2 {
    color: #101010;
    font-size: 48px;
    font-weight: 700;
    line-height: normal;
}

.mobileApplication-info p {
    color: #8C8C8C;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
}

.mobileApplication-photo img {
    width: 100%;
}

.offer {
    padding: 150px 0;
    position: relative;
    z-index: 0;
}

.offerWrap {
    padding: 90px 0;
}

.offer-bckg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-size: cover;
    background-position: right center;
    z-index: -1;
}

.offer-bckg::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(196, 196, 196, 0) 156.08%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.offer-info {
    row-gap: 30px;
    width: 40%;
}

.offer-info h2 {
    color: #FFF;
    font-size: 40px;
    font-weight: 700;
    line-height: normal;
}

.offer-info p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.aboutDealer {
    padding: 90px 0;
}

.aboutDealer > div {
    column-gap: 40px;
}

.aboutDealer-photo {
    height: 100%;
}

.aboutDealer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aboutDealer-info {
    row-gap: 40px;
    width: 45%;
}

.aboutDealer-info h2 {
    color: #101010;
    font-size: 48px;
    font-weight: 700;
    line-height: normal;
}

.aboutDealer-info p {
    color: #8C8C8C;
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
}

.services {
    padding: 90px 0;
}

.services > div {
    row-gap: 50px;
}

.services-content {
    row-gap: 80px;
}

.services-content-el {
    column-gap: 70px;
}

.services-content-el .photo {
    width: 50%;
}

.services-content-el .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-content-el .info {
    width: 50%;
    row-gap: 30px;
}

.services-content-el .info h3 {
    color: #101010;
    font-size: 36px;
    font-weight: 700;
    line-height: normal;
}

.services-content-el .info p {
    color: #8C8C8C;
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
}

.contacts {
    gap: 60px;
}

.contacts-map {
    max-width: 594px;
    height: 340px;
    flex: 1 0 0;
}

.contacts-map iframe {
    width: 100%;
    height: 100%;
}

.contacts-info {
    gap: 40px;
    flex: 1 0 0;
}

.contacts-info h2 {
    color: #101010;
    font-size: 40px;
    font-weight: 700;
    line-height: 120%;
}

.contacts-info > div {
    gap: 30px;
}

.contacts-info > div a:not(.btn) {
    color: #101010;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    column-gap: 18px;
}

.contacts-info > div a:not(.btn) img {
    width: 30px;
    height: auto;
}

.modelMainBlock-info {
    position: absolute;
    padding-bottom: 110px;
    padding-top: 110px;
    z-index: 1;
}

.modelMainBlock-info > div {
    row-gap: 50px;
}

.modelMainBlock-info .text {
    row-gap: 20px;
}

.modelMainBlock-info .text h1 {
    color: #FFF;
    font-size: 80px;
    font-weight: 700;
    line-height: normal;
}

.modelMainBlock-info .text p {
    color: #FFF;
    font-size: 48px;
    font-weight: 700;
    line-height: normal;
}

.modelMainBlock-info .text h2 {
    color: #FFF;
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
}

.modelMainBlock-info .btns {
    gap: 10px;
}

.modelMainBlock-photo img {
    width: 100%;
    min-height: 710px;
    object-fit: cover;
}

.modelColors {
    padding: 180px 0 90px;
}

.modelColors-header {
    row-gap: 30px;
}

.modelColors-header h2 {
    color: #101010;
    font-size: 64px;
    font-weight: 700;
    line-height: normal;
}

.modelColors-header p {
    color: #101010;
    font-size: 24px;
    font-weight: 400;
    line-height: 110%;
}

.modelColors-data {
    row-gap: 60px;
}

.modelColors .chars_content {
    row-gap: 20px;
    column-gap: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
}

.modelColors .chars_content .val_desc {
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    color: #8C8C8C;
}

.modelColors .chars_content .val {
    color: #101010;
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
}

.modelColors .colorsSwiper .swiper-pagination {
    position: unset;
    padding-top: 50px;
}

.modelColors .colorsSwiper .swiper-pagination .swiper-pagination-bullet {
    width: 70px;
    height: 50px;
    padding: 0 10px;
    background: unset;
    border-radius: unset;
    opacity: 1;
}

.modelColors .colorsSwiper .swiper-pagination .swiper-pagination-bullet-active img {
    border: 2px solid #000;
    border-radius: 100px;
}

.modelColors .colorsSwiper .swiper-slide {
    opacity: 0 !important;
}

.modelColors .colorsSwiper .swiper-slide.swiper-slide-active {
    opacity: 1 !important;
}

.modelColors .colorsSwiper .swiper-slide img {
    width: 100%;
}

.modelColors-model {
    width: 60%;
    position: relative;
}

.modelColors-model .stickers {
    color: #FFFFFF;
    font-size: 20px;
    line-height: 135%;
    background: #101010;
    padding: 12px 20px;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modelColors-model .stickers-wrap {
    column-gap: 40px;
    position: absolute;
    right: 62px;
    top: 0;
}

.modelColors-modelWrap {
    column-gap: 50px;
}

.modelColors .btns {
    row-gap: 20px;
}

.model-info {
    row-gap: 40px;
}

.model-switcherWrap {
    row-gap: 16px;
}

.model-switcherWrap > p {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    color: #8C8C8C;
}

.model-switcher > div {
    user-select: none;
    white-space: nowrap;
    position: relative;
    border-radius: 0;
    background: none;
    opacity: 1;
    width: unset;
    height: unset;
    margin: 0 !important;
    color: #8C8C8C;
    padding: 0 18px 10px 18px;
    font-weight: 500;
    font-size: 24px;
    line-height: 140%;
    transition: color 0.3s ease;
}

.model-switcher > div:after {
    content: "";
    height: 2px;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    position: absolute;
    background-color: #8C8C8C;
    transition: background-color 0.3s ease;
}

.model-switcher > div.active {
    color: #000;
}

.model-switcher > div.active:after {
    background-color: #000;
}

.exterior {
    padding: 90px 0;
}

.exterior > div {
    row-gap: 40px;
}

.exterior-content {
    row-gap: 30px;
}

.exteriorSwiper {
    position: relative;
}

.exteriorSwiper .swiper-pagination-bullets {
    bottom: -10px;
    transform: translate(0, 100%);
}

.exteriorSwiper .swiper-pagination-bullets .swiper-pagination-bullet {
    background: #8C8C8C;
}

.exteriorSwiper .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #101010;
}

.exteriorSwiper .swiper-slide {
    position: relative;
}

.exteriorSwiper .swiper-slide img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.exteriorSwiper .swiper-slide .content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: linear-gradient(74deg, rgba(0, 0, 0, 0.2) 10.72%, rgba(0, 0, 0, 0) 100%);
    row-gap: 40px;
    padding: 60px;
}

.exteriorSwiper .swiper-slide .content .text {
    row-gap: 30px;
    max-width: 600px;
}

.exteriorSwiper .swiper-slide .content .text h3 {
    color: #FFF;
    font-size: 48px;
    font-weight: 700;
    line-height: normal;
}

.exteriorSwiper .swiper-slide .content .text p {
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
}

.exteriorSwiper .swiper-slide .content-arrows {
    column-gap: 20px;
}

.exteriorSwiper .swiper-slide .content-arrows .swiper-button-prev,
.exteriorSwiper .swiper-slide .content-arrows .swiper-button-next {
    position: relative;
    width: 40px;
    height: 40px;
    left: unset;
    right: unset;
    top: unset;
    margin-top: 0;
}

.exteriorSwiper .swiper-slide .content-arrows .swiper-button-prev img,
.exteriorSwiper .swiper-slide .content-arrows .swiper-button-next img {
    width: 100%;
    height: 100%;
}

.exteriorSwiper .swiper-slide .content-arrows .swiper-button-prev::after, .exteriorSwiper .swiper-slide .content-arrows .swiper-button-prev::before,
.exteriorSwiper .swiper-slide .content-arrows .swiper-button-next::after,
.exteriorSwiper .swiper-slide .content-arrows .swiper-button-next::before {
    content: unset;
}

.exteriorThumbSwiper .swiper-slide {
    position: relative;
    cursor: pointer;
}

.exteriorThumbSwiper .swiper-slide.swiper-slide-thumb-active .content {
    backdrop-filter: blur(0px);
    -webcit-backdrop-filter: blur(0px);
}

.exteriorThumbSwiper .swiper-slide img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.exteriorThumbSwiper .swiper-slide .content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: linear-gradient(74deg, rgba(0, 0, 0, 0.2) 10.72%, rgba(0, 0, 0, 0) 100%);
    row-gap: 30px;
    padding: 15px;
    backdrop-filter: blur(10px);
    -webcit-backdrop-filter: blur(10px);
    transition: backdrop-filter 0.3s ease, -webcit-backdrop-filter 0.3s ease;
}

.exteriorThumbSwiper .swiper-slide .content p {
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
}

.interior {
    padding: 90px 0;
}

.interior > div {
    row-gap: 60px;
}

.interior-header {
    row-gap: 30px;
    max-width: 680px;
}

.interior-header p {
    color: #8C8C8C;
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
}

.interiorSwiper {
    position: relative;
}

.interiorSwiper .swiper-pagination-bullets {
    bottom: -10px;
    transform: translate(0, 100%);
}

.interiorSwiper .swiper-pagination-bullets .swiper-pagination-bullet {
    background: #8C8C8C;
}

.interiorSwiper .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #101010;
}

.interiorSwiper .swiper-slide {
    width: unset;
}

.interiorSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.technologies {
    padding: 90px 0;
}

.technologies > div {
    row-gap: 40px;
}

.technologies-header {
    row-gap: 40px;
    max-width: 760px;
}

.technologies-header p {
    color: #8C8C8C;
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
}

.technologies-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    column-gap: 30px;
}

.technologies-grid-block {
    row-gap: 30px;
}

.technologies-grid-block img {
    width: 100%;
}

.technologies-grid-block .text {
    row-gap: 20px;
}

.technologies-grid-block .text h3 {
    color: #101010;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    height: 66px;
}

.technologies-grid-block .text p {
    color: #8C8C8C;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
}

.breadcrumbs {
    column-gap: 10px;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #000;
    text-decoration: none;
    flex-wrap: wrap;
}

.breadcrumbs a {
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #000;
    text-decoration: none;
}

.policyPage {
    padding-top: 60px;
}

.policyPage h1 {
    margin-bottom: 30px;
}

.policyPage h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.policyPage p {
    margin-bottom: 15px;
}

.ask-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1100;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}

.ask-block-bckg {
    width: 100%;
    max-width: 556px;
    flex-grow: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
}

.ask-block-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ask-block-close::after, .ask-block-close::before {
    content: "";
    height: 2px;
    width: 28px;
    background-color: #0A0A0A;
    position: absolute;
}

.ask-block-close::before {
    transform: rotate(45deg);
}

.ask-block-close::after {
    transform: rotate(-45deg);
}

.ask-block-content {
    padding: 40px;
    background-color: #F3F3F3;
    /*width: fit-content;*/
    width: 736px;
    max-width: 736px;
    position: relative;
    border-radius: 10px;
}

.ask-block p.request {
    font-size: 30px;
    font-weight: 600;
    font-style: normal;
    margin-top: 0;
    color: #000;
    margin-bottom: 10px;
}

.ask-block .ask-block-fields {
    width: 100%;
    gap: 15px;
    margin-bottom: 15px;
}

.ask-block .ask-block-fields p {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
}

.ask-block .ask-block-fields input {
    padding: 13px 16px;
    background: #FFF;
    border: 1px solid #C5C5C5;
    border-radius: 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    width: 100%;
}

.ask-block .ask-block-fields input:focus-visible {
    outline: 1px solid #1862E5;
}

.ask-block .ask-block-fields #ask {
    padding: 12px 13px;
}

.ask-block .ask-block-fields > div {
    width: 100%;
    position: relative;
}

.btn-form {
    width: 238px;
    height: 40px;
    padding: 10px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 589px) {
    .btn-form {
        width: 100%;
    }
}

.form-label-input {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;

}

.ask-block .ask-block-fields .icon-container .icon-user {
    background: url("/assets/img/user.svg") no-repeat;
    background-size: contain;
    height: 20px;
    width: 20px;
}

.ask-block .ask-block-fields .icon-container .icon-phone {
    background: url("/assets/img/phone.svg") no-repeat;
    background-size: contain;
    height: 20px;
    width: 20px;
}

.ask-block .btn-callback {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    width: 100%;
    margin-bottom: 10px;
}

.ask-block p.text-center {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #A4A4A4;
    margin: 10px 0 0 0;
}

.ask-block p.text-center a {
    color: #A4A4A4;
}

.ask-ok .header {
    row-gap: 20px;
}

.ask-ok .header img {
    height: 50px;
    width: 50px;
}

.ask-ok .header .request {
    font-size: 24px;
    font-weight: 700;
    line-height: 120%;
    color: #000;
}

.ask-ok .header .additional {
    font-size: 20px;
    line-height: 110%;
    color: #000;
}

.ask-ok .ask-block-content {
    width: 100%;
    max-width: 500px;
}

@media (max-width: 767.96px) {
    .ask-ok {
        padding: 20px;
    }

    .ask-ok .header .request {
        font-size: 20px;
    }

    .ask-ok .header .additional {
        font-size: 16px;
    }

    .ask-ok .ask-block-content {
        max-width: unset;
    }
}

.askMe {
    cursor: pointer;
}

.news {
    padding: 90px 0;
}

.news > div {
    row-gap: 30px;
}

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

.news-block .news-item {
    min-height: 100%;
    width: 100%;
    color: #000001;
    overflow: hidden;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.news-block .news-item img {
    width: 100%;
    height: 100%;
    display: block;
    margin-bottom: 16px;
    object-fit: cover;
}

.news-block .news-item .cover {
    max-height: 180px;
}

.news-block .news-item h3 {
    font-weight: 500;
    font-size: 20px;
    line-height: 110%;
    color: #000;
    margin-bottom: 10px;
    overflow: hidden;
    display: -webkit-box;
    height: 65px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    transition: all 0.2s ease;
}

.news-block .news-item .publicdate {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #8C8C8C;
}

.news .all_news {
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    color: #000;
    text-decoration: none;
}

.news .all_news img {
    margin-left: 10px;
    max-width: 23px;
    height: 18px;
}

.newsAll > div {
    row-gap: 60px;
}

.newsAll-head {
    row-gap: 40px;
    overflow: hidden;
    position: relative;
}

.newsAll-head h1 {
    color: #101010;
    font-size: 48px;
    font-weight: 700;
    line-height: normal;
}

.newsAll-block {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 30px;
    position: relative;
}

.newsAll-block-item {
    min-height: 100%;
    width: 100%;
    color: #000;
    overflow: hidden;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.newsAll-block-item img {
    width: 100%;
    height: 100%;
    display: block;
    margin-bottom: 16px;
    object-fit: cover;
    min-height: 220px;
}

.newsAll-block-item h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    color: #272727;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 72px;
    transition: all 0.2s ease;
}

.newsAll-block-item .publicdate {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    color: #8C8C8C;
}

.single-news-name {
    max-width: 832px;
}

.single-news-name h3 {
    font-weight: 700;
    font-size: 50px;
    line-height: 120%;
    margin-bottom: 40px;
    color: #000;
}

.single-news-name img {
    margin-bottom: 40px;
    width: 100%;
    max-width: 832px;
    height: 480px;
    object-fit: cover;
}

.single-news-desc {
    max-width: 832px;
}

.single-news-desc img {
    margin-bottom: 40px;
    width: 100%;
    max-width: 832px;
    height: 480px;
    object-fit: cover;
}

.single-news-desc p {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #212529;
    margin-bottom: 30px;
}

.single-news .publicdate {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #8C8C8C;
    margin-bottom: 0;
}

.sidenav {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    top: 0;
    right: -100%;
    z-index: 900;
    opacity: 0;
    transition: opacity 0.3s ease, right 0s ease 0.3s;
}

.sidenav.active {
    opacity: 1;
    right: 0;
    transition: opacity 0.3s ease;
}

.sidenav.active .sidenav-block {
    right: 0;
}

.sidenav.active .sidenav-click {
    left: 0;
}

.sidenav .close {
    position: relative;
    width: 34px;
    height: 34px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidenav .close > div {
    position: absolute;
    height: 3px;
    width: 25.3px;
    background: #015AA8;
}

.sidenav .close > div:nth-child(1) {
    transform: rotate(45deg);
}

.sidenav .close > div:nth-child(2) {
    transform: rotate(-45deg);
}

.sidenav-block {
    transition: all 0.3s ease;
    background: #fff;
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 576px;
    height: 100%;
    padding: 30px;
    row-gap: 30px;
    overflow-y: auto;
}

.sidenav-block-breadcrumb {
    display: flex;
    gap: 10px;
    cursor: pointer;
}

.sidenav-block-breadcrumb p {
    margin-bottom: 0;
}

.sidenav-block .logo {
    height: 18px;
}

.sidenav-block-btns {
    row-gap: 10px;
    max-width: 220px;
}

.sidenav-block-btns .btn {
    font-size: 14px;
}

.sidenav-block-contacts {
    row-gap: 10px;
}

.sidenav-block-contacts > a > p {
    color: #000;
    font-size: 16px;
    line-height: 24px;
}

.sidenav-block-contacts > div {
    row-gap: 20px;
}

.sidenav-block-contacts > div > div {
    column-gap: 14px;
}

.sidenav-block-contacts > div > div a {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
}

.sidenav-block-contacts > div > div p {
    color: #0A0A0A;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}

.sidenav-block-contacts > div > a {
    text-decoration: none;
}

.sidenav-block-contacts > div > a > div {
    column-gap: 12px;
}

.sidenav-block-contacts > div > a > div > div img {
    height: 20px;
}

.sidenav-block-contacts > div > a > div > p {
    color: #0A0A0A;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 0;
}

.sidenav-block-contacts-phone {
    display: flex;
    align-items: flex-start;
}

.sidenav-block-contacts-phone-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidenav-block-contacts-phone-list a {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

.sidenav-block-desc {
    row-gap: 30px;
}

.sidenav-block-desc .navList {
    row-gap: 20px;
}

.sidenav-block-desc .navList > p, .sidenav-block-desc .navList > a {
    color: #000;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    cursor: pointer;
}

.sidenav-block-desc .navList > div {
    row-gap: 10px;
}

.sidenav-block-desc .navList > div a {
    text-decoration: none;
    color: #000;
}

.sidenav-block-desc .navList > div a:hover {
    text-decoration: underline;
}

.sidenav-block-desc .navList > div a div {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
}

.sidenav-block-desc .navList-item {
    display: flex;
    flex-direction: column;
    column-gap: 8px;
}

.sidenav-block-desc .navList-item-list a {
    display: block;
}

.sidenav-block-desc .navList-item-list p {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.sidenav-block-desc .navList-item p {
    margin-bottom: 0;
}

.sidenav-block-desc .navList-item-title {
    display: flex;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

.sidenav-block-desc > a {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 0;
    position: relative;
    width: 100%;
    text-decoration: none;
    display: flex;
}

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

.sidenav .sidenav-block.active {
    display: flex !important;
}

.typed {
    padding: 50px 0 150px;
}

.typed .content_header {
    padding: 0;
}

.typed .content_header .breadcrumbs {
    column-gap: 10px;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #000;
    text-decoration: none;
}

.typed .content_header .breadcrumbs a {
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #000;
    text-decoration: none;
}

@media (max-width: 1300px) {
    .mainBlockSlider-arrows {
        position: absolute;
        top: unset;
        bottom: 55px;
        transform: translate(0, -50%);
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: calc(100% - 10px);
    }
}

@media (max-width: 1215px) {
    .mainBlockSlider-arrows {
        display: none;
    }
}

@media (min-width: 991.96px) and (max-width: 1399.96px) {
    .models-header .stickers {
        padding: 8px 22px;
    }

    .models-header .stickers-wrap {
        column-gap: 20px;
    }

    .modelColors-model .stickers-wrap {
        column-gap: 40px;
        position: absolute;
        right: 0;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .ask-block {
        max-width: 860px;
    }

    .models {
        padding: 70px 0;
        overflow: hidden;
    }

    .modelsSwiper .model {
        row-gap: 20px;
    }

    .modelsSwiper .model .descAndPhoto {
        column-gap: 20px;
    }

    .modelsSwiper .model .desc {
        min-width: unset;
    }

    .modelsSwiper .model .desc-chars .desc-chars_switcher_content {
        row-gap: 20px;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        min-width: 210px;
    }

    .modelsSwiper .model .desc-chars .desc-chars_switcher_content > div {
        max-width: unset;
    }

    .modelsSwiper .model .desc-btns {
        max-width: unset;
        gap: 15px !important;
    }

    .specials-list-el {
        padding: 30px;
    }

    .specials-list-el .content h3 {
        font-size: 36px;
    }

    .mobileApplication > div {
        gap: unset;
    }

    .mobileApplication-info {
        row-gap: 30px;
        max-width: 420px;
    }

    .offer {
        padding: 130px 0;
    }

    .offer-bckg {
        background-position: 60% center;
    }

    .services {
        padding: 90px 0;
    }

    .services > div {
        row-gap: 60px;
    }

    .services-content-el {
        column-gap: 40px;
    }

    .modelMainBlock-info {
        padding-bottom: 120px;
        padding-top: 120px;
    }

    .modelColors .chars_content {
        column-gap: 40px;
    }

    .modelColors .chars_content .val_desc {
        max-width: 130px;
    }

    .modelColors-modelWrap {
        column-gap: 0;
    }

    .mainBlockSlider .swiper-slide .info-upper {
        row-gap: 40px;
    }

    .mainBlockSlider .swiper-slide .info-upper .btns {
        row-gap: 10px;
        max-width: 350px;
    }

    .mainBlockSlider .swiper-slide .info-upper .btns .btn {
        width: 100%;
    }

    .mainBlockSlider .swiper-slide .info-bottom > div {
        padding: 25px 25px;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .container {
        max-width: none;
        padding: 0 20px;
        margin: 0;
    }

    .btn {
        font-size: 16px;
    }

    .models {
        padding: 60px 0;
    }

    .modelsSwiper .model {
        row-gap: 60px;
    }

    .modelsSwiper .model .desc {
        row-gap: 40px;
        width: 100%;
        min-width: unset;
    }

    .modelsSwiper .model .desc > div {
        row-gap: 40px;
        column-gap: 15px;
        width: 100%;
    }

    .modelsSwiper .model .desc-chars {
        row-gap: 40px;
    }

    .modelsSwiper .model .desc-chars .desc-chars_switcher_content {
        column-gap: 20px;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .modelsSwiper .model .desc-chars .desc-chars_switcher_content > div {
        max-width: unset;
    }

    .modelsSwiper .model .desc-chars .desc-chars_switcher_content > div .val_desc {
        font-size: 16px;
    }

    .modelsSwiper .model .desc-chars .desc-chars_switcher_content > div .val {
        font-size: 24px;
    }

    .modelsSwiper .model .desc-btns {
        max-width: unset;
        gap: 15px !important;
    }

    .models-header .stickers {
        padding: 8px 22px;
    }

    .models-header .stickers-wrap {
        row-gap: 12px;
        bottom: -63px;
    }

    .specials {
        padding: 60px 0;
    }

    .specials-list {
        grid-template-rows: 1fr 1fr 1fr;
        grid-template-columns: 1fr;
    }

    .specials-list-el {
        padding: 40px;
        position: relative;
        z-index: 0;
        overflow: hidden;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .specials-list-el:nth-of-type(1) {
        grid-column: unset;
    }

    .specials-list-el:nth-of-type(1) .content {
        max-width: 570px;
    }

    .specials-list-el:nth-of-type(2) {
        grid-column: unset;
        grid-row-start: 3;
        grid-row-end: 3;
    }

    .specials-list-el:nth-of-type(3) {
        grid-column: unset;
    }

    .specials-list-el .content {
        row-gap: 20px;
    }

    .specials-list-el .content h3 {
        font-size: 32px;
    }

    .mobileApplication {
        padding: 60px 0;
    }

    .mobileApplication > div {
        gap: unset;
    }

    .mobileApplication-info {
        row-gap: 30px;
        max-width: 330px;
    }

    .mobileApplication-info h2 {
        font-size: 40px;
    }

    .mobileApplication-info p {
        font-size: 16px;
    }

    .offer {
        padding: 45px 0;
    }

    .offerWrap {
        padding: 60px 0;
    }

    .offer-bckg {
        background-position: 60% center;
    }

    .aboutDealer {
        padding: 60px 0;
    }

    .aboutDealer > div {
        row-gap: 40px;
    }

    .aboutDealer-photo {
        height: 100%;
        width: 100%;
    }

    .aboutDealer-info {
        width: 100%;
    }

    .aboutDealer-info h2 {
        font-size: 40px;
    }

    .services {
        padding: 60px 0;
    }

    .services > div {
        row-gap: 40px;
    }

    .services-content-el {
        column-gap: 40px;
    }

    .services-content-el .photo img {
        max-height: 260px;
    }

    .services-content-el .info h3 {
        font-size: 32px;
        max-width: 320px;
    }

    .services-content-el .info p {
        font-size: 16px;
    }

    .contacts_main .contacts {
        gap: 20px;
    }

    .contacts_main .contacts-info {
        max-width: 438px;
        gap: 30px;
    }

    .contacts_main .contacts-info > div {
        gap: 30px;
    }

    .contacts_main .contacts-info > div a:not(.btn) {
        font-size: 16px;
    }

    .contacts_main .contacts-map {
        max-width: 440px;
        flex: unset;
        flex-grow: 1;
    }

    .modelMainBlock-info {
        position: absolute;
        padding-bottom: 40px;
        padding-top: 40px;
        z-index: 1;
    }

    .modelMainBlock-info > div {
        row-gap: 40px;
    }

    .modelMainBlock-info .text {
        row-gap: 10px;
    }

    .modelMainBlock-info .text h1 {
        font-size: 48px;
        line-height: 50px;
    }

    .modelMainBlock-info .text p {
        font-size: 36px;
        line-height: 45px;
    }

    .modelMainBlock-info .text h2 {
        font-size: 24px;
        line-height: 26px;
    }

    .modelMainBlock-photo img {
        width: 100%;
        min-height: 510px;
        object-fit: cover;
    }

    .mainBlockSlider .swiper-slide .photo img {
        width: 100%;
        height: 512px;
        object-fit: cover;
    }

    .mainBlockSlider .swiper-slide .info-upper {
        row-gap: 40px;
    }

    .mainBlockSlider .swiper-slide .info-upper .text {
        row-gap: 0;
    }

    .mainBlockSlider .swiper-slide .info-upper .text-header {
        font-size: 48px;
    }

    .mainBlockSlider .swiper-slide .info-upper .text-description {
        font-size: 24px;
    }

    .mainBlockSlider .swiper-slide .info-upper .text-price {
        font-size: 24px;
    }

    .mainBlockSlider .swiper-slide .info-upper .text-spec {
        row-gap: 25px;
    }

    .mainBlockSlider .swiper-slide .info-upper .text-spec .text-header {
        font-size: 48px;
    }

    .mainBlockSlider .swiper-slide .info-upper .btns {
        row-gap: 10px;
        max-width: 300px;
    }

    .mainBlockSlider .swiper-slide .info-upper .btns .btn {
        width: 100%;
    }

    .mainBlockSlider .swiper-slide .info-bottom > div {
        padding: 25px;
    }

    .mainBlockSlider .swiper-slide .info-bottom > div:nth-of-type(1) {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(196, 196, 196, 0) 156.08%);
        row-gap: 14px;
        width: 250px;
    }

    .mainBlockSlider .swiper-slide .info-bottom > div:nth-of-type(1) p {
        white-space: unset;
    }

    .modelColors {
        padding: 120px 0 60px;
    }

    .modelColors-header {
        position: relative;
    }

    .modelColors-header .stickers {
        color: #FFFFFF;
        font-size: 20px;
        line-height: 135%;
        background: #101010;
        border: 2px solid #FFFFFF;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
        padding: 8px 18px;
    }

    .modelColors-header .stickers-wrap {
        position: absolute;
        right: 0;
        top: 0;
        row-gap: 10px;
    }

    .modelColors-data {
        row-gap: 40px;
    }

    .modelColors .chars_content {
        column-gap: 20px;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .modelColors .chars_content .val_desc {
        font-size: 16px;
    }

    .modelColors .chars_content .val {
        font-size: 24px;
    }

    .modelColors .colorsSwiper .swiper-pagination {
        padding-top: 30px;
    }

    .modelColors-model {
        width: 100%;
    }

    .modelColors-modelWrap {
        row-gap: 40px;
    }

    .modelColors .btns {
        column-gap: 20px;
    }

    .model-info {
        row-gap: 40px;
    }

    .exterior {
        padding: 60px 0;
    }

    .exterior > div {
        row-gap: 40px;
    }

    .exterior-content {
        row-gap: 20px;
    }

    .exteriorSwiper .swiper-slide .content {
        row-gap: 35px;
        padding: 20px 30px;
    }

    .exteriorSwiper .swiper-slide .content .text {
        row-gap: 20px;
        max-width: 400px;
    }

    .exteriorSwiper .swiper-slide .content .text h3 {
        font-size: 36px;
    }

    .exteriorSwiper .swiper-slide .content .text p {
        font-size: 16px;
    }

    .exteriorThumbSwiper .swiper-slide img {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }

    .exteriorThumbSwiper .swiper-slide .content {
        padding: 8px 5px;
    }

    .exteriorThumbSwiper .swiper-slide .content p {
        font-size: 14px;
    }

    .interior {
        padding: 60px 0;
    }

    .interior > div {
        row-gap: 40px;
    }

    .interiorSwiper {
        overflow: hidden;
    }

    .technologies {
        padding: 60px 0;
    }

    .technologies-header p {
        font-size: 16px;
    }

    .technologies-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        row-gap: 30px;
    }

    .technologies-grid-block {
        row-gap: 30px;
        column-gap: 30px;
    }

    .technologies-grid-block img {
        width: 50%;
    }

    .technologies-grid-block .text {
        row-gap: 20px;
    }

    .technologies-grid-block .text h3 {
        font-size: 16px;
        height: unset;
    }

    .technologies-grid-block .text p {
        font-size: 16px;
    }

    footer {
        row-gap: 20px;
    }

    footer .footerTop-logo a img {
        height: 26px;
    }

    footer .footerTop-logo p {
        max-width: 223px;
    }

    footer .footerTop-contacts .btn {
        font-size: 14px;
        line-height: 16.2px;
        padding: 11px 18px;
    }

    footer .footerTop-contacts--item {
        margin-bottom: 10px;
        white-space: unset;
        max-width: 208px;
    }

    .ask-block-bckg {
        display: none !important;
    }

    .newsAll-head h1 {
        font-size: 40px;
    }

    .newsAll-block {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        column-gap: 20px;
        row-gap: 30px;
        position: relative;
    }

    .newsAll-block-item h3 {
        font-weight: 700;
        font-size: 16px;
        line-height: 130%;
        color: #000;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        height: 65px;
        transition: all 0.2s ease;
    }

    .newsAll-block-item .publicdate {
        margin-bottom: 0;
        font-weight: 400;
        font-size: 16px;
        line-height: 130%;
        color: #8C8C8C;
    }

    .news {
        padding: 60px 0;
    }

    .news > div {
        row-gap: 40px;
    }

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

    .news-block .news-item h3 {
        font-size: 16px;
        height: 53px;
    }

    .news-block .news-item .publicdate {
        font-size: 16px;
        line-height: 20px;
    }

    .single-news-name h3 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .single-news-name img {
        margin-bottom: 30px;
        width: 100%;
    }

    .single-news-desc {
        max-width: 832px;
    }

    .single-news-desc img {
        margin-bottom: 30px;
        width: 100%;
    }

    .single-news-desc p {
        font-weight: 400;
        font-size: 16px;
        line-height: 160%;
        color: #212529;
        margin-bottom: 30px;
    }

    .single-news .publicdate {
        font-weight: 400;
        font-size: 16px;
        line-height: 160%;
        color: #8C8C8C;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: none;
        padding: 0 10px;
        margin: 0;
    }

    .btn {
        padding: 8px;
        font-size: 14px;
    }

    .sticky-header .header_mid .logo {
        max-width: unset;
    }

    .favs {
        padding: 60px 0 30px;
    }

    .favs > div {
        row-gap: 24px;
    }

    .favs-item {
        column-gap: 18px;
    }

    .favs-item p {
        font-size: 14px;
        line-height: 19px;
    }

    .favs-item img {
        max-width: 30px;
        max-height: 30px;
        width: 100%;
        height: 100%;
        min-width: 30px;
        min-height: 30px;
    }

    .models {
        padding: 35px 0 70px;
        overflow: hidden;
    }

    .models-header {
        row-gap: 20px;
    }

    .modelsSwiper {
        row-gap: 30px;
    }

    .modelsSwiper .model {
        row-gap: 10px;
    }

    .modelsSwiper .model-name {
        font-size: 24px;
    }

    .modelsSwiper .model-nameWrap {
        row-gap: 10px;
    }

    .modelsSwiper .model-nameWrap span {
        font-size: 16px;
    }

    .modelsSwiper .model-switcherWrap > p {
        font-size: 14px;
    }

    .modelsSwiper .model-switcher > div {
        font-size: 14px;
        line-height: normal;
    }

    .modelsSwiper .model .desc {
        row-gap: 40px;
        min-width: unset;
        width: 100%;
    }

    .modelsSwiper .model .desc-chars {
        row-gap: 30px;
        width: 100%;
    }

    .modelsSwiper .model .desc-chars .desc-chars_switcher_content {
        padding: 0;
        row-gap: 20px;
        column-gap: 20px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
    }

    .modelsSwiper .model .desc-chars .desc-chars_switcher_content > div {
        max-width: 130px;
    }

    .modelsSwiper .model .desc-chars .desc-chars_switcher_content > div .val_desc {
        font-size: 14px;
    }

    .modelsSwiper .model .desc-chars .desc-chars_switcher_content > div .val {
        font-size: 20px;
    }

    .modelsSwiper .model .desc-btns {
        max-width: unset;
        gap: 10px !important;
    }

    .modelsSwiper .model .descAndPhoto {
        row-gap: 20px;
    }

    .modelsSwiper .model .descAndPhoto .photo .stickers {
        font-size: 14px;
        line-height: 135%;
        color: white;
        background: #101010;
        padding: 6px 20px;
        justify-content: center;
        display: flex;
        align-items: center;
        gap: 12px;
        cursor: pointer;
    }

    .modelsSwiper .model .descAndPhoto .photo .stickers-wrap {
        row-gap: 10px;
    }

    .modelsSwiper .swiper-pagination {
        position: unset;
    }

    .modelsSwiper .swiper-pagination .swiper-pagination-bullet {
        font-size: 16px;
        padding: 10px 25px;
    }

    .specials-header h2,
    .services-header h2,
    .exterior-header h2,
    .interior-header h2,
    .technologies-header h2,
    .news-header h2,
    .models-header h2,
    .specialsOffers-header h2 {
        font-size: 24px;
    }

    .specials {
        padding: 35px 0;
    }

    .specials > div {
        row-gap: 30px;
        position: relative;
    }

    .specials > div .swiper-pagination-bullets {
        bottom: 0;
        transform: translate(0, 100%);
    }

    .specials > div .swiper-pagination-bullets .swiper-pagination-bullet {
        background: #8C8C8C;
    }

    .specials > div .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: #101010;
    }

    .specials-list {
        display: flex;
        gap: unset;
    }

    .specials-list-el {
        padding: 30px 10px;
        height: auto;
    }

    .specials-list-el:nth-of-type(1) {
        grid-column: unset;
    }

    .specials-list-el:nth-of-type(1) .content {
        max-width: unset;
    }

    .specials-list-el:nth-of-type(2) {
        grid-column: unset;
    }

    .specials-list-el:nth-of-type(3) {
        grid-column: unset;
    }

    .specials-list-el .content {
        row-gap: 20px;
    }

    .specials-list-el .content h3 {
        font-size: 20px;
    }

    .specials-list-el .content p {
        font-size: 14px;
    }

    .mobileApplication {
        padding: 35px 0;
    }

    .mobileApplication > div {
        gap: unset;
    }

    .mobileApplication-info {
        row-gap: 20px;
        max-width: unset;
    }

    .mobileApplication-info h2 {
        font-size: 24px;
    }

    .mobileApplication-info p {
        font-size: 14px;
    }

    .offer {
        padding: 25px 0 0;
        position: relative;
        z-index: 0;
    }

    .offer::after {
        content: "";
        position: absolute;
        z-index: -1;
        background: linear-gradient(180deg, #1D2129 58.44%, rgba(29, 33, 41, 0) 95.09%);
        top: 0;
        right: 0;
        left: 0;
        height: 60%;
    }

    .offerWrap {
        padding: 35px 0;
    }

    .offer-bckg {
        position: relative;
        background-size: cover;
        background-position: 80% center;
        z-index: -1;
        height: 450px;
    }

    .offer-bckg::after {
        position: absolute;
        z-index: -1;
        width: 100%;
        background: linear-gradient(180deg, lightgray 0%, lightgray 100%);
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        opacity: 0.05;
    }

    .offer-info {
        row-gap: 20px;
        width: 100%;
    }

    .offer-info h2 {
        font-size: 24px;
    }

    .offer-info p {
        font-size: 14px;
    }

    .aboutDealer {
        padding: 35px 0;
    }

    .aboutDealer > div {
        row-gap: 20px;
    }

    .aboutDealer-photo {
        height: 100%;
        width: 100%;
    }

    .aboutDealer-info {
        width: 100%;
        row-gap: 20px;
    }

    .aboutDealer-info h2 {
        font-size: 24px;
    }

    .aboutDealer-info p {
        font-size: 14px;
    }

    .services {
        padding: 35px 0;
    }

    .services > div {
        row-gap: 40px;
    }

    .services-content {
        row-gap: 30px;
    }

    .services-content-el {
        row-gap: 20px;
    }

    .services-content-el .photo {
        width: 100%;
    }

    .services-content-el .info {
        width: 100%;
        row-gap: 10px;
    }

    .services-content-el .info h3 {
        font-size: 20px;
    }

    .services-content-el .info p {
        font-size: 14px;
    }

    .contacts_main {
        padding: 70px 0;
    }

    .contacts_main .contacts {
        gap: 30px;
    }

    .contacts_main .contacts-info {
        gap: 20px;
        max-width: unset;
        width: 100%;
    }

    .contacts_main .contacts-info > div {
        gap: 20px;
    }

    .contacts_main .contacts-info > div a:not(.btn) {
        column-gap: 18px;
        font-size: 14px;
    }

    .contacts_main .contacts-info > div a:not(.btn) img {
        width: 20px;
    }

    .contacts_main .contacts-info h2 {
        font-size: 24px;
    }

    .contacts_main .contacts-map {
        max-width: unset;
        width: 100%;
        height: 340px;
    }

    .ask-ok-content {
        max-width: 300px;
        padding: 30px 20px;
    }

    .ask-ok-content .header {
        row-gap: 10px;
    }

    .ask-ok-content .header img {
        height: 30px;
        width: 30px;
    }

    .ask-ok-content .header .request {
        font-size: 24px;
    }

    .ask-ok-content .header .additional {
        font-size: 14px;
    }

    .ask-block .header .request {
        font-size: 20px;
    }

    .ask-block form {
        gap: 20px;
    }

    .ask-block-fields {
        gap: 10px;
    }

    .ask-block-content {
        padding: 30px 20px;
        min-width: 300px;
        max-width: calc(100% - 200px);
    }

    .typed {
        padding: 50px 0 70px;
    }

    footer {
        row-gap: 20px;
    }

    footer .footerTop {
        margin-bottom: 0;
        row-gap: 20px;
    }

    footer .footerTop-logo a {
        margin-bottom: 0;
    }

    footer .footerTop-logo a img {
        height: 23px;
    }

    footer .footerTop-logo a > div {
        padding: 10px 10px 6px 10px;
    }

    footer .footerTop-logo a p {
        line-height: 130%;
        max-width: unset;
    }

    footer .footerTop-links {
        gap: 20px;
    }

    footer .footerTop-links p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    footer .footerTop-links nav a {
        font-size: 14px;
    }

    footer .contacts {
        display: block !important;
        margin-top: 49px;
    }

    footer .contact_main {
        display: none !important;
    }

    footer .footerTop-logo p {
        max-width: 206px;
        font-size: 14px;
    }

    footer .footerTop-contacts .btn {
        font-size: 14px;
        line-height: 14.2px;
        padding: 8px 18px;
        margin: 0;
    }

    /*footer .footerBottom {*/
    /*  row-gap: 10px;*/
    /*}*/
    footer .footerBottom p,
    footer .footerBottom a {
        /*font-weight: 500;*/
        /*font-size: 14px;*/
        /*line-height: 19px;*/
    }

    footer .footerBottom .policy a {
        font-size: 14px;
        line-height: 19px;
    }

    .modelMainBlock {
        height: 500px;
    }

    .modelMainBlock-info {
        position: absolute;
        padding-bottom: 25px;
        padding-top: 25px;
        z-index: 1;
        background: linear-gradient(359deg, #1D2129 58.44%, rgba(29, 33, 41, 0) 95.09%);
        height: auto !important;
    }

    .modelMainBlock-info > div {
        row-gap: 40px;
    }

    .modelMainBlock-info .text {
        row-gap: 8px;
    }

    .modelMainBlock-info .text h1 {
        font-size: 40px;
    }

    .modelMainBlock-info .text p {
        font-size: 24px;
    }

    .modelMainBlock-info .text h2 {
        font-size: 24px;
    }

    .modelMainBlock-info .btns {
        gap: 10px;
    }

    .modelMainBlock-photo {
        flex-grow: 1;
        width: 100%;
    }

    .modelMainBlock-photo img {
        width: 100%;
        height: 65%;
        min-height: unset;
        object-fit: cover;
        object-position: bottom;
    }

    .modelColors {
        padding: 70px 0 35px;
    }

    .modelColors-header {
        row-gap: 10px;
    }

    .modelColors-header .stickers {
        color: #FFFFFF;
        font-size: 14px;
        line-height: 135%;
        background: #101010;
        border: 2px solid #FFFFFF;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
        padding: 8px 18px;
        width: 100%;
        text-align: center;
    }

    .modelColors-header .stickers-wrap {
        row-gap: 10px;
    }

    .modelColors-header h2 {
        font-size: 40px;
    }

    .modelColors-header p {
        font-size: 16px;
    }

    .modelColors-data {
        row-gap: 30px;
    }

    .modelColors .chars_content .val_desc {
        font-size: 14px;
    }

    .modelColors .chars_content .val {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .modelColors .colorsSwiper .swiper-pagination {
        position: unset;
        padding-top: 20px;
    }

    .modelColors .colorsSwiper .swiper-pagination .swiper-pagination-bullet {
        width: 30px;
        height: 30px;
        opacity: 1;
        padding: 0 5px;
    }

    .modelColors .colorsSwiper .swiper-pagination .swiper-pagination-bullet img {
        width: 100%;
        height: unset;
    }

    .modelColors .colorsSwiper .swiper-slide {
        opacity: 0 !important;
    }

    .modelColors .colorsSwiper .swiper-slide.swiper-slide-active {
        opacity: 1 !important;
    }

    .modelColors .colorsSwiper .swiper-slide img {
        width: 100%;
    }

    .modelColors-model {
        width: 100%;
    }

    .modelColors-modelWrap {
        row-gap: 20px;
    }

    .modelColors .btns {
        row-gap: 10px;
    }

    .model-info {
        row-gap: 30px;
    }

    .model-switcherWrap > p {
        font-size: 14px;
    }

    .model-switcher > div {
        font-size: 14px;
        line-height: 20px;
    }

    .exterior {
        padding: 35px 0;
    }

    .exterior > div {
        row-gap: 30px;
    }

    .exteriorSwiper {
        position: relative;
    }

    .exteriorSwiper .swiper-slide > img {
        height: 350px;
        object-position: right;
    }

    .exteriorSwiper .swiper-slide .content {
        padding: 20px 10px;
    }

    .exteriorSwiper .swiper-slide .content .text {
        row-gap: 20px;
        max-width: 220px;
    }

    .exteriorSwiper .swiper-slide .content .text h3 {
        font-size: 20px;
    }

    .exteriorSwiper .swiper-slide .content .text p {
        font-size: 14px;
    }

    .interior {
        padding: 35px 0;
    }

    .interior > div {
        row-gap: 30px;
    }

    .interior-header {
        row-gap: 20px;
        max-width: 680px;
    }

    .interior-header p {
        font-size: 16px;
    }

    .interiorSwiper {
        overflow: unset;
    }

    .mainBlock {
        /*height: 800px;*/
        max-height: 800px;
    }

    .mainBlockSlider {
        height: 100%;
    }

    .mainBlockSlider .swiper-slide {
        position: relative;
    }

    .mainBlockSlider .swiper-slide .photo {
        flex-grow: 1;
        height: 100%;
    }

    .mainBlockSlider .swiper-slide .photo img {
        width: 100%;
        /*height: 100%;*/
        min-height: unset;
        object-fit: cover;
    }

    .mainBlockSlider .swiper-slide .info {
        position: absolute;
        padding-bottom: 25px;
        padding-top: 25px;
        z-index: 1;
        height: auto !important;
    }

    .mainBlockSlider .swiper-slide .info-upper {
        row-gap: 20px;
    }

    .mainBlockSlider .swiper-slide .info-upper > div {
        gap: 10px;
    }

    .mainBlockSlider .swiper-slide .info-upper .text h1 {
        font-size: 48px;
    }

    .mainBlockSlider .swiper-slide .info-upper .text .otherh1 {
        font-size: 38px;
    }

    .mainBlockSlider .swiper-slide .info-upper .text p {
        font-size: 24px;
        line-height: 30px;
    }

    .mainBlockSlider .swiper-slide .info-upper .text h2 {
        font-size: 26px;
    }

    .mainBlockSlider .swiper-slide .info-upper .text-spec {
        row-gap: 16px;
        padding-bottom: 55px;
    }

    .mainBlockSlider .swiper-slide .info-upper .text-spec .text-header {
        font-size: 34px;
        line-height: 110%;
    }

    .mainBlockSlider .swiper-slide .info-upper .text-spec .text-description {
        font-size: 16px !important;
    }

    .mainBlockSlider .swiper-slide .info-upper .text-spec .text-attention {
        font-size: 16px !important;
    }

    .mainBlockSlider .swiper-slide .info-upper .btns {
        row-gap: 10px;
        width: 100%;
    }

    .mainBlockSlider .swiper-slide .info-upper .btns .btn {
        width: 100%;
    }

    .mainBlockSlider .swiper-slide .info-upper .swiper-pagination {
        position: relative;
        text-align: center;
        display: flex;
        align-items: center;
        column-gap: 12px;
        justify-content: center;
    }

    .mainBlockSlider .swiper-slide .info-upper .swiper-pagination .swiper-pagination-bullet {
        opacity: 1;
        background-color: #4E525F;
    }

    .mainBlockSlider .swiper-slide .info-upper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color: #fff;
    }

    .mainBlockSlider .swiper-slide .info-bottom > div {
        padding: 40px 25px;
    }

    .mainBlockSlider .swiper-slide .info-bottom > div .swiper-pagination {
        position: relative;
        text-align: start;
        display: flex;
        align-items: center;
        column-gap: 12px;
        justify-content: start;
    }

    .mainBlockSlider .swiper-slide .info-bottom > div .swiper-pagination .swiper-pagination-bullet {
        opacity: 1;
        background-color: #4E525F;
    }

    .mainBlockSlider .swiper-slide .info-bottom > div .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color: #fff;
    }

    .mainBlockSlider .swiper-slide .info-bottom > div p {
        color: #fff;
        font-size: 16px;
        font-weight: 400;
        line-height: normal;
        max-width: 590px;
    }

    .mainBlockSlider .swiper-slide .info-bottom > div:nth-of-type(1) {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(196, 196, 196, 0) 156.08%);
        row-gap: 14px;
        width: 340px;
    }

    .mainBlockSlider .swiper-slide .info-bottom > div:nth-of-type(1) p {
        white-space: nowrap;
    }

    .mainBlockSlider .swiper-slide .info-bottom > div:nth-of-type(2) {
        background-color: #31343C;
    }

    .mainBlockSlider .swiper-slide .info-bottom > div:nth-of-type(3) {
        padding: 40px;
        width: 340px;
    }

    .mainBlockSlider .swiper-slide .info-bottom > div:nth-of-type(3) .btn {
        white-space: nowrap;
    }

    .mainBlockSlider .swiper-slide .info--large {
        height: 400px !important;
    }

    .mainBlockSlider .swiper-slide .info .info--birthday {
        height: 520px !important;
    }

    .technologies {
        padding: 35px 0;
    }

    .technologies > div {
        row-gap: 40px;
    }

    .technologies-header {
        row-gap: 20px;
    }

    .technologies-header p {
        font-size: 16px;
    }

    .technologies-grid {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .technologies-grid-block {
        row-gap: 20px;
    }

    .technologies-grid-block img {
        width: 100%;
    }

    .technologies-grid-block .text {
        row-gap: 10px;
    }

    .technologies-grid-block .text h3 {
        font-size: 16px;
        height: unset;
    }

    .technologies-grid-block .text p {
        font-size: 14px;
    }

    .news {
        padding: 35px 0;
    }

    .news > div {
        row-gap: 20px;
    }

    .news-block {
        gap: 30px;
        display: grid;
        grid-template-columns: 1fr;
    }

    .news-block .news-item {
        min-height: 100%;
        width: 100%;
        color: #000001;
        overflow: hidden;
        text-decoration: none !important;
        transition: all 0.2s ease;
        display: none !important;
    }

    .news-block .news-item:first-of-type {
        display: flex !important;
    }

    .news-block .news-item img {
        width: 100%;
        height: 100%;
        display: block;
        margin-bottom: 16px;
        object-fit: cover;
    }

    .news-block .news-item .cover {
        max-height: 180px;
    }

    .news-block .news-item h3 {
        font-weight: 500;
        font-size: 16px;
        line-height: 110%;
        color: #000;
        margin-bottom: 10px;
        overflow: hidden;
        display: -webkit-box;
        height: unset;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        transition: all 0.2s ease;
    }

    .news-block .news-item .publicdate {
        margin-bottom: 0;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        color: #8C8C8C;
    }

    .news .all_news {
        font-weight: 500;
        font-size: 20px;
        line-height: 130%;
        color: #000;
        text-decoration: none;
    }

    .news .all_news img {
        margin-left: 10px;
        max-width: 23px;
        height: 18px;
    }

    .newsAll > div {
        row-gap: 30px;
    }

    .newsAll-head {
        row-gap: 20px;
    }

    .newsAll-head h1 {
        font-size: 24px;
    }

    .newsAll-block {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
        row-gap: 20px;
        position: relative;
    }

    .newsAll-block-item img {
        margin-bottom: 10px;
        min-height: 101px;
    }

    .newsAll-block-item h3 {
        font-weight: 700;
        font-size: 14px;
        line-height: 130%;
        color: #272727;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        height: 72px;
        transition: all 0.2s ease;
    }

    .newsAll-block-item .publicdate {
        margin-bottom: 0;
        font-weight: 400;
        font-size: 12px;
        line-height: 130%;
        color: #8C8C8C;
    }

    .single-news-name h3 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .single-news-name img {
        height: 200px;
        margin-bottom: 30px;
        width: 100%;
        object-fit: cover;
    }

    .single-news-desc img {
        margin-bottom: 30px;
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .single-news-desc p {
        font-weight: 400;
        font-size: 16px;
        line-height: 160%;
        color: #212529;
        margin-bottom: 30px;
    }

    .single-news .publicdate {
        font-weight: 400;
        font-size: 16px;
        line-height: 160%;
        color: #8C8C8C;
        margin-bottom: 0;
    }

    .breadcrumbs {
        column-gap: 10px;
        font-weight: 500;
        font-size: 14px;
        line-height: 120%;
        color: #000;
        text-decoration: none;
        flex-wrap: wrap;
    }

    .breadcrumbs a {
        font-weight: 500;
        font-size: 14px;
        line-height: 120%;
        color: #000;
        text-decoration: none;
    }

    .ask-block-bckg {
        display: none !important;
    }

    .ask-block-content {
        padding: 20px;
        background-color: #F3F3F3;
        max-width: 512px;
        position: relative;
        width: calc(100% - 20px);
    }

    .ask-block p.request {
        font-size: 24px;
    }

    .ask-block .ask-block-fields {
        width: 100%;
        gap: 15px;
        /*margin-bottom: 15px;*/
    }

    .ask-block .ask-block-fields p {
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 0;
    }

    .ask-block .ask-block-fields input {
        padding: 13px 16px;
        font-size: 14px;
    }

    .ask-block .ask-block-fields input:focus-visible {
        outline: 1px solid #1862E5;
    }

    .ask-block .ask-block-fields > div {
        width: 100%;
        position: relative;
    }

    .ask-block .ask-block-fields .icon-container {
        position: absolute;
        top: 36px;
        padding: 0 0 0 0;
    }

    /*.ask-block .ask-block-fields .icon-container .icon-user {*/
    /*  background: url("/assets/img/user.svg") no-repeat;*/
    /*  background-size: contain;*/
    /*  height: 20px;*/
    /*  width: 20px;*/
    /*}*/
    /*.ask-block .ask-block-fields .icon-container .icon-phone {*/
    /*  background: url("/assets/img/phone.svg") no-repeat;*/
    /*  background-size: contain;*/
    /*  height: 20px;*/
    /*  width: 20px;*/
    /*}*/
}

@media (max-width: 767.96px) {
    .mainBlockSlider .swiper-slide .info--birthday {
        height: 500px !important;
        background: linear-gradient(359deg, #1D2129 58.44%, rgba(29, 33, 41, 0) 70.09%);
    }
}

@media (max-width: 575.96px) {
    .mainBlockSlider .swiper-slide .info--birthday {
        height: 600px !important;
        background: linear-gradient(359deg, #1D2129 58.44%, rgba(29, 33, 41, 0) 70.09%);
    }
}

@media (max-width: 575.96px) {
    .mainBlockSlider .swiper-slide .photo--birthday img {
        max-width: 100%;
        height: auto !important;
    }
}

.timer {
    padding: 35px 0 90px;
}

.timer-container {
    border: 1px solid #015AA8;
    padding: 50px;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    border-radius: 10px;
}

@media (max-width: 1400px) {
    .timer-container {
        padding: 50px 135px;
    }
}

@media (max-width: 1199.96px) and (min-width: 991.96px) {
    .timer-container {
        padding: 50px;
    }
}

@media (max-width: 991.96px) and (min-width: 768.96px) {
    .timer-container {
        padding: 40px 30px;
    }
}

@media (max-width: 767.96px) {
    .timer-container {
        padding: 30px 11.5px;
        row-gap: 18px;
    }
}

.timer-title {
    font-size: 50px;
    line-height: 110%;
    font-weight: 700;
}

@media (min-width: 767.96px) and (max-width: 991.96px) {
    .timer-title {
        font-size: 40px;
    }
}

@media (max-width: 767.96px) {
    .timer-title {
        font-size: 20px;
    }
}

@media (max-width: 1400px) {
    .timer-content {
        flex-direction: column;
        align-items: center;
        row-gap: 40px;
    }
}

@media (max-width: 992.96px) {
    .timer-content {
        align-items: center;
        row-gap: 30px;
    }
}

@media (max-width: 767.96px) {
    .timer-content {
        align-items: center;
        row-gap: 24px;
    }
}

@media (min-width: 767.96px) and (max-width: 991.96px) {
    .timer {
        padding: 35px 0 60px;
    }
}

@media (max-width: 767.96px) {
    .timer {
        padding: 30px 0 35px;
    }
}

.flip-clock-wrapper {
    width: fit-content;
    margin: 0;
}

.flip-clock-wrapper .flip {
    box-shadow: none;
    background: none;
    height: 120px;
    /* Default height */
    width: 80px;
    /* Default width */
    margin-right: 10px;
    border-radius: 5px;
}

@media (max-width: 991.96px) {
    .flip-clock-wrapper .flip {
        height: 100px;
        /* Reduced height */
        width: 70px;
        /* Reduced width */
    }
}

@media (max-width: 767.96px) {
    .flip-clock-wrapper .flip {
        height: 44px;
        /* Further reduced height */
        width: 30px;
        /* Further reduced width */
        margin-right: 2px;
        padding-left: 30px;
    }
}

.flip-clock-wrapper ul li a div div.inn {
    text-shadow: none;
    color: white;
    background: #015AA8 !important;
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 80px;
    line-height: 145%;
}

@media (max-width: 991.96px) and (min-width: 767.96px) {
    .flip-clock-wrapper ul li a div div.inn {
        line-height: 125%;
    }
}

@media (max-width: 767.96px) {
    .flip-clock-wrapper ul li a div div.inn {
        font-size: 30px;
    }
}

.flip-clock-wrapper ul li a div.up:after {
    top: 98%;
    height: 2px;
    background: white;
}

.flip-clock-wrapper ul {
    margin: 0px;
}

.flip-clock-wrapper ul li {
    line-height: 100%;
}

.flip-clock-wrapper ul.flip:nth-child(3),
.flip-clock-wrapper ul.flip:nth-child(4),
.flip-clock-wrapper ul.flip:nth-child(6),
.flip-clock-wrapper ul.flip:nth-child(9) {
    margin-right: 22px;
}

@media (max-width: 767.96px) {
    .flip-clock-wrapper ul.flip:nth-child(3),
    .flip-clock-wrapper ul.flip:nth-child(4),
    .flip-clock-wrapper ul.flip:nth-child(6),
    .flip-clock-wrapper ul.flip:nth-child(9) {
        margin-right: 8px;
    }
}

.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow,
.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow,
.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow,
.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow {
    background: none;
}

#timer .flip-clock-divider {
    display: none;
}

.labels {
    margin-top: 10px;
}

.labels div {
    font-size: 16px;
    line-height: 130%;
    color: #101010;
}

@media (min-width: 767.96px) {
    .labels div:nth-child(4) {
        padding-left: 0;
        padding-right: 1rem;
    }
}

@media (max-width: 767.96px) {
    .labels div {
        font-size: 12px;
        padding: 0;
    }

    .labels div:nth-child(4) {
        padding-right: 1rem;
    }

    .labels div:nth-child(3) {
        padding-right: 0.5rem;
    }

    .labels div:nth-child(1) {
        padding-left: 0.5rem;
    }
}

@media (max-width: 767.96px) {
    .labels {
        margin-top: 4px;
    }

    .labels div:nth-child(3) {
        padding-left: 0;
    }
}

.timer-form {
    row-gap: 22px;
    width: 390px;
}

.timer-form p {
    color: #8C8C8C;
    font-size: 16px;
    line-height: 130%;
    max-width: 300px;
}

@media (max-width: 7667.96px) {
    .timer-form p {
        font-size: 12px;
        max-width: 300px;
    }
}

@media (max-width: 991.96px) and (min-width: 767.96px) {
    .timer-form p {
        max-width: none;
    }
}

.timer-form p a {
    text-decoration: none;
    color: #8C8C8C;
}

.timer-form p a:hover {
    color: #8C8C8C;
}

.timer-form input {
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    padding: 12px 15px;
    border: 1px solid #C5C5C5;
    outline: none;
    border-radius: 6px;
}

@media (max-width: 575.96px) {
    .timer-form input {
        font-size: 14px;
    }
}

.timer-form input::placeholder {
    color: #C5C5C5;
}

@media (max-width: 767.96px) {
    .timer-form {
        width: 100%;
        row-gap: 18px;
    }
}

.inStock {
    row-gap: 50px;
}

.inStockWrapper {
    padding: 90px 0;
}

.inStockGrid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 50px;
    column-gap: 30px;
}

.inStockCard {
    row-gap: 26px;
    width: 100%;
    overflow: hidden;
}

.inStockCardSlider {
    height: 270px;
    position: relative;
}

.inStockCardSliderFullscreen {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.inStockCardSliderFullscreen img {
    width: 100%;
    height: 100%;
}

.inStockCardSlider .swiper-pagination {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    padding: 12px 18px;
}

.inStockCardSlider .swiper-pagination-bullet {
    background: unset;
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    flex-grow: 1;
    height: 100%;
    margin: 0 !important;
    opacity: 1;
}

.inStockCardSlider .swiper-pagination-bullet:after {
    content: "";
    height: 3px;
    width: calc(100% - 8px);
    background-color: #D6D6D6;
}

.inStockCardSlider .swiper-pagination-bullet:only-child {
    display: flex !important;
}

.inStockCardSlider .swiper-pagination-bullet-active:after {
    background-color: unset;
}

.inStockCardSlider img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.inStockCardContent, .inStockCardText {
    row-gap: 20px;
}

.inStockCardHeader {
    font-size: 20px;
    line-height: 110%;
    font-weight: 500;
    color: #101010;
}

.inStockCardSpecials {
    row-gap: 14px;
}

.inStockCardSpecialsEl {
    column-gap: 14px;
}

.inStockCardSpecialsEl p {
    font-size: 16px;
    line-height: 110%;
    font-weight: 400;
    color: #101010;
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.inStockCardSpecialsEl .popover {
    border: none;
    z-index: 10;
}

.inStockCardSpecialsEl .popover-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: 60%;
    left: -900%;
    z-index: 11;
    transform: translate(0, 10px);
    background-color: #FFFFFF;
    padding: 6px 10px;
    border-radius: 10px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.0784313725), 0 0 4px 0 rgba(0, 0, 0, 0.0392156863);
    width: 245px;
}

@media (max-width: 576px) {
    .inStockCardSpecialsEl .popover-content {
        left: -670%;
        width: 187px;
    }
}

.inStockCardSpecialsEl .popover-content p {
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #000;
    margin: 0;
}

@media (max-width: 576px) {
    .inStockCardSpecialsEl .popover-content p {
        font-size: 12px;
    }
}

.inStockCardSpecialsEl .popover:hover .popover-content {
    z-index: 10;
    opacity: 1;
    visibility: visible;
    transform: translate(0, -20px);
    transition: all 0.5s cubic-bezier(0.75, -0.02, 0.2, 0.97);
}

.inStockCardBtns {
    row-gap: 14px;
}

@media (min-width: 992px) and (max-width: 1399.96px) {
    .inStockCardSlider {
        height: 210px;
    }

    .inStockCardSliderFullscreen {
        top: 4px;
        right: 4px;
    }

    .inStockCardSlider .swiper-pagination {
        padding: 12px;
    }
}

@media (min-width: 767.96px) and (max-width: 991.96px) {
    .inStockWrapper {
        padding: 50px 0;
    }

    .inStockGrid {
        grid-template-columns: 1fr 1fr;
        row-gap: 70px;
        column-gap: 30px;
    }

    .inStockCardSlider {
        height: 210px;
    }

    .inStockCardSliderFullscreen {
        top: 4px;
        right: 4px;
    }

    .inStockCardSlider .swiper-pagination {
        padding: 12px;
    }

    .inStockCardContent, .inStockCardText {
        row-gap: 20px;
    }

    .inStockCardBtns {
        row-gap: 14px;
    }
}

@media (max-width: 767.96px) {
    .inStockWrapper {
        padding: 35px 0;
    }

    .inStockGrid {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .inStockCardSlider {
        height: 210px;
    }

    .inStockCardSliderFullscreen {
        top: 4px;
        right: 4px;
    }

    .inStockCardSlider .swiper-pagination {
        padding: 12px;
    }

    .inStockCardContent, .inStockCardText {
        row-gap: 20px;
    }

    .inStockCardBtns {
        row-gap: 14px;
    }
}

.tradeInAssessment {
    row-gap: 32px;
    max-width: 650px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    padding: 28px 0;
}

.tradeInAssessmentWrapper {
    padding: 90px 0;
}

.tradeInAssessmentHeader {
    color: #fff;
    font-size: 40px;
    line-height: 120%;
    font-weight: 500;
}

.tradeInAssessmentContent {
    padding: 95px 0;
    background-image: url("/media/tradeinAssessment/1.webp");
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 0;
}

.tradeInAssessmentContent:after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 61.57%);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: -1;
    content: "";
}

.tradeInAssessmentForm {
    row-gap: 20px;
    max-width: 385px;
}

.tradeInAssessmentField input {
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    padding: 12px 15px;
    border: 1px solid #a4a4a4;
    outline: none;
}

.tradeInAssessmentField input::-webkit-outer-spin-button, .tradeInAssessmentField input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.tradeInAssessmentPolicy p {
    color: #ffffff;
    font-size: 16px;
    line-height: 120%;
}

.tradeInAssessmentPolicy p a {
    color: #FFFFFF;
    text-decoration: none;
}

@media (min-width: 992px) and (max-width: 1399.96px) {
    .tradeInAssessment {
        padding: 35px 0;
    }

    .tradeInAssessmentContent {
        padding: 45px 0;
    }

    .tradeInAssessmentHeader {
        font-size: 34px;
    }
}

@media (min-width: 768px) and (max-width: 991.96px) {
    .tradeInAssessment {
        padding: 40px;
        max-width: 535px;
    }

    .tradeInAssessmentWrapper {
        padding: 50px 0;
    }

    .tradeInAssessmentContent {
        padding: 50px 0;
    }

    .tradeInAssessmentHeader {
        font-size: 26px;
    }
}

@media (max-width: 767.96px) {
    .tradeInAssessment {
        row-gap: 30px;
        padding: 40px 20px;
        max-width: unset;
    }

    .tradeInAssessmentWrapper {
        padding: 35px 0;
    }

    .tradeInAssessmentContent {
        padding: 0;
        background-position: 10% center;
    }

    .tradeInAssessmentContent .container {
        padding: 0;
    }

    .tradeInAssessmentHeader {
        font-size: 24px;
    }

    .tradeInAssessmentField input {
        font-size: 14px;
        padding: 8px 15px;
    }

    .tradeInAssessmentForm {
        max-width: unset;
    }

    .tradeInAssessmentPolicy p {
        font-size: 12px;
    }
}

.J5banner {
    padding-bottom: 80px;
}

.J5banner-block {
    height: 600px;
}

.J5banner-block picture {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
}

.J5banner-block picture img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.J5banner-block-text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3294117647), rgba(0, 0, 0, 0));
}

.J5banner-block-text h2 {
    color: #FFF;
    font-size: 48px;
    font-weight: 700;
    line-height: normal;
}

@media (max-width: 1400px) and (min-width: 992px) {
    .J5banner {
        padding-bottom: 75px;
    }
}

@media (max-width: 992px) and (min-width: 768px) {
    .J5banner {
        padding-bottom: 60px;
    }

    .J5banner-block {
        height: 470px;
    }
}

@media (max-width: 768px) {
    .J5banner {
        padding-bottom: 35px;
    }

    .J5banner-block {
        height: 440px;
    }

    .J5banner-block-text {
        padding-bottom: 230px;
    }

    .J5banner-block-text h2 {
        font-size: 32px;
        line-height: 35.2px;
    }
}

.J5info {
    padding-top: 80px;
    padding-bottom: 30px;
}

.J5info-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.J5info-block-text {
    max-width: 906px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 40px;
}

.J5info-block-text h2 {
    color: #0A0A0A;
    font-size: 48px;
    font-weight: 700;
    line-height: 57.6px;
    margin-bottom: 0;
}

.J5info-block-text p {
    color: #8C8C8C;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 0;
}

.J5info-block picture {
    bottom: 0;
    right: 0;
    top: 0;
}

.J5info-block picture img {
    width: 100%;
    height: 100%;
}

@media (max-width: 1400px) and (min-width: 992px) {
    .J5info {
        padding-top: 75px;
        padding-bottom: 30px;
    }

    .J5info-block {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .J5info-block-text {
        max-width: 906px;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 40px;
    }

    .J5info-block-text h2 {
        color: #0A0A0A;
        font-size: 48px;
        font-weight: 700;
        line-height: 57.6px;
        margin-bottom: 0;
    }

    .J5info-block-text p {
        color: #8C8C8C;
        font-size: 20px;
        font-weight: 400;
        line-height: 30px;
        margin-bottom: 0;
    }
}

@media (max-width: 992px) and (min-width: 768px) {
    .J5info {
        padding-top: 60px;
        padding-bottom: 30px;
    }

    .J5info-block {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .J5info-block-text {
        max-width: 906px;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 30px;
    }

    .J5info-block-text h2 {
        color: #0A0A0A;
        font-size: 40px;
        font-weight: 700;
        line-height: 48px;
        margin-bottom: 0;
    }

    .J5info-block-text p {
        color: #8C8C8C;
        font-size: 18px;
        font-weight: 400;
        line-height: 27px;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .J5info {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .J5info-block {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .J5info-block-text {
        max-width: 906px;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }

    .J5info-block-text h2 {
        color: #0A0A0A;
        font-size: 20px;
        font-weight: 700;
        line-height: 24px;
        margin-bottom: 0;
    }

    .J5info-block-text p {
        color: #8C8C8C;
        font-size: 14px;
        font-weight: 400;
        line-height: 21px;
        margin-bottom: 0;
    }
}

.service-info {
    padding: 85px 0 120px 0;
}

.service-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 70px;
}

.service-info-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info-text {
    padding: 80px 0;
    gap: 40px;
}

.service-info-text h2 {
    font-weight: 500;
    font-size: 50px;
    line-height: 110%;
    text-transform: uppercase;
    margin: 0;
}

@media (max-width: 992px) {
    .service-info-text h2 {
        font-size: 40px;
    }
}

.service-info-text p {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    margin: 0;
}

.service-info-img {
    right: 0;
}

.service-info-img img {
    max-height: 477px;
}

@media (max-width: 1440px) {
    .service-info-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .service-info-text {
        padding: 0;
    }
}

@media (max-width: 992px) {
    .service-info {
        padding: 75px 0 110px 0;
    }

    .service-info-text h2 {
        font-size: 40px;
        line-height: 110%;
    }

    .service-info-text p {
        font-weight: 400;
        font-size: 18px;
        line-height: 150%;
    }
}

@media (max-width: 768px) {
    .service-info {
        padding: 50px 0 40px 0;
    }
}

@media (max-width: 576px) {
    .service-info {
        padding: 35px 0 10px 0;
    }

    .service-info-text {
        gap: 30px;
    }

    .service-info-text h2 {
        font-weight: 500;
        font-size: 28px;
        line-height: 110%;
    }

    .service-info-text p {
        font-weight: 400;
        font-size: 16px;
        line-height: 150%;
    }
}

.remont {
    gap: 50px;
}

.remont-container {
    padding: 50px 0 85px 0;
}

@media (max-width: 992px) {
    .remont {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .remont {
        gap: 30px;
    }
}

.remont-title-container {
    gap: 40px;
}

@media (max-width: 768px) {
    .remont-title-container {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .remont-title-container {
        gap: 20px;
    }
}

.remont-title-container h1 {
    font-weight: 500;
    font-size: 50px;
    line-height: 110%;
    text-transform: uppercase;
    margin: 0;
}

@media (max-width: 576px) {
    .remont-title-container h1 {
        font-size: 24px !important;
    }
}

.remont-navigation a {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #000;
    text-decoration: none !important;
}

@media (max-width: 768px) {
    .remont-navigation a {
        font-size: 16px;
    }
}

.remont-item {
    height: 100%;
}

.remont-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right;
}

.remont-item-text {
    padding: 40px 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.remont-item-text.dark {
    color: rgb(60, 60, 60);
}

.remont-item-text.white {
    color: #fff;
}

.remont-item-text h3 {
    font-weight: 700;
    font-size: 22px;
    line-height: 110%;
    font-variant: small-caps;
    margin: 0;
}

.remont-item-text p {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    text-transform: uppercase;
    margin: 0;
}

.remont-item-text a {
    max-width: 240px;
}

@media (max-width: 576px) {
    .remont-item-text h3 {
        font-size: 16px !important;
    }

    .remont-item-text p {
        font-size: 14px !important;
    }
}

.remont-item-image5 {
    max-width: 274px;
}

.remont-item-image-container {
    width: 100%;
    display: flex;
    justify-content: end;
}

.remont-grid-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    column-gap: 30px;
}

.remont-grid1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 230px 400px;
    row-gap: 30px;
}

.remont-grid2 {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 400px 230px;
    row-gap: 30px;
}

.remont-grid-item1 {
    grid-column: 1/span2;
    background: #31343C;
}

.remont-grid-item2 {
    margin-right: 30px;
    background: #31343C;
}

.remont-grid-item2 img {
    object-position: bottom;
}

.remont-grid-item3 {
    background: rgb(247, 248, 249);
}

.remont-grid-item3 img {
    object-position: bottom;
}

.remont-grid-item4 {
    background: rgb(247, 248, 249);
}

.remont-grid-item4 img {
    object-position: bottom;
}

.remont-grid-item5 {
    background: #31343C;
    overflow: hidden;
}

.remont-grid-item5 img {
    object-position: bottom;
}

@media (max-width: 1440px) {
    .remont-item-text {
        padding: 30px 0 0 30px;
    }

    .remont-grid-item2 {
        margin-right: 20px;
    }

    .remont-grid-container {
        gap: 20px;
    }

    .remont-grid1 {
        grid-template-rows: 230px 350px;
        row-gap: 20px;
    }

    .remont-grid2 {
        grid-template-rows: 350px 230px;
        row-gap: 20px;
    }
}

@media (max-width: 992px) {
    .remont-container {
        padding: 40px 0 75px 0;
    }

    .remont h1 {
        font-weight: 500;
        font-size: 32px;
        line-height: 110%;
        text-transform: uppercase;
    }

    .remont-item-text {
        padding: 20px 0 0 20px;
    }

    .remont-item-text h3 {
        font-weight: 700;
        font-size: 18px;
        line-height: 120%;
        text-transform: uppercase;
    }

    .remont-item-text p {
        font-weight: 400;
        font-size: 16px;
        line-height: 100%;
        text-transform: uppercase;
    }

    .remont-item-text a {
        max-width: 180px;
    }

    .remont-grid-container {
        gap: 20px;
    }

    .remont-grid1 {
        grid-template-rows: 200px 300px;
        row-gap: 20px;
    }

    .remont-grid2 {
        grid-template-rows: 300px 200px;
        row-gap: 20px;
    }
}

@media (max-width: 768px) {
    .remont-container {
        padding: 40px 0 50px 0;
    }

    .remont-grid-item1 {
        grid-column: 1;
    }

    .remont-grid-item2 {
        margin: 0;
    }

    .remont-grid-item5 {
        grid-column: 1/span 2;
    }

    .remont-grid-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .remont-container {
        padding: 30px 0 35px 0;
    }

    .remont-navigation a {
        font-size: 14px;
    }

    .remont-grid-item5 {
        grid-column: 1;
    }

    .remont-grid-item2.remont-item-text {
        max-width: 190px;
    }

    .remont-item-image {
        max-width: 190px;
        max-height: 70px;
    }

    .remont-item-button {
        display: none !important;
    }

    .remont-grid-container {
        grid-template-columns: 1fr;
        grid-auto-rows: 1fr;
    }
}

.credit {
    padding: 90px 0;
}

@media (max-width: 991.96px) and (min-width: 767.96px) {
    .credit {
        padding: 60px 0;
    }
}

@media (max-width: 767.96px) {
    .credit {
        padding: 35px 0;
    }
}

.credit-content-wrap {
    padding: 60px;
}

@media (max-width: 1399.96px) and (min-width: 991.96px) {
    .credit-content-wrap {
        padding: 40px;
    }
}

@media (max-width: 991.96px) and (min-width: 575.96px) {
    .credit-content-wrap {
        flex-direction: column;
        padding: 40px 60px;
    }
}

@media (max-width: 575.96px) {
    .credit-content-wrap {
        padding: 40px 20px;
    }
}

.credit-header {
    font-size: 40px;
    line-height: 120%;
    color: white;
    font-weight: 700;
    text-align: start;
    margin: 0;
}

@media (max-width: 576px) {
    .credit-header {
        font-size: 24px;
    }
}

.credit .askBlockFieldWrapper {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.credit .askBlockFieldWrapper label {
    color: white;
}

.credit .credit-value {
    font-weight: 700;
    color: white;
}

.credit-container {
    background-color: #101010;
    box-shadow: -1px 4px 47px 0px rgba(11, 69, 127, 0.0784313725);
    box-shadow: 0px 7px 47px 0px rgba(11, 69, 127, 0.0392156863);
}

@media (max-width: 992px) {
    .credit-container {
        flex-direction: column-reverse;
        gap: 0;
    }
}

.credit-content {
    gap: 30px;
}

@media (max-width: 992px) {
    .credit-content {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .credit-content {
        gap: 25px;
    }
}

.credit-content p {
    color: white;
    font-size: 16px;
    line-height: 150%;
}

.credit-content p a {
    color: white;
}

@media (max-width: 992px) and (min-width: 576px) {
    .credit-content p {
        max-width: none;
    }
}

@media (max-width: 575.96px) {
    .credit-content p {
        font-size: 14px;
    }
}

.credit-content-el {
    row-gap: 10px;
}

.credit-content-el p {
    font-size: 16px;
    line-height: 130%;
}

@media (max-width: 575.96px) {
    .credit-content-el p {
        font-size: 14px;
    }
}

.credit-content-el select {
    -webkit-appearance: none;
    -moz-appearance: none;
    /*background-image: url("data:image/svg+xml;utf8,<svg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M6 9L12 15L18 9' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");*/
    background-repeat: no-repeat;
    background-position-x: 97%;
    background-position-y: 20px;
    background-color: white;
    padding: 17px 12px;
    border: 1px solid #a4a4a4;
    border-radius: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    width: 100%;
}

.credit-content-el select:focus {
    border-color: unset;
    box-shadow: unset;
}

.credit-content-el #output-payments,
.credit-content-el #output-term {
    font-size: 16px;
    color: white;
    transform: translateX(-50%);
    line-height: 1;
    white-space: nowrap;
}

.credit-content-el-inputWrapper {
    row-gap: 18px;
}

.credit-content-el-inputWrapper .range-value p {
    font-size: 14px;
    line-height: 150%;
    color: rgb(134, 134, 134);
}

.credit-content-el--range {
    row-gap: 10px;
}

.credit-content-bottom {
    row-gap: 12px;
}

.credit-content-bottom p {
    font-size: 16px;
    color: white;
    line-height: 150%;
    text-align: center;
}

@media (max-width: 575.96px) {
    .credit-content-bottom p {
        font-size: 14px;
    }
}

.credit-content-bottom a {
    text-decoration: none;
    color: rgb(164, 164, 164);
}

.credit-content-input {
    -webkit-appearance: none;
    /* Скрывает слайдер, чтобы можно было создать свой */
    width: 100%;
    /* Указание параметра ширины требуется для Firefox. */
    background: transparent;
}

.credit-content-input:focus {
    outline: none;
}

.credit-content-input::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: linear-gradient(to right, white var(--value, 0%), #8C8C8C var(--value, 0%));
    border-radius: 4px;
}

.credit-content-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: 2px solid #8C8C8C;
    height: 14px;
    width: 14px;
    border-radius: 50px;
    background: #ffffff;
    cursor: pointer;
    margin-top: -5px;
}

.credit-content-input::-moz-range-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: linear-gradient(to right, white var(--value, 0%), #8C8C8C var(--value, 0%));
    border-radius: 4px;
}

.credit-content-input::-moz-range-thumb {
    box-shadow: 1px 1px 1px #8C8C8C, 0px 0px 1px #0d0d0d;
    border: 1px solid #8C8C8C;
    height: 36px;
    width: 16px;
    border-radius: 3px;
    background: #ffffff;
    cursor: pointer;
}

.credit-content-input::-ms-track {
    width: 100%;
    height: 8.4px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    border-width: 16px 0;
    color: transparent;
}

.credit-content-input::-ms-fill-lower {
    background: #ccc;
    border-radius: 2.6px;
}

.credit-content-input::-ms-fill-upper {
    background: white;
    border-radius: 2.6px;
}

.credit-content-input::-ms-thumb {
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    border: 1px solid #000000;
    height: 36px;
    width: 16px;
    border-radius: 3px;
    background: #ffffff;
    cursor: pointer;
}

@media (min-width: 1399.96px) {
    .credit .container {
        row-gap: 30px;
    }
}

@media (max-width: 991.96px) and (min-width: 767.96px) {
    .credit .container {
        row-gap: 0;
    }

    .credit-header {
        font-size: 40px;
    }
}

@media (max-width: 991.96px) and (min-width: 767.96px) and (max-width: 575.96px) {
    .credit-header {
        margin-bottom: 25px;
        font-size: 24px;
    }
}

@media (max-width: 991.96px) and (min-width: 767.96px) {
    .credit-el {
        width: 100%;
    }

    .credit .askBlockFieldWrapper {
        width: 100%;
    }
}

@media (max-width: 767.96px) {
    .credit .container {
        row-gap: 15px;
    }

    .credit-content {
        max-width: 100%;
        width: 100%;
        row-gap: 20px;
    }

    .credit-content-el {
        width: 100%;
    }

    .credit-content .askBlockFieldWrapper {
        width: 100%;
    }
}

.credit .credit-img,
.credit .credit-content-wrap {
    flex: 1;
}

.credit .credit-img {
    position: relative;
    display: flex;
    align-items: center;
}

@media (max-width: 767.96px) {
    .credit .credit-img {
        flex-direction: column;
        min-height: 290px;
        height: 290px;
    }
}

@media (max-width: 575.96px) {
    .credit .credit-img {
        min-height: 162px;
        height: 162px;
    }
}

.credit .credit-img img {
    width: 100%;
}

.credit-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 575.96px) {
    .credit-fields {
        flex-direction: column;
        gap: 14px;
    }
}

.credit-fields-inputs {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

@media (max-width: 767.96px) {
    .credit-fields-inputs {
        flex-direction: column;
    }
}

.credit label {
    font-size: 16px;
    color: black;
    line-height: 150%;
}

@media (max-width: 575.96px) {
    .credit label {
        font-size: 14px;
    }
}

.credit input[type=text] {
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    padding: 12px 15px;
    border: 1px solid #a4a4a4;
    outline: none;
}

@media (max-width: 575.96px) {
    .credit input[type=text] {
        font-size: 14px;
    }
}

.credit .credit-content-bottom p {
    font-size: 12px;
    line-height: 130%;
    font-weight: 500;
}

.credit .choices[data-type*=select-one]::after {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url("/assets/img/chevron-down.svg");
    background-repeat: no-repeat;
    background-position: right center;
    border-style: none;
    border-width: 0;
    position: absolute;
    right: 12px;
    top: 33%;
    transition: 0.2s;
    pointer-events: none;
}

.credit .choices[data-type*=select-one].is-open::after {
    transform: rotate(180deg);
}

.credit .choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: #D6001C;
    color: white;
}

.credit .choices__inner {
    background: white;
    border: 1px solid #a4a4a4;
}

.meeting-marquee {
    opacity: 1;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
}

.meeting-marquee .meeting_item {
    padding: 22px 50px 22px 0;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

@media (max-width: 1399.96px) and (min-width: 991.96px) {
    .meeting-marquee .meeting_item {
        padding: 24px 50px 24px 0;
    }
}

@media (max-width: 991.96px) and (min-width: 767.96px) {
    .meeting-marquee .meeting_item {
        padding: 24px 50px 24px 0;
    }
}

@media (max-width: 768px) and (min-width: 320px) {
    .meeting-marquee .meeting_item {
        padding: 18px 24px 18px 0;
        gap: 24px;
    }
}

.meeting-marquee p {
    font-size: 26px;
    line-height: 110%;
    font-weight: 700;
    margin: 0;
}

@media (max-width: 1399.96px) {
    .meeting-marquee p {
        font-size: 18px;
    }
}

.meeting-marquee .white {
    color: #fff;
}

.meeting-marquee .cian {
    color: #00CABF;
}

.meeting-marquee > div {
    animation: marq 25s linear infinite;
    display: flex;
    width: 200%;
    box-sizing: border-box;
}

.meeting-marquee > div > div {
    width: 100%;
    display: flex;
    background-color: #004786;
    box-sizing: border-box;
}

@keyframes marq {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(var(--marq, -50%));
    }
}

.specialsOffers {
    row-gap: 30px;
    padding: 75px 0;
    overflow: hidden;
}

.specialsOffers .specialsOffersSwiper {
    overflow: visible;
}

.specialsOffers .swiper-wrapper {
    overflow: visible;
}

.specialsOffers .swiper-slide {
    background: linear-gradient(90deg, #0A0A0A 0%, #30363A 67.5%, #8C8C8C 100%);
    z-index: 0;
    padding: 6px;
    border-radius: 27px;
    cursor: pointer;
    position: relative;
    min-width: 282px;
}

.specialsOffers .swiper-slide::after {
    position: absolute;
    top: 3px;
    left: 3px;
    bottom: 3px;
    right: 3px;
    content: "";
    background-color: #fff;
    border-radius: 25px;
    z-index: -1;
}

.specialsOffers .swiper-slide img {
    width: 100%;
    border-radius: 23px;
}

.specialsOffers .swiper-button-prev, .specialsOffers .swiper-button-next {
    width: 56px;
    height: auto;
}

.specialsOffers .swiper-button-prev {
    left: 0;
}

.specialsOffers .swiper-button-next {
    right: 0;
}

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

@media (min-width: 991.96px) and (max-width: 1399.96px) {
    .specialsOffers .swiper-slide {
        min-width: 225px;
    }
}

@media (min-width: 768px) and (max-width: 991.96px) {
    .specialsOffers {
        padding: 50px 0;
    }
}

@media (min-width: 575.96px) and (max-width: 991.96px) {
    .specialsOffers .swiper-slide {
        min-width: 175px;
    }
}

@media (max-width: 767.96px) {
    .specialsOffers {
        padding: 30px 0;
        row-gap: 25px;
    }

    .specialsOffers .swiper-slide {
        padding: 4px;
        border-radius: 15px;
    }

    .specialsOffers .swiper-slide::after {
        top: 2px;
        left: 2px;
        bottom: 2px;
        right: 2px;
        border-radius: 14px;
    }

    .specialsOffers .swiper-slide img {
        border-radius: 12px;
    }
}

@media (max-width: 575.96px) {
    .specialsOffers .swiper-slide {
        min-width: 122px;
    }
}

.testDrive {
    padding: 150px 0;
    position: relative;
    z-index: 0;
}

.testDriveWrap {
    padding: 90px 0;
}

.testDrive-bckg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-size: cover;
    background-position: 20% center;
    z-index: -1;
}

.testDrive-bckg::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(196, 196, 196, 0) 156.08%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.testDrive-info {
    row-gap: 30px;
    width: 42%;
}

.testDrive-info h5 {
    color: #FFF;
    font-size: 40px;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.testDrive-info p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.testDrive-info .popover {
    border-radius: 100%;
    z-index: 10;
    background-color: unset;
    border: unset;
}

.testDrive-info .popover-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: 80%;
    left: -355%;
    z-index: 11;
    transform: translate(0, 10px);
    background-color: #FFFFFF;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.0588235294), 0 0 4px 0 rgba(0, 0, 0, 0.0392156863);
    width: 180px;
}

.testDrive-info .popover-content p {
    font-weight: 400;
    font-size: 14px !important;
    line-height: 150%;
    text-align: center;
}

@media (max-width: 992px) {
    .testDrive-info .popover-content {
        left: -420%;
    }
}

@media (max-width: 768px) {
    .testDrive-info .popover-content {
        padding: 8px;
        bottom: 50%;
        width: 170px;
        left: -410%;
    }
}

.testDrive-info .popover-content p {
    text-align: center;
    font-weight: 400;
    font-size: 12px;
    line-height: 110%;
    color: #000001;
    margin: 0;
}

.testDrive-info .popover:hover .popover-content {
    z-index: 10;
    opacity: 1;
    visibility: visible;
    transform: translate(0, -20px);
    transition: all 0.5s cubic-bezier(0.75, -0.02, 0.2, 0.97);
}

@media (max-width: 992px) and (max-width: 1200px) {
    .testDrive {
        padding: 130px 0;
    }

    .testDrive-bckg {
        background-position: 30% center;
    }
}

@media (max-width: 768px) and (max-width: 992px) {
    .testDrive {
        padding: 45px 0;
    }

    .testDriveWrap {
        padding: 60px 0;
    }

    .testDrive-bckg {
        background-position: 30% center;
    }
}

@media (max-width: 768px) {
    .testDrive {
        padding: 25px 0 0;
        position: relative;
        z-index: 0;
    }

    .testDrive::after {
        content: "";
        position: absolute;
        z-index: -1;
        background: linear-gradient(180deg, #1D2129 58.44%, rgba(29, 33, 41, 0) 95.09%);
        top: 0;
        right: 0;
        left: 0;
        height: 60%;
    }

    .testDriveWrap {
        padding: 35px 0;
    }

    .testDrive-bckg {
        position: relative;
        background-size: cover;
        background-position: 20% center;
        z-index: -1;
        height: 450px;
    }

    .testDrive-bckg::after {
        position: absolute;
        z-index: -1;
        width: 100%;
        background: linear-gradient(180deg, lightgray 0%, lightgray 100%);
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        opacity: 0.05;
    }

    .testDrive-info {
        row-gap: 20px;
        width: 100%;
    }

    .testDrive-info h5 {
        font-size: 24px;
    }

    .testDrive-info p {
        font-size: 14px;
    }
}

.fixed-content {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 10000;
    bottom: 0;
}

.cookie_block {
    box-shadow: 0px -5px 44px 0px rgba(0, 0, 0, 0.0705882353);
    left: 0;
    right: 0;
    z-index: 99;
    bottom: 0;
    display: none;
    background-color: #F1F1F1;
}

.cookie_block-content {
    padding: 16px 0;
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1400px) {
    .cookie_block-content {
        padding: 18px 0;
    }
}

@media (max-width: 992px) {
    .cookie_block-content {
        padding: 12.5px 0;
    }
}

@media (max-width: 768px) {
    .cookie_block-content {
        padding: 10px 0;
        flex-direction: column;
        gap: 14px;
        align-items: flex-start;
    }
}

.cookie_block-link {
    text-decoration: underline;
    color: #206CCF;
}

.cookie_block-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 0;
    max-width: 1042px;
}

@media (max-width: 768px) {
    .cookie_block-text {
        font-size: 14px;
    }
}

.modelContent {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (max-width: 1200px) {
    .modelContent {
        display: none;
    }
}

@media (max-width: 992px) {
    .modelContent {
        display: flex;
    }
}

.modelBlock {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.modelImg {
    width: 24px;
    height: 24px;
}

.modelText {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
}

.modelContentTablet {
    display: none;
}

@media (max-width: 1200px) {
    .modelContentTablet {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
}

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

.contacts {
    padding: clamp(4.375rem, 3.482rem + 4.46vw, 7.5rem) 0;
    color: #101010;
    /* font-family: Proxima Nova; */
}

.contacts .contacts__title {
    font-weight: 600;
    font-size: clamp(1.5rem, 1.214rem + 1.43vw, 2.5rem);
    line-height: clamp(2rem, 1.714rem + 1.43vw, 3rem);
    padding-bottom: 5px;
    margin-bottom: clamp(1.5rem, 1.036rem + 2.32vw, 3.125rem);
}

.contacts .contacts__title::after {
    content: "";
    width: 160px;
    height: 2px;
    background-color: #41474d;
    display: block;
    margin-top: 5px;
}

.contacts .contacts__content {
    gap: 30px;
}

.contacts .contacts__map {
    max-width: 490px;
    height: 100%;
    flex: 1 0 0;
    /* border-radius: 100px;
  border: transparent solid 1px; */
}

.contacts .contacts__map iframe {
    width: 100% !important;
    height: clamp(230px, 169.43px + 18.93vw, 442px) !important;
    /* жёстко задаём */
}

@media (max-width: 777px) {
    .contacts .contacts__map {
        max-width: 100%;
        /* height: 400px !important; */
    }
}

.contacts .contacts__map iframe {
    border-radius: 10px;
    width: 100%;
    height: 100%;
}

.contacts .contacts__info {
    flex: 1 0 0;
}

.contacts__phone-title {
    font-weight: 600;
    font-size: clamp(1.125rem, 1.054rem + 0.36vw, 1.375rem);
    line-height: clamp(1.5rem, 1.393rem + 0.54vw, 1.875rem);
    color: #004786;
}

.contacts__phones {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 9.71px + 0.71vw, 20px)
}

.contacts__phone-link {
    display: flex;
    gap: clamp(6px, 5.43px + 0.18vw, 8px);
    font-weight: 600;
    font-size: clamp(16px, 14.86px + 0.36vw, 20px);
    line-height: 150%;
    color: inherit;
    transition: color 0.3ms ease-in;
}

.contacts__phone-link:hover {
    color: #004786;
}

.contacts__phone-clock {
    display: flex;
    gap: clamp(6px, 5.43px + 0.18vw, 8px);
    font-weight: 400;
    font-size: clamp(16px, 14.86px + 0.36vw, 20px);
    line-height: 150%;
    color: inherit;
    transition: color 0.3ms ease-in;
}
.contacts__phone-link img, .contacts__phone-clock img{
    height: clamp(20px, 18.86px + 0.36vw, 24px);
    width: clamp(20px, 18.86px + 0.36vw, 24px);
}

.contacts__email {
    /*font-weight: 600;*/
    font-size: clamp(1rem, 0.964rem + 0.18vw, 1.125rem);
    line-height: 24px;
    margin-top: 10px;
    margin-bottom: 16px;
}

.contacts__email a {
    transition: color 0.3ms ease-in;
}

.contacts__email a:hover {
    color: #004786;
}

.contacts__address {
    /*font-weight: 600;*/
    font-size: clamp(1rem, 0.964rem + 0.18vw, 1.125rem);
    line-height: 24px;
    margin-bottom: clamp(1.25rem, 1.179rem + 0.36vw, 1.5rem);
}

.contacts__work-time-title {
    font-weight: 600;
    font-size: clamp(1.125rem, 1.054rem + 0.36vw, 1.375rem);
    line-height: clamp(1.5rem, 1.393rem + 0.54vw, 1.875rem);
    color: #015AA8;
    margin-top: 12px;
    margin-bottom: 10px;
}

.contacts__work-time-schedule {
    font-weight: 600;
    font-size: clamp(1rem, 0.964rem + 0.18vw, 1.125rem);
    line-height: 24px;
    color: #101010;
    margin-bottom: 0;
}

.contacts__work-time-schedule:not(:last-child) {
    margin-bottom: 4px;
}

.promoForm {
    color: #1d1d1d;
}

.promoForm .image-side {
    min-height: 360px;
}

@media (min-width: 768px) {
    .promoForm .image-side {
        min-height: 360px;
    }
}

@media (min-width: 992px) {
    .promoForm .image-side {
        min-height: 518px;
    }
}

.promoForm .image-side img {
    display: block;
    object-fit: cover;
    object-position: 10% 50%;
}

.promoForm__content {
    background-color: #f3f3f3;


    padding: clamp(1.5rem, 1.214rem + 1.43vw, 2.5rem);
    /*align-items: center;*/
}

.promoForm .content-wrap {
    /*max-width: clamp(18.75rem, 13.679rem + 25.36vw, 36.5rem);*/
    max-width: 996px;
    margin: 0 auto;
}

@media (max-width: 1000px) {
    .promoForm .content-wrap {
        max-width: 100%;
    }
}

/*@media (min-width: 992px) {*/
/*  .promoForm .content-wrap {*/
/*    max-width: clamp(18.75rem, 13.679rem + 25.36vw, 36.5rem);*/
/*  }*/
/*}*/
.promoForm .content-wrap h3 {
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: clamp(1.5rem, 1.214rem + 1.43vw, 2.5rem);
    line-height: clamp(1.875rem, 1.554rem + 1.61vw, 3rem);
}

.promoForm .content-wrap p {
    font-size: clamp(0.875rem, 0.839rem + 0.18vw, 1rem);
}

.promoForm__btn {
    width: 238px;
    height: 40px;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 22px;
    text-align: center;
    border: 1px solid #015aa8;
    background-color: #015aa8;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
}

@media (min-width: 320px) {
    .promoForm__btn {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .promoForm__btn {
        width: 220px;
    }
}

.promoForm form > input {
    border: 1px solid #999999;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.promoForm .form-control::placeholder {
    color: #c5c5c5;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.needs-validation .form-label {
    /* font-family: Proxima Nova; */
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    vertical-align: middle;
    color: #101010;
}

.form-check-label {
    color: #41474d;
}

.form-check-label a {
    color: inherit;
}

.about {
    padding: clamp(6.25rem, 5.893rem + 1.79vw, 7.5rem) 0;
    color: #101010;
}

.about__title {
    font-weight: 600;
    font-size: clamp(1.5rem, 1.214rem + 1.43vw, 2.5rem);
    line-height: clamp(2rem, 1.714rem + 1.43vw, 3rem);
    padding-bottom: 5px;
    margin-bottom: clamp(1.5rem, 1.036rem + 2.32vw, 3.125rem);
}

.about__title::after {
    content: "";
    width: 160px;
    height: 2px;
    background-color: #41474d;
    display: block;
    margin-top: 5px;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.25rem, 1.071rem + 0.89vw, 1.875rem);
}

@media (max-width: 1000px) {
    .about__content {
        grid-template-columns: 1fr;
    }
}

.about__text {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 1.071rem + 0.89vw, 1.875rem);
}

.about__subtitle {
    font-weight: 600;
    font-size: clamp(1.125rem, 1.018rem + 0.54vw, 1.5rem);
    line-height: clamp(1.5rem, 1.357rem + 0.71vw, 2rem);
    text-wrap: balance;
}

.about__benefits {
    display: flex;
    flex-direction: column;
    gap: clamp(0.625rem, 0.446rem + 0.89vw, 1.25rem);
}

.benefit-item {
    display: flex;
    gap: clamp(0.625rem, 0.554rem + 0.36vw, 0.875rem);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.benefit-item img {
    height: fit-content;
}

.about__img img {
    border-radius: 10px;
    object-position: 100% 50%;
}

.equipment__mobile {
    display: none;
}

@media (max-width: 768px) {
    .equipment__mobile {
        display: flex;
    }
}

.equipment__desktop {
    display: flex;
}

@media (max-width: 768px) {
    .equipment__desktop {
        display: none;
    }
}

.equipment__desktop .equipment {
    display: flex;
    flex-direction: column;
}

.equipment__desktop .equipment-section {
    padding: 90px 0;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .equipment__desktop .equipment-section {
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .equipment__desktop .equipment-section {
        padding: 35px 0;
    }
}

.equipment__desktop .equipment-wrapper {
    display: flex;
    gap: clamp(1.25rem, -1.591rem + 4.55vw, 2.5rem);
}

.equipment__desktop .equipment-header {
    padding: clamp(1.875rem, 0.455rem + 2.27vw, 2.5rem) 0;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.1215686275);
    display: flex;
    flex-direction: column;
    gap: clamp(2.375rem, 2.091rem + 0.45vw, 2.5rem);
    background-color: #fff;
    border-radius: 8px;
}

.equipment__desktop .equipment-header ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}

.equipment__desktop .equipment-header ul li {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.33;
    padding: 20px clamp(1rem, -1.273rem + 3.64vw, 2rem);
    cursor: pointer;
    border-bottom: 1px solid #BFD5E9;
}

.equipment__desktop .equipment-header ul li:hover {
    background-color: rgba(1, 90, 168, 0.5568627451);
    color: #fff;
}

.equipment__desktop .equipment-header ul li.active {
    background-color: #015AA8;
    color: #fff;
}

.equipment__desktop .equipment-header button {
    margin-left: clamp(1rem, -1.273rem + 3.64vw, 2rem);
    width: fit-content;
}

.equipment__desktop .equipment-content {
    padding: clamp(1.875rem, 0.455rem + 2.27vw, 2.5rem) clamp(1rem, -1.273rem + 3.64vw, 2rem);
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.1215686275);
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
    background-color: #fff;
    border-radius: 8px;
}

.equipment__desktop .equipment-content h3 {
    font-weight: 600;
    font-size: 30px;
    line-height: 1.33;
}

.equipment__desktop .equipment-content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.33;
    margin-top: 8px;
}

.equipment__desktop .equipment-content-stickers {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.equipment__desktop .equipment-content-stickers span {
    cursor: pointer;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    background-color: #C5C5C5;
    padding: 3px 16px;
    border-radius: 4px;
    color: #101010;
}

.equipment__desktop .equipment-content-stickers span.active {
    background-color: #41474D;
    color: #fff;
}

.equipment__desktop .equipment-models h4 {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.36;
}

.equipment__desktop .equipment-models-list {
    display: flex;
    gap: clamp(1.25rem, -0.17rem + 2.27vw, 1.875rem);
}

.equipment__desktop .equipment-models-all {
    display: flex;
    gap: 14px;
    align-items: center;
    color: #004786;
    cursor: pointer;
}

.equipment__desktop .equipment-models-all p {
    margin: 0;
}

.equipment__desktop .equipment-models-all:hover {
    color: #41474D;
}

.equipment__desktop .equipment-model {
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.equipment__desktop .equipment-model-info {
    padding: 20px 12px;
    height: 200px;
    display: flex;
    flex-direction: column;
    min-height: fit-content;
    flex: 1;
}

.equipment__desktop .equipment-model-info a {
    margin-top: auto;
    width: 60%;
    min-width: fit-content;
}

.equipment__desktop .equipment-model-info p {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
}

@media (max-width: 1000px) {
    .equipment__desktop .equipment-model-info p {
        font-size: 18px;
    }

}

.equipment__desktop .equipment-model img {
    min-height: 195px;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 1000px) {
    .equipment__desktop .equipment-model img {
        min-height: 150px;
    }

    .equipment__desktop .equipment-model-info {
        padding: 20px 12px;
        /*height: 180px;*/
    }

}

.equipment__mobile .equipmentMobile {
    width: 100%;
}

.equipment__mobile .equipmentMobile-list {
    display: flex;
    flex-direction: column;
}

.equipment__mobile .equipmentMobile-item {
    border-bottom: 1px solid #004786;
}

.equipment__mobile .equipmentMobile-item:last-child {
    border-bottom: none;
}

.equipment__mobile .equipmentMobile-item svg {
    transition: all 0.3s ease;
}

.equipment__mobile .equipmentMobile-item.active .equipmentMobile-content {
    display: flex;
}

.equipment__mobile .equipmentMobile-header {
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.equipment__mobile .equipmentMobile-item.active .equipmentMobile-header svg {
    transform: rotate(180deg);
}

.equipment__mobile .equipmentMobile-header p {
    margin: 0;
}

.equipment__mobile .equipmentMobile-content {
    display: none;
    flex-direction: column;
}

.equipment__mobile .equipmentMobile-stickers {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.equipment__mobile .equipmentMobile-stickers span {
    cursor: pointer;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    background-color: #C5C5C5;
    padding: 3px 16px;
    border-radius: 4px;
    color: #101010;
}

.equipment__mobile .equipmentMobile-stickers span.active {
    background-color: #41474D;
    color: #fff;
}

.equipment__mobile .equipmentMobile-models {
    overflow-x: auto;
    margin-bottom: clamp(1.125rem, 0.656rem + 2.34vw, 1.5rem);
}

.equipment__mobile .equipmentMobile-models-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(0.875rem, 0.719rem + 0.78vw, 1rem) 0;
    cursor: pointer;
}

.equipment__mobile .equipmentMobile-models-header h4 {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.33;
}

.equipment__mobile .equipmentMobile-models-all {
    display: flex;
    gap: 14px;
    align-items: center;
    color: #004786;
    cursor: pointer;
}

.equipment__mobile .equipmentMobile-models-all:hover {
    color: #41474D;
}

.equipment__mobile .equipmentMobile-models-all p {
    margin: 0;
}

.equipment__mobile .equipmentMobile-models-list {
    display: flex;
    gap: 16px;
}

.equipment__mobile .equipmentMobile-model {
    flex: 1;
    min-width: 262px;
    border: 1px solid #C5C5C5;
    border-radius: 10px;
}

.equipment__mobile .equipmentMobile-model img {
    min-height: 180px;
    width: 100%;
}

.equipment__mobile .equipmentMobile-model-info {
    padding: 20px 12px;
}

.equipment__mobile .equipmentMobile-model-info button {
    width: 100%;
}

.equipment__mobile .equipmentMobile-model-info p {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.33;
}

.tech-in-stock {
    padding-top: clamp(4.375rem, 3.482rem + 4.46vw, 7.5rem);
    padding-bottom: clamp(4.375rem, 3.482rem + 4.46vw, 7.5rem);
}

.tech-in-stock__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tech-in-stock__btn {
    box-sizing: border-box;
    width: clamp(13.75rem, 13.339rem + 2.05vw, 15.188rem);
    height: 40px;
    border-radius: 6px;
    background: #015AA8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    justify-self: center;
    font-weight: 400;
}

.tech-in-stock-swiper {
    overflow: hidden;
}

.tech-in-stock .swiper-wrapper {
    align-items: stretch;
}

.tech-in-stock .swiper-slide {
    height: auto;
}

.tech-in-stock__card {
    border: 1px solid #C5C5C5;
    border-radius: 10px;
    height: 550px;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.tech-in-stock__card__img {
    height: clamp(15.625rem, 15.339rem + 1.43vw, 16.625rem);
    width: 100%;
    background: #E6E6E6;
}

.tech-in-stock__card__img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.tech-in-stock__card__text {
    height: 100%;
    padding: 16px 20px 24px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: space-between;
}

.tech-in-stock__card__title {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

.tech-in-stock__card__btn {
    box-sizing: border-box;
    width: 180px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid #333940;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.tech-in-stock__nav {
    display: flex;
    gap: 30px;
}

@media (max-width: 778px) {
    .tech-in-stock__nav {
        display: none;
    }
}

.tech-in-stock .swiper-button-prev,
.tech-in-stock .swiper-button-next {
    position: static;
    width: 28px;
    height: 28px;
    border: 1px solid #101010;
    border-radius: 6px;
    background: #fff;
}

.tech-in-stock .swiper-button-prev::after,
.tech-in-stock .swiper-button-next::after {
    font-size: 14px;
    color: #101010;
}

@media (max-width: 767px) {
    .tech-in-stock__top {
        align-items: flex-start;
        gap: 12px;
        flex-direction: column;
    }
}

.sg {
    /*padding-top: clamp(4.375rem, 3.482rem + 4.46vw, 7.5rem);*/
    /*padding-bottom: clamp(4.375rem, 3.482rem + 4.46vw, 7.5rem);*/
}

.sg__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sg__more {
    box-sizing: border-box;
    width: clamp(13.75rem, 13.339rem + 2.05vw, 15.188rem);
    height: 40px;
    border-radius: 6px;
    background: #015AA8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px auto 0;
    font-weight: 400;
    text-decoration: none;
}

.sg-swiper {
    overflow: hidden;
}

.sg .swiper-wrapper {
    align-items: stretch;
}

.sg .swiper-slide {
    height: auto;
}

.sg-card {
    display: flex;
    flex-direction: column;
    height: clamp(16.375rem, 15.696rem + 3.39vw, 18.75rem);
    border-radius: 10px;
    overflow: hidden;
}

.sg-card__media {
    width: 100%;
    height: 100%;
    background: #E6E6E6;
}

.sg-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
}

.sg-card__media::after {
    content: "";
    position: absolute;
    inset: 0; /* растягиваем на весь контейнер */
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 66.5%, #000000 100%);
    z-index: 1;
}

.sg__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sg__more {
    box-sizing: border-box;
    width: clamp(13.75rem, 13.339rem + 2.05vw, 15.188rem);
    height: 40px;
    border-radius: 6px;
    background: #015AA8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px auto 0;
    font-weight: 400;
    text-decoration: none;
}

.sg-swiper {
    overflow: hidden;
}

.sg .swiper-wrapper {
    align-items: stretch;
}

.sg .swiper-slide {
    height: auto;
}

.sg-card {
    display: flex;
    flex-direction: column;
    height: clamp(16.375rem, 15.696rem + 3.39vw, 18.75rem);
    border-radius: 10px;
    overflow: hidden;
}

.sg-card__media {
    width: 100%;
    height: 100%;
    background: #E6E6E6;
}

.sg-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sg__nav {
    display: flex;
    gap: 30px;
}

.sg .swiper-button-prev,
.sg .swiper-button-next {
    position: static;
    width: 28px;
    height: 28px;
    border: 1px solid #101010;
    border-radius: 6px;
    background: #fff;
}

.sg .swiper-button-prev::after,
.sg .swiper-button-next::after {
    font-size: 14px;
    color: #101010;
}

.sg .swiper-button-prev:hover,
.sg .swiper-button-next:hover {
    color: white;
    background: #41474D;
    border: 1px solid #41474D;
}

.sg .swiper-button-prev:hover::after,
.sg .swiper-button-next:hover::after {
    color: #fff !important;
}

@media (max-width: 778px) {
    .sg__nav {
        display: none;
    }
}

@media (max-width: 767px) {
    .sg__head {
        align-items: flex-start;
        flex-direction: column;
    }
}

.sg-card {
    display: flex;
    flex-direction: column;
    height: clamp(16.375rem, 15.696rem + 3.39vw, 18.75rem);
    border-radius: 10px;
    overflow: hidden;
}

.sg-card__media {
    position: relative;
    width: 100%;
    background: #E6E6E6;
}

.sg-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sg-card__title {
    position: absolute;
    left: 16px;
    bottom: 16px;
    margin: 0;
    color: white;
    font-weight: 600;
    font-size: clamp(1.375rem, 1.339rem + 0.18vw, 1.5rem);
    line-height: clamp(1.875rem, 1.839rem + 0.18vw, 2rem);
    max-width: calc(100% - 32px);
    z-index: 2;
}

.about-banner {
    width: 100%;
    height: clamp(35rem, 32.5rem + 12.5vw, 43.75rem);
    position: relative;
}

.about-banner__img {
    width: 100%;
    height: clamp(35rem, 32.5rem + 12.5vw, 43.75rem);
}

.about-banner__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-banner-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
}

.about-banner-wrapper .container {
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
}

@media (min-width: 992px) {
    .about-banner-inner {
        width: 832px;
    }
}

.about-banner__title {
    font-weight: 600;
    font-size: clamp(1.125rem, 0.732rem + 1.96vw, 2.5rem);
    line-height: clamp(1.5rem, 1.071rem + 2.14vw, 3rem);
    margin-bottom: clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem);
    color: white;
}

.about-banner__btn {
    box-sizing: border-box;
    width: 220px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-text {
    padding-bottom: clamp(1.875rem, 1.161rem + 3.57vw, 4.375rem);
    padding-top: clamp(3.125rem, 2.411rem + 3.57vw, 5.625rem);
    font-weight: 400;
    font-size: clamp(1rem, 0.964rem + 0.18vw, 1.125rem);
    line-height: 24px;
}

.about-certificate {
    width: clamp(18.75rem, 5rem + 68.75vw, 66.875rem);
    height: clamp(13.25rem, 3.911rem + 46.7vw, 45.938rem);
    justify-self: center;
}

.about-certificate img {
    width: 100%;
    height: 100%;
}

@media (min-width: 576px) {
    .about-banner-wrapper .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .about-banner-wrapper .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .about-banner-wrapper .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .about-banner-wrapper .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .about-banner-wrapper .container {
        max-width: 1320px;
    }
}

.service-title {
    font-weight: 600;
    font-size: clamp(1.875rem, 1.696rem + 0.89vw, 2.5rem);
    line-height: clamp(2.5rem, 2.357rem + 0.71vw, 3rem);
    margin-bottom: clamp(1.875rem, 1.518rem + 1.79vw, 3.125rem);
    margin-top: clamp(1.875rem, 1.696rem + 0.89vw, 2.5rem);
}

.service-banner {
    margin-bottom: clamp(4.375rem, 3.482rem + 4.46vw, 7.5rem);
}

.serviceBlocks {
    display: grid;
    gap: clamp(1.25rem, 1.071rem + 0.89vw, 1.875rem);
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-auto-rows: clamp(5.625rem, 3.482rem + 4.46vw, 7.5rem);
    grid-template-areas: "rad  rad  oil" "rad  rad  oil" "lamp disk oil" "lamp disk belts" "lamp disk belts";
}

.item {
    background: linear-gradient(180deg, #181b1d 22%, #727272 123%);
    color: #fff;
    padding: clamp(1rem, 0.571rem + 2.14vw, 2.5rem);
    position: relative;
    min-height: 204px;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 4px;
}

.item2 {
    grid-area: rad;
}

.item3 {
    grid-area: oil;
    background: #F3F3F3;
    color: #101010;
}

.item4 {
    grid-area: lamp;
}

.item5 {
    grid-area: disk;
    background: #F3F3F3;
    color: #101010;
}

.item6 {
    grid-area: belts;
}

.item img {
    position: absolute;
    right: 0;
    bottom: 0;
    object-fit: contain;
    object-position: bottom right;
}

.item span {
    font-weight: 600;
    font-size: clamp(1rem, 0.893rem + 0.54vw, 1.375rem);
    line-height: clamp(1.5rem, 1.393rem + 0.54vw, 1.875rem);
    z-index: 10;
    text-transform: uppercase;
}

.item3 span {
    align-self: end;
}

.img1 {
    height: 100%;
}

.img2 {
    height: 90%;
}

.img3 {
    width: 100%;
}

.item .img3 {
    right: auto;
    bottom: auto;
    left: 0;
    top: 0;
    width: 70%;
}

.img4 {
    height: 200px;
    width: 100%;
}

.item .img4 {
    right: 50%;
    transform: translateX(30%);
}

.img5 {
    width: 100%;
}

.img6 {
    width: 70%;
}

@media (max-width: 999px) {
    .serviceBlocks {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "rad oil" "lamp disk" "belts belts";
        gap: 20px;
        grid-auto-rows: 300px;
    }

    .item {
        min-height: auto;
        flex-direction: column;
    }

    .item img {
        /*width: 60%;*/
        max-height: 60%;
    }

    .item .img6 {
        width: auto;
        max-height: 100%;
        height: 100%;
    }

    .item .img3 {
        width: auto;
        height: 60%;
    }

    .item3 {
        display: flex;
        /*align-items: start;*/
        justify-content: end;
    }

    .item3 span {
        align-self: start;
    }
}

@media (max-width: 575px) {
    .serviceBlocks {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
        grid-template-areas: "rad" "oil" "lamp" "disk" "belts";
        gap: 20px;
    }

    .item {
        min-height: auto;
        flex-direction: column;
    }

    .item img {
        width: 60%;
        max-height: 80%;
    }

    .item .img3 {
        width: auto;
        height: 80%;
    }

    .item3 {
        display: flex;
        /*align-items: start;*/
        justify-content: end;
    }

    .item .img4 {
        right: 0;
        transform: none;
    }

    .item3 span {
        align-self: end;
    }
}

.autoInStock__card {
    border: 1px solid #C5C5C5;
    border-radius: 10px;
    height: 550px;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.autoInStock__card__img {
    height: clamp(15.625rem, 15.339rem + 1.43vw, 16.625rem);
    width: 100%;
    background: #E6E6E6;
    position: relative;
}

.autoInStock__card__img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.autoInStock__card__img svg {
    pointer-events: none;
    height: clamp(18px, 16.29px + 0.54vw, 24px);
    width: clamp(18px, 16.29px + 0.54vw, 24px);
    position: absolute;
    top: clamp(10px, 9.43px + 0.18vw, 12px);
    right: clamp(10px, 9.43px + 0.18vw, 12px);
    transition: transform 0.2s ease-in-out; /* Плавность анимации */

}

.autoInStock__card__img img:hover ~ svg {
    transform: scale(1.2); /* Увеличение размеров только SVG при наведении на картинку */
}

.autoInStock__card__text {
    height: 100%;
    padding: 16px 20px 24px;
    display: flex;
    /*gap: 20px;*/
    flex-direction: column;
}

.autoInStock__card__text p {
    margin-bottom: 0;
}

.autoInStock__card__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
}

.autoInStock__card__number {
    font-weight: 600;
    font-size: 16px !important;
    line-height: 24px;
}

.autoInStock__card__btn {
    box-sizing: border-box;
    width: 180px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid #333940;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    margin-top: auto;
}

.autoInStock__card__stock {
    width: 116px;
    height: 30px;
    border-radius: 4px;
    padding: 4px;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    margin-bottom: 20px !important;
}

.autoInStock__card__stock--inStock {
    background: #015AA8;
}

.autoInStock__card__stock--forOrder {
    background: #41474D;
}

.autoInStockWrapper {
    padding-bottom: 120px;
}

.autoInStockWrapper .autoInStock {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

.autoInStockWrapper .autoInStock-header {
    display: flex;
    gap: 16px;
}

@media (max-width: 576px) {
    .autoInStockWrapper .autoInStock-header {
        flex-direction: column;
    }
}

.autoInStockWrapper .autoInStock-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: clamp(1rem, 0.75rem + 1.25vw, 1.875rem);
}

@media (max-width: 991.96px) {
    .autoInStockWrapper .autoInStock-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

.custom-select {
    position: relative;
    width: 280px;
    font-size: 16px;
    cursor: pointer;
    user-select: none;
}

@media (max-width: 576px) {
    .custom-select {
        width: 100%;
    }
}

.custom-select__trigger {
    padding: 10px 16px;
    border: 1px solid #41474D;
    border-radius: 8px;
    background: #fff;
    color: #101010;
    position: relative;
}

.custom-select.open .custom-select__trigger {
    border-color: #015AA8;
}

.custom-select:hover .custom-select__trigger {
    border-color: #015AA8;
}

.custom-select__trigger::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    width: 12px;
    height: 7px;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.98938 6.99999C5.8247 7.00018 5.6616 6.96547 5.50941 6.89785C5.35722 6.83022 5.21892 6.73102 5.10243 6.6059L0.185078 1.31991C0.0614727 1.17172 -0.00466064 0.978292 0.000255709 0.779339C0.00517206 0.580386 0.0807655 0.391004 0.211515 0.250075C0.342265 0.109145 0.518252 0.0273613 0.703342 0.0215136C0.888433 0.0156659 1.06858 0.0861973 1.20681 0.218629L5.98938 5.35897L10.772 0.218629C10.9086 0.076757 11.0917 -0.00174508 11.2817 2.94424e-05C11.4717 0.00180397 11.6534 0.0837141 11.7878 0.228117C11.9221 0.372521 11.9983 0.567864 12 0.772073C12.0016 0.976283 11.9286 1.17302 11.7966 1.31991L6.87923 6.6059C6.7624 6.73139 6.62363 6.83081 6.47092 6.89844C6.3182 6.96608 6.15455 7.00059 5.98938 6.99999Z' fill='%23101010'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.custom-options {
    list-style: none;
    padding: 12px;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    border: 1px solid #015AA8;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-radius: 8px;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.2s ease;
    z-index: 10;
}

.custom-select.open .custom-options {
    max-height: 400px;
    opacity: 1;
}

.custom-option {
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s ease;
    background: #f0f0f0;
    border-radius: 8px;
}

.custom-option:hover {
    background: white;
}

.banner-btn {
    width: 220px;
    height: 55px;
    font-weight: 500;
    font-size: 20px;
}

@media (max-width: 575px) {
    .banner-btn {
        width: clamp(9.125rem, 3.344rem + 28.91vw, 13.75rem);
        height: clamp(2.188rem, 0.625rem + 7.81vw, 3.438rem);
        font-size: clamp(0.875rem, 0.406rem + 2.34vw, 1.25rem);
    }
}


.header-top {
    border-bottom: 1px solid #C5C5C5;
    padding-top: 4px;
    padding-bottom: 4px;
}

@media (max-width: 999.99px) {
    .header-top {
        display: none;
    }
}

.header-top__logo {
    display: flex;
    gap: 8px;
    align-items: center;
}

.header-top__logo > img {
    height: 63px;
    width: auto;
}

.header-top__logo__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
}

.header-top__contacts {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-top__contact {
    display: flex;
    gap: 12px;
    align-items: center;

}

@media (max-width: 575.99px) {
    .header-top__contact {
        display: none !important;
    }

}

.header-top__contact a {
    display: block;
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
}

.header-top__contact div {
    font-size: 14px;
    line-height: 22px;
}


.lizing {
    padding-top: clamp(6.25rem, 5.893rem + 1.79vw, 7.5rem);
    color: #101010;
}

.lizing__title {
    font-weight: 600;
    font-size: clamp(1.5rem, 1.214rem + 1.43vw, 2.5rem);
    line-height: clamp(2rem, 1.714rem + 1.43vw, 3rem);
    padding-bottom: 5px;
    margin-bottom: clamp(1.5rem, 1.036rem + 2.32vw, 3.125rem);
}

.lizing__title::after {
    content: "";
    width: 160px;
    height: 2px;
    background-color: #41474d;
    display: block;
    margin-top: 5px;
}

.lizing__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.25rem, 1.071rem + 0.89vw, 1.875rem);
}

@media (max-width: 1000px) {
    .lizing__content {
        grid-template-columns: 1fr;
    }
}

.lizing__text {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 1.071rem + 0.89vw, 1.875rem);
    text-wrap: pretty;
}

.lizing__subtitle {
    font-weight: 600;
    font-size: clamp(1.125rem, 1.018rem + 0.54vw, 1.5rem);
    line-height: clamp(1.5rem, 1.357rem + 0.71vw, 2rem);
    text-wrap: balance;
}

.lizing__benefits {
    display: flex;
    flex-direction: column;
    gap: clamp(0.625rem, 0.446rem + 0.89vw, 1.25rem);
}

/*.benefit-item {*/
/*  display: flex;*/
/*  gap: clamp(0.625rem, 0.554rem + 0.36vw, 0.875rem);*/
/*  font-weight: 400;*/
/*  font-size: 16px;*/
/*  line-height: 24px;*/
/*}*/


.lizing__img img {
    border-radius: 10px;
    object-position: 100% 50%;
}


.news {
    padding-bottom: clamp(4.375rem, 3.482rem + 4.46vw, 7.5rem);
    padding-top: 0;
}

.news__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news__btn {
    box-sizing: border-box;
    width: clamp(13.75rem, 13.339rem + 2.05vw, 15.188rem);
    height: 40px;
    border-radius: 6px;
    background: #015AA8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    justify-self: center;
    font-weight: 400;
}

.news-swiper {
    overflow: hidden;
}

.news .swiper-wrapper {
    align-items: stretch;
}

.news .swiper-slide {
    height: auto;
}

.news__card {
    border: 1px solid #C5C5C5;
    border-radius: 10px;
    height: 540px;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

@media (max-width: 1200px) {
    .news__card {
        height: 460px;
    }
}

.news__card__img {
    height: clamp(250px, 201.43px + 15.18vw, 420px);
    width: 100%;
    background: #E6E6E6;
    overflow: hidden;
}

.news__card__img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;

}

.news__card__text {
    height: 100%;
    padding: 16px 20px 24px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: space-between;
}

.news__card__title {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-decoration: underline;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news__card__date {
    margin-top: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;


}

.news__card__btn {
    box-sizing: border-box;
    width: 180px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid #333940;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.news__nav {
    display: flex;
    gap: 30px;
}

@media (max-width: 778px) {
    .news__nav {
        display: none;
    }
}

.news .swiper-button-prev,
.news .swiper-button-next {
    position: static;
    width: 28px;
    height: 28px;
    border: 1px solid #101010;
    border-radius: 6px;
    background: #fff;
}

.news .swiper-button-prev::after,
.news .swiper-button-next::after {
    font-size: 14px;
    color: #101010;
}

@media (max-width: 767px) {
    .news__top {
        align-items: flex-start;
        gap: 12px;
        flex-direction: column;
    }
}

.news__card__text {
    height: 100%;
    padding: 16px 20px 24px;
    display: flex;
    /*gap: 20px;*/
    flex-direction: column;
}

.news__card__text p {
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.guarantee {
    padding-top: clamp(1.25rem, 0.893rem + 1.79vw, 2.5rem);
    padding-bottom: clamp(4.375rem, 3.482rem + 4.46vw, 7.5rem);
}

.guarantee__subtitle {
    font-weight: 600;
    font-size: clamp(1.125rem, 0.911rem + 1.07vw, 1.875rem);
    line-height: clamp(1.5rem, 1.214rem + 1.43vw, 2.5rem);
    max-width: 960px;
    margin-bottom: clamp(0.625rem, 0.375rem + 1.25vw, 1.5rem);
}

/*.guarantee p{*/
/*  font-size: 16px;*/
/*  line-height: 24px;*/
/*}*/
.guarantee__table {
    border: 1px solid #C5C5C5;
    border-collapse: collapse;
    margin: 40px auto;
}

.guarantee__table th {
    border: 1px solid #C5C5C5;
    background-color: rgba(0, 0, 0, 0.06);
    /*font-family: Inter;*/
    font-weight: 600;
}


.guarantee__table tr td, .guarantee__table tr th {
    border: 1px solid #C5C5C5;
    padding: clamp(0.313rem, 0.223rem + 0.45vw, 0.625rem) clamp(0.375rem, 0.268rem + 0.54vw, 0.75rem);
    font-size: clamp(0.375rem, 0.268rem + 0.54vw, 0.75rem);
    line-height: 130%;

}

.guarantee__strong--lg {
    font-size: 18px;
}

.guarantee__strong {
    font-weight: 600;
}


.support {
    background-color: #BFD5E9;
    padding-top: clamp(1.875rem, 1.339rem + 2.68vw, 3.75rem);
    padding-bottom: clamp(1.875rem, 1.339rem + 2.68vw, 3.75rem);
}

.support__content {
    background-color: #FFFFFF;
    border: 1px solid #66A8E2;
    border-radius: 10px;

    padding: clamp(1.25rem, 1.071rem + 0.89vw, 1.875rem) clamp(1rem, 0.571rem + 2.14vw, 2.5rem);

}

.support__content p {
    font-size: clamp(1rem, 0.929rem + 0.36vw, 1.25rem);
    line-height: clamp(1.5rem, 1.429rem + 0.36vw, 1.75rem);

}

.support__subtitle {
    font-weight: 600;
    font-size: clamp(1.125rem, 1.018rem + 0.54vw, 1.5rem);
    line-height: clamp(1.5rem, 1.357rem + 0.71vw, 2rem);
    color: #101010;
    margin-bottom: clamp(0.75rem, 0.679rem + 0.36vw, 1rem);

}

.support_contacts {
    margin-top: clamp(1.188rem, 0.991rem + 0.98vw, 1.875rem);
}

.support_contact:not(:last-child) {
    margin-bottom: clamp(0.438rem, 0.277rem + 0.8vw, 1rem);
}

.support_contact {
    display: flex;
    gap: clamp(0.5rem, 0.429rem + 0.36vw, 0.75rem);

    align-items: center;
}

.support_contact a {
    font-weight: 600;
    font-size: clamp(1rem, 0.893rem + 0.54vw, 1.375rem);
    line-height: clamp(1.5rem, 1.393rem + 0.54vw, 1.875rem);
    transition: color 3ms ease-in;
}

.support_contact a:hover {
    color: #015AA8;

}

.support_contact img {
    width: clamp(1rem, 0.893rem + 0.54vw, 1.375rem);
    height: auto;
}


.policy {
    padding-top: clamp(4.375rem, 3.482rem + 4.46vw, 7.5rem);
    padding-bottom: clamp(4.375rem, 3.482rem + 4.46vw, 7.5rem);
}

.policy__content-top {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: clamp(1.5rem, 1.214rem + 1.43vw, 2.5rem);
}

@media (max-width: 999px) {
    .policy__content-top {
        flex-direction: column;
    }
}

.policy__text {
    text-wrap: pretty;
}

.policy__subtitle {
    text-wrap: pretty;
    font-weight: 600;
    font-size: clamp(1.125rem, 1.018rem + 0.54vw, 1.5rem);
    line-height: clamp(1.5rem, 1.357rem + 0.71vw, 2rem);
    margin-bottom: clamp(1rem, 0.946rem + 0.27vw, 1.188rem);

}


.policy__content-top img {
    height: 400px;
    width: fit-content;
    cursor: pointer;
    transition: transform 0.3s;
    margin: auto;

}

.policy__content-top img:hover {
    transform: scale(1.05);
}

.modalBigImg {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    width: auto;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #bbb;
}


.accordion {
    margin-bottom: clamp(1rem, 0.857rem + 0.71vw, 1.5rem);
}

.accordion-header.active span {
    transform: rotate(180deg);
    flex-shrink: 0;
}

.accordion-content {
    display: none;
    line-height: 1.6;
}

.accordion-content.show {
    display: block;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 10px;
    border-radius: 8px;
    background-color: #F3F3F3;
    cursor: pointer;
    align-items: flex-start;
}

.accordion-header p {
    margin: 0;
    font-weight: 600;
    font-size: clamp(1rem, 0.964rem + 0.18vw, 1.125rem);
    line-height: 24px;
}

.accordion-content {
    margin-top: 10px;
    background-color: #F3F3F3;

    border-radius: 8px;
    padding: 16px 10px;
}

.accordion-content ul {
    padding: 0;
    list-style: none;
}

.accordion-content__list-item {
    display: flex;
    gap: 8px;
}

.accordion-content__list-item p {
    margin-bottom: 0;
}

.accordion-content__list-item svg {
    /*width: 30px;*/
    flex-shrink: 0;
}

.accordion-content__list-item:not(:last-child) {
    margin-bottom: 8px;
}

.spares__benefit {
    display: flex;
    gap: 14px;
    margin-bottom: 0;

}

.spares__benefit:not(:last-child) {
    margin-bottom: 20px;
}

.spares__benefit svg {
    flex-shrink: 0;

}

.spares__benefits {
    list-style: none;
    padding: 0;
}

.spares__links {
    display: flex;
    gap: 20px;
    margin-top: clamp(1.875rem, 1.518rem + 1.79vw, 3.125rem);
}

.spares__link {
    display: flex;
    width: clamp(16.563rem, 10.688rem + 16.32vw, 25.375rem);
    height: 90px;
    box-sizing: border-box;
    padding: 21px clamp(1rem, 0.75rem + 1.25vw, 1.875rem);
    background-color: #015AA8;
    border-radius: 10px;
    color: white;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3ms ease-in;
    min-height: fit-content;
}

@media (max-width: 575px) {
    .spares__links {
        flex-direction: column;
        gap: 10px;
    }

    .spares__link {
        width: 100%;
    }

    .spares__benefit {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        border: 1px #004786 solid;
        padding: 10px 8px;
        border-radius: 10px;
        text-align: center;
    }

}

.spares__link:hover {
    background-color: #004786;
}

.spares__link p {
    margin-bottom: 0;
    font-weight: 500;
    font-size: clamp(1rem, 0.964rem + 0.18vw, 1.125rem);
    line-height: 24px;

}

.spares__link svg {
    flex-shrink: 0;

}


.news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .news__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .news__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.banner-img {
    object-position: 20% 50%;
}

@media (max-width: 768px) {
    .banner-img {
        object-position: 100% 100%;
    }
}