@font-face {
    font-family: 'Corporate';
    src: url('/fonts/corporate_s_regular.woff') format('woff');
}

@font-face {
    font-family: 'Daimler';
    src: url('/fonts/DaimlerCAC.woff') format('woff');
}

:root {
    --general: #fff;
    --black: #000;
    --additional-color: #00AFEA;
    --plyr-color-main: var(--additional-color);
    --transition-prop: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
}

html,
body {
    color: var(--general);
    font-size: 16px;
    line-height: 1.4;
    width: 100%;
    background-color: var(--black);
    font-family: "Corporate", sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
}


input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    margin: 0;
}

input,
button {
    outline: none;
}

@media (min-width : 991px) {
    ::-webkit-scrollbar {
        width: 7px;
        height: 5px;
        background-color: var(--black);
    }

    ::-webkit-scrollbar-thumb {
        background-color: var(--black);
        border-radius: 10px;
        box-shadow: 0 0 3px rgba(0, 0, 0, .1);
    }

    ::-webkit-scrollbar-track {
        border-radius: 5px;
        background-color: #fff;
    }

    .mini-cart-content-box::-webkit-scrollbar-track {
        border-radius: 0;
    }
}

input:-ms-input-placeholder {
    color: #ABABAB;
}

input::-moz-placeholder {
    color: #ABABAB;
}

input:-moz-placeholder {
    color: #ABABAB;
}

input::-webkit-input-placeholder {
    color: #ABABAB;
}

textarea::-webkit-input-placeholder {
    color: #ABABAB;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-prop);
}

a:hover {
    text-decoration: none;
}

li {
    list-style-type: none;
}

p {
    margin-top: 0;
    margin-bottom: 1.2rem;
}

img {
    display: block;
}

button,
input {
    overflow: visible;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.form-group {
    position: relative;
    margin-bottom: max(1vw, 10px);
}

.form-group.select label {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 12px;
    color: #9B9B9B;
}

.form-control {
    width: 100%;
    padding: 17px 25px;
    background-color: #fff;
    color: #323232;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    margin: 0;
    line-height: 1.2;
    transition: border-color 0.4s ease-in-out;
}

.form-control:focus {
    border-color: var(--additional-color);
}

.form-control.dark {
    background-color: var(--additional-color);
    border-color: var(--additional-color);
    color: var(--general);
}

.form-control.input-dark {
    border-color: var(--additional-color);
    color: var(--additional-color);
}

.form-control.input-dark::placeholder {
    color: var(--additional-color);
}

.form-control.dark-2 {
    background-color: var(--black);
    border-color: #4a4a4a;
    color: #ABABAB;
}

.form-control.dark-2::placeholder {
    color: #ABABAB;
}

.form-control.center {
    text-align: center;
}

select.form-control {
    display: block;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.967' height='6.831' viewBox='0 0 11.967 6.831'%3E%3Cpath d='M913.271,1046.185l.585-.608,5.391,5.6,5.406-5.616.585.608-5.991,6.223Z' transform='translate(-913.271 -1045.561)' fill='%23323232'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1em top 50%;
    background-size: 0.7em auto;
}

select.light-icon,
select.form-control.dark {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.967' height='6.831' viewBox='0 0 11.967 6.831'%3E%3Cpath d='M913.271,1046.185l.585-.608,5.391,5.6,5.406-5.616.585.608-5.991,6.223Z' transform='translate(-913.271 -1045.561)' fill='%23fff'/%3E%3C/svg%3E");
}

select.form-control.dark-2 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.967' height='6.831' viewBox='0 0 11.967 6.831'%3E%3Cpath d='M913.271,1046.185l.585-.608,5.391,5.6,5.406-5.616.585.608-5.991,6.223Z' transform='translate(-913.271 -1045.561)' fill='%23ABABAB'/%3E%3C/svg%3E");
}

.checkselect.icon-righ select,
select.icon-right {
    background-size: 0.3em auto;
    background-image: url("/img/arrow-right.png");
}

.form-group.select .form-control {
    padding: 25px 15px 10px;
}

select option {
    color: var(--black);
}

.custom-checkbox {
    position: relative;
    text-align: left;
    border: none;
    padding: 0;
    margin: 20px 0 25px;
}

.custom-checkbox label {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    cursor: pointer;
    color: #ABABAB;
}

.cbx>div:first-child {
    -webkit-perspective: 20;
    perspective: 20;
    position: relative;
    top: 0;
    left: 0;
    margin-right: 10px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    background: transparent;
    transform: translate3d(0, 0, 0);
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.cbx:hover {
    border-color: var(--additional-color);
}

.flip {
    display: block;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    position: relative;
    width: 20px;
    height: 20px;
}

.flip .front,
.flip .back {
    backface-visibility: hidden;
    position: absolute;
    background: #fff;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
}

.flip .front {
    z-index: 1;
}

.flip .back {
    transform: rotateY(180deg);
    text-align: center;
    color: #fff;
    line-height: 20px;
}

.flip .back svg {
    fill: none;
    width: 65%;
    height: auto;
}

.flip .back svg path {
    stroke: var(--additional-color);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.checkbox-input {
    display: none;
}

.checkbox-input:checked+.cbx {
    border-color: #fff;
}

.checkbox-input:checked+.cbx .flip {
    transform: rotateY(180deg);
}

.checkbox-input:checked+.cbx .flip .front {
    background: transparent !important;
}

.custom-checkbox.dark .flip .front,
.custom-checkbox.dark .flip .back {
    background: var(--black);
}

.custom-checkbox.dark .cbx>div:first-child {
    border-color: #4a4a4a;
}

.not-member {
    margin: max(5vw, 30px) 0 0;
    text-align: center;
    opacity: 0.6;
    letter-spacing: normal;
}

dl,
ol,
ul {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 55px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 28px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    line-height: 1.2;
    color: inherit;
    font-family: 'Daimler', sans-serif;
    letter-spacing: 0.5px;
    font-weight: 200;
}

button,
.btn {
    display: inline-block;
    text-align: center;
    position: relative;
    width: auto;
    padding: 14px 20px;
    color: var(--additional-color);
    background-color: transparent;
    border: 1px solid var(--additional-color);
    text-decoration: none;
    border-radius: 5px;
    margin: 0;
    outline: none;
    overflow: hidden;
    text-transform: capitalize;
    cursor: pointer;
    transform: perspective(1px) translateZ(0);
    line-height: 1;
    transition: var(--transition-prop);
}

.btn:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--additional-color);
    transform: scaleY(0);
    transform-origin: 50% 0;
    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}

.btn:hover:before,
.btn:focus:before,
.btn:active:before {
    transform: scale(1);
}

button:hover,
.btn:hover,
.btn:focus,
.btn-more {
    color: var(--general);
}

button.btn-light,
.btn-light {
    color: var(--general);
    border-color: var(--general);
    background-color: transparent;
}

button.btn-light:before,
.btn-light:before {
    background: var(--general);
}

button.btn-light:hover,
button.btn-light:focus,
.btn.btn-light:focus,
.btn-light:hover {
    color: var(--black);
}

button.btn-dark,
.btn-dark {
    color: var(--general);
    border-color: var(--additional-color);
    background-color: var(--additional-color);
}

button.btn-dark:before,
.btn-dark:before {
    background: var(--black);
}

button.btn-dark:hover,
button.btn-dark:focus,
.btn.btn-dark:focus,
.btn-dark:hover {
    color: var(--general);
    border-color: var(--black);
}

.btn-more:hover {
    box-shadow: inset 0 -4.25em 0 0 var(--general);
    color: #fff;
    border-bottom-color: transparent;
}

button.btn-form {
    padding: 10px 15px;
    border-radius: 5px;
    background-color: #fff;
    color: var(--additional-color);
    cursor: pointer;
}

.btn-page-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    width: 100%;
    margin-top: max(3vw, 25px);
}

.btn-page-wrap.center {
    text-align: center;
    justify-content: center;
}

.btn-page-wrap.right {
    text-align: right;
    justify-content: flex-end;
}

.container {
    width: min(96%, 1450px);
    margin: 0 auto;
    padding: 0 15px;
}

h1,
.title-page {
    font-size: 60px;
    margin-bottom: max(2vw, 15px);
}

.subtitle-block {
    font-size: 22px;
    margin-bottom: max(1.5vw, 15px);
}

.subtitle-section {
    font-size: 20px;
    margin-bottom: max(1.5vw, 15px);
}

.big-paragraph,
.article-content p {
    font-size: 18px;
    margin-bottom: max(1.2vw, 15px);
}

h2,
.title-section {
    position: relative;
    font-size: 46px;
    margin-bottom: max(2.5vw, 20px);
}

h3,
.title-block {
    position: relative;
    font-size: 26px;
    margin-bottom: max(1.5vw, 15px);
}

h4,
.headline {
    position: relative;
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 200;
}

.title-block.center {
    text-align: center;
}

.title-section.white,
.title-block.white {
    color: #fff;
}

strong {
    font-weight: 600;
}

main {
    position: relative;
    min-height: 70vh;
    margin-top: 110px;
}

section {
    position: relative;
    overflow: hidden;
}

.color-bg {
    background-color: var(--additional-color-2);
}

.coll-2,
.coll-3,
.coll-4,
.coll-5,
.coll-6 {
    display: grid;
    grid-template-rows: repeat(auto-fill, minmax(0, 1fr));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: max(3vw, 15px);
    width: 100%;
    margin: max(3vw, 40px) 0;
}

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

.coll-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.coll-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.coll-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}


header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: var(--black);
    transition: var(--transition-prop);
}

.head-scroll,
header.overlay {
    -webkit-box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    position: relative;
    width: 262px;
}


.head-scroll .navbar-brand {
    width: 200px;
}

.navbar-brand:hover {
    opacity: 0.8;
}

.navbar-brand img,
.navbar-brand svg {
    display: block;
    width: 100%;
}

.navbar-logo-wrap {
    display: grid;
    grid-auto-flow: column;
    align-self: center;
}

.navbar-top {
    display: grid;
    grid-template-columns: min-content 1fr;
    grid-gap: max(5vw, 10px);
    width: 100%;
    margin: 0 auto;
    transition: var(--transition-prop);
}

.head-top-line {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    transition: var(--transition-prop);
}

.head-top-line ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 15px;
    background-color: rgba(255, 255, 255, 0.1);
}

.head-top-line ul li {
    line-height: 1;
}

.head-top-line ul li {
    transition: var(--transition-prop);
}


.head-top-line ul li a {
    color: #999999;
    padding: 17px 15px;
    line-height: 1;
    text-align: center;
}

.head-scroll .head-top-line ul li a {
    font-size: 14px;
    padding: 10px 15px;
}

.navbar-collapse {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-mnu {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.top-mnu li {
    transition: var(--transition-prop);
    line-height: 1;
}

.top-mnu li a {
    position: relative;
    font-size: 18px;
    padding: 20px 17px;
    color: var(--general);
    overflow: hidden;
    line-height: 1;
    text-align: center;
}

.top-mnu li:last-of-type a {
    padding-right: 0 !important;
}

.head-scroll .top-mnu>li>a {
    padding: 15px 13px;
}

.head-scroll .top-mnu li a {
    font-size: 16px;
}

.top-mnu li a:hover,
.top-mnu li a:focus,
.top-mnu li a.active,
.foot-menu li a:focus,
.foot-menu li a:hover,
.foot-menu li a.active,
.head-top-line ul li a:hover {
    color: var(--additional-color);
}

.sub-menu {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    top: 100%;
    left: 0;
    min-width: 100%;
    color: var(--general);
    transform: translateY(15px);
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    background-color: #1A1A1A;
    box-shadow: 1px 1px 30px rgba(0, 0, 0, .06);
    transition: var(--transition-prop);
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sub-menu li {
    width: 18%;
    margin: 30px 25px 25px;
}

.sub-menu li+li {
    margin-left: 0;
}

.sub-menu li a {
    width: 100%;
    padding: 0;
    text-align: left;
}

.sub-menu li a:hover {
    color: var(--additional-color);
}

.children-indicator {
    display: none;
}

.menu-block-img {
    position: relative;
    width: 100%;
    height: 115px;
    border-bottom: 2px solid transparent;
    transition: var(--transition-prop);
    margin-bottom: 10px;
    overflow: hidden;
}

.menu-block-img div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: center / cover no-repeat;
    transition: var(--transition-prop);
}

.sub-menu li a:hover .menu-block-img {
    border-color: var(--additional-color);
}

.sub-menu li a:hover .menu-block-img div {
    transform: scale(1.05);
}




.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
    box-sizing: border-box;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--general);
    display: block;
    margin: 2px auto;
    -webkit-transition: all 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    -o-transition: all 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    transition: all 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.hamburger span:first-child {
    transform-origin: 0% 0%;
}

.hamburger span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

.navbar-top.toggle .hamburger span:nth-child(1),
.hamburger.active span:nth-child(1) {
    transform: translateY(0) translateX(4px) rotate(42deg);
}

.navbar-top.toggle .hamburger span:nth-child(2),
.hamburger.active span:nth-child(2) {
    -webkit-transform: translateX(2px) rotate(90deg);
    -ms-transform: translateX(2px) rotate(90deg);
    -o-transform: translateX(2px) rotate(90deg);
    transform: translateX(2px) rotate(90deg);
    background-color: var(--general);
    opacity: 0;
}

.navbar-top.toggle .hamburger span:nth-child(3),
.hamburger.active span:nth-child(3) {
    transform: translateY(-4px) rotate(-40deg);
}

.main-foot {
    position: relative;
    background-color: var(--black);
    padding: max(5vw, 40px) 0;
    color: #949494;
}

.navbar-foot {
    grid-template-columns: 1fr 0.7fr 0.3fr;
    margin: 0;
}

.main-foot .navbar-brand {
    width: 50px;
    margin-right: 0;
    margin-bottom: max(2vw, 20px);
}

.foot-menu.coll-2 {
    grid-template-rows: repeat(2, min-content);
    grid-gap: 0 max(3.5vw, 20px);
    margin: 0;
}

.foot-title {
    font-size: 24px;
    color: #fff;
    margin-bottom: 28px;
}

.foot-menu li a {
    width: 100%;
    color: #949494;
    padding: 4px 0;
}

.foot-menu li a:hover {
    transform: translateX(5px);
}

.foot-info {
    grid-template-columns: min-content 1fr;
    margin: 0;
    gap: max(3.5vw, 15px);
}

.foot-info address {
    width: 100%;
    font-style: normal;
    line-height: 1.7;
}

.navbar-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    color: #5A5A5A;
    margin-top: max(3.5vw, 30px);
}

.navbar-bottom ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-bottom ul a {
    padding: 5px max(1vw, 15px);
}

#map {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-info {
    position: relative;
    width: min(100%, 580px);
    background-color: #fff;
    color: var(--black);
    margin: max(5vw, 30px) 0;
}

.map-info-head {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 1fr min-content;
    padding: max(2.08vw, 20px) max(1.56vw, 15px);
    gap: 5px;
}

.map-info-head .title-section {
    margin: 0;
    line-height: 1;
    align-self: center;
}

.map-info-head div {
    display: flex;
}

.map-info-head a {
    width: 122px;
    border-radius: 0;
}

.map-info-body {
    display: grid !important;
    margin: 0;
    gap: 1px;
    background-color: #d1d1d1;
    border-top: 1px solid #d1d1d1;
}

.map-location {
    position: relative;
    padding: max(1.56vw, 15px);
    background-color: #fff;
    cursor: pointer;
    transition: var(--transition-prop);
}

.map-location a {
    margin-top: 17px;
}

.map-location a svg {
    position: relative;
    top: 3px;
    width: 15px;
    height: auto;
    margin-right: 8px;
}

.map-location a svg path {
    fill: var(--additional-color);
    transition: var(--transition-prop);
}

.empty-location {
    background-color: #fff;
}

.map-location:hover,
.map-location.active {
    color: var(--general);
    background-color: var(--black);
}

.map-location:hover a svg path,
.map-location.active a svg path {
    fill: var(--general);
}

.stock-content .subtitle-section {
    margin-bottom: 15px;
}

.tabs-block {
    color: var(--black);
}

.tabs-body {
    position: relative;
    background-color: #fff;
    border-radius: 0 0 3px 3px;
    z-index: 1;
}

.tabs-body .form-content {
    display: grid !important;
    padding: max(1.56vw, 15px);
    margin: 0;
    gap: max(1.5vw, 10px);
}

.tabs-body .double-group {
    display: grid !important;
    margin: 0;
    gap: max(1.5vw, 10px);
}

.form-content .form-group {
    margin: 0;
}

.tabs-head {
    display: grid !important;
    margin: 0;
    gap: 0;
}

.tab-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    margin: 0;
    padding: 0 20px;
    cursor: pointer;
}

.tab-head::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 85%;
    overflow: hidden;
    background-color: #f8f8f8;
    transition: var(--transition-prop);
}

.tab-head.active {
    z-index: 1;

}

.tab-head.active::before {
    background-color: #fff;
    height: 100%;
    border-radius: 3px 3px 0 0;
}

.tab-head img {
    position: relative;
    width: 100%;
    max-height: 5.62vw;
    object-fit: contain;
}

.tab-name {
    font-size: 24px;
    position: relative;
    align-self: center;
    padding: 30px 0 0 10px;
}

.tab-head-img-wrap {
    width: 53%;
}

.btns-double-block a+a {
    margin-left: max(1.5vw, 10px);
}

.s-home-section-actions .content {
    margin: 0;
}

.content {
    gap: 25px;
}

.content.left-info {
    grid-template-columns: 38vw 1fr;
}

.content.left-info.desktop-revers {
    grid-template-columns: 55vw 1fr;
    margin-bottom: max(4vw, 5px);
}

.content.left-info .section-info-block {
    width: min(96%, 495px);
    margin-left: auto;
    padding-left: 15px;
}

.desktop-revers .section-info-block {
    grid-row: 1;
    grid-column: 2;
    margin: 0 auto 0 max(5vw, 20px) !important;
}

.desktop-revers .content-big-img {
    grid-row: 1;
    grid-column: 1;
}

.s-home-section-actions .desktop-revers .content-big-img {
    width: 55.5vw;
    height: 41.2vw;
    background-image: url("/img/home/section-man/bg.png");
}

.gradient {
    position: relative;
}

.gradient::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: max(13vw, 30px);
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0.91) 50%, rgba(0, 0, 0, 0) 100%);
}

.gradient.bottom::before {
    top: auto;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0.92) 50%, rgba(0, 0, 0, 0) 100%);
}

.section-info-block {
    align-self: center;
}

.hover-img-block {
    position: relative;

}

.hover-img-block img {
    max-width: 100%;
}

.s-home-section-actions .content-big-img {
    width: 60.263vw;
    height: 41.67vw;
    margin-left: auto;
    background: top center / contain url("/img/home/section-cars/middle-cars-bg.png") no-repeat;
}

.s-home-section-actions .left-info.desktop-revers .content-big-img {
    top: -60px;
    position: relative;
}


.s-who-we-are {
    padding: 40px 0 max(5vw, 30px);
}

.who-we-are-content {
    position: relative;
    text-align: center;
    transition: var(--transition-prop);
}

.who-we-are-content .hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: center / cover no-repeat;
    transition: var(--transition-prop);
}

.who-we-are-content .hover.active {
    opacity: 1;
}

.who-we-are-content .box-1 {
    background-image: url("/img/home/who-we-are-img-1.jpg");
}

.who-we-are-content .box-2 {
    background-image: url("/img/home/who-we-are-img-2.jpg");
}

.who-we-are-content .box-3 {
    background-image: url("/img/home/who-we-are-img-1.jpg");
}

.who-we-are-content .box-4 {
    background-image: url("/img/home/who-we-are-img-2.jpg");
}

.who-we-are-content.gradient::before {
    height: 300px;
}

.who-we-are-content>div:not(.hover) {
    position: relative;
    z-index: 1;
}

.who-we-are-content .title-section {
    margin-top: 20px;
    margin-bottom: max(1vw, 20px);
}

.who-we-are-content .subtitle-section {
    width: min(100%, 700px);
    margin: 0 auto;
}

.who-we-are-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: max(7vw, 40px) 0 max(5vw, 20px);
}

.who-we-are-actions a {
    font-size: 80px;
    font-family: "Daimler", sans-serif;
    line-height: 1.5;
    letter-spacing: 2px;
}

.who-we-are-content.active .who-we-are-actions a {
    color: #8A8A8A;
}

.who-we-are-actions a:hover {
    color: #fff !important;
}

.s-commercial-vehicle-range {
    background: center / cover url("/img/home/commercial-vehicle-range-bg.jpg") no-repeat;
}

.s-commercial-vehicle-range.gradient::before {
    height: 200px;
}

.commercial-vehicle-range-head {
    position: relative;
    color: #333;
    text-align: center;
    margin: max(5vw, 40px) 0 0;
}

.commercial-vehicle-range-head .title-section {
    margin-top: max(1vw, 10px);
}

.switch-cars-action {
    display: flex;
    justify-content: center;
    align-items: center;
}

.switch-cars-action div {
    font-size: 18px;
    margin: 10px max(0.8vw, 10px);
}

.switcher-cars input[type="checkbox"] {
    font-size: 19px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 3.5em;
    height: 1.5em;
    background: #fff;
    border-radius: 3em;
    position: relative;
    cursor: pointer;
    outline: none;
    transition: all .2s ease-in-out;
}

.switcher-cars input[type="checkbox"]:checked {
    background: var(--additional-color);
}

.switcher-cars input[type="checkbox"]:after {
    position: absolute;
    content: "";
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    background: var(--additional-color);
    transform: scale(.7);
    left: 0;
    transition: all .2s ease-in-out;
}

.switcher-cars input[type="checkbox"]:checked:after {
    left: calc(100% - 1.5em);
    background: #fff;
}

.carousel-wrap {
    width: 90%;
    height: 580px;
    margin: max(2vw, 30px) auto max(4vw, 40px);
}

.carousel-wrap .swiper-container {
    overflow: visible;
}

.cars-box {
    position: relative;
    width: min(100%, 400px);
    height: 220px;
    margin: 0 auto;
    transition: var(--transition-prop);
}

.cars-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
}

.swiper-slide-active .cars-box {
    height: 330px;
}

.cars-item {
    min-height: 460px;
}

.cars-item-caption {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cars-item-title {
    font-size: 30px;
    transition: var(--transition-prop);
}

.cars-item-caption .btn {
    width: auto;
    opacity: 0;
}

.swiper-slide-active .cars-item-title {
    font-size: 40px;
    margin: 0 0 max(1.7vw, 20px);
}

.swiper-slide-active .btn {
    opacity: 1;
}

.swiper-slide-active .cars-box {
    width: 100%;
}

.swiper-pagination.horizontal {
    position: relative;
    margin-top: max(5.5vw, 40px);
}

.swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    background: #fff;
    opacity: 1;
    margin: 0 12px !important;
    outline: none;
    transition: var(--transition-prop);
}

.swiper-pagination-bullet-active {
    width: 47px;
    border-radius: 8px;
    background: var(--additional-color, var(--additional-color));
}


.s-home-top {
    background: top center / contain url("/img/home/hero/bg-no-cars.jpg") no-repeat;
}

.s-home-top.gradient::before {
    height: 150px;
}

.home-top-content-info {
    position: relative;
    text-align: center;
    z-index: 1;
    margin: 0 0 20px;
}

.home-top-content-info .title-page {
    margin-bottom: 0;
}

.home-top-content-info .title-page span {
    color: var(--additional-color);
}

.vans-range-block {
    position: relative;
    height: 29.6vw;
}

.car-item-img.car-left {
    position: absolute;
    top: 8vw;
    left: 16.72vw;
    width: 28.47vw;
    height: 15.92vw;
}

.car-item-img.car-middle {
    position: absolute;
    top: 11.3vw;
    left: 34.72vw;
    width: 22.9vw;
    height: 12.95vw;
}

.car-item-img.car-right {
    position: absolute;
    top: 9.8vw;
    left: 53.35vw;
    width: 23.85vw;
    height: 14.96vw;
}

.car-item-img>div {
    position: absolute;
    width: 100%;
    height: 100%;
    background: center / contain no-repeat;
}

.car-plain-hover {
    opacity: 0;
}

.car-item-img.car-left .car-plain {
    background-image: url("/img/home/hero/top-left-car-plain.png");
}

.car-item-img.car-left .car-plain-hover {
    background-image: url("/img/home/hero/top-left-car.png");
}

.car-item-img.car-middle .car-plain {
    background-image: url("/img/home/hero/top-middle-car-plain.png");
}

.car-item-img.car-middle .car-plain-hover {
    background-image: url("/img/home/hero/top-middle-car.png");
}

.car-item-img.car-right .car-plain {
    background-image: url("/img/home/hero/top-right-car-plain.png");
}

.car-item-img.car-right .car-plain-hover {
    background-image: url("/img/home/hero/top-right-car.png");
}

.tooltip-box {
    position: absolute;
    top: -4.8vw;
    left: 20vw;
    padding: 0.36vw;
    border-radius: 0.2vw;
    border: 1px solid var(--general);
    background-color: transparent;
    transform: skewX(-20deg);
    pointer-events: none;
    opacity: 0;
    transition: var(--transition-prop);
    z-index: 1;
}

.tooltip.right .tooltip-box {
    left: auto;
    right: 17vw;
}

.tooltip-box::before {
    content: "";
    position: absolute;
    top: 2.18vw;
    left: -3.38vw;
    height: 1px;
    width: 0;
    background-color: var(--general);
    transform: skewX(20deg);
    transition: var(--transition-prop);
}

.tooltip-box::after {
    content: "";
    position: absolute;
    top: 4.03vw;
    left: -6.49vw;
    height: 1px;
    width: 0;
    transform: rotate(-60deg) skewX(20deg);
    background-color: var(--general);
}

.tooltip.right .tooltip-box::before {
    left: auto;
    right: -3.38vw;
}

.tooltip.right .tooltip-box::after {
    top: 3.4vw;
    left: auto;
    right: -7.15vw;
    transform: rotate(35deg) skewX(20deg);
}

.tooltip-content {
    padding: 0.79vw 1.3vw;
    border-radius: 0.2vw;
    background-color: var(--additional-color);
    line-height: 1;
    transform: scale(0.9);
    transition: var(--transition-prop);
}

.tooltip-content-normal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transform: skewX(20deg);
}

.tooltip-content::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 150%;
    height: 200%;
}

.tooltip-name {
    font-size: 1.25vw;
    font-family: 'Daimler', sans-serif;
    white-space: nowrap;
}

.tooltip-name span {
    color: var(--black);
}

.tooltip-content-normal a {
    font-size: 0.72vw;
    white-space: nowrap;
}

.tooltip-content-normal a::before {
    content: "";
    position: relative;
    top: -0.1vw;
    display: inline-block;
    width: 0.26vw;
    height: 0.26vw;
    border-top: 1px solid var(--general);
    border-right: 1px solid var(--general);
    transform: rotate(45deg);
    margin-right: 0.26vw;
}

.tooltip:hover .tooltip-box {
    pointer-events: all;
    opacity: 1;
}

.tooltip:hover .tooltip-box::before {
    width: 3.38vw;
}

.tooltip:hover .tooltip-box::after {
    width: 4.16vw;
}

.tooltip:hover .tooltip-content {
    transform: scale(1);
}

.car-item-img.middle-right-car {
    position: absolute;
    top: 12.7vw;
    right: 1.0vw;
    width: 23.12vw;
    height: 16.14vw;
}

.car-item-img.middle-right-car .car-plain-hover {
    background-image: url("/img/home/section-cars/middle-right-car.png");
}

.car-item-img.middle-right-car .tooltip-box {
    left: 10vw;
}

.car-item-img.middle-left-car {
    position: absolute;
    top: 9.05vw;
    left: 0vw;
    width: 38.44vw;
    height: 24.74vw;
}

.car-item-img.middle-left-car .car-plain-hover {
    background-image: url("/img/home/section-cars/middle-left-car.png");
}

.car-item-img.middle-left-car .tooltip-box {
    left: 30vw;
}

.car-item-img.man-right {
    position: absolute;
    top: 7.41vw;
    right: 0.55vw;
    width: 26.267vw;
    height: 33.767vw;
}

.car-item-img.man-right .car-plain-hover {
    background-image: url("/img/home/section-man/man-right.png");
}

.car-item-img.man-right .tooltip-box {
    top: 12.2vw;
}

.top-page-content {
    width: min(100%, 578px);
    margin: 0;
    grid-template-columns: 27vw 73vw;
}

.top-page-info {
    position: relative;
    align-self: center;
}

.top-page-content-img {
    display: block;
    width: 70vw;
    transform-origin: center right;
    animation: banner-animation 9s ease-out;
}

.top-page-center-content-img {
    width: 100%;
    transform-origin: center top;
}

@keyframes banner-animation {
    0% {
        opacity: 0.75;
        transform: scale(0.75, 0.75);
    }

    10% {
        opacity: 1;
        transform: scale(0.9, 0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1, 1);
    }
}

.top-page-center-content-img img {
    width: 100%;
}

.top-page-content-img::before {
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 20%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
}

.simple-content.big-left-box {
    grid-template-columns: 1.5fr 1fr;
}

.simple-content.big-left-box .simple-content-info {
    align-self: start;
    margin-top: max(3vw, 15px);
}

.simple-content-info {
    width: min(100%, 458px);
    margin: 0 auto;
    align-self: center;
}

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

.simple-content-info p {
    font-size: 18px;
}

.simple-content-title {
    display: block;
    position: absolute;
    z-index: 1;
    margin-left: max(6vw, 15px);
}

.simple-content iframe {
    width: 100%;
}

.simple-center-content {
    width: min(100%, 1030px);
    margin: max(10vw, 50px) auto;
    text-align: center;
}

.simple-center-content .title-section {
    margin: 0 auto max(1vw, 10px);
}

.simple-center-content .subtitle-block {
    width: min(100%, 670px);
    margin: max(1.5vw, 15px) auto;
}

.content-big-img img {
    width: 100%;
}

.top-page-center-info {
    position: relative;
    width: min(100%, 690px);
    margin: min(-6.5vw, -15px) auto max(3vw, 15px);
    text-align: center;
    z-index: 1;
}

.top-page-center-info .title-page {
    margin-bottom: 0;
}

.cards-module {
    gap: max(1.2vw, 10px);
}

.cards-module.center {
    width: min(100%, 1040px);
    margin: max(3vw, 40px) auto;
}

.card-module-item {
    position: relative;
    padding: max(2.2vw, 20px) max(1.5vw, 10px);
    background-color: #1E1E1E;
    text-align: center;
    z-index: 1;
}

.card-module-item>div {
    position: relative;
    z-index: 1;
}

.card-module-item .big-paragraph {
    color: #A9A9A9;
}

.card-module-item .subtitle-block {
    width: min(100%, 140px);
    margin: max(1vw, 10px) auto;
}

.services-module {
    gap: max(1.2vw, 10px);
    margin: max(3vw, 40px) 0 max(6vw, 40px);
}

.services-module.double {
    width: min(100%, 940px);
    margin-left: auto;
    margin-right: auto;
    row-gap: 40px;
}

.services-module-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    position: relative;
    height: 255px;
    padding: 0 15px;
    color: var(--general);
}

.services-module.big .services-module-item {
    height: 375px;
}

.services-module-item.gradient::before {
    height: max(5vw, 30px);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0) 100%);
}

.services-module-item-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: var(--transition-prop);
    background: top center / cover no-repeat url("/img/sub-pages/service-card-1.jpg");
}

.services-module-item-img.pro-connect {
    background-image: url("/img/sub-pages/service-card-2.jpg");
}

.services-module-item-img.warranty {
    background-image: url("/img/sub-pages/service-card-3.jpg");
}

.services-module-item-img.mobile-van {
    background-image: url("/img/sub-pages/service-card-4.jpg");
}

.services-module-item-img.MOT-service {
    background-image: url("/img/sub-pages/service-card-5.jpg");
}

.services-module-item-img.services-for-your-truck {
    background-image: url("/img/sub-pages/service-card-6.jpg");
}

.services-module-item-img.warranty-2 {
    background-image: url("/img/sub-pages/service-card-7.jpg");
}

.services-module-item-img.authorised-testing-facility {
    background-image: url("/img/sub-pages/service-card-8.jpg");
}

.services-module-item-img.MOT-service-2 {
    background-image: url("/img/sub-pages/service-card-9.jpg");
}

.services-module-item .subtitle-block,
.services-module-item .headline {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    transition: var(--transition-prop);
}

.services-module-item:hover .services-module-item-img {
    transform: translateY(-20px);
}

.services-module-item:hover .subtitle-block,
.services-module-item:hover .headline {
    color: var(--additional-color);
}

.m-30 {
    margin: max(9vw, 40px) 0;
}

.mb-20 {
    margin-bottom: max(5vw, 30px);
}

.content.left-info.half {
    grid-template-columns: 54vw 1fr;
}

.content.left-info.half .section-info-block {
    width: min(96%, 850px);
    padding: 0 max(4vw, 15px);
}

.videos-item {
    position: relative;
    height: 300px;
    width: 100%;
    overflow: hidden;
}

.videos-item img {
    display: block;
    object-fit: cover;
    transform: scale(1.05);
    width: 100%;
    height: 100%;
    transition: var(--transition-prop);
}

.videos-item-play {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.videos-item-play::before {
    content: "";
    position: relative;
    width: 79px;
    height: 78px;
    background: center / cover no-repeat url("/img/icons/icon-play.png");
    transition: .3s transform ease-in-out;
}

.videos-item-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.videos-item:hover .videos-item-play::before {
    transform: scale(1.05);
}

.videos-item:hover .videos-item-img img {
    transform: scale(1);
}

.slider-videos-wrap {
    margin: max(4vw, 40px) 0 max(11vw, 40px);
}

.pop-up-wrap {
    width: 100%;
    top: 0;
    right: 0;
    position: fixed;
    padding: 50px 20px 20px;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    pointer-events: auto;
    opacity: 1;
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.pop-up-wrap::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    opacity: 0.8;
    transition: opacity 0.4s cubic-bezier(0.215, 0.610, 0.355, 1);
}


.pop-up-hidden {
    opacity: 0;
    pointer-events: none;
}

.pop-up {
    transition: all 0.8s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.pop-up .container {
    position: relative;
}

.pop-up-hidden .pop-up {
    transform: scale(0.9);
}

.pop-up-hidden::before {
    opacity: 0;
    pointer-events: none;
}

.icon-close {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -38px;
    right: -24px;
    transform-origin: center;
    width: 51px;
    height: 51px;
    background-color: var(--pink);
    border-radius: 50%;
    line-height: 0.4;
    cursor: pointer;
    font-weight: 100;
    z-index: 3;
    transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.icon-close:hover {
    transform: rotate(180deg);
}

.icon-close span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: #fff;
    transform: rotate(45deg);
}

.icon-close span:nth-last-of-type(2) {
    transform: rotate(-45deg);
}

.pop-up-content {
    background-color: var(--general);
    width: 100%;
    position: relative;
    z-index: 1;
}

.testimonials-content {
    margin: 0 0 max(3vw, 40px);
}

.testimonials-content .title-section {
    text-align: center;
}

.testimonials-item {
    padding: max(2.5vw, 20px) max(6vw, 15px);
    background-color: #202020;
    text-align: center;
}

.testimonials-item.gradient::before {
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0) 100%);
}

.testimonials-item .icon::before {
    content: "”";
    position: relative;
    font-size: 65px;
    line-height: 1;
    font-weight: 200;
    color: var(--additional-color);
}

.testimonials-item>div {
    position: relative;
    z-index: 1;
}

.testimonials-item-caption {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    margin: max(3vw, 20px) 0 max(7vw, 30px);
}

.testimonials-item-caption .title-block {
    margin-bottom: 0;
    color: var(--additional-color);
    line-height: 1;
}

.testimonials-item-caption::before {
    content: "";
    position: relative;
    width: 50px;
    height: 50px;
    margin-right: 25px;
    background: center / cover no-repeat url("/img/logo-small.png");
}

.swiper-navigation-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: min(-8vw, -30px);
}

.swiper-navigation-wrap>div {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    outline: none;
    margin: 10px;
}

.swiper-navigation-wrap>div::after {
    font-size: 18px;
    color: var(--general);
}

.simple-content-grid-items .coll-2 {
    gap: max(3vw, 20px) 15px;
    margin-top: 0;
}

.simple-content-grid-items .headline {
    color: var(--additional-color);
}

.content-img-label {
    position: relative;
}

.simple-content-bg-img {
    position: absolute;
    top: min(-10vw, -30px);
    right: 0;
    width: 42vw;
}

.gap-30 {
    grid-template-columns: 0.8fr 1fr;
    gap: max(8vw, 30px);
}

.simple-content-top-description {
    position: relative;
    z-index: 2;
}

.title-center {
    width: min(100%, 937px);
    margin: max(5vw, 40px) auto;
}

.title-center.center {
    text-align: center;
    margin: max(3vw, 40px) auto;
}

.title-center.center .title-section {
    text-align: center;
    margin: max(3vw, 40px) auto max(1vw, 10px);
}

.title-center.center .subtitle-section {
    width: min(100%, 680px);
    margin: 0 auto;
}

.pdf-list li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 18px;
    margin-bottom: max(1.2vw, 10px);
    color: var(--additional-color);
}

.pdf-list li::before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 20px;
    margin-right: 15px;
    background: center / contain no-repeat url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fa-solid' data-icon='file-pdf' class='svg-inline--fa fa-file-pdf fa-w-12' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512' fill='%2300AFEA'%3E%3Cpath d='M184 208C184 203.594 180.406 200 176 200S168 203.594 168 208C168 210.062 168.297 231.312 177.141 258.25C179.094 249.594 184 226.156 184 208ZM256 0V128H384L256 0ZM80 422.375C80 432.031 90.453 434.313 94.359 428.719C99.25 421.875 108.75 408 120.078 388.625C105.859 396.594 92.828 405.938 82.062 416.938C80.75 418.281 80 420.281 80 422.375ZM224 128V0H48C21.49 0 0 21.492 0 48V464C0 490.508 21.49 512 48 512H336C362.51 512 384 490.508 384 464V160H256C238.326 160 224 145.672 224 128ZM292 312C316.262 312 336 331.738 336 356C336 380.672 317.059 400 292.875 400C286.881 400 281.061 399.047 275.658 397.195C255.602 390.438 237.283 381.234 221.104 369.801C197.229 374.91 175.648 381.32 156.793 388.902C142.361 415.215 129.162 435.051 120.422 447.316C112.979 457.762 100.834 464 87.938 464C65.916 464 48 446.086 48 424.062C48 412.145 51.74 402.238 59.18 394.555C75.363 378.035 96.545 363.566 122.199 351.5C133.953 328.668 144.135 305.461 152.531 282.355C136.197 242.391 136 208.355 136 208C136 185.945 153.945 168 176 168C198.057 168 216 185.945 216 208C216 232.996 208.773 263.754 207.062 270.633C206.057 273.906 205.027 277.148 203.98 280.355C211.811 294.816 221.678 307.57 233.424 318.406C263.094 313.359 284.322 312.148 287.578 312H292ZM156.531 354.594C174.516 348.094 192.656 343.156 209.453 339.406C197.031 327.344 187.281 314.281 179.656 301.25C172.312 320.625 164.422 338.5 156.531 354.594ZM292.875 368C299.016 368 304 363 304 356.875C304 349.375 298.609 344 292 344H288C287.656 344.031 271.172 344.969 247.047 348.75C258.312 355.75 271.172 361.938 285.891 366.875C288.031 367.625 290.453 368 292.875 368Z' fill='%2300AFEA'/%3E%3C/svg%3E");
}

.cards-cars {
    gap: max(1.5vw, 10px);
    margin: max(7vw, 40px) 0;
}

.card-car {
    position: relative;
}

.card-car-img {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 220px;
}

.card-car-img.gradient::before {
    height: 55px;
    background: linear-gradient(0deg, rgba(48, 48, 48, 1) 0%, rgba(48, 48, 48, 0.9) 20%, rgba(48, 48, 48, 0.92) 50%, rgba(48, 48, 48, 0) 100%);
}

.card-car img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-car-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 max(1.5vw, 10px) max(1.5vw, 10px);
    background: linear-gradient(180deg, rgba(48, 48, 48, 1) 0%, rgba(0, 0, 0, 1) 62%, rgba(48, 48, 48, 0.0004) 100%);
}

.card-car-title {
    font-size: 40px;
}

.card-car-content .subtitle-section {
    font-weight: 200;
}

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

.divider {
    display: block;
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: max(5vw, 30px);
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(190, 190, 190, 0.2);
}

.divider::after {
    content: "";
    display: inline-block;
    width: 50px;
    height: 20px;
    position: relative;
    color: rgba(190, 190, 190, 0.2);
    background: var(--black) center / contain no-repeat url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fa-regular' data-icon='chevrons-down' class='svg-inline--fa fa-chevrons-down fa-w-14' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M207.406 265.344C216.719 274.219 231.281 274.219 240.594 265.344L424.599 89.344C434.162 80.188 434.506 65 425.349 55.406C420.63 50.469 414.318 48 408.005 48C402.036 48 396.067 50.219 391.411 54.656L224 214.781L56.589 54.656C46.995 45.531 31.807 45.812 22.651 55.406S13.838 80.188 23.401 89.344L207.406 265.344ZM408.005 240C402.036 240 396.067 242.219 391.411 246.656L224 406.781L56.589 246.656C46.995 237.531 31.807 237.812 22.651 247.406S13.838 272.188 23.401 281.344L207.406 457.344C216.719 466.219 231.281 466.219 240.594 457.344L424.599 281.344C434.162 272.188 434.506 257 425.349 247.406C420.63 242.469 414.318 240 408.005 240Z' fill='rgba(190, 190, 190, 0.2)'/%3E%3C/svg%3E");
}

.offers-module {
    gap: max(1.2vw, 10px);
    margin: max(3vw, 40px) 0 max(6vw, 40px);
}

.offers-module-item-img {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
    margin-bottom: max(1.5vw, 15px);
}

.offers-module-item-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-prop);
}

.offers-module-item:hover img {
    transform: scale(1.05);
}

.s-article .container {
    width: min(96%, 937px);
}

.breadcrums-block {
    margin: max(3vw, 30px) 0;
}

.breadcrums-block ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrums-block ul li a {
    color: #7D7D7D;
}

.breadcrums-block ul li a:hover {
    color: #fff;
}

.breadcrums-block ul li a {
    color: #7D7D7D;
}

.breadcrums-block ul li+li::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: #7D7D7D;
    margin: 0 10px;
    vertical-align: middle;
}

.article-content .coll-2 {
    display: grid !important;
    gap: max(1.2vw, 10px);
}

.article-content img {
    width: 100%;
}

.offers-individual-actions {
    display: grid !important;
    gap: 1px;
    background-color: #7D7D7D;
    border: 1px solid #7D7D7D;
}

.offers-individual-actions a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: max(8vw, 70px);
    padding: 15px;
    background: radial-gradient(#000, #000);
    margin: 0;
}

.offers-individual-actions a:hover {
    color: var(--additional-color);
    background: radial-gradient(#363636, #000);
}

.news-date {
    font-size: 14px;
    margin-bottom: max(1vw, 15px);
}

.read-next a {
    color: var(--additional-color);
}

.news-content {
    padding-top: max(3vw, 30px);
}

.news-block-top {
    display: grid;
    grid-template-columns: 1fr 336px;
}

.news-block {
    gap: max(1.5vw, 10px);
}

.news-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    position: relative;
    padding: max(1.2vw, 10px);
    overflow: hidden;
    height: max(20.83vw, 170px);
}

.news-item:hover img {
    transform: scale(1.05);
}

.news-item-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.news-block img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-prop);
}

.news-item .news-date,
.news-item .subtitle-block {
    position: relative;
    z-index: 1;
}

.news-item .news-date {
    font-size: 12px;
    margin-bottom: 10px;
}

.news-item .subtitle-block {
    margin: 0;
    max-width: 85%;
    font-weight: 200;
    min-height: 52px;
}

.news-block-top>div:first-of-type {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 3;
}

.news-block-top .news-item {
    height: max(15.5vw, 150px);
}

.news-item.big {
    height: 100%;
}

.news-item.big .subtitle-block {
    font-size: 36px;
    width: min(100%, 570px);
}

.news-content .title-section {
    text-align: center;
}

.news-item-img.gradient::before {
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0.82) 30%, rgba(0, 0, 0, 0) 100%);
}

.news-block>div:nth-of-type(7),
.news-block>div:nth-of-type(8) {
    grid-column: span 2;
}

.pagination-block {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.pagination-block a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    width: 30px;
    height: 30px;
    border: 1px solid #747474;
    border-radius: 4px;
    line-height: 1;
    color: #747474;
    margin: 5px;
}

.pagination-block a:hover,
.pagination-block a.active {
    color: var(--additional-color);
    border-color: var(--additional-color);
}

.pagination-block a:first-of-type,
.pagination-block a:last-of-type {
    border-color: transparent;
}

.pagination-block a:first-of-type svg,
.pagination-block a:last-of-type svg {
    width: 7px;
    height: auto;
}

.tabs-pannel {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: max(2vw, 30px) 0 max(3vw, 40px);
}

.team-tab-name {
    font-size: 20px;
    padding: 8px 20px;
    color: var(--general);
    border: 1px solid var(--general);
    margin: 5px max(0.7vw, 10px);
    border-radius: 23px;
    cursor: pointer;
    transition: var(--transition-prop);
}

.team-tab-name.active,
.team-tab-name:hover {
    background-color: var(--general);
    border-color: var(--general);
    color: var(--black);
}

.team-tab-name.disable {
    border-color: #909090;
    color: #909090;
    pointer-events: none;
}

.team-item {
    position: relative;
    text-align: center;
}

.team-item img {
    display: block;
    width: 100%;
    border-radius: 50%;
}

.team-item-name {
    font-size: 24px;
    margin-top: max(1.2vw, 10px);
}

.team-item-position {
    color: #A5A5A5;
    margin-bottom: 10px;
}

.team-item-info a {
    display: block;
    color: var(--additional-color);
}

.team-tab {
    width: 100%;
    position: absolute;
    pointer-events: none;
    opacity: 0;
    transform: translateY(100px);
    gap: max(4vw, 15px) max(7vw, 15px);
    transition: var(--transition-prop);
}

.team-tab.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.team-tabs-body {
    position: relative;
    max-width: 90%;
    margin: max(6vw, 20px) auto max(8vw, 30px);
}

.book-service-block {
    position: relative;
    padding: max(3vw, 30px) max(6vw, 15px);
    background-color: #fff;
    color: var(--black);
}

.pop-up-content.book {
    width: min(100%, 938px);
    margin: 0 auto;
}

.book-service-block .coll-2 {
    gap: max(1vw, 15px);
    margin-bottom: 0;
}

.book-service-block .title-section {
    margin-bottom: max(1.5vw, 20px);
}

.datepicker-block {
    margin-bottom: max(1.5vw, 15px);
}

.datepicker-here {
    display: none;
}

.book-service-block .datepicker-inline .datepicker {
    width: 100%;
    border-color: transparent;
    box-shadow: none;
    position: static;
    left: auto;
    right: auto;
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

.book-service-block .datepicker--nav-title {
    font-size: 26px;
    font-family: 'Daimler', sans-serif;
}

.book-service-block .datepicker--day-name {
    color: #ABABAB;
}

.book-service-block .datepicker--cells>div:nth-of-type(even) {
    background-color: #EDEDED;
}

.book-service-block .datepicker--cells>div {
    color: #ABABAB;
    font-weight: 200;
    height: 45px;
    border-radius: 0;
}

.book-service-block .datepicker--cell.-selected-,
.book-service-block .datepicker--cell.-selected-.-current- {
    color: #fff;
    background: var(--additional-color) !important;
}

.book-service-block .datepicker--days-names {
    margin: 8px 0 20px;
}

.book-service-block .btn {
    width: 100%;
}

.s-search-top {
    background: center / cover no-repeat url("/img/sub-pages/search/banner-search.jpg");
}

.s-search-top .subtitle-section {
    width: min(100%, 456px);
}

.search-content-wrap {
    margin: max(5.5vw, 40px) 0 0;
}

.search-content-top-info {
    position: relative;
    z-index: 1;
    align-self: end;
    margin-bottom: max(3vw, 20px);
}

.search-content {
    position: relative;
    z-index: 2;
}

.search-content-top-info .title-page {
    margin-bottom: 15px;
}

.cars-state-block {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: max(2vw, 20px);
}

.cars-state-block>div {
    margin: 0 10px;
}

.cars-state-block>div label {
    color: var(--black);
}

.cars-state-block .checkbox-input:checked+.cbx {
    color: var(--additional-color);
}

.cars-state-block .checkbox-input:checked+.cbx>div:first-child {
    border-color: var(--additional-color);
}

.s-search-top .ui-slider .ui-slider-handle {
    display: flex;
    justify-content: center;
    align-items: center;
    top: -9px;
    border-radius: 50%;
    outline: none;
    background-color: #fff;
    padding: 3px;
    cursor: pointer;
}

.s-search-top .ui-slider .ui-slider-handle.ui-state-active {
    border-color: #EEEEEE;
}

.s-search-top .ui-widget.ui-widget-content {
    border: none;
    background-color: #EEEEEE;
    height: 3px;
}

.s-search-top .ui-slider .ui-slider-handle::before {
    content: "";
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--additional-color);
    border-radius: 50%;
}

.ranges-block .ui-slider .ui-slider-range {
    background-color: var(--additional-color);
    height: 5px;
    top: -2px;
}

.ranges-block input {
    border: 0;
    width: 88px;
}

.ranges-block input#mileage {
    border: 0;
    width: 160px;
}

.ranges-block .range {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0;
}

.s-search-top .tabs-body .form-content {
    display: block !important;
}

.form-btn-wrap {
    display: block;
    margin: max(2.5vw, 20px) 0 max(1vw, 10px) !important;
}

.search-card-half {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.search-card-img {
    width: 100%;
    height: max(14vw, 180px);
    overflow: hidden;
}

.search-card-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-prop);
}

.search-card-item-head,
.search-card-item-body,
.search-card-item-details,
.search-card-item-btn {
    padding: max(1.1vw, 15px) max(1.5vw, 10px);
    background-color: #131313;
}

.search-card-item-body {
    background-color: #212121;
}

.search-cards-module {
    gap: max(1.5vw, 10px);
    margin: max(6vw, 30px) 0 0;
}

.search-card-half>div {
    margin-bottom: 0;
}

.search-card-item-title {
    font-size: 40px;
    margin: 0;
}

.search-card-item-head,
.search-card-item-head .subtitle-section {
    transition: var(--transition-prop);
}

.search-card-item-head .subtitle-section {
    color: var(--additional-color);
}

.search-card-item-body>div:not(:last-of-type) {
    margin-bottom: max(0.9vw, 10px);
}

.search-card-item-details {
    gap: 10px;
    margin: 0;
}

.search-card-item-details li {
    list-style-type: disc;
    color: var(--additional-color);
    margin-left: 20px;
}

.search-card-item-btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 0;
    padding-bottom: max(2vw, 15px);
}

.search-card-item:hover .search-card-item-head {
    background-color: var(--additional-color);
}

.search-card-item:hover .search-card-item-head .subtitle-section {
    color: var(--general);
}

.search-card-item:hover .search-card-img img {
    transform: scale(1.05);
}

.search-product-top,
.product-top {
    background: radial-gradient(circle, rgba(54, 54, 54, 0.6) 0%, rgba(0, 0, 0, 1) 80%, rgba(48, 48, 48, 0.0004) 100%);
}

.search-product-top-name {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.search-product-price {
    color: var(--additional-color);
    margin-bottom: 0;
}

.search-product-top-name .title-section {
    margin-bottom: 0;
}

.search-product-top-details {
    gap: max(1vw, 10px);
    margin: max(2vw, 20px) 0;
}

.search-product-top-details li {
    display: grid;
    grid-template-columns: min-content 1fr;
    font-size: 18px;
    gap: 10px;
}

.search-product-slide-item {
    width: 100%;
    height: max(35vw, 300px);
}

.product-slide-item img,
.search-product-slide-item img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.search-product-slide-item.gradient::before {
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0) 100%);
}

.search-product-videos-item .plyr {
    width: 100%;
    height: 100%;
    z-index: 1;
}

.search-product-gallery-thumbs .swiper-slide {
    width: 100%;
    height: max(6vw, 80px);
    background: center / cover no-repeat;
    cursor: pointer;
}

.search-product-gallery-thumbs-wrap {
    position: relative;
    width: 80%;
    margin: 0 auto;
    margin-top: min(-4.5vw, -30px);
}

.swiper-navigation-thumbs-wrap>div {
    outline: none;
}

.swiper-navigation-thumbs-wrap .swiper-button-next {
    right: -40px;
}

.swiper-navigation-thumbs-wrap .swiper-button-prev {
    left: -40px;
}

.swiper-navigation-thumbs-wrap>div::before,
.swiper-navigation-thumbs-wrap>div::after {
    font-size: 18px;
    color: var(--general);
}

.videos-item-play.white::before {
    width: 52px;
    height: 52px;
    background-image: url("/img/icons/icon-play-white.png");
}

.back-btn {
    margin: max(1.2vw, 15px) 0;
}

.back-btn::before {
    content: 'prev';
    display: inline-block;
    font-family: swiper-icons;
    position: relative;
    top: 1px;
    font-size: inherit;
    margin-right: 10px;
    transition: var(--transition-prop);
}

.back-btn:hover:before {
    transform: translateX(-5px);
}

.s-search-product-top .content {
    margin-top: 0;
}

.search-product-meta-module {
    display: grid !important;
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: max(3.5vw, 30px) 0;
}

.search-product-meta-item {
    text-align: center;
}

.search-product-meta-caption {
    margin-top: 15px;
}

.search-product-meta-caption>div:not(.title-block) {
    color: #8B8B8B;
}

.s-search-product-meta {
    background: linear-gradient(180deg, rgba(48, 48, 48, 0.5) 0%, rgba(48, 48, 48, 0.4) 40%, rgba(48, 48, 48, 0) 100%);
}

.product-tabs-body p,
.product-tabs-body ul li {
    font-size: 18px;
}

.product-tabs-body ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: max(2vw, 15px);
    padding-left: 10px;
    margin: max(2vw, 15px) 0;
}

.product-tabs-body ul li {
    list-style-type: disc;
    padding-right: 20px;
}

.product-tabs-head {
    counter-reset: tab;
}

.product-tab-name {
    position: relative;
    font-size: 40px;
    margin-bottom: 0;
    padding: max(1.3vw, 13px) 0 max(1vw, 10px);
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    line-height: 1;
    transition: var(--transition-prop);
    cursor: pointer;
}

.product-tab-name.active {
    color: var(--additional-color);
    background-color: rgb(255 255 255 / 0.1);
    border-color: rgb(255 255 255 / 0.2);
    padding-left: max(1.5vw, 10px);
}

.product-tabs-head.count .product-tab-name::before {
    counter-increment: tab;
    content: counter(tab, decimal-leading-zero);
    position: relative;
    display: block;
    color: var(--additional-color);
    font-size: initial;
    margin-bottom: 10px;
}

.product-tabs-head.count .product-tab-name.active::before {
    color: var(--general);
}

.product-tabs-body {
    position: relative;
    padding-top: max(1.3vw, 13px);
}

.product-tab-title {
    font-size: 36px;
    margin-bottom: max(1.5vw, 15px);
}

.product-tabs {
    grid-template-columns: 335px 1fr;
    gap: max(13vw, 20px);
    margin-top: 10px;
}

.product-tab {
    width: 100%;
    position: absolute;
    pointer-events: none;
    opacity: 0;
    transform: translateY(100px);
    transition: var(--transition-prop);
}

.product-tab.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.s-product-simple .content {
    gap: max(5vw, 20px);
}

.s-360 {
    width: 100%;
}

.s-360 iframe {
    width: 100%;
    height: max(40vw, 200px);
}

.s-product-top .content {
    grid-template-columns: 2fr 1fr;
    margin: 86px 0 10px;
}

.search-icon {
    width: 17px;
    height: auto;
}

.product-gallery-wrap {
    grid-template-columns: 95px minmax(0, 1fr);
    gap: 25px;
    margin-top: 0;
}

.product-gallery-thumbs .swiper-slide {
    width: 100%;
    height: 75px;
    background: center / cover no-repeat;
    cursor: pointer;
    border: 1px solid transparent;
}

.product-gallery-thumbs .swiper-slide-thumb-active {
    border-color: var(--additional-color);
}

.product-gallery-thumbs-wrap,
.product-slide-item {
    width: 100%;
    height: max(27vw, 300px);
}

.product-gallery-thumbs {
    height: 100%;
}

.brand-name {
    color: #797979;
    margin-bottom: 10px;
}

.product-page-title {
    font-size: 50px;
}

.product-short-description a {
    display: block;
    text-decoration: underline;
}

.product-price {
    color: var(--additional-color);
    margin: max(2.5vw, 20px) 0;
}

.product-page-title {
    margin-bottom: max(1.5vw, 20px);
}

.product-top .btns-double-block {
    margin-top: 0;
}

.product-page-tabs {
    width: min(100%, 1180px);
    margin-left: auto;
    margin-right: auto;
    gap: max(7vw, 20px);
}

.products-item {
    width: 100%;
    position: relative;
    transition: var(--transition-prop);
    border: 1px solid transparent;
}

.products-item:hover {
    border-color: var(--additional-color);
}

.products-item:hover img {
    transform: scale(1.05);
}

.products-item:hover .products-item-caption {
    background-color: var(--additional-color);
}

.products-item:hover .products-item-caption>div:not(.coll-2, .big-paragraph),
.products-item:hover .products-item-caption span {
    color: var(--general);
}

.products-item-img {
    width: 100%;
    height: max(11vw, 160px);
    overflow: hidden;
}

.products-item-img img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: var(--transition-prop);
}

.products-item-caption {
    padding: max(1vw, 10px);
    background-color: #131313;
    transition: var(--transition-prop);
}

.products-item-caption>div:not(.coll-2, .big-paragraph) {
    color: #737373;
    transition: var(--transition-prop);
}

.products-item-caption .subtitle-section {
    margin-bottom: 5px;
}

.products-item-caption .big-paragraph {
    margin-bottom: 0;
}

.products-item-caption span {
    color: var(--additional-color);
    transition: var(--transition-prop);
}

.products-item-caption .coll-2 {
    margin: 0;
    grid-template-columns: 1fr min-content;
    gap: 10px;
}

.slider-related-products-wrap {
    margin: max(3.5vw, 30px) 0 max(7vw, 50px);
}

.slider-related-products-wrap .swiper-container {
    overflow: visible;
}

.mini-cart-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 55px;
    height: 55px;
    margin-left: auto;
    margin-bottom: 10px;
    border-radius: 50%;
    background-color: var(--additional-color);
}

.mini-cart-icon svg {
    width: 23px;
    height: auto;
}

.mini-cart-block-wrap {
    position: relative;
    z-index: 3;
}

.mini-cart-block {
    position: absolute;
    top: 20px;
    right: 0;
    height: 0;
}

.mini-cart-content-wrap {
    position: relative;
    top: -26px;
    opacity: 0;
    pointer-events: none;
    height: 1px;
    transition: var(--transition-prop);
}

.mini-cart-block:hover .mini-cart-content-wrap {
    height: auto;
    opacity: 1;
    pointer-events: all;
}

.mini-cart-content-box {
    overflow-y: auto;
    max-height: 75vh;
    border-radius: 5px 0 5px 5px;
}

.mini-cart-content {
    position: relative;
    width: 470px;
    max-width: 93vw;
    padding: max(1vw, 10px) max(1.4vw, 10px) 10px;
    background: #fff;
}

.mini-cart-content-wrap::before {
    content: "";
    display: block;
    position: relative;
    margin-left: auto;
    width: 23px;
    height: 24px;
    background: center / contain no-repeat url("/img/sub-pages/product/mini-cart-bg.png");
}

.cart-item {
    display: grid !important;
    margin: 0;
    padding: 12px 0;
    gap: max(0.9vw, 10px);
    grid-template-columns: min-content 1fr min-content;
}

.cart-item-img {
    width: 95px;
    height: 75px;
}

.cart-item-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-caption {
    align-self: center;
}

.cart-item-caption span {
    display: block;
    color: var(--additional-color);
}

.cart-item-caption .big-paragraph {
    margin-bottom: 0;
    color: var(--black);
}

.cart-quantity {
    align-self: center;
}

.cart-quantity .num-in {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    width: 55px;
}

.cart-quantity .num-in span {
    width: 35%;
    display: block;
    position: relative;
    cursor: pointer;
    padding: 10px 5px;
}

.cart-quantity .num-in span:before {
    content: 'prev';
    display: inline-block;
    font-family: swiper-icons;
    position: absolute;
    top: 1px;
    font-size: 10px;
    top: 23%;
    left: 50%;
    margin-top: -1px;
    margin-left: -5px;
    color: var(--black);
}

.cart-quantity .num-in span.plus:before {
    transform: rotate(180deg);
    left: 75%;
}

.cart-quantity .num-in input {
    width: 70%;
    height: 100%;
    border: 0;
    background-color: #F2F2F2;
    border-radius: 5px;
    font-size: 12px;
    text-align: center;
    font-weight: bold;
}

.cart-quantity input[type=number]::-webkit-inner-spin-button,
.cart-quantity input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-subtotal-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: max(1vw, 10px) 0 max(0.8vw, 8px);
    margin: 15px 0 10px;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
}

.cart-subtotal {
    font-size: 24px;
    margin-bottom: 0;
    color: var(--black);
}

.subtotal-price {
    color: var(--additional-color);
    margin-bottom: 0;
}

.mini-cart-btns .btn {
    width: 100%;
}

.btn.cancel {
    color: #EF0000;
    border-color: transparent;
}

.btn.cancel:hover {
    color: var(--general);
}

.btn.cancel::before {
    background-color: #EF0000;
}

.cart-content {
    gap: 20px;
    margin: max(5vw, 30px) 0 max(7vw, 40px);
}

.simple-title-wrap {
    padding: 29px 0 19px;
    background-color: #131313;
    text-align: center;
}

.simple-title-wrap .title-section {
    margin-bottom: 0;
}

.cart-content-items {
    padding-right: max(5vw, 10px);
}

.cart-content-items .cart-item {
    padding: max(1.2vw, 10px) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    grid-template-columns: min-content 1fr min-content min-content;
}

.cart-content-items .cart-item:first-of-type {
    padding-top: 0;
}

.cart-item-remove {
    align-self: center;
}

.cart-item-remove a {
    padding: 10px 20px;
    color: #EF0000;
}

.cart-content-items .cart-item-caption .big-paragraph {
    color: var(--general);
}

.cart-content-items .cart-quantity .num-in span:before {
    color: var(--general);
}

.cart-content-items .cart-quantity .num-in input {
    color: var(--general);
    background-color: #242424;
}

.promo-coupon-block {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.promo-coupon-block .title-block {
    margin-bottom: 0;
    margin-right: max(1.5vw, 10px);
}

.promo-coupon-block,
.cart-total-block {
    padding: max(1.5vw, 15px);
}

.promo-coupon-block {
    background-color: #1E1E1E;
}

.cart-total-block {
    background-color: #131313;
}

.promo-coupon-action-content input {
    width: 225px;
    background-color: var(--black);
    border: 1px solid #555555;
    margin: 0;
    padding: 12px 15px;
    border-radius: 5px;
    color: var(--general);
}

.cart-total-block {
    background-color: #131313;
}

.cart-total-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: max(0.8vw, 10px) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cart-total-item span {
    display: inline-block;
    color: var(--additional-color);
}

.cart-total-block .subtitle-block {
    margin-bottom: 10px;
}

.cart-total-item.total {
    padding-bottom: 0;
    border-bottom: 0;
}

.cart-total-item.total .title-block {
    margin-bottom: 0;
}

.category-products,
.products-grid {
    display: grid !important;
    gap: max(1.2vw, 10px);
}

.search-results-content {
    gap: max(1.2vw, 10px);
}

.category-products .products-item-img {
    height: max(8.6vw, 130px);
}

.products-grid {
    margin-bottom: max(7vw, 40px);
}

.search-for-car-parts-action {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: min(100%, 700px);
    margin: max(1vw, 10px) auto max(5vw, 30px);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.search-for-car-parts-action input {
    width: 70%;
    padding: 15px 15px;
    background-color: #fff;
    border: none;
    color: var(--black);
    margin: 0;
}

.search-for-car-parts-action input::placeholder {
    color: var(--black);
}

.search-for-car-parts-action .btn {
    width: 30%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.search-for-car-parts-action .btn:hover {
    border-color: var(--additional-color);
}

.mb-5 {
    margin-bottom: 5px;
}

.search-results-content {
    grid-template-columns: 330px minmax(0, 1fr);
}

.search-results-content .products-grid {
    margin: 0 0 max(2vw, 20px);
}

.search-results-sidebar input,
.search-results-sidebar select {
    background-color: #131313;
    border-color: transparent;
}

.search-filter select {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--general);
}

.checkselect {
    display: inline-block;
    width: 100%;
    position: relative;
    text-align: left;
    margin-bottom: max(1vw, 10px);
}

.checkselect::before {
    content: attr(data-name);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    padding: 15px 20px;
    pointer-events: none;
}

.checkselect-control {
    position: relative;
    padding: 0 !important;
}

.checkselect .form-control.active {
    background-color: var(--additional-color);
    color: var(--general);
    border-radius: 5px 5px 0 0;
    background-size: 0.7em auto;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.967' height='6.831' viewBox='0 0 11.967 6.831'%3E%3Cpath d='M913.271,1046.185l.585-.608,5.391,5.6,5.406-5.616.585.608-5.991,6.223Z' transform='translate(-913.271 -1045.561)' fill='%23fff'/%3E%3C/svg%3E");
}

.checkselect-over {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    cursor: pointer;
}

.checkselect-popup {
    display: none;
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    border: 1px solid #1f1f1f;
    border-top: none;
    border-radius: 0 0 5px 5px;
    background: var(--black);
    padding: 10px;
    overflow: auto;
    user-select: none;
    margin-bottom: max(1vw, 10px);
    margin-top: 0;
}

.checkselect label {
    position: relative;
    display: block;
    margin: 0;
    padding: 5px 6px 5px 30px;
    font-weight: normal;
    line-height: 1.1;
    cursor: pointer;
    color: #898989;
}

.checkselect label::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 12px;
    width: 5px;
    height: 5px;
    border-bottom: 1px solid #4a4a4a;
    border-left: 1px solid #4a4a4a;
}

.checkselect label input:checked+span {
    color: var(--additional-color);
}

.checkselect-popup input {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.checkselect-popup label:hover {
    background: var(--general-light);
    color: #fff;
}

.checkselect-popup fieldset {
    display: block;
    margin: 0;
    padding: 0;
    border: none;
}

.checkselect-popup fieldset input {
    left: 15px;
}

.checkselect-popup fieldset label {
    padding-left: 32px;
}

.checkselect-popup legend {
    display: block;
    margin: 0;
    padding: 5px 8px;
    font-weight: 700;
    font-size: 1em;
    line-height: 1.1;
}

.sidebar-title {
    font-size: 36px;
    margin-bottom: max(1.2vw, 10px);
}

.sidebar-item {
    margin-top: max(2vw, 20px);
}

.contact-form-block {
    position: relative;
    width: min(100%, 695px);
    background-color: var(--black);
    margin: max(5vw, 30px) 0;
    margin-left: auto;
    border-radius: 4px;
}

.contact-form-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-form-head .title-section,
.contact-form-head>div {
    margin-bottom: 0;
}

.contact-form {
    padding: max(2.5vw, 15px);
}

.contact-form p {
    margin-bottom: max(2.5vw, 20px);
}

.form-group-double {
    gap: max(1.2vw, 10px);
    margin: 0;
}

.contact-form .checkbox-caption {
    font-size: 14px;
}

.contact-form .checkbox-caption a {
    color: var(--general);
}

.contact-form-bottom {
    margin: 0;
    grid-template-columns: 1fr min-content;
    gap: 10px;
}

.contact-form-bottom .btn {
    white-space: nowrap;
}

.contact-form-bottom .custom-checkbox {
    margin: 0 0 10px;
}

#infowindow-content {
    display: none;
}

#map #infowindow-content {
    display: inline;
}

#pac-input {
    width: 336px;
    font-size: 16px;
    padding: 15px 42px 15px 25px;
    border-radius: 27px;
    background-color: var(--black);
    color: #ABABAB;
    border: none;
    margin: max(2.5vw, 20px) 0 0 max(13vw, 15px);
    background: #000 right 1.5em top 50% / 1em auto url("/img/icons/icon-search.png") no-repeat;
}

.gm-style .gm-style-iw-c {
    background-color: #000;
    border-radius: 0;
    padding: 12px !important;
}

.gm-style .gm-style-iw-d {
    overflow: hidden !important;
}

.gm-style .gm-style-iw-t::after {
    display: none;
}

#place-name {
    color: var(--additional-color);
    margin-bottom: 0;
}

.opening-hours-content>div,
.opening-hours-tab {
    gap: 20px;
    grid-template-columns: 340px minmax(0, 1fr);
}

.contact-locations-info .title-block {
    color: var(--additional-color);
    margin-bottom: max(1vw, 15px);
}

.contact-locations-info p {
    width: min(100%, 250px);
}

.contact-locations-info a svg {
    position: relative;
    top: 3px;
    width: 15px;
    height: auto;
    margin-right: 8px;
}

.contact-locations-info a svg path {
    fill: var(--additional-color);
    transition: var(--transition-prop);
}

.contact-locations-info-table {
    background-color: rgb(18, 18, 18);
    margin: 0;
    gap: 0;
}

.contact-locations-opens-time-item {
    display: grid;
}

.contact-locations-opens-time-item div {
    padding: max(0.7vw, 10px) 10px;
    text-align: center;
    border-top: 1px solid #4a4a4a;
    color: #949494;
}

.contact-locations-info-table-head {
    font-size: 20px;
    font-family: 'Daimler', sans-serif;
    background-color: var(--black);
}

.opening-hours-content-body {
    margin-bottom: 0;
}

.contact-location-select-block>div {
    width: min(100%, 350px);
}

.opening-hours-content-body {
    position: relative;
}

.opening-hours-tab {
    width: 100%;
    position: absolute;
    pointer-events: none;
    opacity: 0;
    transform: translateY(100px);
    margin: 0;
    transition: var(--transition-prop);
}

.opening-hours-tab.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.top-page-center-info.inner-van {
    width: 100%;
}

.inner-van-simple-content {
    grid-template-columns: 1.45fr 1fr;
}

.inner-van-simple-content.desktop-revers {
    grid-template-columns: 1fr 1.45fr;
}

.inner-van-simple-content .simple-content-info {
    margin: 0 0 0 auto;
}

.inner-van-simple-content .gradient::before,
.simple-tabs-content-wrap .gradient::before {
    height: max(8vw, 30px);
}

.inner-van-simple-content.desktop-revers .simple-content-info {
    margin: 0 auto 0 0;
}

.inner-van-simple-content.desktop-revers .simple-content-img-wrap {
    grid-row: 1;
    grid-column: 2;
}

.inner-van-simple-content.desktop-revers .simple-content-info {
    grid-row: 1;
    grid-column: 1;
}

ul.custom-marker li {
    font-size: 18px;
    position: relative;
    margin-bottom: max(1vw, 10px);
    padding-left: 30px;
}

ul.custom-marker li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 6px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--general);
}

ul.custom-marker li::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid var(--additional-color);
}

.simple-tabs-content-wrap {
    margin: max(6vw, 30px) 0;
}

.simple-tabs-content {
    position: relative;
    width: min(100%, 940px);
    margin: min(-4.5vw, -30px) auto 0;
    z-index: 1;
}

.simple-tabs-head {
    gap: max(1.5vw, 10px);
    margin: 0;
}

.simple-tab-name {
    font-size: 36px;
    padding: max(0.7vw, 5px) 0;
    cursor: pointer;
    border-bottom: 1px solid #4a4a4a;
    transition: var(--transition-prop);
}

.simple-tab-name.active {
    color: var(--additional-color);
    border-color: var(--additional-color);
}

.simple-tabs-content-wrap .simple-content-img-wrap img {
    width: 100%;
}

.simple-tabs-body {
    position: relative;
}

.simple-tab {
    width: 100%;
    position: absolute;
    pointer-events: none;
    opacity: 0;
    transform: translateY(100px);
    transition: var(--transition-prop);
}

.simple-tab.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.simple-img.gradient::before {
    height: max(8vw, 30px);
}

.simple-img-item {
    width: 100%;
    height: max(28.64vw, 230px);
}

.simple-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-simple-imgs-wrap {
    margin: 30px 0 max(5vw, 20px);
}

.swiper-scrollbar-custom {
    width: min(100%, 455px);
    margin: max(5vw, 20px) auto 0;
    padding: 0 15px;
}

.swiper-scrollbar-custom .swiper-scrollbar {
    position: relative;
    height: 5px;
    width: 100%;
    background: #323232;
}

.swiper-scrollbar-custom .swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: var(--general);
    border-radius: 10px;
    left: 0;
    top: 0;
}

.home-hero-slider-wrap {
    position: relative;
    overflow: hidden;
}
.home-hero-slide-img {
    margin-bottom: -270px;
}
.home-hero-slide-img img {
    width: 100%;
}
.home-hero-slider .swiper-pagination.horizontal {
    margin-top: max(3.5vw, 30px);
    margin-bottom: max(3.5vw, 40px);
}
.cars-slider .swiper-button-next, .cars-slider .swiper-button-prev {
    color: var(--additional-color);
}


@media (max-width : 1440px) {

    h1,
    .title-page {
        font-size: 50px;
    }

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

    h4,
    .headline {
        font-size: 27px;
    }

    .subtitle-block {
        font-size: 19px;
    }

    .map-info {
        width: min(100%, 542px);
    }

    .who-we-are-actions a {
        font-size: 70px;
    }

    .tab-name {
        font-size: 22px;
    }

    .desktop-revers .section-info-block {
        margin: 0 auto 0 0 !important;
        padding-left: max(3vw, 20px) !important;
    }

    .carousel-wrap {
        width: 100%;
    }

    .top-page-content {
        grid-template-columns: 35vw 63vw;
    }

    .top-page-content-img img {
        width: 100%;
    }

    .content.left-info.half .section-info-block {
        padding-left: 15px;
    }

    .videos-item {
        height: 250px;
    }

    .card-car-title {
        font-size: 35px;
    }

    .news-item.big .subtitle-block {
        font-size: 30px;
    }

    .news-item .subtitle-block {
        min-height: 44px;
    }

    .team-item-name {
        font-size: 22px;
    }

    .search-card-item-title {
        font-size: 35px;
    }

    .form-control {
        padding: 14px 20px;
    }

    .s-product-top .content {
        grid-template-columns: 1.5fr 1fr;
    }

}

@media (max-width : 1280px) {
    body {
        font-size: 15px;
    }

    .top-mnu li a {
        font-size: 16px;
        padding: 18px 15px;
    }

    .sub-menu li a {
        padding: 0;
    }

    .sub-menu li {
        margin: 20px 20px 15px;
    }

    .head-top-line ul li a {
        padding: 15px 12px;
    }

    .head-scroll .top-mnu>li>a {
        padding: 11px 13px;
    }

    .navbar-brand {
        width: 220px;
    }

    main {
        margin-top: 100px;
    }

    .subtitle-block {
        font-size: 16px;
    }

    h1,
    .title-page {
        font-size: 45px;
    }

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

    h3,
    .title-block {
        font-size: 20px;
    }

    h4,
    .headline {
        font-size: 23px;
    }

    button,
    .btn {
        padding: 12px 15px;
    }

    .who-we-are-actions a {
        font-size: 60px;
    }

    .subtitle-section {
        font-size: 18px;
    }

    .s-who-we-are {
        background-size: cover;
    }

    .tab-head {
        padding: 0 15px;
    }

    .tab-name {
        font-size: 18px;
    }

    .swiper-slide-active .cars-item-title {
        font-size: 30px;
    }

    .cars-box {
        height: 190px;
    }

    .swiper-slide-active .cars-box {
        height: 280px;
    }

    .carousel-wrap {
        height: 545px;
    }

    .big-paragraph,
    .article-content p,
    .simple-content-info p {
        font-size: inherit;
    }

    .card-module-item .icon {
        transform: scale(0.9);
    }

    .videos-item {
        height: 200px;
    }

    .pdf-list li {
        font-size: inherit;
    }

    .card-car-title {
        font-size: 28px;
    }

    .card-car-img {
        height: 175px;
    }

    .services-module.big .services-module-item {
        height: 305px;
    }

    .news-item.big .subtitle-block {
        font-size: 24px;
    }

    .news-item .subtitle-block {
        min-height: 38px;
    }

    .team-item-name {
        font-size: 20px;
    }

    .team-tab-name {
        font-size: 17px;
    }

    .search-card-item-title {
        font-size: 28px;
    }

    .search-product-top-details li {
        font-size: 16px;
    }

    .product-tabs-body p,
    .product-tabs-body ul li {
        font-size: 16px;
    }

    .product-tabs {
        gap: max(3vw, 20px);
    }

    .s-product-top .content {
        margin: 66px 0 10px;
    }

    .mini-cart-block {
        top: 0;
    }

    .checkselect::before {
        padding: 13px 20px;
    }

    .opening-hours-content>div,
    .opening-hours-tab {
        grid-template-columns: 250px minmax(0, 1fr);
    }

    .contact-form-block {
        width: min(100%, 550px);
        margin-top: 100px;
    }

}

@media (max-width : 1050px) {

    .map-info {
        width: min(100%, 490px);
    }

    .who-we-are-actions a {
        font-size: 50px;
    }

    .team-item-info a {
        font-size: 12px;
    }

}

@media (max-width : 991px) {
    body {
        font-size: 14px;
    }

    main {
        margin-top: 60px;
    }

    .head-top-line,
    .menu-block-img,
    .who-we-are-content.gradient::before,
    .tab-head-img-wrap {
        display: none;
    }

    h1,
    .title-page {
        font-size: 33px;
    }

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

    h3,
    .title-block {
        font-size: 18px;
    }

    h4,
    .headline {
        font-size: 18px;
    }

    .mix-content .coll-2 {
        margin: 0 0 35px;
    }

    .product-tabs-body p,
    .product-tabs-body ul li {
        font-size: inherit;
    }

    .subtitle-section {
        font-size: 16px;
    }

    .menu-item-has-children .children-indicator {
        position: relative;
        display: inline-block;
        top: -3px;
        width: 7px;
        height: 7px;
        transform: rotate(45deg);
        border-bottom: 2px solid #fff;
        border-right: 2px solid #fff;
        margin-left: 10px;
    }

    .coll-2,
    .coll-3,
    .coll-4,
    .coll-5,
    .coll-6 {
        display: block;
    }

    .hamburger {
        display: flex;
        transition: var(--transition-prop);
        margin-left: auto;
    }

    .navbar-brand {
        width: 200px;
    }

    .navbar-top {
        padding: 5px 0;
    }

    .navbar-collapse {
        display: none;
        background-color: var(--black);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 20px 0;
        overflow: auto;
        max-height: 80vh;
        z-index: 10;
    }

    .top-mnu {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-left: 0;
    }

    .top-mnu li {
        width: 100%;
        text-align: center;
        padding: 0 10px;
    }

    .top-mnu li a {
        font-size: 14px;
        width: 100%;
        padding: 13px max(2vw, 5px);
        border-bottom: 1px solid var(--general);
    }


    .menu-item-has-children .children-indicator {
        position: absolute;
        top: calc(50% - 5px);
        right: 15px;
        z-index: 1;
        transition: var(--transition-prop);
    }

    .menu-item-has-children .children-indicator::before {
        content: "";
        position: absolute;
        right: -9px;
        top: -6px;
        width: 20px;
        height: 20px;
    }

    .menu-item-has-children .children-indicator.active {
        transform: rotate(225deg);
    }

    .sub-menu {
        display: none;
        flex-direction: column;
        position: relative !important;
        top: 0;
        left: 0 !important;
        min-width: 100%;
        transform: none !important;
        pointer-events: all;
        opacity: 1;
        box-shadow: none;
    }

    .sub-menu li {
        margin: 0;
        padding: 0;
    }

    .sub-menu li a {
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: center;
    }

    .mini-cart-content-wrap {
        display: none;
    }

    .foot-title {
        font-size: 19px;
        margin-bottom: 10px;
        margin-top: 30px;
    }

    .foot-info .foot-title {
        margin-top: 0;
    }

    .foot-menu {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .foot-menu li a:hover {
        transform: none;
    }

    .map-info,
    .contact-form-block {
        width: 100%;
    }

    .contact-form-block {
        margin-top: 30px;
    }

    #pac-input {
        display: none;
    }

    .map-location a {
        margin-top: 10px;
    }

    .who-we-are-actions a {
        font-size: 38px;
    }

    .tab-name {
        font-size: 16px;
        padding-left: 0;
    }

    .tab-head {
        padding: 0 10px;
    }

    .form-group.select label {
        top: 3px;
        left: 10px;
        font-size: 11px;
    }

    .form-group.select .form-control {
        padding: 16px 10px 7px;
    }

    .s-home-section-actions .content-big-img {
        width: 100vw;
        height: 69vw;
    }


    .car-item-img.middle-right-car {
        top: 20.5vw;
        right: 1.67vw;
        width: 38.5vw;
        height: 27.5vw;
    }

    .car-item-img.middle-right-car .tooltip-box {
        left: 20vw;
    }

    .car-item-img.middle-left-car {
        top: 14.58vw;
        width: 63.74vw;
        height: 41.64vw;
    }

    .car-item-img.middle-left-car .tooltip-box {
        left: 43vw;
    }

    .content.left-info .section-info-block {
        width: 96%;
        margin: 0 auto;
        padding: 30px 15px !important;
    }

    .subtitle-block,
    ul.custom-marker li {
        font-size: inherit;
    }

    .content.left-info {
        display: flex;
        flex-direction: column-reverse;
        gap: 0;
    }

    .s-search-product-top .content {
        flex-direction: column;
    }

    .s-home-section-actions .left-info.desktop-revers .content-big-img {
        top: 0;
    }

    .s-home-section-actions .desktop-revers .content-big-img {
        width: 100vw;
        height: 75vw;
    }

    .car-item-img.man-right {
        top: 13.55vw;
        right: -2.38vw;
        width: 53.967vw;
        height: 61.467vw;
    }

    .car-item-img.man-right .tooltip-box {
        top: 24.2vw;
        right: 37vw;
    }

    .cars-item {
        min-height: 400px;
    }

    .switch-cars-action div {
        font-size: 16px;
    }

    .switcher-cars input[type="checkbox"] {
        font-size: 14px;
    }

    .swiper-slide-active .cars-item-title {
        font-size: 23px;
    }

    .top-page-content-img,
    .top-page-content-img img {
        display: block;
        width: 100%;
    }

    .top-page-content {
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
        gap: 0;
    }

    .top-page-info {
        margin-bottom: 15px;
    }

    .simple-content-title {
        margin-left: 15px;
        margin-top: -34px;
    }

    .simple-content-info {
        width: 100%;
        margin: 20px 0;
    }

    .card-module-item {
        margin-bottom: 20px;
    }

    .services-module,
    .simple-tabs-head {
        display: grid;
    }

    .services-module-item {
        height: 200px;
    }

    .services-module-item:hover .services-module-item-img {
        transform: none;
    }

    .services-module.double {
        row-gap: 10px;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .content.left-info.half .section-info-block {
        width: min(96%, 945px);
    }

    .pop-up-wrap {
        padding: 50px 0 70px;
    }

    .icon-close {
        right: -3px;
    }

    .videos-item {
        height: 150px;
    }

    .videos-item-play {
        transform: scale(0.6);
    }

    .simple-content-bg-img {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        margin-bottom: 40px;
    }

    .cards-cars,
    .offers-module {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .card-car-title {
        font-size: 24px;
    }

    .card-car-img {
        height: 175px;
    }

    .news-block {
        display: grid;
    }

    .news-item.big .subtitle-block {
        font-size: 18px;
    }

    .news-item .subtitle-block {
        min-height: 32px;
    }

    .team-tab {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .team-tab-name {
        font-size: 16px;
        padding: 5px 15px;
    }

    .form-control {
        padding: 10px 10px;
    }

    .search-card-item-title {
        font-size: 24px;
    }

    .search-cards-module,
    .search-product-top-details {
        display: grid;
    }

    .s-search-top {
        background: none;
    }

    .ranges-block input#mileage {
        width: 140px;
    }

    .ranges-block input {
        width: 75px;
    }

    .search-product-top-details li {
        font-size: 14px;
    }

    .search-product-top,
    .product-top {
        background: none;
    }

    .search-product-meta-item svg {
        width: 90px;
        height: auto;
    }

    .product-gallery-wrap {
        display: grid;
    }

    .s-product-top .content {
        flex-direction: column;
    }

    .mini-cart-icon {
        width: 35px;
        height: 35px;
    }

    .mini-cart-icon svg {
        width: 17px;
    }

    .mini-cart-content-wrap::before {
        width: 15px;
        height: 17px;
    }

    .mini-cart-content-wrap {
        top: -24px;
    }

    .cart-item-img {
        width: 75px;
        height: 50px;
    }

    .cart-summary {
        margin-top: 30px;
    }

    .cart-content-items {
        padding-right: 0;
    }

    .simple-title-wrap {
        padding: 19px 0 15px;
    }

    .checkselect::before {
        padding: 9px 20px;
    }

    .search-results-sidebar {
        margin-bottom: 20px;
    }

    .contact-locations-info-table {
        display: grid;
    }

    .contact-locations-info-table {
        margin-top: 30px;
    }

    .inner-van-simple-content .simple-content-info {
        margin-top: 20px !important;
    }

}

@media (max-width : 767px) {

    .container,
    .content.left-info .section-info-block {
        width: 100%;
    }

    .navbar-bottom {
        flex-direction: column-reverse;
    }

    .navbar-bottom ul {
        margin-bottom: 10px;
    }

    .map-info-head {
        display: grid;
        grid-auto-flow: column;
        grid-template-columns: 1fr min-content;
        padding: max(2.08vw, 20px) max(1.56vw, 15px);
        gap: 5px;
    }

    .tabs-body .form-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .simple-content-img-wrap,
    .top-page-content-img {
        margin-left: -15px;
        width: 110%;
    }

    .card-module-item .icon {
        transform: scale(0.7);
    }

    .services-module {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .services-module.big {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-module-item {
        height: 150px;
    }

    .content.left-info.half .section-info-block {
        width: 100%;
        padding-bottom: 0 !important;
    }

    .simple-content iframe {
        height: 53.5vw;
    }

    .simple-content-top-description {
        padding: 0 15px;
    }

    .services-module.big .services-module-item {
        height: 230px;
    }

    .news-block:not(.news-block-top) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-block-top {
        grid-template-columns: 1fr 40%;
    }

    .team-tab,
    .search-cards-module {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-item img {
        max-width: 200px;
        margin: 0 auto;
    }

    .team-item-name {
        font-size: 18px;
    }

    .book-service-block .datepicker--nav-title {
        font-size: 20px;
    }

    .search-product-meta-item svg {
        width: 80px;
    }

    .search-product-meta-module {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-tabs-body {
        position: relative;
        padding-top: 30px;
    }

    .product-gallery-wrap {
        display: flex;
        flex-direction: column-reverse;
        gap: 0;
    }

    .product-gallery-thumbs-wrap {
        height: auto;
        margin-top: 15px;
    }

    .product-slide-item {
        height: max(27vw, 250px);
    }

    .category-products,
    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .search-for-car-parts-action input {
        padding: 9px 13px;
    }

    .contact-locations-opens-time-item div {
        font-size: 14px;
    }

}

@media (max-width : 480px) {

    h1,
    .title-page {
        font-size: 26px;
    }

    .foot-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .btn {
        width: 100%;
        padding: 10px 15px;
    }

    .map-info-body {
        grid-template-columns: 1fr;
    }

    .map-info,
    .contact-form-block {
        width: 100%;
    }

    .who-we-are-actions a {
        font-size: 30px;
    }

    .tab-name {
        font-size: 14px;
        padding-top: 20px;
        line-height: 1;
    }

    .tabs-body .form-content {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .tab-head {
        flex-direction: column;
        justify-content: flex-end;
    }

    .swiper-slide-active .cars-box {
        height: 250px;
    }

    .carousel-wrap {
        height: 460px;
    }

    .services-module {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cards-cars,
    .offers-module {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .card-car-img {
        height: 240px;
    }

    .services-module.big .services-module-item {
        height: 180px;
    }

    .offers-individual-actions a {
        font-size: inherit;
    }

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

    .news-block-top>div:first-of-type {
        grid-column: span 2;
    }

    .news-block-top .news-item {
        height: max(15.5vw, 150px);
    }

    .team-tab,
    .search-cards-module,
    .s-search-top .tabs-body .double-group {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .team-item img {
        max-width: 150px;
    }

    .swiper-navigation-thumbs-wrap .swiper-button-next {
        right: -33px;
    }

    .swiper-navigation-thumbs-wrap .swiper-button-prev {
        left: -33px;
    }

    .search-product-meta-item svg {
        width: 70px;
    }

    .product-tabs-body ul {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .cart-item-remove a {
        padding: 10px 5px;
    }

    .cart-item-img {
        width: 53px;
    }

    .promo-coupon-block {
        flex-direction: column;
        align-items: flex-start;
    }

    .promo-coupon-action-content {
        display: flex;
        flex-direction: column;
        justify-content: stretch;
        align-items: stretch;
        width: 100%;
    }

    .promo-coupon-action,
    .promo-coupon-action-content input {
        width: 100%;
    }

    .promo-coupon-action-content input {
        width: 100%;
        margin: 10px 0;
    }

    .category-products,
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-locations-opens-time-item div {
        font-size: 12px;
        min-height: 53px;
    }
}