@import url(../fonts/roboto/style.css);
@import url(../fonts/calibri/style.css);

:root {
    --primary: #FF5500
}

* {
    padding: 0;
    margin: 0;
    border: 0
}

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

:active, :focus {
    outline: 0
}

a:active, a:focus {
    outline: 0
}

aside, footer, header, nav, section {
    display: block
}

body, html {
    height: 100%;
    min-width: 320px
}

body {
    line-height: 1;
    font-family: Roboto, sans-serif;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

button, input, textarea {
    font-family: Roboto, sans-serif;
    font-size: 14px
}

input::-ms-clear {
    display: none
}

button {
    cursor: pointer
}

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

a, a:visited {
    text-decoration: none
}

a {
    color: #5c5353
}

a:hover {
    text-decoration: none
}

ul li {
    list-style: none
}

img {
    vertical-align: top
}

h1, h2, h3, h4, h5, h6 {
    font-weight: inherit;
    font-size: inherit
}

body {
    color: #000;
    font-size: 14px;
    line-height: 20px
}

body.lock {
    overflow: hidden
}

.wrapper {
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    counter-reset: numeric
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    width: 100%
}

.select {
    position: relative
}

select {
    display: block;
    width: 100%;
    padding: 5px 20px 5px 5px;
    background: 0 0;
    border: 1px solid #877777;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    color: #5c5353;
    cursor: pointer;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0
}

select::-ms-expand {
    display: none
}

.select:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 5px 0 5px;
    border-color: #5c5353 transparent transparent transparent;
    pointer-events: none
}

input[type=email], input[type=tel], input[type=text], textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.input {
    width: 100%;
    display: block;
    padding: 0 20px
}

textarea.input {
    resize: none;
    padding: 0 0
}

.check {
    position: relative;
    padding-left: 25px;
    color: #5f5f5f;
    line-height: 18px;
    cursor: pointer
}

.check input {
    display: none
}

.check:before {
    content: "";
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #a3a3a3;
    position: absolute
}

.check.active:before {
    background: url(../img/icons/check.png) center no-repeat
}

.option {
    position: relative;
    cursor: pointer;
    padding-left: 25px;
    line-height: 16px;
    margin: 0 0 10px 0;
    font-size: 15px;
    font-weight: 300
}

.option:last-child {
    margin-bottom: 0
}

.option input {
    display: none
}

.option:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    content: "";
    border: 1px solid #7f7f7f;
    border-radius: 50%
}

.option.active:before {
    background: url(../img/icons/option.png) center no-repeat
}

.table {
    display: table;
    width: 100%
}

.trow {
    display: table-row
}

.cell {
    display: table-cell
}

.cell.full {
    width: 100%
}

.tab__item {
    display: none
}

.tab__item.active {
    display: block
}

.nicescroll-cursors {
    cursor: pointer
}

.slick-slider {
    position: relative
}

.slick-slider .slick-list, .slick-slider .slick-track {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-slider .slick-list {
    position: relative;
    overflow: hidden;
    width: 100%
}

.slick-slider .slick-track {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.slick-slider .slick-slide {
    position: relative
}

.popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-transition: all .8s ease 0s;
    transition: all .8s ease 0s;
    z-index: 999999
}

.popup.open {
    opacity: 1;
    visibility: visible
}

.popup.open .popup__content {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
}

.popup__area {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.popup__body {
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px 10px;
    -webkit-transition: all .8s ease 0s;
    transition: all .8s ease 0s
}

.popup__content {
    background-color: #fff;
    color: #000;
    max-width: 1100px;
    position: relative;
    -webkit-transition: all .8s ease 0s;
    transition: all .8s ease 0s;
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0)
}

.popup__content_image {
    padding: 0
}

.popup__image img {
    max-width: 100%;
    vertical-align: top
}

.popup__close {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    background-image: url(../img/icons/close.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%
}

.popup__title {
    font-size: 40px;
    margin: 0 0 1em 0
}

.compensate-for-scrollbar {
    margin-right: 0 !important
}

.fancybox-button--arrow_left svg, .fancybox-button--arrow_right svg {
    -webkit-transform: scale(1.5);
    transform: scale(1.5)
}

.bgi {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.bgc {
    background-color: #f8f4f4;
    padding: 50px 0
}

.title {
    text-align: center;
    color: #000;
    font-weight: 700;
    font-size: 30px;
    line-height: 35px;
    text-transform: uppercase
}

.title__white {
    color: #fff
}

.grid-4 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 4 ];
    grid-template-columns: repeat(4, 1fr)
}

.grid-5 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px
}

.divider {
    border: 3px solid var(--primary);
    width: 40px;
    margin: 10px auto 0
}

.button {
    margin-top: 40px;
    text-align: center
}

.btn {
    position: relative;
    display: inline-block;
    height: 40px;
    font-size: 14px;
    font-weight: 500;
    max-width: 250px;
    width: 100%;
    text-transform: uppercase;
    text-align: center;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25)
}

.btn span {
    position: relative;
    z-index: 1
}

.btn__tr {
    line-height: 35px;
    color: var(--primary);
    background-color: transparent;
    border: 2px solid var(--primary)
}

.btn__bg {
    line-height: 40px;
    color: #fff;
    background-color: var(--primary)
}

.bd {
    border: 1px solid var(--primary)
}

#up {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 20px;
    cursor: pointer;
    z-index: 10;
    width: 45px;
    height: 45px
}

#up:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/icons/up.png);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(255, 85, 0, .6);
    border-radius: 2px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

#up:hover:after {
    background-color: var(--primary)
}

.header-top {
    background-color: #2c2c2c
}

.header-top-menu {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.header-top-menu li {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.header-top-menu li:hover .header-top-menu__link {
    background: rgba(0, 0, 0, .33)
}

.header-top-menu .arrow {
    right: 30px
}

body.touch .header-top-menu .arrow.active {
    top: 25%;
    -webkit-transform: rotateX(160deg);
    transform: rotateX(160deg)
}

body.mouse .header-top-menu li:hover .arrow {
    top: 40%;
    -webkit-transform: rotateX(160deg);
    transform: rotateX(160deg)
}

body.mouse .header-top-menu li:hover .header-top-menu__sublist {
    opacity: 1;
    visibility: visible
}

body.touch .header-top-menu__sublist.open {
    opacity: 1;
    visibility: visible
}

.header-top-menu__link {
    position: relative;
    display: block;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    padding: 20px 50px;
    text-align: center
}

.header-top-menu__sublist {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 56px;
    width: 100%;
    text-align: center;
    background: #1d1d1d;
    z-index: 4;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    padding: 15px 0
}

.header-top-menu__sublink {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 10px
}

.header-top-menu__sublist li:last-child .header-top-menu__sublink {
    margin-bottom: 0
}

.header-body {
    background-color: #000
}

.header-body-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0
}

.header-body-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.header-body-logo:hover {
    -webkit-transform: scale(.9);
    transform: scale(.9)
}

.header-body-logo img {
    width: 114px;
    height: 49px
}

.header-body-logo span {
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase
}

.header-body-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.header-body-buttons__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 170px;
    height: 40px;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 16px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.header-body-buttons__link_1 {
    background-color: var(--primary)
}

.header-body-buttons__link_2 {
    background-color: #000;
    border: 1px solid #7fff00;
    border-left: none
}

.header-body-phone {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 35px
}

.footer-body-phone:after, .header-body-phone:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(../img/icons/phone.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 29px;
    height: 29px
}

.header-body-phone__link {
    display: inline-block;
    color: #fff;
    font-weight: 300;
    margin-bottom: 5px;
    -webkit-transition: all .1s ease;
    transition: all .1s ease
}

.header-body-messengers {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 5px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 5px
}

.header-body-messengers__link {
    width: 30px;
    height: 26px
}

.header-body-messengers__link img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.header-body-messengers__link:hover img {
    -webkit-transform: scale(.9);
    transform: scale(.9)
}

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

.header-body-box.active .header-body-search__button::after {
    filter: invert(1)
}

.header-body-box.active .header-body-search__input {
    background-color: var(--primary);
    color: #000
}

.header-body-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header-body-search__input {
    width: 145px;
    height: 27px;
    border: 1px solid #fff;
    font-weight: 300;
    font-size: 12px;
    line-height: 14px;
    background-color: #000;
    color: #fff;
    padding: 0 30px 0 10px
}

.header-body-search__button {
    position: relative
}

.header-body-search__button:after {
    content: '';
    position: absolute;
    top: 0;
    right: 8px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(../img/icons/search.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 15px;
    height: 15px
}

.header-body-dealer {
    margin-top: 10px
}

.header-body-dealer__link {
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    -webkit-transition: all .1s ease;
    transition: all .1s ease
}

.header-body-lang .header-body-dropdown__list {
    position: absolute;
    top: 22px
}

.header-body-lang .arrow-down:after {
    right: 0
}

.header-body-dropdown {
    position: relative;
    padding-right: 15px
}

.header-body-dropdown__item {
    position: relative;
    z-index: 999;
    border-radius: 2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 0;
    overflow: hidden;
    -webkit-transition: all .1s linear;
    transition: all .1s linear;
    z-index: 3
}

.header-body-phone__item {
    padding: 0 0 0 35px;
    width: 100%
}

.header-body-profile {
    position: relative;
    margin-top: 15px
}

.header-body-profile__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer
}

.header-body-profile__img {
    width: 20px;
    height: 20px
}

.header-body-profile__name {
    color: #fff;
    margin: 0 8px 0 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 81px
}

.header-body-profile__arrow {
    width: 11px;
    height: 11px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.header-body-profile__list {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 30px;
    left: 0;
    padding: 10px 15px 0;
    background-color: #000;
    max-width: 300px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    z-index: 22
}

.header-body-profile.active .header-body-profile__list {
    opacity: 1;
    visibility: visible
}

.header-body-profile__link {
    color: #fff;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 16px;
    -webkit-transition: color .2s ease-in;
    transition: color .2s ease-in
}

.header-body-profile__link:hover {
    color: var(--primary)
}

.for-sng .header-body-phone .header-body-dropdown__list {
    top: 45px
}

.header-body-phone .header-body-dropdown__list {
    position: absolute;
    width: 100%;
    top: 22px;
    left: 0
}

.header-body-dropdown.active .header-body-dropdown__item {
    height: 31px;
    background-color: #000
}

.header-body-profile.active .header-body-profile__arrow {
    -webkit-transform: rotateX(160deg);
    transform: rotateX(160deg)
}

.header-body-dropdown__link, .header-body-dropdown__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header-mob-box-lang__link {
    cursor: pointer
}

.for-us {
    display: none
}

.for-sng .header-body-dropdown__text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.for-sng .header-body-dropdown__link + .header-body-dropdown__link {
    margin-top: 10px
}

.arrow-down:after {
    right: -5px
}

.header-body-arrow.arrow {
    right: -15px
}

.footer-body-arrow.arrow, .header-body-arrow.arrow {
    cursor: pointer;
    width: 30px;
    height: 30px;
    background-size: 11px
}

.for-us .header-body-dropdown.active .header-body-arrow.arrow {
    top: -10px
}

.header-body-dropdown.active .header-body-arrow.arrow {
    top: 3%;
    -webkit-transform: rotateX(160deg);
    transform: rotateX(160deg)
}

.header-body-dropdown__link span {
    letter-spacing: 1px;
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    margin-left: 10px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.header-body-dropdown__link span:hover {
    color: var(--primary)
}

.header-body-dropdown__img {
    width: 24px;
    height: auto
}

.header-body-dropdown.active .arrow-down:after {
    top: 20%;
    -webkit-transform: rotateX(160deg);
    transform: rotateX(160deg)
}

.header-body-login {
    margin-top: 15px;
    display: none
}

.header-body-login__link {
    display: block
}

.header-body-login__link span {
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    margin-left: 10px
}

.header-bottom {
    background-color: #0a0a0a
}

.header-bottom-menu {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.header-bottom-menu__link.active, .header-top-menu__link.active {
    background: #000;
    color: var(--primary);
    pointer-events: none;
    cursor: default
}

.header-top-menu li:hover .header-bottom-menu__link.active, .header-top-menu li:hover .header-top-menu__link.active {
    background: #000
}

.header-bottom-menu__item {
    position: relative
}

.header-bottom-menu li:hover .header-bottom-menu__link {
    background: #000
}

.header-bottom-menu__link {
    position: relative;
    display: block;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    padding: 20px 30px
}

.header-bottom-menu__link.arrow:after {
    right: 10px
}

body.touch .header-bottom-menu .arrow.active {
    top: 25%;
    -webkit-transform: rotateX(160deg);
    transform: rotateX(160deg)
}

body.mouse .header-bottom-menu li:hover .arrow {
    top: 40%;
    -webkit-transform: rotateX(160deg);
    transform: rotateX(160deg)
}

.arrow {
    position: absolute;
    top: 50%;
    right: 5px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(../img/icons/arrow-down.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 11px;
    height: 11px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.arrow__catalog {
    left: 93px
}

body.touch .header-bottom-menu .arrow {
    right: -10px
}

body.touch .header-bottom-menu .arrow__catalog {
    left: 83px
}

body.touch .arrow {
    right: 0;
    cursor: pointer;
    width: 30px;
    height: 30px;
    background-size: 11px
}

.arrow-down:after {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(../img/icons/arrow-down.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 11px;
    height: 11px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.header-bottom-submenu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 56px;
    left: 0;
    background-color: #000;
    width: 100%;
    z-index: 23;
    padding: 30px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    max-height: 800px;
    overflow-x: auto
}

body.mouse .header-bottom-menu li:hover .header-bottom-submenu {
    opacity: 1;
    visibility: visible
}

body.touch .header-bottom-submenu.open {
    opacity: 1;
    visibility: visible
}

.header-bottom-submenu-body {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 115px 100px 81px 100px 60px 100px 1fr;
    grid-template-columns: 115px 81px 90px 60px 1fr;
    gap: 0 90px
}

.header-bottom-submenu__status {
    margin-top: 30px
}

.header-bottom-submenu__title {
    font-weight: 900;
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    white-space: nowrap
}

.header-bottom-submenu__list {
    margin-top: 15px
}

.header-bottom-submenu__year {
    margin-top: 15px;
    height: 172px;
    overflow-x: hidden
}

.header-bottom-submenu__link {
    display: inline-block;
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    margin-bottom: 5px
}

.header-bottom-submenu-caption {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header-bottom-submenu__desc {
    font-size: 14px;
    line-height: 16px;
    color: #fff
}

.header-bottom-submenu-cars {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 20px
}

.header-bottom-submenu__car {
    text-align: center
}

.header-bottom-submenu__car img {
    width: 100px;
    height: 50px;
    -o-object-fit: contain;
    object-fit: contain
}

.header-bottom-submenu__car span {
    display: block;
    font-size: 12px;
    line-height: 14px;
    color: #fff;
    margin-top: 10px;
    -webkit-transition: all .1s ease;
    transition: all .1s ease
}

.header-bottom__sublist {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    position: absolute;
    top: 56px;
    text-align: center;
    background: #1d1d1d;
    z-index: 21;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    padding: 15px 0
}

body.mouse .header-bottom-menu li:hover .header-bottom__sublist {
    opacity: 1;
    visibility: visible
}

body.touch .header-bottom__sublist.open {
    opacity: 1;
    visibility: visible
}

.header-bottom__sublink {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 15px;
    padding: 0 3px;
    text-transform: lowercase
}

.header-bottom__sublink::first-letter {
    text-transform: uppercase
}

.header-bottom__sublist li:last-child .header-bottom__sublink {
    margin-bottom: 0
}

li.header-bottom-menu__item:nth-child(6) > a:nth-child(1) {
    width: 184px;
    text-align: center
}

.header-mob-row.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999
}

.header-mob {
    display: none;
    height: 99px
}

.header-mob-row {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 0 0 10px;
    background-color: #000;
    height: 100px
}

.header-mob-catalog-burger, .header-mob-menu-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer
}

.header-mob-catalog-burger .header-mob__desc {
    margin-left: 5px
}

.header-mob-menu-burger .header-mob__desc {
    margin-right: 5px
}

.header-mob__desc {
    display: block;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    line-height: 14px;
    text-transform: uppercase
}

.header-mob-catalog.active .header-bottom-submenu, .header-mob-menu.active .header-mob-menu-content {
    opacity: 1;
    visibility: visible;
    top: 99px
}

.header-mob-menu-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 125px;
    left: 0;
    background-color: #000;
    width: 100%;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    z-index: 12;
    max-height: 800px;
    overflow-x: auto
}

.header-mob-menu-center {
    border-right: 1px solid var(--primary);
    border-left: 1px solid var(--primary);
    padding: 0 35px
}

.header-mob-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #000;
    text-align: center
}

.header-mob-logo img {
    width: 114px;
    height: 49px
}

.header-mob-logo span {
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase
}

.header-mob-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 400px
}

.header-mob-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 15px;
    margin-top: auto
}

.header-mob-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: auto;
    background-color: var(--primary);
    padding: 4px 10px
}

.header-mob-phone:after {
    content: none
}

.header-mob-phone {
    padding: 0;
    margin: 0
}

.header-mob-phone.header-body-phone {
    margin-bottom: 0;
    margin-left: -10px
}

.header-mob-box__link {
    padding: 5px 15px;
    border: 1px solid
}

.header-mob-box__link--primary {
    border-color: var(--primary)
}

.header-mob-box__link--green {
    border-color: #52cf21
}

.header-mob-box-lang {
    padding: 0
}

.header-mob-box-lang .header-body-dropdown__link span {
    margin: 0
}

.header-mob-box .header-body-box {
    margin-bottom: 0;
    margin-left: -10px
}

.header-mob-phone.active .header-body-dropdown__item {
    height: 35px;
    background-color: #322e2e
}

.header-mob-phone .header-body-phone__item {
    padding: 0 10px;
    width: 189px;
    border-radius: 0
}

.header-mob-phone .header-body-dropdown__list {
    top: 57px;
    right: 146px;
    left: inherit
}

.header-body-arrow__mob {
    cursor: pointer;
    padding: 16px 10px
}

.header-mob-phone.active .header-body-arrow__mob {
    background-color: #322e2e
}

.header-mob-box-lang .header-body-dropdown__list {
    top: 36px;
    right: -16px;
    visibility: hidden;
    opacity: 0
}

.header-mob-box-lang.active .header-body-dropdown__list {
    visibility: visible;
    opacity: 1
}

.header-mob-box-lang.active .header-body-dropdown__item {
    height: 43px;
    background-color: #322e2e;
    border-radius: 0;
    opacity: 1
}

.header-mob-box-lang .header-body-dropdown__item {
    padding: 15px;
    opacity: 0
}

.header-mob-search.active .header-mob-search-wrap {
    opacity: 1;
    visibility: visible;
    top: 99px
}

.header-mob-search-wrap {
    opacity: 0;
    visibility: hidden;
    z-index: 20;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    position: absolute;
    top: 125px;
    left: 0;
    width: 100%
}

.header-mob-search-form {
    background-color: var(--primary);
    padding: 20px 10px
}

.header-mob-search-result__title {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0
}

.header-mob-search-result__img {
    width: 100px;
    height: 60px;
    -o-object-fit: cover;
    object-fit: cover
}

.header-mob-search-result__item:hover .header-mob-search-result__desc {
    color: #fff
}

.header-mob-search-result__desc {
    margin-left: 10px
}

.header-mob-search-list {
    display: none;
    max-height: 660px;
    overflow-x: scroll;
    background-color: #f6f6f6;
    padding: 10px;
    margin: -20px 10px 0 10px
}

.header-body-box .header-mob-search-list {
    display: block;
    margin: 0;
    position: absolute;
    z-index: 999;
    top: 111px
}

.header-mob-search-result__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px
}

.header-mob-search-result__item:hover {
    background-color: var(--primary);
    -webkit-transition: background-color .1s ease-in;
    transition: background-color .1s ease-in;
    border-radius: 1px
}

.header-mob-search__input {
    width: 100%;
    height: 40px;
    padding: 0 15px
}

.header-mob-search__button {
    height: 40px;
    background-color: #000;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 20px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    position: absolute;
    top: 20px;
    right: 9px
}

.header-mob-search__icon {
    cursor: pointer
}

.menu-btn {
    display: inline-block;
    margin: 0;
    padding: 5px;
    overflow: visible;
    -webkit-transition-property: opacity, -webkit-filter;
    transition-property: opacity, -webkit-filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    -webkit-transition-duration: .15s;
    transition-duration: .15s;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    border: 0;
    background-color: transparent;
    color: inherit;
    font-size: 0;
    text-transform: none;
    cursor: pointer
}

.menu-btn .menu-btn__inner {
    -webkit-transition-duration: 75ms;
    transition-duration: 75ms;
    -webkit-transition-timing-function: cubic-bezier(.55, .055, .675, .19);
    transition-timing-function: cubic-bezier(.55, .055, .675, .19)
}

.menu-btn .menu-btn__inner:before {
    -webkit-transition: top 75ms .12s ease, opacity 75ms ease;
    transition: top 75ms .12s ease, opacity 75ms ease
}

.menu-btn .menu-btn__inner:after {
    -webkit-transition: bottom 75ms .12s ease, -webkit-transform 75ms cubic-bezier(.55, .055, .675, .19);
    transition: bottom 75ms .12s ease, -webkit-transform 75ms cubic-bezier(.55, .055, .675, .19);
    transition: bottom 75ms .12s ease, transform 75ms cubic-bezier(.55, .055, .675, .19);
    transition: bottom 75ms .12s ease, transform 75ms cubic-bezier(.55, .055, .675, .19), -webkit-transform 75ms cubic-bezier(.55, .055, .675, .19)
}

.header-mob-catalog-burger.is-active .menu-btn__inner, .header-mob-menu-burger.is-active .menu-btn__inner {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    -webkit-transition-delay: .12s;
    transition-delay: .12s
}

.header-mob-catalog-burger.is-active .menu-btn__inner:before, .header-mob-menu-burger.is-active .menu-btn__inner:before {
    top: 0;
    -webkit-transition: top 75ms ease, opacity 75ms .12s ease;
    transition: top 75ms ease, opacity 75ms .12s ease;
    opacity: 0
}

.header-mob-catalog-burger.is-active .menu-btn__inner:after, .header-mob-menu-burger.is-active .menu-btn__inner:after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: bottom 75ms ease, -webkit-transform 75ms .12s cubic-bezier(.215, .61, .355, 1);
    transition: bottom 75ms ease, -webkit-transform 75ms .12s cubic-bezier(.215, .61, .355, 1);
    transition: bottom 75ms ease, transform 75ms .12s cubic-bezier(.215, .61, .355, 1);
    transition: bottom 75ms ease, transform 75ms .12s cubic-bezier(.215, .61, .355, 1), -webkit-transform 75ms .12s cubic-bezier(.215, .61, .355, 1)
}

.menu-btn__block {
    display: inline-block;
    position: relative;
    width: 36px;
    height: 25px
}

.menu-btn__inner {
    display: block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.menu-btn__inner, .menu-btn__inner:after, .menu-btn__inner:before {
    position: absolute;
    width: 36px;
    height: 3px;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: .15s;
    transition-duration: .15s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    background-color: #000
}

.menu-btn__inner:after, .menu-btn__inner:before {
    content: "";
    display: block
}

.menu-btn__inner:before {
    top: -8px
}

.menu-btn__inner:after {
    bottom: -8px
}

.header-mob-spoiler-list {
    color: #fff
}

.header-mob-spoiler__trigger {
    color: #fff
}

.header-mob-spoiler__link {
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    padding: 15px;
    border-bottom: 1px solid #fff
}

.header-mob-spoiler-item {
    position: relative
}

.header-mob-spoiler-list {
    display: none;
    background-color: var(--primary)
}

.header-mob-spoiler-list__link {
    display: block;
    border-bottom: 1px solid #fff;
    color: #000;
    padding: 15px;
    font-size: 16px
}

.header-mob-spoiler__trigger {
    position: absolute;
    top: 0;
    right: 0;
    background: #313131;
    padding: 15px 40px;
    cursor: pointer
}

.header-mob-spoiler__trigger img {
    width: 20px;
    height: 20px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: rotateZ(90deg);
    transform: rotateZ(90deg);
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in
}

.header-mob-spoiler__trigger.active img {
    -webkit-transform: rotateX(160deg);
    transform: rotateX(160deg)
}

.main-banner {
    position: relative;
    margin-bottom: -140px
}

.main-banner .slick-track {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start
}

.main-banner .slick-next, .main-banner .slick-prev {
    text-indent: -10000px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 45px;
    height: 55px;
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: center;
    background-size: 100%;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    z-index: 1
}

.main-banner .slick-next {
    background-image: url(../img/icons/next-arrow.png);
    right: 15px
}

.main-banner .slick-prev {
    background-image: url(../img/icons/left-arrow.png);
    left: 15px
}

.main-banner .slick-next:hover:after, .main-banner .slick-prev:hover:after {
    opacity: 1;
    visibility: visible
}

.main-banner .slick-next:after, .main-banner .slick-prev:after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, .3);
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.main-banner-img__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.main-banner-img-wrap {
    width: 100%;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.main-banner-img-wrap-first {
    bottom: 7%
}

.main-banner-img__cars img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: scale(0);
    transform: scale(0)
}

.main-banner__text {
    display: block;
    color: #fff;
    text-align: center;
    font-size: 29px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px
}

.main-banner-item.slick-active .main-banner-img__cars img {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.main-banner-img__ford {
    -webkit-transform: translateX(32%);
    transform: translateX(32%)
}

.main-banner-img__lincoln {
    -webkit-transform: translateX(8%);
    transform: translateX(8%)
}

.main-banner-img__pickup {
    -webkit-transform: translateX(-26%);
    transform: translateX(-26%)
}

.main-banner-img__ford img {
    -webkit-transition: all 2s ease .3s;
    transition: all 2s ease .3s
}

.main-banner-img__lincoln img {
    -webkit-transition: all 2s ease .6s;
    transition: all 2s ease .6s
}

.main-banner-img__pickup img {
    -webkit-transition: all 2s ease .9s;
    transition: all 2s ease .9s
}

.main-banner-first-content {
    width: 100%;
    position: absolute;
    top: 100px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: top 1.5s ease-in;
    transition: top 1.5s ease-in
}

.main-banner-item.slick-active .main-banner-first__title {
    opacity: 1;
    visibility: visible
}

.main-banner-first__title {
    font-size: 65px;
    font-weight: 700;
    line-height: 1;
    opacity: 0;
    visibility: hidden
}

.main-banner-item.slick-active .main-banner-first__text {
    opacity: 1;
    visibility: visible
}

.main-banner-first__text {
    font-size: 28px;
    margin-top: 10px;
    line-height: 1;
    opacity: 0;
    visibility: hidden
}

.main-banner-img-wrap-second {
    bottom: 9%;
    left: 0
}

.main-banner-img__cars.main-banner-img__aviator {
    position: relative;
    z-index: 1;
    -webkit-transform: translate(29%, 3%);
    transform: translate(29%, 3%)
}

.main-banner-img__cars.main-banner-img__raptor {
    -webkit-transform: translate(9%, -12%);
    transform: translate(9%, -12%)
}

.main-banner-img__ram {
    -webkit-transform: translate(19%, -12%);
    transform: translate(19%, -12%)
}

.main-banner-img__jeep {
    -webkit-transform: translate(-14%, -1%);
    transform: translate(-14%, -1%)
}

.main-banner-img__aviator img {
    -webkit-transition: all 2s ease .3s;
    transition: all 2s ease .3s
}

.main-banner-img__raptor img {
    -webkit-transition: all 2s ease .6s;
    transition: all 2s ease .6s
}

.main-banner-img__ram img {
    -webkit-transition: all 2s ease .9s;
    transition: all 2s ease .9s
}

.main-banner-img__jeep img {
    -webkit-transition: all 2s ease 1.2s;
    transition: all 2s ease 1.2s
}

.main-banner-item.slick-active .main-banner-second-content {
    opacity: 1;
    visibility: visible;
    top: 30px
}

.main-banner-second-content {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: top 2.5s ease-in;
    transition: top 2.5s ease-in
}

.main-banner-second-content {
    position: absolute;
    top: -1000px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.main-banner-second__title {
    display: block;
    background-color: var(--primary);
    padding: 15px 130px 15px 80px;
    -webkit-clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
    clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
    font-size: 85px;
    color: #fff;
    text-transform: uppercase;
    line-height: .6;
    font-family: Calibri, sans-serif;
    font-weight: 700;
    font-style: italic
}

.main-banner-second__title:before {
    content: '';
    position: absolute;
    top: -30px;
    left: 270px;
    width: 100%;
    height: 300px;
    z-index: -1;
    -webkit-transform: rotate(160deg);
    transform: rotate(160deg);
    background: #ef460b;
    border-radius: 100%;
    box-shadow: 0 0 145px #fff
}

.main-banner-second__title span {
    font-size: 55px
}

.main-banner-second__text {
    position: absolute;
    top: 80px;
    left: 58%;
    background-color: #fff;
    font-size: 38px;
    color: var(--primary);
    font-family: Calibri, sans-serif;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    padding: 0 30px;
    line-height: 1;
    -webkit-clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
    clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
    white-space: nowrap
}

.main-banner-second__text span {
    font-size: 85px
}

.main-banner-item.slick-active .main-banner-bottom__text {
    opacity: 1;
    visibility: visible;
    bottom: 13%
}

.main-banner-bottom__text {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: -1000px;
    left: 0;
    width: 100%;
    font-size: 28px;
    color: #fff;
    text-transform: uppercase;
    font-family: Calibri, sans-serif;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    -webkit-transition: bottom 2.5s ease-in;
    transition: bottom 2.5s ease-in
}

.main-banner-wrap-third {
    opacity: 0;
    visibility: hidden
}

.main-banner-item.slick-active .main-banner-wrap-third {
    opacity: 1;
    visibility: visible
}

.main-banner-wrap-third {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.main-banner-img-manheim {
    width: 30%;
    position: relative;
    z-index: 2
}

.main-banner-img-manheim-logo, .main-banner-img__bg-mob {
    display: none
}

.main-banner-third {
    width: 70%;
    margin-right: 40px
}

.main-banner-third-top {
    position: relative;
    max-width: 850px;
    padding: 20px 30px;
    background-color: #0946a2;
    margin-left: auto
}

.main-banner-third-top:before {
    content: '';
    position: absolute;
    bottom: -30px;
    right: 0;
    background-color: #00155d;
    width: 55px;
    height: 30px;
    border: 1px solid #00155d;
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 0);
    clip-path: polygon(0 0, 0 100%, 100% 0)
}

.main-banner-third-top p {
    font-size: 55px;
    font-weight: 300;
    font-family: Calibri, sans-serif;
    line-height: 1;
    color: #fff
}

.main-banner-third-top p span {
    font-weight: 700;
    text-transform: uppercase
}

.main-banner-third-bottom {
    background-color: #fff;
    padding: 50px 20px;
    margin-right: 55px
}

.main-banner-third-list {
    max-width: 750px;
    margin-left: auto
}

.main-banner-third-list__item {
    font-size: 35px;
    font-weight: 300;
    font-family: Calibri, sans-serif;
    line-height: 1;
    color: #000
}

.main-banner-third-list__item + .main-banner-third-list__item {
    margin-top: 30px
}

.main-banner-third-list__item:before {
    content: "• ";
    color: var(--primary)
}

.main-banner-img__manheim-ford img {
    -webkit-transform: translate(23%, 46%);
    transform: translate(23%, 46%)
}

.main-banner-img__hammer img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.main-banner-img__hammer {
    -webkit-transform: translate(49%, -25%);
    transform: translate(49%, -25%)
}

.main-banner-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.main-banner-wrap-four {
    opacity: 0;
    visibility: hidden
}

.main-banner-item.slick-active .main-banner-wrap-four {
    opacity: 1;
    visibility: visible
}

.main-banner-img__four {
    position: absolute;
    top: 0;
    z-index: 1
}

.main-banner-img__ford-before {
    right: 0
}

.main-banner-img__ford-before-img {
    display: inline-block;
    transform: translate(-30%, 13%)
}

.main-banner-img__ford-after {
    left: 0
}

.main-banner-img__ford-after-img {
    display: inline-block;
    transform: translate(70%, 60%)
}

.main-banner-wrap-four .main-banner-img::after, .main-banner-wrap-four .main-banner-img::before {
    content: '';
    position: absolute;
    top: 0;
    width: 50%;
    height: 150px;
    background-color: #e03c0a
}

.main-banner-wrap-four .main-banner-img::after {
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
    transform: translateY(200%);
    left: 0
}

.main-banner-wrap-four .main-banner-img::before {
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    transform: translateY(80%);
    right: 0
}

.main-banner-img__four {
    width: 470px;
    max-height: 310px
}

.main-banner-img__desc {
    position: absolute;
    color: #fff;
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase
}

.main-banner-img__desc-before {
    left: -62%;
    top: 61%
}

.main-banner-img__desc-after {
    left: 30%;
    top: 116%
}

.main-banner-text {
    position: absolute;
    top: 20px;
    left: 150px
}

.main-banner-text__title {
    font-size: 120px;
    font-weight: 700;
    font-family: Calibri, sans-serif;
    color: #e03c0a;
    text-transform: uppercase;
    line-height: 1
}

.main-banner-text-list {
    display: flex;
    justify-content: space-between
}

.main-banner-text-list__item {
    font-size: 30px;
    text-transform: lowercase
}

.main-banner-text-list__item + .main-banner-text-list__item::before {
    content: "|";
    display: inline-block;
    padding: 0 10px
}

.main-banner-icons {
    display: flex;
    justify-content: space-between;
    width: 550px;
    position: absolute;
    bottom: 100px;
    right: 120px
}

.main-banner-icons-item img {
    -webkit-transform: scale(0);
    transform: scale(0)
}

.main-banner-item.slick-active .main-banner-icons-item img {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.main-banner-icons-checked img {
    -webkit-transition: all 2s ease .1s;
    transition: all 2s ease .1s
}

.main-banner-icons-help img {
    -webkit-transition: all 2s ease .3s;
    transition: all 2s ease .3s
}

.main-banner-icons-gift img {
    -webkit-transition: all 2s ease .6s;
    transition: all 2s ease .6s
}

.main-banner-icons-item {
    text-align: center
}

.main-banner-icons__desc {
    font-size: 22px;
    font-family: Calibri, sans-serif;
    font-weight: 300;
    margin-top: 15px;
    line-height: 1
}

.main-banner-item.slick-active .main-banner-first__title, .main-banner-item.slick-active .main-banner-img__ford-before img, .main-banner-item.slick-active .main-banner-third-list, .main-banner-item.slick-active .main-banner-third-top p {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

.main-banner-item.slick-active .main-banner-first__text, .main-banner-item.slick-active .main-banner-img__ford-after img, .main-banner-item.slick-active .main-banner-img__manheim-ford {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

.main-banner-third-list, .main-banner-third-top p {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight
}

.main-banner-img__manheim-ford {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft
}

.main-banner-item.slick-active .anim-ford, .main-banner-item.slick-active .anim-lincoln, .main-banner-item.slick-active .anim-pickup {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn
}

.null {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut
}

.anim-ford, .anim-lincoln, .anim-pickup, .main-banner-first__text, .main-banner-first__title, .main-banner-img__ford-after img, .main-banner-img__ford-before img, .main-banner-img__manheim-ford, .main-banner-third-list, .main-banner-third-top p {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    50% {
        opacity: 1
    }
}

@-webkit-keyframes zoomOut {
    from {
        opacity: 1
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    to {
        opacity: 0
    }
}

@keyframes zoomOut {
    from {
        opacity: 1
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    to {
        opacity: 0
    }
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes fadeOutLeft {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes fadeOutLeft {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes fadeOutRight {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes fadeOutRight {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

.popup-form {
    background-color: #000;
    padding: 100px;
    box-shadow: 0 0 15px rgba(150, 150, 150, .2)
}

.popup-form__desc {
    font-size: 22px;
    line-height: 26px;
    color: #fff;
    max-width: 740px;
    margin: 50px auto 0;
    text-align: center
}

.popup-form-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    max-width: 740px;
    margin: 50px auto 0
}

.popup-form-calculate {
    grid-template-columns: 1fr 1fr
}

.popup-form-comments {
    -ms-grid-column-span: 2;
    -ms-grid-column: span 2;
    grid-column: span 2
}

.popup-form__input {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    font-size: 14px;
    line-height: 16px;
    color: #877777;
    border: 1px solid transparent
}

.popup-form-item.err .popup-form__input {
    color: red;
    border: 1px solid red
}

.popup-form__textarea {
    width: 100%;
    height: 100%;
    padding: 10px;
    font-size: 14px;
    line-height: 16px;
    color: #877777;
    resize: none
}

.popup__content-enter {
    width: 485px
}

.popup-form-enter {
    padding: 70px 40px
}

.button-enter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.button-enter__link {
    color: var(--primary);
    border-bottom: 1px dashed var(--primary)
}

.button-enter__link:hover {
    color: #fff;
    border-bottom-color: #fff
}

.button-enter .btn {
    max-width: 150px;
    margin-right: 30px
}

.popup-form-content-enter {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr
}

.popup-form-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px
}

.popup-form-footer__label {
    color: #585858;
    padding-left: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-right: 20px;
    vertical-align: bottom
}

.popup-form-footer__label:hover {
    color: var(--primary)
}

.popup-form-footer__link {
    color: #585858;
    font-size: 14px
}

.popup-form-footer__link:hover {
    color: var(--primary)
}

.popup-icons-wrap {
    background-color: #000;
    padding: 100px;
    box-shadow: 0 0 15px rgba(150, 150, 150, .2)
}

.popup-icons.footer-icons {
    margin-top: 50px
}

.popup-question.popup-form-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr
}

.popup-question .popup-form-comments {
    -ms-grid-column: 1;
    grid-column: 1
}

.popup-question .popup-form-item img {
    width: 100%
}

.advantages-content {
    display: -ms-grid;
    display: grid;
    gap: 50px 9px;
    margin-top: 40px
}

.advantages-content_1 {
    -ms-grid-columns: (1fr) [ 4 ];
    grid-template-columns: repeat(4, 1fr)
}

.advantages-content_2 {
    -ms-grid-columns: (1fr) [ 3 ];
    grid-template-columns: repeat(3, 1fr)
}

.advantages-item {
    text-align: center
}

.advantages-item:hover .advantages__icon img {
    -webkit-transform: scale(.9);
    transform: scale(.9)
}

.advantages__icon img {
    height: 60px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.advantages__desc {
    line-height: 25px;
    margin-top: 30px
}

.form {
    background-image: url(../img/bg/bg1.png);
    padding: 50px 0
}

.form__desc {
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    color: #fff;
    margin-top: 40px
}

.form-content {
    gap: 30px 7px;
    max-width: 1000px;
    margin: 40px auto 0
}

.form-item .btn {
    width: 100%;
    max-width: 100%
}

.form__input {
    height: 40px;
    color: #877777
}

.form__input.err {
    border: 1px solid red;
    color: red
}

.content-form {
    max-width: 445px;
    border: 4px solid #6ed904;
    padding: 45px;
    margin: auto
}

.content-form__desc {
    margin-top: 15px !important
}

.customers {
    margin-top: 70px;
    margin-bottom: 70px
}

.customers-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 35% 30px 60%;
    grid-template-columns: 35% 60%;
    gap: 30px
}

.customers-photo {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr
}

.customers-photo__item {
    height: 130px;
    overflow: hidden
}

.customers-photo__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.customers-photo__item:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.customers-text_top {
    padding: 0 20px
}

.customers-text_bottom {
    padding: 20px;
    border: 1px solid var(--primary)
}

.customers-text_bottom p:last-child {
    margin-bottom: 0
}

.customers-text p {
    margin-bottom: 10px
}

.customers-button {
    text-align: center;
    margin-top: 30px
}

.provider {
    margin-top: 70px
}

.provider-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px
}

.provider-left {
    position: relative
}

.provider__name {
    font-weight: 500;
    font-size: 11px;
    line-height: 13px;
    text-align: center;
    color: #fff;
    background-color: var(--primary);
    padding: 10px 15px;
    width: 190px;
    position: absolute;
    bottom: 15px;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%)
}

.provider__text p {
    margin-bottom: 15px
}

.provider__text p:last-child {
    margin-bottom: 0
}

.provider__text b {
    font-style: italic;
    font-weight: 500
}

.provider-right {
    max-width: 565px
}

.numbers {
    background-image: url(../img/bg/bg2.png);
    padding: 50px 0;
    margin-top: 70px
}

.numbers-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 40px
}

.numbers-left {
    width: 27%
}

.numbers-left__desc {
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 15px
}

.numbers-left__icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.numbers-left-bottom {
    margin-top: 50px
}

.numbers-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 46%
}

.numbers-center__item {
    width: 200px;
    margin-bottom: 50px;
    cursor: default
}

.numbers-center__item:nth-child(3), .numbers-center__item:nth-child(4) {
    margin-bottom: 0
}

.numbers-center__year i {
    font-style: normal
}

.numbers-center__year {
    width: 95px;
    height: 95px;
    border: 1px solid #fff;
    border-radius: 50%;
    color: var(--primary);
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.numbers-center__item:hover .numbers-center__year {
    border-color: var(--primary)
}

.numbers-center__desc {
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    margin-top: 15px
}

.numbers-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 27%
}

.numbers-right__percent {
    position: relative;
    background-image: url(../img/icons/11.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    max-width: 95px;
    height: 95px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease
}

.numbers-right__percent span {
    color: #fff;
    font-weight: 500;
    font-size: 26px
}

.percent-right-numbers__counter {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.percent-right-numbers__counter i {
    color: #fff;
    font-weight: 500;
    font-size: 26px;
    font-style: normal
}

.numbers-right__desc {
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    margin-left: 15px
}

.sitebar {
    position: relative;
    z-index: 11;
    margin-top: 70px
}

.sitebar-inner {
    margin-top: 70px
}

.sitebar-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.sitebar-item {
    width: 220px;
    height: 120px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.sitebar-item:hover .sitebar__icon_1 {
    display: none
}

.sitebar-item:hover .sitebar__icon_2 {
    display: block
}

.sitebar__icon {
    text-align: center;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.sitebar-item:hover .sitebar__icon {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.sitebar__icon img {
    width: 60px;
    height: 35px;
    -o-object-fit: contain;
    object-fit: contain
}

.sitebar__icon_2 {
    display: none
}

.sitebar__desc {
    color: #5c5353;
    margin-top: 15px;
    -webkit-transition: all .1s ease;
    transition: all .1s ease
}

.delivery-text {
    margin-top: 70px;
    margin-bottom: 70px
}

.delivery__title {
    position: relative;
    font-weight: 700;
    font-size: 30px;
    line-height: 35px;
    text-transform: uppercase;
    color: #000;
    padding-left: 90px;
    margin-bottom: 50px
}

.delivery__title:before {
    position: absolute;
    counter-increment: numeric;
    content: counter(numeric);
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 5px solid var(--primary);
    background: #fff;
    color: #5c5353;
    font-size: 36px;
    font-weight: 400
}

.delivery__title:after {
    content: '';
    position: absolute;
    left: 90px;
    bottom: -10px;
    width: 40px;
    height: 5px;
    background: var(--primary)
}

.delivery__text p {
    margin-bottom: 15px
}

.delivery__content {
    margin-top: 50px;
    overflow: hidden;
    position: relative
}

.delivery__content.hide {
    max-height: 300px
}

.delivery__content.hide:after {
    content: "";
    display: block;
    height: 100px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(75%, #fff));
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), #fff 75%);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 75%)
}

.delivery__table {
    position: relative;
    width: 100%;
    overflow-x: auto
}

.delivery__table table {
    background: #fff;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-spacing: 0;
    border-collapse: collapse
}

.delivery__table table > thead > tr > th {
    border-bottom: 2px solid var(--primary)
}

.delivery__table table > tbody tr:nth-child(2n+1) {
    background-color: #f2f2f2
}

.delivery__table table th {
    padding: 10px
}

.delivery__table table td {
    padding: 5px 10px
}

.delivery__table table td, .delivery__table table th {
    vertical-align: middle;
    border: 1px solid #ddd;
    line-height: 1.4;
    font-size: 14px;
    color: #000;
    text-align: center
}

.delivery__list {
    margin: 0 0 0 30px
}

.delivery__item:before {
    content: "• ";
    color: var(--primary)
}

.delivery__btn {
    display: block;
    margin: 40px auto 0;
    cursor: pointer
}

.delivery-info {
    margin-top: 70px
}

.delivery {
    margin-top: 70px;
    margin-bottom: 70px
}

.delivery-info__caption {
    margin-bottom: 20px
}

.delivery-info__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px
}

.delivery-info__desc {
    margin-left: 15px
}

.services {
    margin-top: 70px;
    margin-bottom: 70px
}

.services-content {
    position: relative;
    counter-reset: services-num;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0 1fr 0 1fr 0 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 0;
    max-width: 900px;
    margin: 40px auto 0
}

.services-content:before {
    content: '';
    position: absolute;
    top: 45px;
    left: 50%;
    width: 720px;
    border: 1px dashed #5c5353;
    -webkit-transform: translate(-50%);
    transform: translate(-50%)
}

.services-item:hover .services__icon img {
    -webkit-transform: scale(.9);
    transform: scale(.9)
}

.services__icon img {
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.services__icon {
    position: relative;
    width: 95px;
    height: 95px;
    margin: auto
}

.services__icon:after {
    counter-increment: services-num;
    content: counter(services-num);
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    background-color: #f8f4f4;
    border-radius: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 12px;
    line-height: 14px
}

.services__desc {
    text-align: center;
    text-transform: uppercase;
    line-height: 20px;
    font-weight: 500;
    margin-top: 20px
}

.purchaseprocess {
    padding: 70px 0
}

.purchaseprocess-content {
    position: relative;
    counter-reset: purchaseprocess-num;
    margin-top: 40px
}

.purchaseprocess-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 45px;
    height: 100%;
    border-left: 1px dashed #5c5353
}

.purchaseprocess-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 50px
}

.purchaseprocess-item:last-child {
    margin-bottom: 0
}

.purchaseprocess-item:hover .purchaseprocess__icon img {
    -webkit-transform: scale(.9);
    transform: scale(.9)
}

.purchaseprocess__icon img {
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.purchaseprocess__icon {
    position: relative
}

.purchaseprocess__icon:after {
    counter-increment: purchaseprocess-num;
    content: counter(purchaseprocess-num);
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    background-color: #f8f4f4;
    border-radius: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 12px;
    line-height: 14px
}

.purchaseprocess__desc {
    margin-left: 45px
}

.purchaseprocess__title {
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    text-transform: uppercase;
    margin-bottom: 20px
}

.purchaseprocess__text p {
    margin-bottom: 15px;
    font-size: 14px
}

.purchaseprocess__text p:last-child {
    margin-bottom: 0
}

.purchaseprocess__link {
    display: inline-block;
    color: var(--primary);
    text-decoration: underline
}

.purchaseprocess-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.purchaseprocess-tab__item.active {
    display: block
}

.classification {
    margin-top: 70px
}

.classification-caption {
    margin-top: 40px
}

.classification-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(7, 1fr);
    gap: 30px 10px;
    margin-top: 40px
}

.classification-item {
    text-align: center
}

.classification-item:hover .classification__icon img {
    -webkit-transform: scale(.9);
    transform: scale(.9)
}

.classification__icon img {
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.classification__desc {
    margin-top: 15px
}

.offer {
    margin-top: 70px;
    margin-bottom: 70px
}

.offer-content {
    margin-top: 40px;
    gap: 1px
}

.offer-item {
    display: inline-block
}

.offer-item:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 31, 31, .7)
}

.offer__inner {
    position: absolute;
    bottom: 30px;
    left: 30px;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    z-index: 1
}

.offer__img {
    width: 100%;
    height: 215px
}

.offer__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.offer__desc {
    font-weight: 900;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: #fff
}

.offer__divider {
    border: 3px solid var(--primary);
    width: 40px;
    margin-top: 10px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.offer-list {
    padding: 25px;
    display: none
}

.offer__text {
    color: #fff;
    margin-bottom: 3px
}

.offer__text:before {
    content: "• ";
    color: var(--primary)
}

.bg-item {
    position: relative
}

.bg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 2
}

.bg__more {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 2px solid #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    width: 120px;
    height: 30px;
    line-height: 26px;
    text-align: center;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out
}

.bg__primary {
    width: 94%;
    height: 94%
}

.bg__black {
    width: 100%;
    height: 100%
}

.offer-text {
    margin-top: 70px
}

.offer-text__title {
    font-weight: 700;
    font-size: 20px
}

.offer-text__content {
    margin-top: 20px
}

.offer-text__content p {
    margin-bottom: 20px
}

.cardproducttext {
    margin-top: 70px;
    margin-bottom: 70px
}

.cardproducttext-content {
    margin-top: 50px;
    overflow: hidden
}

.cardproducttext-content.hide {
    max-height: 230px
}

.cardproducttext-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8
}

.cardproducttext__btn {
    margin-top: 20px
}

.options {
    margin-top: 70px
}

.options-caption {
    text-align: center;
    margin-top: 40px;
    font-size: 22px;
    line-height: 26px
}

.options-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 35px
}

.option-list {
    margin: 0 0 0 30px
}

.option__item {
    margin-bottom: 10px
}

.option__item:last-child {
    margin-bottom: 0
}

.option__item:before {
    content: "• ";
    color: var(--primary)
}

.motorhomes {
    margin-top: 70px;
    margin-bottom: 70px
}

.motorhomes-text {
    margin-top: 40px
}

.motorhomes-text p {
    margin-bottom: 15px
}

.motorhomes-content {
    margin-top: 40px
}

.motorhomes-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px
}

.motorhomes-item:last-child {
    margin-bottom: 0
}

.motorhomes-left {
    width: 50%;
    margin: 0 30px 0 0
}

.motorhomes__title {
    font-size: 24px;
    line-height: 28px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 25px
}

.motorhomes-right {
    width: 50%
}

.motorhomes__img img {
    width: 100%;
    max-height: 320px;
    -o-object-fit: cover;
    object-fit: cover
}

.row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.row-reverse .motorhomes-left {
    margin: 0 0 0 30px
}

.cars {
    margin-top: 70px;
    margin-bottom: 70px
}

.cars-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 3 ];
    grid-template-columns: repeat(3, 1fr)
}

.cars-item {
    position: relative;
    display: inline-block;
    width: 100%
}

.cars__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 31, 31, .7);
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.cars__img {
    height: 215px
}

.cars__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.cars__inner {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    padding: 15px;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out
}

.cars__desc {
    font-weight: 900;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: #fff
}

.cars__desc p {
    font-weight: 400
}

.cars__more {
    position: relative;
    font-weight: 500;
    font-size: 11px;
    line-height: 13px;
    color: #fff;
    width: 80px;
    text-transform: uppercase
}

.cars__more:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    border: 1px solid var(--primary);
    width: 100%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.cars__more:before {
    content: '';
    background-image: url(../img/icons/arrow-right.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.gallery {
    margin-top: 70px;
    margin-bottom: 70px
}

.gallery-nav {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(5, 1fr);
    gap: 0 20px
}

.gallery-nav__item {
    border: 2px solid #f50;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.gallery-nav__item.active {
    color: #fff;
    background-color: var(--primary)
}

.gallery-content {
    margin-top: 40px
}

.box-item {
    position: relative;
    overflow: hidden
}

.box__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.box__img {
    display: inline-block;
    width: 100%;
    height: 125px
}

.box__title {
    font-weight: 500;
    margin-top: 10px;
    padding: 0 15px
}

.box__desc {
    padding: 0 15px 10px 15px;
    font-size: 14px
}

.box-nav__item.active {
    color: var(--primary);
    background-color: #f8f4f4
}

.box-nav__item {
    color: #5c5353;
    background-color: #ebe5e5;
    margin-right: 10px;
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    text-transform: uppercase;
    padding: 20px;
    font-weight: 700;
    border-radius: 20px 20px 0 0;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.office-content {
    margin-top: 40px
}

.office-item {
    position: relative;
    cursor: pointer;
    overflow: hidden
}

.office__img {
    display: inline-block;
    height: 165px;
    width: 100%
}

.office__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.team {
    margin-top: 70px
}

.team-content {
    margin-top: 40px
}

.arrivals {
    margin-top: 70px
}

.arrivals-tabs {
    margin-top: 40px
}

.arrivals-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.arrivals-nav__item.active {
    color: #fff;
    background-color: var(--primary)
}

.arrivals-nav__item:hover {
    color: #fff;
    background-color: var(--primary)
}

.arrivals-nav__item {
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
    margin: 0 20px;
    cursor: pointer;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 20px
}

.arrivals-content {
    margin-top: 40px
}

.soldlots {
    margin-top: 70px
}

.card-content {
    margin-top: 40px
}

.card-item {
    background-color: #fff;
    padding: 10px
}

.card__img {
    display: inline-block;
    text-align: center;
    width: 100%;
    height: 110px
}

.card__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.card__tuning {
    position: absolute;
    top: 20px;
    left: 7px;
    background-color: var(--primary);
    color: #fff;
    font-weight: 900;
    font-size: 10px;
    line-height: 12px;
    text-transform: uppercase;
    padding: 5px
}

.card-body {
    margin-top: 10px
}

.card__bg {
    width: 94%;
    height: 94%
}

.card__desc {
    border: 1px solid;
    width: 65px;
    height: 15px;
    font-size: 10px;
    line-height: 12px;
    text-transform: uppercase;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.card__desc_instock {
    color: #6ed904;
    border-color: #6ed904
}

.card__desc_sold {
    color: var(--primary);
    border-color: var(--primary)
}

.card__title {
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    color: #000;
    margin-top: 10px;
    border-bottom: 1px solid #c4c4c4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 35px
}

.card-footer {
    margin-top: 10px
}

.card__price {
    text-transform: uppercase;
    color: #000;
    text-align: center
}

.card-slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 40px;
    padding: 0 50px 0 50px
}

.card-slider .card-item {
    display: inline-block;
    margin: 0 5px;
    width: 200px
}

.card-slider .slick-next, .card-slider .slick-prev {
    text-indent: -10000px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: center;
    background-size: 100%;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    width: 23px;
    height: 43px
}

.card-slider .slick-next {
    right: 0;
    background-image: url(../img/icons/next.png)
}

.card-slider .slick-prev {
    left: 0;
    background-image: url(../img/icons/prev.png)
}

.soldcars-content {
    margin-top: 40px
}

.news {
    background-color: #f8f4f4;
    padding: 50px 0
}

.news-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px
}

.news-item {
    display: inline-block;
    border: 2px solid var(--primary);
    background-color: #fff
}

.news__img {
    width: 100%;
    height: 210px
}

.news__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.news__body {
    padding: 20px
}

.news__date {
    font-size: 13px;
    line-height: 15px
}

.news__title {
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    margin-top: 15px
}

.news__desc {
    margin-top: 15px;
    height: 100px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.news__bg {
    width: 94%;
    height: 94%
}

.news .btn {
    background-color: #fff
}

.mototechnics {
    margin-top: 70px
}

.mototechnics-tabs {
    margin-top: 40px
}

.mototechnics-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.mototechnics-content {
    background-color: #f8f4f4;
    padding: 50px 100px
}

.mototechnics-caption {
    text-align: center;
    font-size: 22px;
    line-height: 26px
}

.mototechnics-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 40px
}

.mototechnics-logo {
    width: 370px;
    height: 155px
}

.mototechnics-logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.mototechnics-list {
    margin: 0 0 0 30px
}

.mototechnics__item:before {
    content: "• ";
    color: var(--primary)
}

.mototechnics__item {
    margin-bottom: 10px
}

.mototechnics-text {
    margin-top: 20px
}

.mototechnics-text p {
    margin-top: 30px
}

.mototechnics__link {
    color: var(--primary);
    text-decoration: underline
}

.specialoffers {
    position: relative
}

.specialoffers-item {
    position: relative
}

.specialoffers-item:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/specialoffers/bg_slider.png);
    background-repeat: no-repeat
}

.specialoffers-button {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 15
}

.specialoffers-button .btn {
    max-width: 330px;
    width: 400px;
    height: 50px;
    line-height: 50px;
    font-size: 18px
}

.specialoffers__img {
    height: 540px
}

.specialoffers__img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.specialoffers__body {
    position: absolute;
    top: 50%;
    left: 120px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1
}

.specialoffers__new {
    font-weight: 300;
    font-size: 40px;
    line-height: 50px;
    text-transform: uppercase;
    color: #fff;
    position: absolute;
    left: 0;
    -webkit-transform: rotate(-90deg) translate(-100%, 0);
    transform: rotate(-90deg) translate(-100%, 0);
    -webkit-transform-origin: left top;
    transform-origin: left top
}

.specialoffers__title {
    padding-left: 70px
}

.specialoffers__title p {
    font-weight: 900;
    font-size: 96px;
    line-height: 80px;
    text-transform: uppercase;
    color: #fff
}

.specialoffers__title span {
    font-size: 48px;
    line-height: 43px;
    font-weight: 300;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
    letter-spacing: 15px
}

.specialoffers__desc {
    max-width: 400px;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #fff;
    margin-top: 35px
}

.specialoffers__link {
    display: inline-block;
    position: relative;
    margin-top: 50px;
    padding-right: 20px;
    font-weight: 500;
    line-height: 13px;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.specialoffers__link:hover:after {
    width: 10%
}

.specialoffers__link:hover:before {
    background-image: url(../img/icons/arrow-right-hover.png);
    right: -4px
}

.specialoffers__link:hover {
    color: var(--primary)
}

.specialoffers__link:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    border: 1px solid var(--primary);
    width: 100%;
    -webkit-transition: all 1.3s ease;
    transition: all 1.3s ease
}

.specialoffers__link:before {
    content: '';
    background-image: url(../img/icons/arrow-right.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transition: all .6s ease;
    transition: all .6s ease
}

.specialoffers .slick-next, .specialoffers .slick-prev {
    text-indent: -10000px;
    position: absolute;
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: center;
    background-size: 100%;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    margin-top: -15px;
    z-index: 1
}

.specialoffers .slick-next {
    background-image: url(../img/icons/next.png)
}

.specialoffers .slick-prev {
    background-image: url(../img/icons/prev.png)
}

.specialoffers .slick-next, .specialoffers .slick-prev {
    bottom: 30px;
    width: 15px;
    height: 30px
}

.specialoffers .slick-prev {
    left: 37%
}

.specialoffers .slick-next {
    right: 37%
}

.specialoffers .slick-next:after, .specialoffers .slick-prev:after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, .3);
    top: 50%;
    left: 50%;
    width: 43px;
    height: 43px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.specialoffers .slick-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.specialoffers .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    outline: 0;
    border-radius: 50%;
    background-color: #868789;
    margin: 0 5px
}

.specialoffers .slick-dots li.slick-active button {
    background-color: var(--primary)
}

.videoreviews {
    margin-top: 70px;
    margin-bottom: 70px
}

.videoreviews-caption {
    margin-top: 40px;
    text-align: center;
    font-size: 22px;
    line-height: 26px
}

.videoreviews-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 50px
}

.videoreviews-item {
    margin: 0 0 0 40px
}

.videoreviews__item {
    margin-bottom: 23px
}

.videoreviews__item:before {
    content: "• ";
    color: var(--primary)
}

.videoreviews-item .button {
    text-align: left
}

.retrocars-text {
    margin-top: 40px
}

.retrocars-content {
    margin-top: 40px
}

.retrocars-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px
}

.retrocars-right {
    width: 50%
}

.retrocars-left {
    width: 50%;
    margin: 0 30px 0 0
}

.row-reverse .retrocars-left {
    margin: 0 0 0 30px
}

.retrocars__title {
    font-size: 24px;
    line-height: 28px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 25px
}

.retrocars__desc {
    font-size: 16px;
    line-height: 20px
}

.retrocars__img img {
    width: 100%;
    max-height: 320px;
    -o-object-fit: cover;
    object-fit: cover
}

.reviews-tabs {
    margin-top: 50px
}

.reviews-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative
}

.reviews-nav__item:hover {
    color: #fff;
    background-color: var(--primary)
}

.reviews-nav__item.active {
    color: #fff;
    background-color: var(--primary)
}

.reviews-nav__item {
    position: relative;
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
    cursor: pointer;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 30px;
    margin: 0 20px
}

.reviews-content {
    margin-top: 50px
}

.reviews-item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 480px 30px 1fr;
    grid-template-columns: 480px 1fr;
    gap: 30px;
    border: 2px solid #f50;
    padding: 30px;
    margin-bottom: 50px
}

.reviews-images {
    height: 300px
}

.reviews-images-item {
    height: 300px
}

.reviews-images-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.reviews-images-item:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.reviews-info__date {
    font-size: 13px;
    line-height: 15px
}

.reviews-info__title {
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    color: #000;
    margin-top: 10px
}

.reviews-info__text {
    font-size: 13px;
    line-height: 15px;
    margin-top: 10px
}

.reviews-info__desc {
    font-size: 14px;
    margin-top: 23px
}

.reviews-info__more {
    display: inline-block;
    font-weight: 700;
    color: #000;
    margin-top: 15px;
    cursor: pointer
}

.reviews .slick-next, .reviews .slick-prev {
    text-indent: -10000px;
    position: absolute;
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: center;
    background-size: 100%;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    margin-top: -15px;
    z-index: 1
}

.reviews .slick-next, .reviews .slick-prev {
    top: 50%;
    width: 15px;
    height: 30px
}

.reviews .slick-prev {
    left: 20px;
    background-image: url(../img/icons/prev.png)
}

.reviews .slick-next {
    right: 20px;
    background-image: url(../img/icons/next.png)
}

.reviews .slick-next:after, .reviews .slick-prev:after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, .3);
    top: 50%;
    left: 50%;
    width: 43px;
    height: 43px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.reviews .slick-next:hover:after, .reviews .slick-prev:hover:after {
    opacity: 1;
    visibility: visible
}

.reviews .slick-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.reviews .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    outline: 0;
    border-radius: 50%;
    background-color: #fff;
    margin: 0 5px
}

.reviews .slick-dots li.slick-active button {
    background-color: var(--primary)
}

.reviews-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 50px
}

.reviews-player {
    border: 2px solid #f50;
    padding: 30px;
    height: 345px
}

.reviews-player iframe {
    width: 100%;
    height: 100%
}

.breadcrumbs {
    margin-top: 50px;
    margin-bottom: -40px
}

.breadcrumbs-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center
}

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

.breadcrumbs__link {
    font-size: 14px;
    color: #000;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.breadcrumbs__item span {
    font-size: 14px;
    color: var(--primary)
}

.breadcrumbs__item + .breadcrumbs__item:before {
    content: "/";
    display: inline-block;
    padding-right: 10px
}

.breadcrumbs__item + .breadcrumbs__item {
    padding-left: 10px
}

.numberperpage {
    margin-top: 40px;
    margin-bottom: -30px
}

.numberperpage-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.numberperpage__desc {
    font-size: 12px;
    line-height: 14px;
    margin: 0 20px 0 0
}

.numberperpage__select {
    width: 60px
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 50px
}

.pagination__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 27px;
    height: 27px;
    border: 1px solid #877777;
    font-size: 13px;
    line-height: 15px;
    color: #877777;
    margin-right: 5px;
    -webkit-transition: all .1s ease;
    transition: all .1s ease;
    padding: 0 7px
}

.pagination__link.active {
    border-color: var(--primary);
    color: var(--primary)
}

.pagination__link_next, .pagination__link_prev {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 7px
}

.pagination__link_prev {
    background-image: url(../img/icons/page-previous.png);
    margin-right: 20px
}

.pagination__link_prev:hover {
    background-image: url(../img/icons/page-previous-hover.png)
}

.pagination__link_next {
    background-image: url(../img/icons/page-next.png);
    margin-left: 15px
}

.pagination__link_next:hover {
    background-image: url(../img/icons/page-next-hover.png)
}

.catalog {
    margin-top: 70px;
    margin-bottom: 70px
}

.catalog-items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    -ms-flex-item-align: start;
    align-self: flex-start
}

.filter__trigger {
    display: none;
    position: relative;
    height: 40px;
    background-color: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    text-transform: uppercase;
    cursor: pointer
}

.filter__trigger:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -8px;
    background-image: url(../img/icons/slide-down.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 15px;
    height: 15px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.filter__trigger.active:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.filter {
    width: 195px
}

.filter__item {
    margin-bottom: 25px
}

.filter__title {
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    color: #000;
    margin-bottom: 10px
}

.filter__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.filter__search {
    position: relative
}

.filter__input {
    border: 1px solid #877777;
    width: 100%;
    height: 35px;
    padding: 10px;
    font-size: 14px;
    color: #5c5353;
    border-radius: 0
}

.filter__input::-webkit-input-placeholder {
    color: #5c5353;
    opacity: 1
}

.filter__input::-moz-placeholder {
    color: #5c5353;
    opacity: 1
}

.filter__input:-ms-input-placeholder {
    color: #5c5353;
    opacity: 1
}

.filter__input::-ms-input-placeholder {
    color: #5c5353;
    opacity: 1
}

.filter__input::-webkit-input-placeholder {
    color: #5c5353;
    opacity: 1
}

.filter__input::-moz-placeholder {
    color: #5c5353;
    opacity: 1
}

.filter__input:-ms-input-placeholder {
    color: #5c5353;
    opacity: 1
}

.filter__input::placeholder {
    color: #5c5353;
    opacity: 1
}

.filter__result {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px
}

.filter__result span {
    position: relative;
    background-color: var(--primary);
    font-size: 10px;
    line-height: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    padding: 5px;
    cursor: pointer
}

.filter__result span:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 5px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(../img/icons/close.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 8px;
    height: 8px
}

.filter__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 40px
}

.filter__buttons button {
    margin-bottom: 15px
}

.filter__button:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 2px solid var(--primary);
    width: 100%;
    -webkit-transition: all 1.3s ease;
    transition: all 1.3s ease
}

.filter__button:hover:after {
    width: 10%
}

.filter__buttons-reset {
    background-color: transparent;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 500
}

.filter__buttons-reset:hover {
    opacity: .8
}

.filter__item.spoiler__trigger .btn {
    width: 100%;
    padding: 0;
    margin-top: 20px
}

.filter__item.spoiler__trigger.active .btn {
    background-color: var(--primary);
    color: #fff
}

.filter__item.spoiler__trigger .btn:after {
    content: '+';
    position: absolute;
    left: 35px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.filter__item.spoiler__trigger.active .btn:after {
    content: '-'
}

.filter__item.spoiler__trigger {
    cursor: pointer
}

.filter__parameters {
    display: none;
    -ms-grid-column-span: 4;
    -ms-grid-column: span 4;
    grid-column: span 4
}

.parameters-filter__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 30px
}

.tuning-banner-main {
    position: relative
}

.tuning-banner-img {
    height: 630px
}

.tuning-banner-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.tuning-banner-img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 31, 31, .5)
}

.tuning-banner-block {
    position: absolute;
    top: 50%;
    left: 130px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1
}

.tuning-banner__caption {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.tuning-banner__number {
    font-weight: 500;
    font-size: 36px;
    line-height: 30px;
    letter-spacing: 5px;
    text-transform: capitalize;
    color: #fff;
    position: absolute;
    top: 45px;
    left: 0;
    -webkit-transform: rotate(-90deg) translateX(-50%);
    transform: rotate(-90deg) translateX(-50%);
    -webkit-transform-origin: left top;
    transform-origin: left top
}

.tuning-banner__title {
    text-transform: uppercase;
    color: #fff;
    padding-left: 45px
}

.tuning-banner__title p {
    font-weight: 900;
    font-size: 64px;
    line-height: 50px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 25px
}

.tuning-banner__title span {
    font-weight: 500;
    font-size: 36px;
    letter-spacing: 6px;
    line-height: 1.1
}

.tuning-banner__desc {
    max-width: 400px;
    font-size: 18px;
    line-height: 21px;
    color: #fff;
    margin-top: 20px
}

.tuning-banner__button {
    margin-top: 35px
}

.tuning-banner-info {
    border-bottom: 3px solid var(--primary)
}

.tuning-banner-info-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 0;
    border-left: 1px solid #bfafaf
}

.tuning-banner-info__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 55px
}

.tuning-banner-info__desc {
    margin-top: 15px;
    line-height: 1.4
}

.tuning-banner-info__desc span {
    margin-left: 7px
}

.tuning-slider {
    margin-top: 70px
}

.tuning-slider-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 200px;
    grid-template-columns: 1fr 200px;
    gap: 10px
}

.tuning-slider-main {
    width: 960px
}

.tuning-slider-main .tuning-slider-item {
    margin-bottom: 0
}

.tuning-slider-main .tuning-slider-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.tuning-slider-main .tuning-slider-img:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.tuning-slider-nav .slick-track {
    display: block
}

.tuning-slider-nav .slick-list {
    position: absolute;
    top: 50%;
    margin-top: 5px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.tuning-slider-item {
    margin-bottom: 10px
}

.tuning-slider-nav .tuning-slider-img {
    display: inline-block
}

.tuning-slider-nav .tuning-slider-img img {
    height: 115px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: .8;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.tuning-slider-nav .slick-current .tuning-slider-img img, .tuning-slider-nav .tuning-slider-img:hover img {
    opacity: 1
}

.tuning-slider-nav .slick-next, .tuning-slider-nav .slick-prev {
    text-indent: -10000px;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    z-index: 1;
    background-color: var(--primary);
    width: 100%;
    height: 45px;
    margin: 0
}

.tuning-slider-nav .slick-prev {
    top: 0;
    background-image: url(../img/icons/slide-up.png)
}

.tuning-slider-nav .slick-next {
    bottom: 0;
    background-image: url(../img/icons/slide-down.png)
}

.tuning-slider-main .tuning-slider-img {
    height: 600px;
    display: block
}

.tuning-list {
    margin-top: 70px
}

.tuning-list-content {
    margin-top: 40px
}

.tuning-list__item {
    border-bottom: 1px solid #fff
}

.tuning-list__caption {
    position: relative;
    height: 60px;
    background-color: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer
}

.tuning-list__caption:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -8px;
    background-image: url(../img/icons/slide-down.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 15px;
    height: 15px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.tuning-list__caption.active:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.tuning-list__icon {
    position: relative;
    width: 270px;
    margin: auto;
    padding-left: 50px
}

.tuning-list__icon:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 30px;
    height: 30px
}

.tuning-list__icon_1:before {
    background-image: url(../img/tuning-icons/01.png)
}

.tuning-list__icon_2:before {
    background-image: url(../img/tuning-icons/02.png)
}

.tuning-list__icon_3:before {
    background-image: url(../img/tuning-icons/03.png)
}

.tuning-list__icon_4:before {
    background-image: url(../img/tuning-icons/04.png)
}

.tuning-list__icon_5:before {
    background-image: url(../img/tuning-icons/05.png)
}

.tuning-list__icon_6:before {
    background-image: url(../img/tuning-icons/06.png)
}

.tuning-list__icon_7:before {
    background-image: url(../img/tuning-icons/07.png)
}

.tuning-list__section {
    display: none
}

.tuning-list__block {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr
}

.tuning-list__column {
    border-left: 1px solid #a3a3a3
}

.tuning-list__column:last-child {
    border-right: 1px solid #a3a3a3
}

.tuning-list__row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 60px 20px 1fr 20px auto;
    grid-template-columns: 60px 1fr auto;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    padding: 10px 20px
}

.tuning-list__row_bg {
    background-color: #f2f2f2
}

.tuning-list__img {
    width: 60px;
    height: 45px
}

.tuning-list__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.tuning-list__desc {
    font-size: 14px;
    line-height: 16px
}

.specialoffers-gallery {
    margin-top: 70px
}

.specialoffers-banner-main {
    position: relative
}

.specialoffers-banner-img {
    height: 630px
}

.specialoffers-banner-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.specialoffers-banner-block {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 130px
}

.specialoffers__button {
    margin-top: 40px
}

.specialoffers__button .btn {
    max-width: 350px
}

.specialoffers-banner-info {
    border-bottom: 3px solid var(--primary)
}

.specialoffers-banner-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    padding: 30px 15px;
    border-left: 1px solid #bfafaf
}

.specialoffers-banner__text p {
    font-weight: 300;
    font-size: 14px;
    text-transform: uppercase;
    color: #000
}

.specialoffers-banner__text strong {
    display: inline-block;
    color: #000;
    font-size: 48px;
    margin: 10px 5px 0 5px;
    line-height: 1;
    font-weight: 500
}

.specialoffers-banner__text span {
    font-weight: 300;
    color: #000
}

.specialoffers-banner__desc {
    margin-top: 15px;
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    color: #000
}

.specialoffers-gallery-content {
    margin-top: 40px
}

.specialoffers-gallery__img {
    position: relative;
    height: 215px;
    overflow: hidden
}

.specialoffers-gallery__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.specialoffers-gallery__img:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.specialoffers-gallery__img:hover .specialoffers-gallery__bg {
    background: rgba(255, 85, 0, .8)
}

.specialoffers-gallery__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 31, 31, .2);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 1
}

.specialoffers-gallery__link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 300;
    font-size: 18px;
    line-height: 21px;
    text-transform: uppercase;
    color: #fff;
    background-color: #312e2e;
    height: 215px
}

.specialoffers-gallery__link span {
    position: relative;
    display: inline-block;
    padding-right: 20px
}

.specialoffers-gallery__link span:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    border: 1px solid var(--primary);
    width: 100%;
    -webkit-transition: all 1.3s ease;
    transition: all 1.3s ease
}

.specialoffers-gallery__link span:before {
    content: '';
    background-image: url(../img/icons/arrow-right.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .6s ease;
    transition: all .6s ease
}

.specialoffers-gallery__link:hover span {
    color: var(--primary)
}

.specialoffers-gallery__link:hover span:before {
    background-image: url(../img/icons/arrow-right-hover.png);
    right: -4px
}

.specialoffers-gallery__link:hover span:after {
    width: 10%
}

.specialoffers-inner-content {
    position: relative;
    overflow: hidden
}

.specialoffers-inner-content.show {
    margin-bottom: 70px
}

.specialoffers-inner-content.hide {
    display: none
}

.specialoffers-inner-content.hide:after {
    content: "";
    display: block;
    height: 100px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(75%, #fff));
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), #fff 75%);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 75%)
}

.specialoffers-inner-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 70px;
    padding-bottom: 70px;
    border-bottom: 1px solid var(--primary)
}

.specialoffers-inner-item:last-child {
    margin-bottom: 0
}

.specialoffers-inner-left {
    width: 50%;
    margin: 0 30px 0 0
}

.row-reverse .specialoffers-inner-left {
    margin: 0 0 0 30px
}

.specialoffers-inner__title {
    font-size: 24px;
    line-height: 28px;
    text-transform: uppercase;
    color: #000
}

.specialoffers-inner__desc {
    font-weight: 300;
    line-height: 30px;
    color: #000;
    margin-top: 35px
}

.specialoffers-inner__text {
    font-weight: 300;
    font-size: 12px;
    line-height: 15px;
    color: #000;
    margin-top: 35px
}

.specialoffers-inner-right {
    width: 50%
}

.specialoffers-inner__img img {
    width: 100%;
    max-height: 390px;
    -o-object-fit: cover;
    object-fit: cover
}

.specialoffers-grid {
    margin: 70px 0
}

.specialoffers-grid-content {
    gap: 10px
}

.specialoffers-grid-item {
    box-shadow: 0 4px 40px rgba(0, 0, 0, .2);
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.specialoffers-grid__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    width: 100%;
    overflow: hidden;
    -webkit-transition: .4s;
    transition: .4s
}

.specialoffers-grid__img img {
    width: 100%;
    height: 160px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.specialoffers-grid-item:hover .specialoffers-grid__img img {
    opacity: .3
}

.specialoffers-grid__desc {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    padding: 20px 15px;
    color: #000;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.specialoffers-grid-item:hover .specialoffers-grid__desc {
    color: #fff
}

.specialoffers-grid-item:hover .specialoffers-grid__img {
    color: #fff;
    background-color: var(--primary)
}

.specialoffers-popup {
    width: 100%;
    max-width: 660px;
    display: none
}

.specialoffers-popup__img {
    max-width: 100%
}

.specialoffers-popup__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 19px;
    text-transform: uppercase;
    color: #000;
    margin-top: 20px
}

.specialoffers-popup__desc {
    margin-top: 10px;
    line-height: 1.4
}

.specialoffers-inner {
    margin-top: 70px;
    margin-bottom: 70px
}

.specialoffers-inner__button .btn {
    max-width: 350px
}

.specialoffers-tabs {
    margin-top: 40px
}

.specialoffers-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.specialoffers-nav__item.active {
    color: #fff;
    background-color: var(--primary)
}

.specialoffers-nav__item:hover {
    color: #fff;
    background-color: var(--primary)
}

.specialoffers-nav__item {
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
    margin: 0 20px;
    cursor: pointer;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 30px
}

.specialoffers__btn {
    display: block;
    margin: 40px auto 0;
    cursor: pointer;
    max-width: 350px
}

.watchvideoreview {
    margin: 70px 0
}

.watchvideoreview-video {
    margin-top: 40px;
    text-align: center
}

.watchvideoreview-video iframe {
    width: 100%;
    max-width: 700px;
    height: 390px;
    margin: auto
}

.contacts {
    margin-top: 70px;
    margin-bottom: 70px
}

.contacts-content {
    margin-top: 40px
}

.contacts-content-top {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 50px
}

.contacts-map {
    width: 650px;
    height: 370px
}

.contacts-map img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.contacts-info__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 35px
}

.contacts-info__item:last-child {
    margin-bottom: 0
}

.contacts-info__item h6 {
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 10px
}

.contacts-info__item p {
    color: #000;
    line-height: 1.4;
    margin-bottom: 15px
}

.contacts-info__link {
    display: inline-block;
    color: #000;
    margin-bottom: 5px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.contacts-info__link:hover {
    color: var(--primary)
}

.contacts-content-bottom {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 50px
}

.socials-info-contacts {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 170px;
    margin-top: 25px
}

.socials-info-contacts__link img {
    -webkit-transition: all .1s ease;
    transition: all .1s ease
}

.socials-info-contacts__link:hover img {
    -webkit-transform: scale(.9);
    transform: scale(.9)
}

.inner-wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 195px 45px 1fr;
    grid-template-columns: 195px 1fr;
    gap: 45px
}

.inner-banner {
    position: relative
}

.inner-banner:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 31, 31, .5)
}

.inner-banner-img {
    height: 250px
}

.inner-banner-img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.inner-banner-caption {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1
}

.inner-banner__title {
    font-size: 42px;
    line-height: 50px;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff
}

.inner-banner__divider {
    margin: 10px 0;
    border: 3px solid var(--primary);
    width: 40px
}

section.request {
    margin-top: 70px;
    margin-bottom: 70px
}

.dealer {
    margin-top: 70px;
    margin-bottom: 70px
}

.innerpage__text p {
    margin-bottom: 20px
}

.innerpage__form {
    margin-top: 50px;
    border-top: 1px solid #ccc;
    padding-top: 50px
}

.innerpage__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 30px
}

.innerpage__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 20px
}

.innerpage__group-bottom {
    position: relative;
    width: 208%;
    z-index: 99;
    margin-bottom: 0
}

.innerpage__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
    font-weight: 700
}

.innerpage__label span {
    margin-left: 5px;
    color: red
}

.innerpage__label i {
    margin-left: auto;
    font-size: 12px;
    font-weight: 300;
    font-style: normal
}

.innerpage__input {
    border: 1px solid #ccc;
    height: 40px;
    font-weight: 300;
    color: #5c5353;
    padding: 0 10px
}

.innerpage__select {
    border-color: #ccc;
    height: 40px;
    font-weight: 300
}

.innerpage__textarea {
    border: 1px solid #ccc;
    padding: 10px;
    resize: none;
    height: 128px;
    color: #5c5353
}

.innerpage__captcha {
    display: inline-block;
    width: 100%
}

.innerpage__captcha img {
    width: 100%;
    height: 70px;
    object-fit: cover
}

.innerpage__button {
    margin-top: 20px
}

.innerpage__button-request {
    margin-top: 37px
}

.innerpage__list {
    margin: 0 0 20px 0
}

.innerpage__item {
    margin-bottom: 10px
}

.innerpage__item:before {
    content: "• ";
    color: var(--primary)
}

.innerpage__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.price-newcar {
    margin-top: 70px;
    margin-bottom: 70px
}

.price-newcar-content ol {
    margin-top: 30px;
    list-style: none
}

.price-newcar__title {
    font-size: 18px;
    font-weight: 500;
    color: #000
}

.price-newcar__list {
    margin-top: 20px
}

.price-newcar__item {
    margin-top: 15px;
    list-style: decimal inside
}

.price-newcar__item p {
    margin-top: 15px
}

.car-manufacturers {
    margin-top: 70px;
    margin-bottom: 70px
}

.car-manufacturers-content {
    gap: 80px;
    margin-top: 50px
}

.car-manufacturers__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 10px
}

.car-manufacturers__link {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 65px 15px 1fr;
    grid-template-columns: 65px 1fr;
    gap: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    -ms-grid-column-align: center;
    justify-items: center;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline
}

.car-manufacturers__link span {
    font-weight: 500;
    font-size: 18px;
    line-height: 40px;
    text-transform: uppercase;
    color: #0c13c0;
    margin-right: auto
}

.cardproduct {
    margin-top: 70px;
    margin-bottom: 70px
}

.cardproduct-slider {
    margin-top: 70px
}

.cardproduct-item {
    display: block;
    height: 660px
}

.cardproduct-slider-main .cardproduct-item img {
    width: 100%;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    height: 100%;
    object-fit: cover
}

.cardproduct-slider-main .cardproduct-item:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.cardproduct-slider-nav .cardproduct-item {
    display: inline-block;
    height: 80px;
    margin: 3px 3px 0 0;
    background-color: rgba(0, 0, 0, .8)
}

.cardproduct-slider-nav .cardproduct-item img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: .8;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.cardproduct-slider-nav .cardproduct-item:hover img {
    opacity: 1
}

.cardproduct-slider-main .slick-next, .cardproduct-slider-main .slick-prev {
    width: 50px;
    height: 55px
}

.cardproduct-slider-nav .slick-next, .cardproduct-slider-nav .slick-prev {
    width: 30px;
    height: 35px
}

.cardproduct-slider-main .slick-next, .cardproduct-slider-main .slick-prev, .cardproduct-slider-nav .slick-next, .cardproduct-slider-nav .slick-prev {
    text-indent: -10000px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    background-size: 100%;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    z-index: 1
}

.cardproduct-slider-main .slick-next, .cardproduct-slider-nav .slick-next {
    background-image: url(../img/icons/next-arrow.png);
    right: 15px
}

.cardproduct-slider-main .slick-prev, .cardproduct-slider-nav .slick-prev {
    background-image: url(../img/icons/left-arrow.png);
    left: 15px
}

.instock {
    position: absolute;
    bottom: 25px;
    left: 25px;
    font-size: 13px;
    line-height: 15px;
    text-transform: uppercase;
    color: green;
    border: 1px solid green;
    padding: 2px 5px;
    font-weight: 700
}

.instock.sales {
    color: var(--primary);
    border-color: var(--primary)
}

.cardproduct-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 25px 1fr 25px auto;
    grid-template-columns: 1fr 1fr auto;
    gap: 50px 25px
}

.cardproduct-table table {
    width: 100%;
    border-collapse: collapse
}

.cardproduct-table table tr td {
    border: 1px solid #c4c4c4;
    padding: 10px
}

.cardproduct-table table tr td:first-child {
    width: 35%
}

.cardproduct__label {
    font-weight: 500
}

.cardproduct-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.cardproduct__icon {
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background-color: var(--primary)
}

.cardproduct__icon_1 {
    background-image: url(../img/icons/+.png);
    background-size: 17px
}

.cardproduct__icon_1:hover {
    background-size: 15px
}

.cardproduct__icon_2 {
    background-color: #59a809;
    background-image: url(../img/icons/calculator.png);
    background-size: 25px
}

.cardproduct__icon_2:hover {
    background-size: 23px
}

.cardproduct__icon_3 {
    background-image: url(../img/icons/share.png);
    background-size: 20px
}

.cardproduct__icon_3:hover {
    background-size: 18px
}

.cardproduct__icon_4 {
    background-image: url(../img/icons/minus.svg);
    background-size: 28px
}

.cardproduct__icon_4:hover {
    background-size: 24px
}

.cardproduct-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.cardproduct-box .btn {
    padding: 0 20px
}

.cardproduct__desc {
    font-size: 14px;
    max-width: 270px
}

.cardproduct__soon {
    position: relative;
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    border: 2px solid var(--primary);
    padding: 10px 0 15px 80px;
    width: 85%
}

.cardproduct__soon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    background-image: url(../img/icons/maintenance.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 45px;
    height: 45px
}

.cardproduct-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    grid-column: span 2
}

.cardproduct__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 160px;
    height: 40px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.cardproduct__button_1 {
    border: 2px solid #59a809;
    background-color: #59a809;
    margin-right: 20px
}

.cardproduct__button_1:hover {
    background-color: #fff;
    color: #59a809
}

.cardproduct__button_2 {
    border: 2px solid var(--primary);
    background-color: var(--primary)
}

.cardproduct__button_2:hover {
    background-color: #fff;
    color: var(--primary)
}

.manheim-caption {
    margin-bottom: 50px
}

.manheim-caption p {
    font-size: 14px;
    line-height: 20px
}

.manheim-form {
    margin-top: 50px
}

.manheim-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 40px 1fr;
    grid-template-columns: auto 1fr;
    gap: 0 40px
}

.manheim__logo img {
    width: 115px;
    height: 130px;
    -o-object-fit: cover;
    object-fit: cover
}

.filter__group {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0 30px
}

.manheim-auction {
    position: relative;
    margin-top: 70px;
    padding-bottom: 70px
}

.manheim-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 460px;
    z-index: -1;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(27.19%, #fff), to(rgba(255, 255, 255, 0))), url(../img/bg/bg9.png);
    background: -webkit-linear-gradient(top, #fff 27.19%, rgba(255, 255, 255, 0) 100%), url(../img/bg/bg9.png);
    background: linear-gradient(180deg, #fff 27.19%, rgba(255, 255, 255, 0) 100%), url(../img/bg/bg9.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
}

.manheim-text {
    margin-top: 50px
}

.manheim-text p {
    margin-bottom: 20px
}

.manheim-list {
    margin: 0 0 20px 0
}

.manheim-list__item {
    margin-bottom: 10px
}

.manheim-list__item:before {
    content: "• ";
    color: var(--primary)
}

.manheim-search {
    margin-top: 70px;
    margin-bottom: 70px
}

.manheim-search-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px
}

.manheim-search-top__item {
    font-weight: 700;
    font-size: 22px;
    color: #000
}

.manheim-search-top__text {
    position: relative;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    font-size: 14px;
    font-weight: 300
}

.manheim-search__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid var(--primary);
    padding: 20px
}

.manheim-search__box {
    padding: 10px;
    font-size: 14px
}

.manheim-search-table table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-collapse: collapse;
    border: 1px solid var(--primary);
    margin-bottom: 20px;
    padding: 20px 20px 20px 10px
}

.manheim-search-table table thead {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.manheim-search-table table tbody tr td, .manheim-search-table table tbody tr th {
    border: 1px solid #c4c4c4;
    padding: 10px 5px;
    font-size: 13px;
    text-align: center
}

.manheim-search-table table tbody tr .manheim-search-table__more {
    border: none;
    padding: 0
}

.manheim-search-table__link {
    position: relative;
    padding-left: 25px;
    margin-left: 30px;
    width: 200px
}

.manheim-search-table__del {
    position: relative;
    padding-left: 25px;
    margin: 20px 0 0 30px;
    width: 200px;
    display: inline-block;
    height: 40px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    line-height: 40px;
    color: #fff;
    background-color: var(--primary)
}

.manheim-search-table__del:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(../img/icons/heart-hover.png);
    width: 16px;
    height: 16px
}

.manheim-search-table__del:hover {
    color: var(--primary);
    background-color: #fff
}

.manheim-search-table__del:hover:before {
    background-image: url(../img/icons/heart.png)
}

.manheim-search-table__link:hover {
    color: #000
}

.manheim-search-table__link:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(../img/icons/heart.png);
    width: 16px;
    height: 16px
}

.manheim-search-table__link:hover:before {
    background-image: url(../img/icons/heart-hover.png)
}

.manheim-search-table__more .btn {
    margin-top: 20px
}

.manheim-search__img {
    display: inline-block;
    width: 300px;
    height: 180px;
    padding: 10px
}

.manheim-search__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.manheim-search__colors {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 5px
}

.manheim-search__color {
    position: relative;
    padding-left: 30px;
    margin: 0 15px;
    font-size: 14px
}

.manheim-search__color:after {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%
}

.manheim-search__color_green:after {
    background-color: green
}

.manheim-search__color_black:after {
    background-color: #000
}

.manheim-search__state {
    width: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #ccc;
    margin: auto
}

.manheim-search__cr {
    background-color: #6ed904;
    color: #fff
}

.manheim-search__state span {
    width: 100%;
    text-align: center
}

.reviews {
    margin-top: 70px;
    margin-bottom: 70px
}

.reviewsclients {
    margin-top: 70px;
    margin-bottom: 70px
}

.reviewsclients-slider {
    margin-top: 50px
}

.reviewsclients-slider-item {
    max-width: 875px;
    margin: auto
}

.reviewsclients__text:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../img/icons/quotes.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 30px;
    height: 30px
}

.reviewsclients__text:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    background-image: url(../img/icons/quotes.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 30px;
    height: 30px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.reviewsclients__text {
    position: relative;
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    padding: 50px 0
}

.reviewsclients__desc {
    margin: 30px 0 40px;
    text-align: center
}

.reviewsclients .slick-prev {
    left: 0;
    background-image: url(../img/icons/prev.png)
}

.reviewsclients .slick-next {
    right: 0;
    background-image: url(../img/icons/next.png)
}

.reviewsclients .slick-next, .reviewsclients .slick-prev {
    text-indent: -10000px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: center;
    background-size: 100%;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    width: 23px;
    height: 43px;
    z-index: 1
}

.news-inner {
    margin-top: 70px;
    margin-bottom: 70px
}

.news-inner-grid {
    gap: 20px
}

.news-inner__img {
    display: block;
    overflow: hidden;
    height: 200px
}

.news-inner__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.news-inner__link:hover .news-inner__img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.news-inner__link:hover .news-inner__desc {
    color: var(--primary)
}

.news-inner__date {
    display: block;
    font-size: 12px;
    line-height: 14px;
    color: #6f6f6e;
    text-transform: uppercase;
    margin-top: 15px
}

.news-inner__desc {
    display: block;
    color: #000;
    margin-top: 10px;
    font-weight: 700;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.news-inner-content {
    max-width: 900px;
    margin: auto
}

.news-inner__title {
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    color: #000
}

.news-inner__share {
    text-align: right
}

.news-inner__share-link {
    position: relative;
    transition: color .2s ease-in;
    padding-left: 20px
}

.news-inner__share-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background-image: url(../img/icons/share-news.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat
}

.news-inner__share-link:hover {
    color: var(--primary)
}

.news-inner__pic {
    max-height: 670px;
    margin-top: 30px
}

.news-inner__pic img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.news-inner__text {
    margin-top: 30px
}

.news-inner__text p {
    margin-bottom: 20px
}

.slider-news-inner {
    max-width: 780px;
    margin: auto;
    padding-bottom: 30px
}

.slider-news-inner__img {
    height: 100%;
    max-height: 400px
}

.slider-news-inner__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.slider-news-inner .slick-next, .slider-news-inner .slick-prev {
    text-indent: -10000px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: -15px;
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: center;
    background-size: 100%;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    width: 18px;
    height: 38px;
    z-index: 1
}

.slider-news-inner .slick-prev {
    left: -60px;
    background-image: url(../img/icons/prev.png)
}

.slider-news-inner .slick-next {
    right: -60px;
    background-image: url(../img/icons/next.png)
}

.slider-news-inner .slick-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.slider-news-inner .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    outline: 0;
    border-radius: 50%;
    background-color: #868789;
    margin: 0 5px
}

.slider-news-inner .slick-dots li.slick-active button {
    background-color: var(--primary)
}

.news-inner__video {
    text-align: center;
    margin-top: 30px
}

.news-inner__video iframe {
    width: 100%;
    height: 500px
}

.news-inner__bottom {
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    margin-top: 40px
}

.bottom-news-inner__link {
    color: var(--primary)
}

.bottom-news-inner__link:hover {
    text-decoration: underline
}

.faq {
    margin-top: 70px;
    margin-bottom: 70px
}

.faq-tabs {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 30px 1fr;
    grid-template-columns: auto 1fr;
    gap: 30px
}

.faq-nav {
    max-width: 380px;
    background-color: #f8f4f4;
    border-radius: 5px;
    padding: 20px
}

.faq-nav__item {
    margin-bottom: 20px;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.faq-nav__item:before {
    content: "• ";
    color: var(--primary)
}

.faq-nav__item:last-child {
    margin-bottom: 0
}

.faq-nav__item:hover {
    color: var(--primary)
}

.faq-nav__item.active {
    color: var(--primary)
}

.faq-tab__title {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.3
}

.faq-tab__desc {
    line-height: 1.8
}

.morecontent span {
    display: none
}

.morelink {
    display: block
}

.autotuning {
    margin-top: 70px
}

.autotuning__box {
    position: relative;
    margin: 50px auto 0;
    max-width: 1366px;
    width: 100%
}

.autotuning__img {
    position: relative
}

.autotuning__img:after {
    position: absolute;
    content: '';
    width: 650px;
    height: 139px;
    border-top: 1px solid var(--primary);
    bottom: 55px;
    right: -191px;
    background: #fff;
    -webkit-transform: rotate(-18.4deg);
    transform: rotate(-18.4deg)
}

.autotuning__img:before {
    position: absolute;
    content: '';
    width: 80%;
    height: 1px;
    background: var(--primary);
    left: 0;
    bottom: 87px
}

.autotuning__img img {
    margin: 0 auto;
    display: block;
    width: 100%
}

.autotuning__item {
    position: absolute
}

.autotuning__item:nth-child(2) {
    bottom: 200px;
    left: 276px
}

.autotuning__item:nth-child(3) {
    bottom: 336px;
    left: 454px
}

.autotuning__item:nth-child(4) {
    top: 120px;
    left: 533px
}

.autotuning__item:nth-child(5) {
    bottom: 257px;
    left: 564px
}

.autotuning__item:nth-child(6) {
    left: 665px;
    bottom: 206px
}

.autotuning__item:nth-child(7) {
    left: 758px;
    bottom: 163px
}

.autotuning__item:nth-child(8) {
    left: 683px;
    bottom: 363px
}

.autotuning__item:nth-child(9) {
    left: 683px;
    top: 20px
}

.autotuning__item:nth-child(10) {
    right: 300px;
    bottom: 365px
}

.autotuning__item:nth-child(11) {
    right: 171px;
    bottom: 365px
}

.autotuning__item.active span {
    opacity: 1;
    visibility: visible
}

.autotuning__item.active:before {
    background: var(--primary);
    content: '-'
}

.autotuning__item span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 32px;
    padding: 0 10px;
    font-size: 14px;
    color: #fff;
    background: var(--primary);
    margin-left: 32px;
    text-transform: uppercase;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s all;
    transition: .3s all;
    z-index: 2;
    position: relative
}

.autotuning__item:before {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    content: '+';
    width: 32px;
    height: 32px;
    border: 2px solid var(--primary);
    background-color: var(--primary);
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    -webkit-transition: .3s all;
    transition: .3s all
}

.autotuning-tabs {
    margin-top: 50px
}

.autotuning-nav {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px
}

.autotuning-content {
    margin-top: 40px
}

.autotuning-nav__item {
    position: relative;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 40px;
    height: 40px;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid var(--primary);
    color: var(--primary);
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.autotuning-nav__item.active {
    color: #fff;
    background-color: var(--primary)
}

.autotuning-nav__item:hover {
    color: #fff;
    background-color: var(--primary)
}

.autotuning-nav__item:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%
}

/*.autotuning-nav__item:nth-child(1):after {*/
/*    background-image: url(../img/car-manufacturers/09.png);*/
/*    width: 40px;*/
/*    height: 17px*/
/*}*/

/*.autotuning-nav__item:nth-child(2):after {*/
/*    background-image: url(../img/car-manufacturers/23.png);*/
/*    width: 25px;*/
/*    height: 29px*/
/*}*/

/*.autotuning-nav__item:nth-child(3):after {*/
/*    background-image: url(../img/car-manufacturers/14.png);*/
/*    width: 38px;*/
/*    height: 16px*/
/*}*/

/*.autotuning-nav__item:nth-child(4):after {*/
/*    background-image: url(../img/car-manufacturers/25.png);*/
/*    width: 32px;*/
/*    height: 23px*/
/*}*/

.tuningprojects {
    margin-top: 70px
}

.autotuningcard {
    position: relative;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    height: 215px
}

.autotuningcard__back, .autotuningcard__front {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 1s;
    transition: 1s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.autotuningcard__front .cars-item {
    cursor: default
}

.autotuningcard__back {
    background-color: #fff;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg)
}

.autotuningcard:hover .autotuningcard__front {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg)
}

.autotuningcard:hover .autotuningcard__back {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg)
}

.autotuningcard__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 31, 31, .9);
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.autotuningcard__img {
    height: 215px
}

.autotuningcard__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.autotuningcard__list {
    position: absolute;
    top: 15px;
    left: 15px
}

.autotuningcard__item {
    color: #fff;
    margin-bottom: 10px
}

.autotuningcard__item:before {
    content: "• ";
    color: var(--primary)
}

.question {
    padding: 50px 0;
    background-color: #100f0f
}

.question-form {
    max-width: 740px;
    margin: auto
}

.question-form__desc {
    font-size: 22px;
    line-height: 26px;
    color: #fff;
    margin-top: 50px;
    text-align: center
}

.question-form__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 50px
}

.question-form__input {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    color: #877777;
    border: 1px solid transparent
}

.question-form__comments {
    -ms-grid-column-span: 2;
    -ms-grid-column: span 2;
    grid-column: span 2
}

.question-form__textarea {
    width: 100%;
    height: 100%;
    padding: 10px;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    color: #877777;
    resize: none
}

.representatives {
    margin-top: 70px;
    margin-bottom: 70px
}

.representatives-tabs {
    margin-top: 40px
}

.representatives-nav {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px
}

.representatives-nav__item {
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    cursor: pointer;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 5px;
    text-align: center
}

.representatives-nav__item:hover {
    color: #fff;
    background-color: var(--primary)
}

.representatives-nav__item.active {
    color: #fff;
    background-color: var(--primary)
}

.representatives-content {
    margin-top: 40px
}

.representatives-tab__text + .representatives-tab__text {
    margin-top: 30px
}

.representatives-tab__text strong {
    display: block;
    margin-bottom: 6px
}

.representatives-tab__text p {
    margin-bottom: 3px
}

.representatives-tab__link {
    text-decoration: underline;
    color: var(--primary)
}

.profile {
    margin: 70px 0
}

.profile-form {
    max-width: 650px
}

.profile-block {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 250px 350px;
    grid-template-columns: 250px 350px;
    -ms-grid-row-align: center;
    align-items: center;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 5px
}

.profile-block + .profile-block {
    margin-top: 20px
}

.profile__title {
    font-weight: 500
}

.profile__desc {
    font-weight: 300;
    text-align: left
}

.profile__input {
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    height: 35px;
    padding: 0 10px;
    color: #8e8989
}

.profile-change {
    max-width: 120px;
    margin-top: 20px
}

.profile__btn {
    position: relative;
    display: inline-block;
    border: 1px solid #ccc;
    padding: 10px 10px 10px 38px;
    border-radius: 5px;
    font-size: 14px;
    -webkit-transition: background-color .1s ease-in;
    transition: background-color .1s ease-in;
    width: 100%;
    text-align: center
}

.profile__btn:hover {
    background-color: #eee
}

.profile__btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url(../img/icons/edit.svg);
    background-size: cover;
    background-repeat: no-repeat
}

.brands {
    margin-top: 70px;
    margin-bottom: 70px
}

.brands-content {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px
}

.brands__link img {
    width: 80px;
    height: 60px;
    object-fit: contain
}

.brands__link img {
    margin-left: 10px
}

.brands__link img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.cardproductinner {
    margin-top: 70px
}

.cardproductinner-buttons {
    grid-column: span 2;
    justify-content: center
}

.cardproductinner__title {
    background-color: var(--primary);
    color: #fff;
    text-transform: uppercase;
    padding: 10px;
    font-size: 18px;
    font-weight: 700
}

.cardproductinner-content {
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr
}

.cardproductinner-item {
    margin-bottom: 10px
}

.cardproductinner__label {
    text-transform: uppercase;
    color: #696969
}

.cardproductinner__value {
    font-weight: 700
}

.cardproductinner__desc {
    display: inline-block;
    padding: 15px;
    font-weight: 300;
    color: #696969
}

.cardproductinner-text {
    padding: 15px;
    display: flex
}

.cardproductinner-text__desc + .cardproductinner-text__desc {
    margin-left: 15px
}

.cardproductinner-issues {
    padding: 0 15px
}

.cardproductinner-issues__desc strong {
    text-transform: uppercase
}

.cardproductinner-issues__desc span {
    display: inline-block;
    background-color: var(--primary);
    padding: 2px 5px;
    font-weight: 700;
    color: #fff;
    margin-left: 5px
}

.cardproductinner-issues__content {
    margin-top: 15px
}

.cardproductinner-issues__text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-bottom: 10px
}

.cardproductinner-issues__label {
    text-transform: uppercase;
    color: #696969
}

.cardproductinner-issues__value {
    background-color: var(--primary);
    color: #fff;
    font-weight: 700;
    padding: 3px 5px;
    text-transform: uppercase;
    width: 130px
}

.cardproductinner-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 15px;
    margin-top: 30px
}

.cardproductinner-info__title {
    font-weight: 700;
    text-transform: uppercase
}

.cardproductinner-info__table {
    margin-top: 20px
}

.cardproductinner-info__row {
    display: grid;
    grid-template-columns: 1fr 100px;
    gap: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 7px
}

.cardproductinner-info__question {
    font-weight: 300;
    text-transform: uppercase
}

.cardproductinner-info__answer {
    font-weight: 500;
    text-transform: uppercase
}

.cardproductinner-equipment {
    margin-top: 30px
}

.cardproductinner-equipment-content {
    padding: 15px
}

.cardproductinner-equipment__title {
    font-weight: 700;
    font-size: 16px
}

.cardproductinner-equipment-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0 30px;
    margin-top: 20px;
    padding-left: 20px
}

.cardproductinner-equipment-list__item {
    list-style-type: disc
}

.cardproductinner-equipment-tabs {
    margin-top: 15px
}

.cardproductinner-equipment-nav {
    display: flex;
    border-bottom: 1px solid #ccc
}

.cardproductinner-equipment-nav__item {
    font-weight: 700;
    text-transform: uppercase;
    color: #d0d0d0;
    cursor: pointer;
    padding-bottom: 10px
}

.cardproductinner-equipment-nav__item.active {
    color: #000;
    border-bottom: 5px solid var(--primary)
}

.cardproductinner-equipment-nav__item + .cardproductinner-equipment-nav__item {
    margin-left: 20px
}

.cardproductinner-equipment-tabs-content {
    padding: 20px
}

.cardproductinner-equipment__header {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px
}

.cardproductinner-equipment__desc {
    display: inline-block;
    font-weight: 300;
    color: #696969;
    margin-bottom: 15px
}

.cardproductinner-equipment__container {
    margin-bottom: 20px
}

.cardproductinner-equipment__headline {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px
}

.cardproductinner-equipment-list-1 {
    grid-template-columns: 1fr
}

.cardproductinner-equipment-list-2 {
    grid-template-columns: 1fr 1fr
}

.cardproductinner-equipment-list__item {
    margin-bottom: 5px
}

.cardproductinner-equipment__container-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr
}

.inner-text__title {
    font-size: 18px;
    font-weight: 500;
    margin: 20px 0
}

.inner-text__underline {
    font-size: 18px;
    font-weight: 500;
    margin: 20px 0;
    text-decoration: underline
}

.inner-text__desc {
    margin-bottom: 15px
}

.inner-text__list {
    margin-bottom: 20px
}

.inner-text__item::before {
    content: "• ";
    color: var(--primary)
}

.inner-text__item {
    margin-bottom: 15px
}

.coparttext {
    margin-top: 70px;
    margin-bottom: 70px
}

.usedcartext {
    margin-top: 70px;
    margin-bottom: 70px
}

.tuningsuvstext {
    margin-top: 70px;
    margin-bottom: 70px
}

.houseonwheelstext {
    margin-top: 70px;
    margin-bottom: 70px
}

.deliverytext {
    margin-top: 70px;
    margin-bottom: 70px
}

.hometext {
    margin-top: 70px;
    margin-bottom: 70px
}

.specialofferstext {
    margin-top: 70px;
    margin-bottom: 70px
}

.manheimauctiontext {
    margin-top: 70px;
    margin-bottom: 70px
}

.mototechnicstext {
    margin-top: 70px;
    margin-bottom: 70px
}

.newcarstext {
    margin-top: 70px;
    margin-bottom: 70px
}

.specialequipmenttext {
    margin-top: 70px;
    margin-bottom: 70px
}

.watertransporttext {
    margin-top: 70px;
    margin-bottom: 70px
}

.inner-cardtext {
    margin-top: 70px;
    margin-bottom: 70px
}

.maintext {
    margin-top: 70px;
    margin-bottom: 70px
}

.maintext-content {
    margin-top: 50px
}

.inner-cardtext__title {
    font-size: 30px;
    line-height: 35px;
    font-weight: 900;
    text-transform: uppercase
}

.inner-cardtext__divider {
    margin: 10px 0;
    border: 3px solid var(--primary);
    width: 40px
}

.inner-text__italic {
    display: inline-block;
    font-size: 16px;
    margin: 0 0 20px 0
}

.inner-text__link {
    color: var(--primary)
}

.inner-text__link:hover {
    text-decoration: underline
}

.selectric {
    border: 1px solid #877777;
    background-color: #fff
}

.selectric:hover {
    border-color: #877777
}

.selectric-focus .selectric {
    border-color: #877777
}

.selectric-open .selectric {
    border-color: var(--primary)
}

.selectric-items {
    background: #fff;
    border: 1px solid var(--primary)
}

.selectric-items li:hover {
    background: var(--primary);
    color: #fff
}

.selectric-items li.highlighted {
    background: var(--primary);
    color: #fff
}

.selectric-items li.selected {
    background: var(--primary);
    color: #fff
}

.sitemap {
    margin-top: 70px;
    margin-bottom: 70px
}

.sitemap-nav__list li {
    margin: 0;
    padding: 0 7px 5px;
    line-height: 20px;
    color: #369;
    font-weight: 700;
    border-left: 1px solid #646464
}

.sitemap-nav__list li::before {
    position: relative;
    top: -.3em;
    height: 1em;
    width: 12px;
    color: #fff;
    border-bottom: 1px solid #646464;
    content: "";
    display: inline-block;
    left: -7px
}

.sitemap-nav__link {
    font-size: 16px;
    color: var(--primary)
}

.sitemap-nav__link:hover {
    text-decoration: underline
}

.sitemap-nav__list ul {
    margin-left: 10px
}

.sitemap-nav__trigger {
    display: inline-block;
    cursor: pointer;
    font-size: 18px;
    color: var(--primary);
    border: 2px solid var(--primary);
    width: 30px;
    height: 30px;
    line-height: 23px;
    text-align: center;
    margin-left: 5px
}

.sitemap-nav__trigger::before {
    content: '+'
}

.sitemap-nav__trigger.active::before {
    content: '-'
}

.sitemap-nav__content {
    display: none
}

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

.footer-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 200px 30px 170px 30px 145px 30px 130px 30px 160px 30px 1fr;
    grid-template-columns: 200px 170px 145px 130px 160px 1fr;
    gap: 30px
}

.footer-logo__link img {
    width: 195px;
    height: 84px
}

.footer-button {
    margin-top: 25px
}

.footer-button__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 40px;
    border: 2px solid #fff;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    color: #fff;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.footer-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 25px
}

.footer-icons__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 2px solid #8c8c8c;
    width: 40px;
    height: 40px
}

.footer-icons__link:hover img {
    -webkit-filter: contrast(100%);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" intercept="0" /><feFuncG type="linear" slope="1" intercept="0" /><feFuncB type="linear" slope="1" intercept="0" /></feComponentTransfer></filter></svg>#filter');
    filter: contrast(100%)
}

.footer-icons__link img {
    width: 20px;
    height: 20px;
    -webkit-filter: contrast(0);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.01" intercept="0.495" /><feFuncG type="linear" slope="0.01" intercept="0.495" /><feFuncB type="linear" slope="0.01" intercept="0.495" /></feComponentTransfer></filter></svg>#filter');
    filter: contrast(0);
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.footer__title {
    display: block;
    margin-bottom: 15px;
    font-weight: 700;
    color: #fff
}

.footer-list {
    margin-bottom: 25px
}

.footer__text {
    display: inline-block;
    color: #fff;
    margin-bottom: 5px;
    -webkit-transition: all .1s ease;
    transition: all .1s ease
}

.footer-messengers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.footer-messengers__link {
    width: 30px;
    height: 26px;
    margin-right: 10px
}

.footer-messengers__link img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transition: all .1s ease;
    transition: all .1s ease
}

.footer-messengers__link:hover img {
    -webkit-transform: scale(.9);
    transform: scale(.9)
}

.footer-item:nth-child(1) .footer-messengers {
    display: none
}

.footer-body-phone .header-body-dropdown__list {
    position: absolute;
    width: 100%;
    top: 41px;
    left: 0
}

.for-sng .footer-body-phone .header-body-dropdown__list {
    top: 67px
}

.footer-body-phone {
    padding: 0 0 0 30px
}

.for-sng .footer-body-phone {
    padding: 0 0 0 15px
}

.footer-body-phone:after {
    width: 22px;
    height: 22px
}

.footer-body-phone.active .footer-body-arrow.arrow {
    top: -40%;
    -webkit-transform: rotateX(160deg);
    transform: rotateX(160deg)
}

.for-sng .footer-body-phone.active .footer-body-arrow.arrow {
    top: 10%
}

.footer-item .header-body-search {
    margin-top: 25px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.footer-item .header-body-search__input {
    width: 100%;
    height: 35px;
    font-size: 14px
}

.footer-lang {
    width: 100%;
    margin: 25px auto 0;
    border: 1px solid #fff;
    height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 15px
}

.footer-lang .header-body-dropdown__list {
    position: absolute;
    top: 41px;
    left: 0;
    width: 100%
}

.footer-item .footer-lang .header-body-dropdown__item {
    padding: 0 15px
}

.footer-body-phone.active .header-body-dropdown__list {
    border: 1px solid #fff
}

.footer-item .header-body-dropdown__item {
    padding: 0 0 0 28px;
    width: 100%
}

.for-sng .footer-item .header-body-dropdown__item {
    padding: 0 0 0 31px
}

.footer-item .header-body-dropdown__link.arrow-down:after {
    right: 15px
}

.footer-item .header-body-dropdown.active .arrow-down:after {
    top: 30%
}

.footer-body-arrow.arrow {
    right: -8px
}

.footer-email {
    margin-top: 25px;
    text-align: center
}

.footer-email__link img {
    width: 20px;
    height: 20px
}

.footer-email__link span {
    display: inline-block;
    color: #fff;
    margin-left: 5px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.copyright {
    text-align: center;
    margin-top: 50px;
    color: #fff;
    border-top: 1px solid #fff;
    padding-top: 20px
}

.error-msg.g-recaptcha-response {
    padding-top: 0 !important
}
