*,
*::after,
*::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none !important;
}
html {
    overflow-x: hidden;
}
body {
    /*overflow-x: hidden;*/
}
body::after {
    content: "";
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0);
    pointer-events: none;
    z-index: 1;
    transition: all .4s ease;
}

.loader {
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    position: fixed;
    z-index: 9999;
}
.loader__inner{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
}
.loader__media {
    display: block;
    width: 625px;
    height: auto;
    margin-bottom: 10px;
}
.loader__media img {
    display: block;
    width: 100%;
    height: auto;
}
.loader__logo {
    display: block;
    width: 327px;
    height: auto;
    margin-bottom: 30px;
}
.loader__logo img {
    display: block;
    width: 100%;
    height: auto;
}
.loader__spin {
    display: block;
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #a9a9a9;
    animation: loader-spin 2s linear infinite;
}
.loader__spin:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #000;
    animation: loader-spin 3s linear infinite;
}
.loader__spin:after {
    content: "";
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #a9a9a9;
    animation: loader-spin 1.5s linear infinite;
}
@keyframes loader-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.wrapper {
    width: 100%;
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    background-color: #fff;
    position: relative;
}

.top-line {
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #000;
}
.top-line__container {
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}
.top-line__address {
    color: #C5C5C5;
    font-size: 12px;
    line-height: 16px;
    font-family: "OnestRegular";
}
.top-line__tel {
    color: #C5C5C5;
    font-size: 12px;
    line-height: 16px;
    font-family: "OnestRegular";
    text-decoration: none;
    margin-left: 34px;
    margin-right: 34px;
    transition: all .3s ease;
}
.top-line__tel:hover {
    color: #fff;
}
.top-line__social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.top-line__social-item {
    display: block;
    width: 18px;
    height: auto;
    text-decoration: none;
    opacity: .77;
    transition: all .3s ease;
}
.top-line__social-item:hover {
    opacity: 1;
}
.top-line__social-item + .top-line__social-item {
    margin-left: 16px;
}
.top-line__social-item img {
    display: block;
    width: 100%;
    height: auto;
}

.header__mob {
    width: 570px;
    margin-left: auto;
    margin-right: auto;
    display: none;
    justify-content: space-between;
    align-items: center;
}
.header__mob-logo {
    display: block;
    width: 91px;
    height: auto;
}
.header__mob-logo img {
    display: block;
    width: 100%;
    height: auto;
}
.header__mob-btn {
    display: flex;
    flex-direction: column;
    width: 25px;
    height: 32px;
    cursor: pointer;
    justify-content: center;
    margin-top: -7px;
    position: relative;
    z-index: 9;
}
.header__mob-btn-head {
    display: block;
    width: 10px;
    height: 7px;
    background-image: url(../img/mob-nav.svg);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    margin-bottom: 11px;
    transition: all .3s ease;
}
.header__mob-btn.open .header__mob-btn-head {
    transform: translateX(-8px);
}
.header__mob-btn-line {
    display: block;
    width: 14px;
    height: 1px;
    background-color: #000;
    position: relative;
    transition: all .3s ease;
}
.header__mob-btn.open .header__mob-btn-line {
    transform: translateX(-2px);
}
.header__mob-btn-line::after {
    content: "";
    display: block;
    width: 12px;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: -7px;
    transition: all .3s ease;
}
.header__mob-btn.open .header__mob-btn-line::after {
    transform: translateX(-3px);
}
.header__mob-btn-line::before {
    content: "";
    display: block;
    width: 13px;
    height: 1px;
    background-color: #000;
    position: absolute;
    bottom: -7px;
    transition: all .3s ease;
}
.header__mob-btn.open .header__mob-btn-line::before {
    transform: translateX(2px);
}
.header {
    width: 100%;
    position: sticky;
    left: 0;
    top: -1px;
    padding-top: 9px;
    padding-bottom: 9px;
    background-color: #fff;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.12);
    z-index: 10;
}
.header__container {
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.header__logo {
    display: block;
    width: 117px;
    height: auto;
    text-decoration: none;
}
.header__logo img {
    display: block;
    width: 100%;
    height: auto;
}
.header__wrap-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
}
.header__nav {
    list-style: none;
    display: flex;
    align-items: center;
}
.header__nav li {
    margin-left: 15px;
    margin-right: 15px;
}
.header__nav li a {
    color: #555;
    font-size: 14px;
    line-height: 18px;
    font-family: "OnestRegular";
    text-decoration: none;
    text-transform: uppercase;
    transition: all .3s ease;
}
.header__nav li a:hover {
    color: #000;
}
.header__nav li.active a {
    font-family: "OnestBold";
}
.header__lang {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 45px;
    margin-right: 60px;
}
.header__lang-item {
    color: #555;
    font-size: 14px;
    line-height: 18px;
    font-family: "OnestRegular";
    text-decoration: none;
    text-transform: uppercase;
    transition: all .3s ease;
}
.header__lang-item:hover {
    color: #000;
}
.header__lang-item.active {
    color: #000;
    font-family: "OnestBold";
}
.header__lang-item:first-child::after {
    content: "/";
    font-size: 14px;
    line-height: 18px;
    font-family: "OnestRegular";
    margin-left: 3px;
    margin-right: 3px;
}
.header__btn {
    color: #000;
    font-family: "BebasNeue";
    font-size: 18px;
    line-height: 18px;
    text-decoration: none;
    width: 166px;
    height: 38px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    border: 1px solid #000;
    transition: all .3s ease;
}
.header__btn:hover {
    color: #fff;
    background-color: #000;
}

.main {
    flex-grow: 1;
    position: relative;
}
.main__decor {
    width: 30px;
    height: calc(100% - 470px);
    background-image: url(../img/line.png);
    background-position: center;
    background-repeat: repeat-y;
    position: absolute;
    top: 200px;
    right: 20px;
    z-index: 9;
}
.main__decor::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    right: 8px;
    top: 0;
    z-index: 2;
}
.main__decor::after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    right: 8px;
    bottom: 0;
    z-index: 2;
}
.main__decor img {
    display: block;
    width: 30px;
    height: 53px;
    position: sticky;
    top: 290px;
    right: 0;
    z-index: 3;
    transform: translateY(0px);
}

.page-title {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
}
.page-title h1 {
    color: #000;
    font-size: 98px;
    line-height: 75px;
    font-family: "BebasNeue";
    font-weight: normal;
    text-transform: uppercase;
}
.page-title p {
    width: 756px;
    color: #151515;
    font-size: 20px;
    line-height: 32px;
    font-family: "OnestRegular";
}

.home-services {
    width: 100%;
    margin-bottom: 90px;
}
.home-services__head {
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.home-services__title {
    color: #151515;
    font-size: 32px;
    line-height: 40px;
    font-family: "BebasNeue";
    text-transform: uppercase;
    letter-spacing: 3px;
}
.home-services__more {
    color: #151515;
    font-size: 22px;
    line-height: 22px;
    font-family: "BebasNeue";
    text-transform: uppercase;
    min-width: 170px;
    height: 42px;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border: 1px solid #151515;
    border-radius: 7px;
    transition: all .3s ease;
}
.home-services__more:hover {
    background-color: #151515;
    color: #fff;
}


.services-owl {
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
}
.services-owl .owl-stage-outer {
    overflow: inherit;
}
.services-owl__item {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.services-owl .owl-stage .owl-item:nth-child(even) .services-owl__item {
    flex-direction: column-reverse;
}
.services-owl__item-media {
    display: block;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    margin-bottom: 35px;
}
.services-owl .owl-stage .owl-item:nth-child(even) .services-owl__item-media {
    margin-bottom: 0;
}
.services-owl__item-media img {
    display: block;
    width: 100%;
    height: auto;
    transition: all .5s ease;
}
.services-owl__item:hover .services-owl__item-media img {
    transform: scale(1.15);
}
.services-owl__item-desc {
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
}
.services-owl .owl-stage .owl-item:nth-child(even) .services-owl__item-desc {
    margin-bottom: 35px;
}
.services-owl__item-title {
    color: #151515;
    font-size: 24px;
    line-height: 30px;
    font-family: "OnestBold";
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: table;
}
.services-owl__item-desc p {
    color: #151515;
    font-size: 16px;
    line-height: 26px;
    font-family: "OnestRegular";
    margin-bottom: 15px;
}
.services-owl__item-more {
    display: block;
    width: 20px;
    height: auto;
    transition: all .3s ease;
}
.services-owl__item-more:hover {
    opacity: 0.7;
}
.services-owl__item-more img {
    display: block;
    width: 100%;
    height: auto;
}
.services-owl .owl-nav {
    margin-top: 45px;
}
.services-owl .owl-prev {
    display: block;
    width: 32px;
    height: 32px;
    margin-left: 15px !important;
    margin-right: 15px !important;
    background-color: transparent !important;
    background-image: url(../img/left.svg) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
}
.services-owl .owl-prev span {
    display: none;
}
.services-owl .owl-next {
    display: block;
    width: 32px;
    height: 32px;
    margin-left: 15px !important;
    margin-right: 15px !important;
    background-color: transparent !important;
    background-image: url(../img/right.svg) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
}
.services-owl .owl-next span {
    display: none;
}

.home-order {
    position: relative;
    margin-bottom: 50px;
}
.home-order__container {
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.home-order__title {
    color: #000;
    font-size: 190px;
    line-height: 100px;
    font-family: "BebasNeue";
    font-weight: normal;
    align-self: flex-end;
    text-align: right;
}
.home-order__title span {
    color: #DCDCDC;
    font-size: 120px;
    line-height: 150px;
    text-shadow: 4px 0px 0px #EFEFEF;
}
.home-order__wrap-tabs {
    width: 615px;
    margin-top: -100px;
}
.home-order__tabs {
    width: 100%;
    display: flex;
}
.home-order__tab {
    color: #000;
    font-size: 20px;
    line-height: 20px;
    font-family: "BebasNeue";
    text-transform: uppercase;
    padding: 12px 15px;
    margin-bottom: -1px;
    border-radius: 24px 24px 0 0;
    border: 1px solid #fff;
    border-bottom: 1px solid #000;
    opacity: 0.6;
    transition: all .3s ease;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    cursor: pointer;
    margin-right: 15px;
    position: relative;
    z-index: 2;
}
.home-order__tab.active {
    border-color: #000;
    border-bottom: 1px solid #fff;
    opacity: 1;
}
.home-order__tab img {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-right: 12px;
}
.home-order__content {
    width: 100%;
    border: 1px solid #000;
    border-radius: 0 24px 24px 24px;
    backdrop-filter: blur(2px);
}
.home-order__content-item {
    display: none;
    padding: 30px;
}
.home-order__content-item:nth-child(1) {
    display: block;
}
.home-order__form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.home-order__form-item {
    width: calc(50% - 12px);
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}
.home-order__form-item label {
    color: #151515;
    font-size: 12px;
    line-height: 15px;
    font-family: "OnestBold";
    margin-bottom: 6px;
}
.home-order__form-item input {
    width: 100%;
    height: 42px;
    background-color: transparent;
    border-radius: 6px;
    border: 1px solid #151515;
    padding-left: 15px;
    padding-right: 15px;
    color: #151515;
    font-size: 13px;
    font-family: "OnestRegular";
}
.home-order__form-item button {
    width: 100%;
    height: 42px;
    margin-top: 21px;
    border: 1px solid #000;
    background-color: #000;
    border-radius: 6px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-size: 22px;
    line-height: 22px;
    font-family: "BebasNeue";
    text-transform: uppercase;
    transition: all .3s ease;
}
.home-order__form-item button:hover {
    background-color: transparent;
    color: #000;
}
.home-order__bg {
    display: block;
    position: absolute;
    top: 0;
    right: 5%;
    transform: rotateZ(10deg);
    width: auto;
    height: 100%;
    width: auto;
}
.home-order__bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.home-order__bg-dot1 {
    display: block;
    width: 14px;
    height: 14px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    /*top: 78.4%;
    left: 51%;*/
	top: 83.5%;
    left: 59.6%;
	/*background-color: red;*/
    animation: pulse-black 8s infinite;
}
@keyframes pulse-black {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }
    7% {
        transform: scale(0.8);
  }
    20% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}
.home-order__bg-dot2 {
    display: block;
    width: 14px;
    height: 14px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    /*top: 72.2%;
    left: 43.2%;*/
	top: 48.2%;
    left: 66.8%;
	/*background-color: red;*/
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(1);
    animation: pulse-black2 8s infinite;
}
@keyframes pulse-black2 {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
    19% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
    20% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }
    27% {
        transform: scale(0.8);
  }
    40% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}
.home-order__bg-dot3 {
    display: block;
    width: 14px;
    height: 14px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    /*top: 64.5%;
    left: 70%;*/
	top: 51.1%;
    left: 91.5%;
	/*background-color: red;*/
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(1);
    animation: pulse-black3 8s infinite;
}
@keyframes pulse-black3 {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
    39% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
    40% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }
    47% {
        transform: scale(0.8);
  }
    60% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}
.home-order__bg-dot4 {
    display: block;
    width: 14px;
    height: 14px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    /*top: 78.9%;
    left: 66%;*/
	top: 68.9%;
    left: 79%;
	/*background-color: red;*/
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(1);
    animation: pulse-black4 8s infinite;
}
@keyframes pulse-black4 {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
    49% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
    60% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }
    67% {
        transform: scale(0.8);
  }
    80% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}
.home-order__bg-dot5 {
    display: block;
    width: 14px;
    height: 14px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    /*top: 62.9%;
    left: 56.4%;*/
	top: 58.9%;
    left: 55.4%;
	/*background-color: red;*/
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(1);
    animation: pulse-black5 8s infinite;
}
@keyframes pulse-black5 {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
    69% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
    80% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }
    87% {
        transform: scale(0.8);
  }
    99% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.home-order__bg-dot6 {
    display: block;
    width: 14px;
    height: 14px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    top: 29.9%;
    left: 89.4%;
	/*background-color: red;*/
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(1);
    animation: pulse-black6 8s infinite;
}

@keyframes pulse-black6 {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
    69% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
    80% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }
    87% {
        transform: scale(0.8);
  }
    99% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.custom-select {
    position: relative;
}
.custom-select select {
    display: none;
}
.select-selected {
    background-color: transparent;
    width: 100%;
    height: 42px;
    border: 1px solid #000;
    border-radius: 6px;
}
.select-selected:after {
    position: absolute;
    content: "";
    top: 13px;
    right: 15px;
    width: 16px;
    height: 16px;
    background-image: url(../img/select-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all .3s ease-in-out;
}
.select-selected.select-arrow-active:after {
    transform: rotateZ(180deg);
}
.select-items div, .select-selected {
    color: #000;
    cursor: pointer;
    font-size: 13px;
    line-height: 40px;
    font-family: "OnestRegular";
    padding-left: 15px;
    padding-right: 35px;
    transition: all .3s ease-in-out;
}
.select-items {
    width: 100%;
    position: absolute;
    background-color: #fff;
    top: 100%;
    white-space: nowrap;
    text-align: left;
    left: 0;
    z-index: 99;
    padding-right: 15px;
    padding-left: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    box-shadow: 1px 1px 6px 0px rgb(0, 0, 0, 0.12);
    transform: translateY(0);
    opacity: 1;
    border-radius: 8px;
    transition: all .3s ease-in-out;
}
.select-items div {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
    line-height: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
}
.select-hide {
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
}
.select-items div:hover {
    opacity: 0.6;
}

.home-cars {
    width: 100%;
    margin-bottom: 90px;
}
.home-cars__head {
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.home-cars__title {
    color: #151515;
    font-size: 32px;
    line-height: 40px;
    font-family: "BebasNeue";
    text-transform: uppercase;
    letter-spacing: 3px;
}
.home-cars__more {
    color: #151515;
    font-size: 22px;
    line-height: 22px;
    font-family: "BebasNeue";
    text-transform: uppercase;
    min-width: 170px;
    height: 42px;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border: 1px solid #151515;
    border-radius: 7px;
    transition: all .3s ease;
}
.home-cars__more:hover {
    background-color: #151515;
    color: #fff;
}

.first-screen {
    margin-bottom: 80px;
    position: relative;
}
.home-owl {
    background: linear-gradient(180deg, #F5F5F5 0%, #FFFFFF 100%);
}
.home-owl__item {
    width: 100%;
    height: auto;
    /*min-height: calc(100vh - 90px);*/
    min-height: calc(100vh - 120px);
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.home-owl__item-media {
    width: 490px;
    height: 490px;
    display: block;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0px 0px 13px rgba(107, 107, 107, 0.79);
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.1s ease;
}
.home-owl .owl-item.active .home-owl__item-media {
    opacity: 1;
    /*transform: scale(1);*/
    transform: scale(1.1);
    transition: all 1.5s ease;
    transition-delay: 0.2s;
}
.home-owl__item-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .8s ease;
}
.home-owl__item-media:hover img {
    transform: scale(1.2);
}
.home-owl__item-desc {
    display: block;
    position: relative;
    z-index: 2;
    margin-right: -40px;
    opacity: 0;
    transform: translateX(-5%);
    transition: all 0.1s ease;
}
.home-owl .owl-item.active .home-owl__item-desc {
    opacity: 1;
    transform: translateX(0);
    transition: all 1.2s ease;
    transition-delay: 0.6s;
}
.home-owl__item-desc p {
    color: #000;
    font-size: 160px;
    line-height: 130px;
    font-family: "BebasNeue";
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
}
.home-owl__item-desc p span {
    color: #DCDCDC;
    font-size: 130px;
    line-height: 100px;
}
.home-owl__services {
    background-color: rgba(255, 255, 255, 0.87);
    padding: 40px 30px;
    border-radius: 24px;
    position: relative;
    z-index: 3;
    margin-left: -25px;
    backdrop-filter: blur(2px);
    border: 1px solid #000;
    opacity: 0;
    transform: translateX(5%);
    transition: all 0.1s ease;
}
.home-owl .owl-item.active .home-owl__services {
    opacity: 1;
    transform: translateX(0);
    transition: all 1.2s ease;
    transition-delay: 0.6s;
}
.home-owl__services-item {
    color: #555;
    font-size: 24px;
    line-height: 30px;
    font-family: "BebasNeue";
    text-transform: uppercase;
    padding-left: 70px;
    position: relative;
}
.home-owl__services-item + .home-owl__services-item {
    margin-top: 50px;
}
.home-owl__services-item img {
    display: block !important;
    width: 50px !important;
    height: 50px !important;
    object-fit: contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.home-owl .owl-nav {
    /*margin-top: -60px;*/
    margin-top: -20px;
    position: relative;
    z-index: 2;
}
.home-owl .owl-prev {
    display: block;
    width: 32px;
    height: 32px;
    margin-left: 50px !important;
    margin-right: 50px !important;
    background-color: transparent !important;
    background-image: url(../img/left.svg) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
}
.home-owl .owl-prev span {
    display: none;
}
.home-owl .owl-next {
    display: block;
    width: 32px;
    height: 32px;
    margin-left: 50px !important;
    margin-right: 50px !important;
    background-color: transparent !important;
    background-image: url(../img/right.svg) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
}
.home-owl .owl-next span {
    display: none;
}

#counter {
    color: #000;
    font-size: 16px;
    line-height: 20px;
    font-family: "OnestRegular";
    position: absolute;
    bottom: 0px;
    left: 50%;
    display: flex;
    align-items: center;
    transform: translateX(-50%);
    z-index: 2;
}
#counter span {
    color: #E6E6E6;
    font-size: 33px;
    line-height: 42px;
    margin-top: -7px;
}

.cars-owl {
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
}
.cars-owl .owl-stage-outer {
    overflow: inherit;
    z-index: 2;
}
.cars-owl__item {
    display: block;
    width: 100%;
    position: relative;
}
.cars-owl__item-media {
    display: block;
    width: 100%;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid #fff;
    border-bottom: none;
    transition: all .5s ease;
}
.cars-owl__item:hover .cars-owl__item-media {
    border-color: #151515;
}
.cars-owl__item-media img {
    display: block;
    width: 100%;
    height: auto;
    transition: all .5s ease;
}
.cars-owl__item:hover .cars-owl__item-media img {
    transform: scale(1.15);
}
.cars-owl__item-desc {
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding-top: 20px;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    position: relative;
    transition: all .5s ease;
}
.cars-owl__item:hover .cars-owl__item-desc {
    border-color: #151515;
}
.cars-owl__item-desc-price {
    color: #151515;
    font-size: 28px;
    line-height: 36px;
    font-family: "OnestLight";
    position: absolute;
    top: 60px;
    right: 30px;
    transition: all .3s ease;
}
.cars-owl__item:hover .cars-owl__item-desc-price {
    opacity: 0;
}
.cars-owl__item-brand {
    display: block;
    width: auto;
    height: 50px;
    margin-bottom: 20px;
}
.cars-owl__item-brand img {
    display: block;
    width: auto !important;
    height: 100% !important;
}
.cars-owl__item-title {
    color: #151515;
    font-size: 18px;
    line-height: 23px;
    font-family: "OnestBold";
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: table;
}
.cars-owl__item-desc p {
    width: 320px;
    color: #151515;
    font-size: 16px;
    line-height: 26px;
    font-family: "OnestRegular";
    margin-bottom: 15px;
}
.cars-owl__grid-item-more {
    width: calc(100% + 2px);
    height: auto;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 30px;
    background-color: #151515;
    position: absolute;
    left: -1px;
    bottom: 0;
    transform: translateY(0);
    opacity: 0;
    display: flex;
    flex-wrap: wrap;
    transition: all .5s ease;
    z-index: -1;
}
.cars-owl__item:hover .cars-owl__grid-item-more {
    transform: translateY(100%);
    opacity: 1;
}
.cars-owl__grid-item-more-text {
    width: calc(100% - 180px);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: all .8s ease;
}
.cars-owl__item:hover .cars-owl__grid-item-more-text {
    opacity: 1;
}
.cars-owl__grid-item-more-text p {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    font-family: "OnestRegular";
    margin-bottom: 15px;
    width: 100%;
}
.cars-owl__grid-item-more-text p span {
    font-size: 28px;
    line-height: 36px;
    font-family: "OnestLight";
    width: 155px;
    display: inline-block;
}
.cars-owl__grid-item-more-details {
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cars-owl__grid-item-more-details-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 113px;
    height: 34px;
    border: 1px solid #fff;
    border-radius: 7px;
    margin-bottom: 30px;
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: "BebasNeue";
    transition: all .3s ease;
}
.cars-owl__grid-item-more-details-btn:hover {
    opacity: 0.6;
}
.cars-owl__grid-item-more-details-link {
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 4px;
    font-family: "OnestRegular";
    text-decoration: none;
    text-transform: uppercase;
    transition: all .3s ease;
}
.cars-owl__grid-item-more-details-link:hover {
    opacity: 0.6;
}
.cars-owl .owl-nav {
    margin-top: 30px;
}
.cars-owl .owl-prev {
    display: block;
    width: 32px;
    height: 32px;
    margin-left: 15px !important;
    margin-right: 15px !important;
    background-color: transparent !important;
    background-image: url(../img/left.svg) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
}
.cars-owl .owl-prev span {
    display: none;
}
.cars-owl .owl-next {
    display: block;
    width: 32px;
    height: 32px;
    margin-left: 15px !important;
    margin-right: 15px !important;
    background-color: transparent !important;
    background-image: url(../img/right.svg) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
}
.cars-owl .owl-next span {
    display: none;
}

.faq {
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 140px;
}
.faq__title {
    color: #151515;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 60px;
    font-family: "BebasNeue";
    text-transform: uppercase;
    letter-spacing: 3px;
}
.faq__grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.faq__tabs {
    width: 750px;
    counter-reset: tab-num;
}
.faq__tab {
    width: 100%;
    margin-bottom: 35px;
    counter-increment: tab-num;
}
.faq__tab-title {
    color: #151515;
    font-size: 18px;
    line-height: 23px;
    font-family: "OnestBlack";
    text-transform: uppercase;
    position: relative;
    padding-left: 40px;
    cursor: pointer;
}
.faq__tab-title::before {
    content: counter(tab-num) "";
    color: #151515;
	position: absolute;
	left: 0;
	top: -5px;
	text-align: right;
	font-family: "BebasNeue";
	font-size: 32px;
    line-height: 32px;
    letter-spacing: 0;
}
.faq__tab:nth-child(-n+9) .faq__tab-title::before {
    content: "0" counter(tab-num) "";
}
.faq__tab-title-carret {
    display: block;
    width: 26px;
    height: 1px;
    background-color: #151515;
    position: absolute;
    right: 0;
    top: 18px;
    backface-visibility: hidden;
}
.faq__tab-title-carret::after {
    content: "";
    display: block;
    width: 1px;
    height: 26px;
    background-color: #151515;
    position: absolute;
    right: 12px;
    top: -12px;
    backface-visibility: hidden;
    transition: all .3s ease;
}
.faq__tab-text {
    width: 100%;
    padding-top: 30px;
    padding-right: 40px;
    padding-left: 40px;
    display: none;
}
.faq__tab-title.open .faq__tab-title-carret::after {
    opacity: 0;
}
.faq__tab-text ul {
    list-style: disc;
    color: #151515;
    font-size: 16px;
    line-height: 26px;
    font-family: "OnestRegular";
    padding-left: 20px;
}
.faq__tab-text p {
    color: #151515;
    font-size: 16px;
    line-height: 26px;
    font-family: "OnestRegular";
}
.faq__tab-text p + p,
.faq__tab-text p + ul,
.faq__tab-text ul + ul,
.faq__tab-text ul + p {
    margin-top: 15px;
}
.faq__media {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0px 0px 13px rgba(107, 107, 107, 0.79);
    position: sticky;
    top: 75px;
}
.faq__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all .8s ease;
}
.faq__media:hover img {
    transform: scale(1.2);
}

.about {
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 80px;
    padding-bottom: 110px;
}
.about__item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 65px;
}
.about__item:nth-child(even) {
    flex-direction: row-reverse;
}
.about__item-text {
    width: calc(100% - 491px);
    padding-right: 45px;
}
.about__item:nth-child(even) .about__item-text {
    padding-right: 0;
    padding-left: 45px;
}
.about__item-text h2 {
    color: #151515;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 35px;
    font-family: "BebasNeue";
    font-weight: normal;
    text-transform: uppercase;
}
.about__item-text p {
    color: #151515;
    font-size: 16px;
    line-height: 26px;
    font-family: "OnestRegular";
}
.about__item-text p + p {
    margin-top: 26px;
}
.about__item-text ol,
.about__item-text ul {
    color: #151515;
    font-size: 16px;
    line-height: 26px;
    font-family: "OnestRegular";
    margin-top: 26px;
    margin-bottom: 26px;
    padding-left: 20px;
}
.about__item-text ol li {
    padding-left: 3px;
}
.about__item-media {
    width: 491px;
    height: 491px;
    height: auto;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #000;
    box-shadow: 0px 0px 13px rgba(107, 107, 107, 0.79);
    align-self: flex-end;
}
.about__item-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .8s ease;
}
.about__item-media:hover img {
    transform: scale(1.2);
}

.services {
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 80px;
    padding-bottom: 70px;
}
.services__head {
    display: block;
    margin-bottom: 75px;
}
.services__head h2 {
    color: #151515;
    font-size: 32px;
    line-height: 40px;
    font-family: "BebasNeue";
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: normal;
    margin-bottom: 40px;
}
.services__head p {
    color: #151515;
    font-size: 20px;
    line-height: 32px;
    font-family: "OnestRegular";
}
.services__grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.services__grid-item {
    width: calc(50% - 8px);
    margin-bottom: 75px;
    display: flex;
    flex-direction: column;
}
.services__grid-item:nth-child(even) {
    flex-direction: column-reverse;
}
.services__grid-item-media {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 35px;
    text-decoration: none;
}
.services__grid-item:nth-child(even) .services__grid-item-media {
    margin-bottom: 0;
}
.services__grid-item-media img {
    display: block;
    width: 100%;
    height: auto;
    transition: all .5s ease;
    backface-visibility: hidden;
}
.services__grid-item:hover .services__grid-item-media img {
    transform: scale(1.15);
}
.services__grid-item-desc {
    padding-left: 15px;
    padding-right: 15px;
}
.services__grid-item:nth-child(even) .services__grid-item-desc {
    margin-bottom: 35px;
}
.services__grid-item-title {
    color: #151515;
    font-size: 24px;
    line-height: 30px;
    font-family: "OnestBlack";
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: table;
}
.services__grid-item-desc p {
    color: #151515;
    font-size: 16px;
    line-height: 26px;
    font-family: "OnestRegular";
    margin-bottom: 15px;
}
.services__grid-item-more {
    display: block;
    width: 20px;
    height: auto;
    transition: all .3s ease;
}
.services__grid-item-more:hover {
    opacity: 0.7;
}
.services__grid-item-more img {
    display: block;
    width: 100%;
    height: auto;
}
.services__bottom {
    display: block;
    padding-top: 60px;
    border-top: 1px solid #E8E8E8;
}
.services__bottom p {
    color: #4F4F4F;
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 20px;
    font-family: "OnestRegular";
}
.services__bottom ul {
    color: #4F4F4F;
    font-size: 12px;
    line-height: 20px;
    font-family: "OnestRegular";
    padding-left: 20px;
    list-style: disc;
}

.our-cars {
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 80px;
    padding-bottom: 20px;
}
.our-cars__grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.our-cars__grid-item {
    width: calc(50% - 8px);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}
.our-cars__grid-item.active {
    z-index: 2;
}
.our-cars__grid-item-media {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    border: 1px solid #fff;
    border-bottom: none;
    transition: all .5s ease;
}
.our-cars__grid-item:hover .our-cars__grid-item-media {
    border-color: #151515;
}
.our-cars__grid-item-media img {
    display: block;
    width: 100%;
    height: auto;
    transition: all .5s;
}
.our-cars__grid-item:hover .our-cars__grid-item-media img {
    transform: scale(1.15);
}
.our-cars__grid-item-desc {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    background-color: #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    position: relative;
    z-index: 3;
    transition: all .5s ease;
}
.our-cars__grid-item:hover .our-cars__grid-item-desc {
    border-color: #151515;
}
.our-cars__grid-item-desc-price {
    color: #151515;
    font-size: 28px;
    line-height: 36px;
    font-family: "OnestLight";
    position: absolute;
    top: 60px;
    right: 30px;
    transition: all .3s ease;
}
.our-cars__grid-item:hover .our-cars__grid-item-desc-price {
    opacity: 0;
}
.our-cars__grid-item-brand {
    display: block;
    width: auto;
    height: 50px;
    margin-bottom: 20px;
}
.our-cars__grid-item-brand img {
    display: block;
    width: auto;
    height: 100%;
}
.our-cars__grid-item-title {
    color: #151515;
    font-size: 18px;
    line-height: 23px;
    font-family: "OnestBlack";
    text-decoration: none;
    text-transform: uppercase;
    max-width: 320px;
    margin-bottom: 15px;
}
.our-cars__grid-item-text {
    color: #151515;
    font-size: 16px;
    line-height: 26px;
    font-family: "OnestRegular";
    width: 320px;
}
.our-cars__grid-item-more {
    width: 100%;
    height: auto;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 30px;
    background-color: #151515;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(0);
    opacity: 0;
    display: flex;
    flex-wrap: wrap;
    transition: all .5s ease;
}
.our-cars__grid-item:hover .our-cars__grid-item-more {
    transform: translateY(100%);
    opacity: 1;
}
.our-cars__grid-item-more-text {
    width: calc(100% - 180px);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: all .8s ease;
}
.our-cars__grid-item:hover .our-cars__grid-item-more-text {
    opacity: 1;
}
.our-cars__grid-item-more-text p {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    font-family: "OnestRegular";
    margin-bottom: 15px;
    width: 100%;
}
.our-cars__grid-item-more-text p span {
    font-size: 28px;
    line-height: 36px;
    font-family: "OnestLight";
    width: 155px;
    display: inline-block;
}
.our-cars__grid-item-more-details {
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.our-cars__grid-item-more-details-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 113px;
    height: 34px;
    border: 1px solid #fff;
    border-radius: 7px;
    margin-bottom: 30px;
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: "BebasNeue";
    transition: all .3s ease;
}
.our-cars__grid-item-more-details-btn:hover {
    opacity: 0.6;
}
.our-cars__grid-item-more-details-link {
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 4px;
    font-family: "OnestRegular";
    text-decoration: none;
    text-transform: uppercase;
    transition: all .3s ease;
}
.our-cars__grid-item-more-details-link:hover {
    opacity: 0.6;
}

.car {
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 80px;
    padding-bottom: 110px;
}
.car__desc {
    width: 100%;
    margin-bottom: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.car__desc-text {
    width: 740px;
}
.car__desc-text h2 {
    color: #151515;
    font-size: 32px;
    line-height: 38px;
    text-transform: uppercase;
    font-family: "BebasNeue";
    font-weight: normal;
    margin-bottom: 35px;
    letter-spacing: 3px;
}
.car__desc-text p {
    color: #151515;
    font-size: 16px;
    line-height: 26px;
    font-family: "OnestRegular";
}
.car__desc-more {
    width: 440px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.car__desc-more-price {
    color: #000;
    font-size: 28px;
    line-height: 36px;
    font-family: "OnestLight";
    text-transform: uppercase;
    margin-bottom: 25px;
}
.car__desc-more-price span {
    font-size: 21px;
    line-height: 26px;
}
.car__desc-more-btn {
    color: #fff;
    font-size: 22px;
    line-height: 22px;
    font-family: "BebasNeue";
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 263px;
    height: 42px;
    border-radius: 7px;
    border: 1px solid #000;
    background-color: #000;
    margin-right: 25px;
    transition: all .3s ease;
    margin-bottom: 15px;
}
.car__desc-more-btn:hover {
    background-color: transparent;
    color: #000;
}
.car__desc-more-link {
    color: #151515;
    font-size: 16px;
    line-height: 42px;
    font-family: "OnestRegular";
    text-transform: uppercase;
    text-decoration: underline;
    transition: all .3s ease;
}
.car__desc-more-link:hover {
    opacity: 0.6;
}
.car__bottom {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.car__bottom-spec {
    width: 540px;
    border-radius: 24px;
    border: 1px solid #000;
    padding: 40px 50px 15px 40px;
    display: flex;
    flex-wrap: wrap;
}
.car__bottom-spec-title {
    width: 100%;
    color: #151515;
    font-size: 46px;
    line-height: 50px;
    font-family: "BebasNeue";
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 35px;
}
.car__bottom-spec-item {
    width: 50%;
    position: relative;
    padding-left: 45px;
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}
.car__bottom-spec-item img {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -16px;
}
.car__bottom-spec-item-title {
    color: #151515;
    font-size: 18px;
    line-height: 20px;
    font-family: "BebasNeue";
    text-transform: uppercase;
    margin-bottom: 5px;
}
.car__bottom-spec-item-text {
    color: #151515;
    font-size: 18px;
    line-height: 23px;
    font-family: "OnestRegular";
    text-transform: uppercase;
}
.car__bottom-options {
    width: 650px;
    border-radius: 24px;
    border: 1px solid #000;
    padding: 40px 50px 20px 40px;
    display: flex;
    flex-wrap: wrap;
}
.car__bottom-options-title {
    width: 100%;
    color: #151515;
    font-size: 46px;
    line-height: 50px;
    font-family: "BebasNeue";
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 35px;
}
.car__bottom-options-item {
    width: 50%;
    color: #151515;
    font-size: 18px;
    line-height: 23px;
    font-family: "OnestRegular";
    margin-bottom: 40px;
    position: relative;
    padding-left: 50px;
}
.car__bottom-options-item::after {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -15px;
    background-image: url(../img/checked.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

#car-slider {
    position:relative;
    margin:0 auto;
    width:100%;
    height:610px;
    visibility:hidden;
    margin-bottom: 160px;
}
.car-slider__loader {
    position:absolute;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    text-align:center;
    background-color:rgba(0,0,0,0.7);
}
.car-slider__loader img {
    margin-top:-19px;
    position:relative;
    top:50%;
    width:38px;
    height:38px;
    animation-name: slider-loader;
    animation-duration: 1.6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes slider-loader {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.car-slider__body {
    cursor:default;
    position:relative;
    top:0px;
    left:0px;
    width:840px;
    height:610px;
    overflow:hidden;
    border-radius: 12px;
}
.car-slide__thumbnav {
    position:absolute;
    right:0px;
    top:0px;
    width:440px;
    height:610px;
}
.car-slide__thumb {
    width:200px;
    height:143px;
    position: absolute;
    top:0;
    left:0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}
.car-slide__thumb::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #000;
    opacity: 0;
    transition: all .3s ease;
    z-index: 2;
}
.car-slide__thumb:hover::before {
    opacity: 0.5;
}
.car-slide__thumb.car-slide__thumbav::before {
    opacity: 0.5;
}
.car-slide__thumb::after {
    content: "";
    width: 34px;
    height: 34px;
    background-image: url(../img/car-slider/thumb-view.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 0;
    transition: all .3s ease;
}
.car-slide__thumb.car-slide__thumbav::after {
    opacity: 1;
}
.car-slide__thumb:hover::after {
    opacity: 1;
}
.car-slide__left {
    position: absolute;
    top: 365px !important;
    left: 0;
    margin-left: 350px;
    width:32px;
    height:32px;
    cursor: pointer;
    background-image: url(../img/car-slider/car-slide-left.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all .3s ease;
}
.car-slide__left:hover {
    opacity: 0.6;
}
.car-slide__right {
    position: absolute;
    top: 365px !important;
    left: 0;
    margin-left: 490px;
    width:32px;
    height:32px;
    cursor: pointer;
    background-image: url(../img/car-slider/car-slide-right.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all .3s ease;
}
.car-slide__right:hover {
    opacity: 0.6;
}
.car-slider__dots {
    position: absolute;
    top: auto !important;
    bottom: 0;
    left: 0;
}
.car-slider__dot {
    width: 30px;
    height: 24px;
    font-size: 16px;
    line-height: 24px;
    font-family: "OnestRegular";
    position: absolute !important;
    top: auto !important;
    left: 400px !important;
    bottom: -72px;
    opacity: 0;
    transition: all .2s ease;
    text-align: right;
}
.car-slider__dot::after {
    content: "/"
}
.car-slider__dot.car-slider__dotav {
    opacity: 1;
}
.car-slider__dot-total {
    position: absolute;
    left: 32px;
    bottom: -2px;
    font-size: 33px;
    line-height: 33px;
    font-family: "OnestLight";
    color: #E6E6E6;
}
.car-slider__body-slide {
    display: block;
}

.payment {
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 80px;
    padding-bottom: 70px;
}
.payment__grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 25px;
}
.payment__media {
    width: 690px;
    position: relative;
}
.payment__media-bg {
    display: block;
    width: 100%;
    height: auto;
    animation: media-bg 4s infinite ease-in-out;
}
@keyframes media-bg {
  0% {
    transform: scale(1);
  }
  
  40% {
    transform: scale(0.95);
  }
    
    100% {
    transform: scale(1);
  }
}
.payment__media-main {
    display: block;
    width: 412px;
    height: auto;
    position: absolute;
    top: 0;
    left: 100px;
    animation: move 4s infinite ease-in-out;
}
@keyframes move {
  0% {
    transform: translateY(-8px);
  }
  
  40% {
    transform: translateY(8px) rotateX(3deg) rotateY(12deg);
  }
    
    100% {
    transform: translateY(-8px);
  }
}
.payment__desc {
    width: 550px;
    padding: 50px 50px 30px 50px;
    border: 1px solid #000;
    border-radius: 24px;
}
.payment__desc-title {
    color: #151515;
    font-size: 46px;
    line-height: 50px;
    letter-spacing: 3px;
    font-family: "BebasNeue";
    font-weight: normal;
    margin-bottom: 35px;
}
.payment__desc ol {
    counter-reset: num;
	list-style: none;
}
.payment__desc ol li {
    color: #151515;
    font-size: 18px;
    line-height: 23px;
    font-family: "OnestBold";
    text-transform: uppercase;
    margin-bottom: 25px;
    counter-increment: num;
	position: relative;
    padding-left: 45px;
}
.payment__desc ol li:before {
	content: counter(num) "";
	color: #151515;
	position: absolute;
	left: 0;
	top: -6px;
	text-align: right;
	font-family: "BebasNeue";
	font-size: 32px;
    line-height: 32px;
}
.payment__desc ol li:nth-child(-n+9):before {
	content: "0" counter(num) "";
}
.payment__tabs {
    width: 845px;
    margin-left: auto;
    margin-right: auto;
    counter-reset: tab-num;
}
.payment__tab {
    width: 100%;
    margin-bottom: 40px;
    counter-increment: tab-num;
}
.payment__tab-title {
    color: #151515;
    font-size: 32px;
    line-height: 40px;
    font-family: "BebasNeue";
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-left: 40px;
    cursor: pointer;
}
.payment__tab-title::before {
    content: counter(tab-num) "";
    color: #151515;
	position: absolute;
	left: 0;
	top: 4px;
	text-align: right;
	font-family: "BebasNeue";
	font-size: 32px;
    line-height: 32px;
    letter-spacing: 0;
}
.payment__tab:nth-child(-n+9) .payment__tab-title::before {
    content: "0" counter(tab-num) "";
}
.payment__tab-title-carret {
    display: block;
    width: 26px;
    height: 1px;
    background-color: #151515;
    position: absolute;
    right: 0;
    top: 18px;
    backface-visibility: hidden;
}
.payment__tab-title-carret::after {
    content: "";
    display: block;
    width: 1px;
    height: 26px;
    background-color: #151515;
    position: absolute;
    right: 12px;
    top: -12px;
    backface-visibility: hidden;
    transition: all .3s ease;
}
.payment__tab-text {
    width: 100%;
    padding-top: 40px;
    padding-right: 40px;
    padding-left: 40px;
    display: none;
}
.payment__tab-title.open .payment__tab-title-carret::after {
    opacity: 0;
}
.payment__tab-text ul {
    list-style: disc;
    color: #151515;
    font-size: 16px;
    line-height: 26px;
    font-family: "OnestRegular";
    padding-left: 20px;
}
.payment__tab-text p {
    color: #151515;
    font-size: 16px;
    line-height: 26px;
    font-family: "OnestRegular";
}
.payment__tab-text p + p,
.payment__tab-text p + ul,
.payment__tab-text ul + ul,
.payment__tab-text ul + p {
    margin-top: 15px;
}

.contact {
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 80px;
    padding-bottom: 80px;
}
.contact__grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.contact__content {
    width: 550px;
    display: flex;
    flex-wrap: wrap;
}
.contact__address {
    width: 100%;
    margin-bottom: 70px;
}
.contact__title {
    color: #555;
    font-size: 24px;
    line-height: 30px;
    font-family: "BebasNeue";
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
    padding-left: 70px;
}
.contact__address p {
    color: #151515;
    font-size: 16px;
    line-height: 20px;
    font-family: "OnestRegular";
}
.contact__title::after {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 0;
    top: -13px;
    background-image: url(../img/contact-address.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.contact__phone {
    display: flex;
    flex-direction: column;
    margin-right: 80px;
    margin-bottom: 70px;
}
.contact__phone-title {
    color: #555;
    font-size: 24px;
    line-height: 30px;
    font-family: "BebasNeue";
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
    padding-left: 70px;
}
.contact__phone-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 0;
    top: -13px;
    background-image: url(../img/contact-phone.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.contact__phone a {
    color: #151515;
    font-size: 16px;
    line-height: 20px;
    font-family: "OnestRegular";
    text-decoration: none;
    transition: all .3s ease;
}
.contact__phone a:hover {
    opacity: 0.7;
}
.contact__email {
    display: flex;
    flex-direction: column;
    margin-bottom: 70px;
}
.contact__email-title {
    color: #555;
    font-size: 24px;
    line-height: 30px;
    font-family: "BebasNeue";
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
    padding-left: 70px;
}
.contact__email-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 0;
    top: -13px;
    background-image: url(../img/contact-email.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.contact__email a {
    color: #151515;
    font-size: 16px;
    line-height: 20px;
    font-family: "OnestRegular";
    text-decoration: none;
    transition: all .3s ease;
}
.contact__email a:hover {
    opacity: 0.7;
}
.contact__social {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.contact__social a {
    display: block;
    width: 34px;
    height: 34px;
    margin-right: 30px;
    margin-bottom: 10px;
    text-decoration: none;
    transition: all .3s ease;
    filter: invert(1);
}
.contact__social a:hover {
    opacity: 0.7;
}
.contact__social a img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.contact__form {
    display: block;
    width: 630px;
    border-radius: 24px;
    border: 1px solid #000;
    padding: 40px 35px;
}
.contact__form-title {
    color: #151515;
    font-size: 46px;
    line-height: 50px;
    font-family: "BebasNeue";
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
}
.contact__form-wrap-input {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 25px;
}
.contact__form-input {
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
}
.contact__form-input label {
    color: #151515;
    font-size: 12px;
    line-height: 15px;
    font-family: "OnestExtraBold";
    margin-bottom: 6px;
}
.contact__form-input input {
    width: 100%;
    height: 42px;
    border-radius: 6px;
    border: 1px solid #151515;
    background-color: #fff;
    padding-left: 15px;
    padding-right: 15px;
    color: #151515;
    font-size: 13px;
    font-family: "OnestRegular";
}
.contact__form-message {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}
.contact__form-message label {
    color: #151515;
    font-size: 12px;
    line-height: 15px;
    font-family: "OnestExtraBold";
    margin-bottom: 6px;
}
.contact__form-message textarea {
    width: 100%;
    height: 125px;
    border-radius: 6px;
    border: 1px solid #151515;
    background-color: #fff;
    padding: 10px 15px;
    font-size: 13px;
    font-family: "OnestRegular";
    resize: none;
}
.contact__form-checkbox {
    width: 100%;
    margin-bottom: 25px;
}
.contact__form-checkbox input {
    display: none;
}
.contact__form-checkbox label {
    color: #151515;
    font-size: 12px;
    line-height: 15px;
    font-family: "OnestExtraBold";
    padding-left: 30px;
    position: relative;
    cursor: pointer;
}
.contact__form-checkbox label::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 3px;
    border: 1px solid #151515;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../img/checkmark.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 0px;
}
.contact__form-checkbox input:checked + label::after {
    background-size: 11px;
}
.contact__form-checkbox label a {
    color: #151515;
    text-decoration: underline;
    transition: all .3s ease;
}
.contact__form-checkbox label a:hover {
    opacity: 0.7;
}
.contact__form button {
    color: #fff;
    font-size: 22px;
    line-height: 22px;
    font-family: "BebasNeue";
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 272px;
    height: 42px;
    border: 1px solid #000;
    background-color: #000;
    border-radius: 7px;
    cursor: pointer;
    transition: all .3s ease;
}
.contact__form button:hover {
    background-color: #fff;
    color: #000;
}
.contact__map {
    width: 100%;
    height: 470px;
    filter: grayscale(1);
}

.footer {
    width: 100%;
    background-color: #000;
}
.footer__container {
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
}
.footer__body {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.footer__nav {
    list-style: none;
    column-count: 2;
    list-style-type: none;
    column-gap: 140px;
}
.footer__nav li {
    margin-bottom: 16px;
}
.footer__nav li a {
    color: #555;
    font-size: 14px;
    line-height: 18px;
    font-family: "OnestRegular";
    text-decoration: none;
    text-transform: uppercase;
    transition: all .3s ease;
}
.footer__nav li a:hover {
    color: #fff;
}
.footer__links {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
}
.footer__links a {
    color: #555;
    font-size: 14px;
    line-height: 18px;
    font-family: "OnestRegular";
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 16px;
    transition: all .3s ease;
}
.footer__links a:hover {
    color: #fff;
}
.footer__contacts {
    display: flex;
    flex-direction: column;
}
.footer__contacts-tel {
    color: #C5C5C5;
    font-size: 12px;
    line-height: 16px;
    font-family: "OnestRegular";
    text-decoration: none;
    margin-bottom: 20px;
    transition: all .3s ease;
}
.footer__contacts-tel:hover {
    color: #fff;
}
.footer__contacts-mail {
    color: #C5C5C5;
    font-size: 12px;
    line-height: 16px;
    font-family: "OnestRegular";
    text-decoration: none;
    margin-bottom: 20px;
    transition: all .3s ease;
}
.footer__contacts-mail:hover {
    color: #fff;
}
.footer__contacts-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}
.footer__contacts-social-item {
    display: block;
    margin-right: 16px;
    text-decoration: none;
    opacity: .77;
    transition: all .3s ease;
}
.footer__contacts-social-item:hover {
    opacity: 1;
}
.footer__contacts-logo {
    display: block;
    width: 89px;
    height: auto;
    text-decoration: none;
}
.footer__contacts-logo img {
    display: block;
    width: 100%;
    height: auto;
}
.footer__payment-cards {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.footer__payment-cards a {
    text-decoration: none;
    transition: all .3s ease;
}
.footer__payment-cards a:hover {
    opacity: 0.7;
}
.footer__payment-cards a + a {
    margin-left: 30px;
}
.footer__bottom {
    width: 100%;
    border-top: 1px solid #555;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.footer__copyright {
    color: #fff;
    font-size: 12px;
    line-height: 18px;
    font-family: "OnestRegular";
}
.footer__address {
    color: #c5c5c5;
    font-size: 12px;
    line-height: 18px;
    font-family: "OnestRegular";
}
.footer__developed {
    color: #fff;
    font-size: 12px;
    line-height: 18px;
    font-family: "OnestRegular";
    text-decoration: none;
    padding-right: 23px;
    background-image: url(../img/cursor-logo.svg);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 16px;
}

.modal-advice {
    width: 630px;
    background-color: #fff;
    padding: 40px 35px;
    border-radius: 24px;
    border: 1px solid #000;
    cursor: auto !important;
}
.modal-advice .is-close {
    top: 10px !important;
    right: 10px !important;
}
.modal-advice .is-close svg {
    stroke: #000;
    filter: none;
    stroke-width: 1px;
    width: 28px;
    height: 28px;
    transition: all .5s ease;
}
.modal-advice .is-close:hover svg {
    transform: rotateZ(180deg);
}
.modal-advice__title {
    color: #151515;
    font-size: 46px;
    line-height: 50px;
    font-family: "BebasNeue";
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}
.modal-advice__form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.modal-advice__form-input {
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}
.modal-advice__form-input label {
    color: #151515;
    font-size: 12px;
    line-height: 15px;
    font-family: "OnestExtraBold";
    margin-bottom: 6px;
}
.modal-advice__form-input input {
    width: 100%;
    height: 42px;
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid #151515;
    padding-left: 10px;
    padding-right: 10px;
    color: #151515;
    font-size: 13px;
    font-family: "OnestRegular";
}
.modal-advice__form-message {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}
.modal-advice__form-message label {
    color: #151515;
    font-size: 12px;
    line-height: 15px;
    font-family: "OnestExtraBold";
    margin-bottom: 6px;
}
.modal-advice__form-message textarea {
    width: 100%;
    height: 124px;
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid #151515;
    padding: 5px 10px;
    color: #151515;
    font-size: 13px;
    font-family: "OnestRegular";
    resize: none;
}
.modal-advice__form-check {
    width: 100%;
    display: block;
    margin-bottom: 25px;
}
.modal-advice__form-check input {
    display: none;
}
.modal-advice__form-check label {
    color: #151515;
    font-size: 12px;
    line-height: 14px;
    font-family: "OnestExtraBold";
    padding-left: 23px;
    position: relative;
    cursor: pointer;
}
.modal-advice__form-check label::after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 3px;
    border: 1px solid #151515;
    background-color: #fff;
    background-image: url(../img/checkmark.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 0px;
    position: absolute;
    left: 0;
    top: 0;
}
.modal-advice__form-check input:checked + label::after {
    background-size: 10px;
}
.modal-advice__form button {
    display: block;
    width: 272px;
    height: 42px;
    border: none;
    border-radius: 7px;
    border: 1px solid #000;
    background-color: #000;
    color: #fff;
    font-size: 22px;
    line-height: 22px;
    font-family: "BebasNeue";
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .3s ease;
}
.modal-advice__form button:hover {
    color: #000;
    background-color: #fff;
}









