@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300..900;1,300..900&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background: #FFF;
    color: #212121;
    font-size: 18px;
    line-height: 24px;
    min-width: 360px;
    margin: 0 auto;
    font-weight: 400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.d-flex {
    display: flex;
}

.text-red {
    color: #b6292c;
}

.alert {
    position: relative;
    padding: 14px 20px;
    margin-bottom: 30px;
    border: 1px solid transparent;
    border-radius: 8px;
}

.alert.alert-success {
    color: #056c4f;
    background-color: #cef5ea;
    border-color: #baf2e2;
}

.alert.alert-danger {
    color: #823040;
    background-color: #fedee5;
    border-color: #fed1da;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1536px;
    }
}

@media (min-width: 1696px) {
    .container {
        max-width: 1694px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

[class*="col-"] {
    position: relative;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.col-1 {
    width: 8.3333%;
}

.col-2 {
    width: 16.6667%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.3333%;
}

.col-5 {
    width: 41.6667%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.3333%;
}

.col-8 {
    width: 66.6667%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.3333%;
}

.col-11 {
    width: 91.6667%;
}

.col-12 {
    width: 100%;
}

@media (min-width: 640px) {
    .col-sm-1 {
        width: 8.3333%;
    }

    .col-sm-2 {
        width: 16.6667%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-4 {
        width: 33.3333%;
    }

    .col-sm-5 {
        width: 41.6667%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-7 {
        width: 58.3333%;
    }

    .col-sm-8 {
        width: 66.6667%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-10 {
        width: 83.3333%;
    }

    .col-sm-11 {
        width: 91.6667%;
    }

    .col-sm-12 {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .col-md-1 {
        width: 8.3333%;
    }

    .col-md-2 {
        width: 16.6667%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-4 {
        width: 33.3333%;
    }

    .col-md-5 {
        width: 41.6667%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-7 {
        width: 58.3333%;
    }

    .col-md-8 {
        width: 66.6667%;
    }

    .col-md-9 {
        width: 75%;
    }

    .col-md-10 {
        width: 83.3333%;
    }

    .col-md-11 {
        width: 91.6667%;
    }

    .col-md-12 {
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .col-lg-1 {
        width: 8.3333%;
    }

    .col-lg-2 {
        width: 16.6667%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-4 {
        width: 33.3333%;
    }

    .col-lg-5 {
        width: 41.6667%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-7 {
        width: 58.3333%;
    }

    .col-lg-8 {
        width: 66.6667%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-10 {
        width: 83.3333%;
    }

    .col-lg-11 {
        width: 91.6667%;
    }

    .col-lg-12 {
        width: 100%;
    }
}

@media (min-width: 1280px) {
    .col-xl-1 {
        width: 8.3333%;
    }

    .col-xl-2 {
        width: 16.6667%;
    }

    .col-xl-3 {
        width: 25%;
    }

    .col-xl-4 {
        width: 33.3333%;
    }

    .col-xl-5 {
        width: 41.6667%;
    }

    .col-xl-6 {
        width: 50%;
    }

    .col-xl-7 {
        width: 58.3333%;
    }

    .col-xl-8 {
        width: 66.6667%;
    }

    .col-xl-9 {
        width: 75%;
    }

    .col-xl-10 {
        width: 83.3333%;
    }

    .col-xl-11 {
        width: 91.6667%;
    }

    .col-xl-12 {
        width: 100%;
    }
}

@media (min-width: 1536px) {
    .col-xxl-1 {
        width: 8.3333%;
    }

    .col-xxl-2 {
        width: 16.6667%;
    }

    .col-xxl-3 {
        width: 25%;
    }

    .col-xxl-4 {
        width: 33.3333%;
    }

    .col-xxl-5 {
        width: 41.6667%;
    }

    .col-xxl-6 {
        width: 50%;
    }

    .col-xxl-7 {
        width: 58.3333%;
    }

    .col-xxl-8 {
        width: 66.6667%;
    }

    .col-xxl-9 {
        width: 75%;
    }

    .col-xxl-10 {
        width: 83.3333%;
    }

    .col-xxl-11 {
        width: 91.6667%;
    }

    .col-xxl-12 {
        width: 100%;
    }
}

@media (min-width: 1696px) {
    .col-3xl-1 {
        width: 8.3333%;
    }

    .col-3xl-2 {
        width: 16.6667%;
    }

    .col-3xl-3 {
        width: 25%;
    }

    .col-3xl-4 {
        width: 33.3333%;
    }

    .col-3xl-5 {
        width: 41.6667%;
    }

    .col-3xl-6 {
        width: 50%;
    }

    .col-3xl-7 {
        width: 58.3333%;
    }

    .col-3xl-8 {
        width: 66.6667%;
    }

    .col-3xl-9 {
        width: 75%;
    }

    .col-3xl-10 {
        width: 83.3333%;
    }

    .col-3xl-11 {
        width: 91.6667%;
    }

    .col-3xl-12 {
        width: 100%;
    }
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.sticky {
    position: sticky;
}

.block {
    display: block;
}

.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

.hidden {
    display: none;
}

.flex-row {
    flex-direction: row;
}

.flex-col {
    flex-direction: column;
}

.items-start {
    align-items: flex-start;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-end {
    justify-content: end;
}

.wrapper {
    padding-top: 108px;
}

.line-separator {
    width: 100%;
    height: 1px;
    background: #dfdfdf;
}

.spinner {
    width: 1em;
    height: 1em;
	border-top: 2px solid #fff;
    border-radius: 50%;
	border-right: 2px solid transparent;
	animation: spinner 700ms linear infinite;
}

@-webkit-keyframes spinner {
	to {
		transform: rotate(360deg);
	}
}

@keyframes spinner {
	to {
		transform: rotate(360deg);
	}
}

.buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.btn {
    width: auto;
    max-width: fit-content;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    height: 64px;
    border: 0;
    text-align: center;
    transition: all .3s;
    text-decoration: none !important;
    color: #eee;
    font-size: 24px;
    border-radius: 8px;
    cursor: pointer;
    flex-shrink: 0;
    white-space: nowrap;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn:disabled:hover {
    opacity: 0.65;
}

.btn span {
    transition: opacity .3s;
}

.btn .spinner {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -0.5em 0 0 -0.5em;
}

.btn.loading {
    opacity: 0.8;
    pointer-events: none;
}

.btn.loading span {
    visibility: hidden;
    opacity: 0;
}

.btn.loading .spinner {
    opacity: 1;
}

.btn.btn-sm {
    padding: 0 17px;
    font-size: 16px;
    height: 40px;
}

.btn.btn-sm .fa-solid, .btn.btn-sm .fa-regular, .btn.btn-sm .fa-light, .btn.btn-sm .fa-thin, .btn.btn-sm .fa-brands {
    font-size: 16px;
    margin-right: 4px;
}

.btn.btn-gray.btn-outline {
    background: none;
    border-color: #a0a0a0;
    color: #a0a0a0;
}

.btn.btn-gray.btn-outline:hover {
    border-color: #999;
    color: #999;
}

.btn.btn-outline {
    border: 1px solid transparent;
}

.btn .fa-solid, .btn .fa-regular, .btn .fa-light, .btn .fa-thin, .btn .fa-brands {
    font-size: 20px;
    margin-right: 18px;
}

.btn.btn-red {
    background: #b6292c;
}

.btn.btn-red:hover {
    color: #b6292c;
    background: #fdfdfd;
}

.btn.btn-red.btn-outline:hover {
    border-color: #b6292c;
}

.btn.btn-black {
    background: #212121;
}

.btn.btn-black:hover {
    color: #212121;
    background: #e1ca2c;
}

.section-title.type-1 {
    position: relative;
    color: #fff;
    font-size: 48px;
    line-height: 60px;
    padding: 0 110px;
    text-transform: uppercase;
    text-align: center;
}

.section-title.type-2 {
    position: relative;
    display: block;
    max-width: fit-content;
    padding-bottom: 24px;
    font-size: 36px;
    line-height: 36px;
    font-weight: 600;
    text-align: center;
    margin: 0 auto;
}

.section-title.type-2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 234px;
    height: 7px;
    border-radius: 2px;
    background: #b6292c; 
}

.section-title.type-2.gray-style::after {
    background: #dfdfdf;
}

.section-title.type-1::before, .section-title.type-1::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 75px;
    height: 16px;
    background: #b6292c;
    border-radius: 1px;
}

.section-subtitle {
    display: block;
    max-width: fit-content;
    position: relative;
    font-size: 30px;
    line-height: 30px;
    padding: 0 58px;
    text-align: center;
    margin: 0 auto;
}

.section-subtitle::before, .section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 6px;
    background: #b6292c;
    border-radius: 1px;
}

.section-title.type-1::before, .section-subtitle::before {
    left: 0;
}

.section-title.type-1::after, .section-subtitle::after {
    right: 0;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 108px;
    background: #fff;
    box-shadow: 3px 0 7px rgba(0, 0, 0, .35);
    z-index: 999;
    border-bottom: 1px solid rgba(0, 0, 0, .35);
}

header .logo {
    display: block;
}

header .logo img {
    width: 149px;
    height: 80px;
}

header .logo-wrapper {
    padding: 14px 0;
}

.header-nav ul {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: end;
    height: 108px;
    list-style: none;
}

.header-nav ul li {
    margin-left: 18px;
}

.header-nav ul li:first-child {
    margin-left: 0; 
}

.header-nav ul li a {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 18px;
    padding: 41px 12px;
    transition: all .3s;
    border-bottom: 2px solid transparent;
}

.header-nav ul li.active a, .header-nav ul li:hover a {
    color: #b6292c;
    border-color: #b6292c;
}

.wellcome-screen {
    width: 100%;
    height: 900px;
    background-image: url(../images/home-bg.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.wellcome-screen-title {
    display: flex;
    align-items: center;
    width: 1124px;
    height: 344px;
    padding: 0 40px;
    background: linear-gradient(to right, rgba(0, 0, 0, .9), rgba(201, 199, 205, .1));
    border-radius: 8px;
    margin-top: 278px;
}

.wellcome-screen-title h1 {
    font-size: 48px;
    line-height: 60px;
    font-weight: 600;
    color: #eee;
    text-transform: uppercase;
    margin-bottom: 33px;
}

.homepage-screen-1 {
    padding: 40px 0;
}

.homepage-screen-1 .screen-inner {
    width: 100%;
    background: linear-gradient(to right, rgba(245, 245, 245, .9), transparent);
    border-radius: 8px;
    padding: 87px 0 92px 40px;
}

.homepage-screen-1 .screen-inner h2 {
    font-size: 48px;
    line-height: 60px;
    text-transform: uppercase;
    margin-bottom: 100px;
}

.homepage-screen-1 .screen-inner p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 30px;
}

.homepage-screen-1 .screen-inner p:last-child {
    margin-bottom: 0;
}

.image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image img {
    width: 100%;
    height: auto;
}

.homepage-screen-1 .logo {
    max-width: 656px;
}

.homepage-screen-2, .contact-us-wrapper {
    background: #121212;
    padding: 87px 0 100px;
}

.homepage-screen-2 .image img {
    max-width: 580px;
}

.rating-wrapper {
    text-align: center;
}

.rating-wrapper .rating {
    display: flex;
    justify-content: center;
    color: #e1ca2c;
    font-size: 30px;
    gap: 12px;
    margin-top: 65px;
}

.rating-wrapper .rating-number {
    font-size: 20px;
    color: #9b9a9a; 
    font-weight: 300;
    margin-top: 20px;
}

.rating-wrapper .rating-number strong {
    color: #e1ca2c;
    font-weight: 600;
}

.rating-wrapper .google-reviews-count {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    margin-top: 7px;
}

.rating-wrapper .buttons-wrapper {
    margin-top: 72px;
}

.testimonials-wrapper, 
.how-to-buy-wrapper, 
.inventory-wrapper, 
.faq-wrapper, 
.contact-wrapper, 
.car-wrapper,
.page-404-wrapper {
    padding: 94px 0 100px;
}

.testimonials-wrapper .section-title, 
.how-to-buy-wrapper .section-title, 
.inventory-wrapper .section-title, 
.faq-wrapper .section-title, 
.contact-wrapper .section-title, 
.car-wrapper .section-title {
    margin-bottom: 100px;
}

.testimonials-list.last-row {
    margin-bottom: -100px;
}

.testimonials-list .testimonial-item {
    position: relative;
    width: 100%;
    height: calc(100% - 170px);
    border-radius: 8px;
    background: linear-gradient(to top, #ededed, #fff);
    border: 1px solid #ededed;
    text-align: center;
    margin: 64px 0 100px;
}

.testimonials-list .testimonial-item .testimonial-photo {
    position: relative;
    top: -64px;
    width: 130px;
    height: 130px;
    padding: 10px;
    border-radius: 50%;
    margin: 0 auto -64px;
    background: #fff;
}

.testimonials-list .testimonial-item .testimonial-photo img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
}

.testimonials-list .testimonial-item .testimonial-author {
    font-size: 20px;
    font-weight: 600;
    margin-top: 24px;
}

.testimonials-list .testimonial-item .testimonial-author-position {
    font-size: 18px;
    color: #999;
    font-style: italic;
    margin-top: 12px;
}

.testimonials-list .testimonial-item .testimonial-rating {
    margin-top: 2px;
}

.testimonials-list .testimonial-item .testimonial-rating .rating {
    font-size: 14px;
}

.testimonials-list .testimonial-item .testimonial-rating .rating i {
    color: #e1ca2c;
}

.testimonials-list .testimonial-item .testimonial-body {
    padding: 55px 30px 40px;
    text-align: left;
}

footer {
    padding: 95px 0 104px;
    border-top: 1px solid #c9c7cd;
}

footer .footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

footer .company-contact {
    margin-bottom: 60px;
}

.company-contact .contact-item {
    display: flex;
    align-items: start;
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 24px;
}

.company-contact .contact-item:last-child {
    margin-bottom: 0;
}

.company-contact .contact-item i {
    position: relative;
    top: 2px;
    color: #b6292c;
    margin-right: 10px;
}

.work-hours .work-hours-item {
    font-size: 20px;
    color: #b6292c;
    margin-bottom: 12px;
}

.work-hours .work-hours-item:last-child {
    margin-bottom: 0;
}

.work-hours .work-hours-item i {
    color: #212121;
}

footer .image img {
    max-width: 420px;
}

footer .footer-nav ul {
    list-style: none;
    text-align: right;
}

footer .footer-nav ul li a {
    color: #212121;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s;
}

footer .footer-nav ul li:hover a {
    color: #b6292c;
}

footer .footer-nav ul li {
    margin-bottom: 34px;
}

footer .footer-nav ul li:last-child {
    margin-bottom: 0;
}

.breadcrumbs-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    height: 195px;
    background-image: url(../images/breadcurmbs-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.breadcrumbs-wrapper .title {
    font-size: 30px;
    color: #eee;
    text-transform: uppercase;
}

.breadcrumbs-wrapper .breadcrumbs ul {
    display: flex;
    justify-content: end;
    list-style: none;
}

.breadcrumbs-wrapper .breadcrumbs ul li, .breadcrumbs-wrapper .breadcrumbs ul li a {
    position: relative;
    color: #eee;
    font-size: 20px;
    font-weight: 600;
}

.breadcrumbs-wrapper .breadcrumbs ul li a {
    text-decoration: none;
}

.breadcrumbs-wrapper .breadcrumbs ul li a:hover {
    text-decoration: underline;
}

.breadcrumbs-wrapper .breadcrumbs ul li::after {
    content: '\f101';
    font-family: 'Font Awesome 6 Pro';
    color: #b6292c;
    font-size: 14px;
    margin: 0 18px;
}

.breadcrumbs-wrapper .breadcrumbs ul li:last-child:after {
    display: none;
}

.contact-us-wrapper {
    background: #000;
}

.contact-us-wrapper .description {
    text-align: center;
    font-size: 24px;
    line-height: 30px;
    font-weight: 300; 
    text-transform: uppercase;
    color: #fff;
    margin: 52px 0 64px;
}

.how-to-buy-list {
    margin-bottom: -100px;
}

.how-to-buy-list .how-to-buy-item {
    width: 100%;
    height: 460px;
    border-radius: 8px;
    border: 1px solid #cfcfcf;
    text-align: center;
    margin: 57px 0 100px;
    padding: 0 45px;
}

.how-to-buy-list .how-to-buy-item .icon {
    display: inline-block;
    position: relative;
    top: -57px;
    font-size: 120px;
    color: #b6292c;
    background: #fff;
    padding: 0 36px;
    margin-bottom: -57px;
}

.how-to-buy-list .how-to-buy-item .step {
    font-size: 24px;
    color: #a2a2a2;
    font-weight: 500;
    margin-top: 7px;
}

.how-to-buy-list .how-to-buy-item .title {
    font-size: 36px;
    line-height: 40px;
    height: 80px;
    overflow: hidden;
    margin-top: 4px;
    font-weight: 600;
}

.how-to-buy-list .how-to-buy-item .body {
    font-size: 20px;
    line-height: 30px;
    margin-top: 32px;
}

.cars-list .car-item {
    margin-bottom: 30px;
}

.cars-list .car-item .car-image {
    position: relative;
    display: block;
    line-height: 0;
    overflow: hidden;
}

.cars-list .car-item .car-image .year {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 15px;
    line-height: 22px;
    padding: 0 10px;
    color: #fff;
    background: #b6292c;
    box-shadow: 3px 0 4px rgba(0, 0, 0, .35);
    border-radius: 4px;
}

.cars-list .car-item .car-image .year strong {
    font-weight: 600;
}

.cars-list .car-item .car-image img {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
}

.cars-list .car-item.reserved .car-image::after, .cars-list .car-item.sold .car-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .4);
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px 8px 0 0;
}

.cars-list .car-item.reserved .car-image::after {
    background-image: url(../images/reserved-badge.png);
}

.cars-list .car-item.sold .car-image::after {
    background-image: url(../images/sold-badge.png);
}

.cars-list .car-item .car-info {
    border: 1px solid #cfcfcf;
    border-top: 0;
    border-radius: 0 0 8px 8px;
    padding-top: 14px;
}

.cars-list .car-item .title {
    text-align: center;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 13px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.cars-list .car-item .vehicle-details {
    background: #f1f1f1;
}

.cars-list .car-item .vehicle-details ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 49px;
    padding: 0 24px;
    gap: 10px;
}

.cars-list .car-item .vehicle-details ul li {
    display: flex;
    flex: 1;
    align-items: center;
    flex-wrap: nowrap;
    font-size: 12px;
    line-height: 14px;
    color: #474747;
    font-weight: 300;
}

.cars-list .car-item .vehicle-details ul li i {
    font-size: 14px;
    color: #b6292c;
    margin-right: 10px;
}

.cars-list .car-item .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
}

.cars-list .car-item .bottom .price {
    font-size: 24px;
    font-weight: 600;
    white-space: nowrap;
}

.cars-list .car-item .bottom .btn {
    width: 196px;
    height: 42px;
    font-size: 18px;
}

.cars-list .car-item .bottom .btn i {
    font-size: 16px;
    margin-right: 12px;
}

.filter-wrapper .filter-item {
    margin-bottom: 28px;
}

.filter-wrapper .filter-item:last-child {
    margin-bottom: 0;
}

.filter-wrapper .filter-item .filter-item-header {
    position: relative;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 28px;
}

.filter-wrapper .filter-item .filter-item-header::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Pro';
    color: #b6292c;
    transition: all .3s;
    font-size: 20px;
    position: absolute;
    right: 0;
    top: 0;
}

.filter-wrapper .filter-item.expanded .filter-item-header::after {
    transform: rotate(-180deg);
}

.filter-wrapper .filter-item .filter-item-body {
    display: none;
    padding-left: 35px;
}

.filter-wrapper .filter-item .filter-item-body ul {
    list-style: none;
    margin-bottom: 15px;
}

.filter-wrapper .filter-item .filter-item-body ul li {
    position: relative;
    cursor: pointer;
    font-size: 20px;
    font-weight: 300;
    padding-right: 40px;
    margin-bottom: 10px;
}

.filter-wrapper .filter-item .filter-item-body ul li::after {
    content: '\f0c8';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 400;
    color: #ccc;
    font-size: 20px;
    position: absolute;
    top: 0;
    right: 0;
    transition: all .3s;
}

.filter-wrapper .filter-item .filter-item-body ul li.selected::after {
    content: '\f14a';
    color: #b6292c;
}

.filter-wrapper .filter-item .filter-item-body ul li:last-child {
    margin-bottom: 0;
}

.filter-wrapper .buttons-wrapper {
    margin-top: 30px;
}

.filter-wrapper .buttons-wrapper .btn {
    width: 300px;
    max-width: 300px;
}

.faq-items-list .faq-item {
    margin-bottom: 30px;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    padding: 0 50px;
}

.faq-items-list .faq-item .faq-question {
    position: relative;
    padding: 35px 40px 38px 0;
    font-size: 30px;
    line-height: 30px;
    font-weight: 600;
    cursor: pointer;
}

.faq-items-list .faq-item .faq-question::after {
    content: '\f103';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 400;
    color: #b6292c;
    font-size: 24px;
    position: absolute;
    top: 50%;
    right: 0;
    transition: all .3s;
    margin-top: -15px;
}

.faq-items-list .faq-item.expanded .faq-question::after {
    transform: rotate(-180deg);
}

.faq-items-list .faq-item .faq-answer {
    font-size: 20px;
    line-height: 30px;
    padding: 15px 0 32px;
    display: none;
}

.business-hours-wrapper {
    padding: 36px 140px 40px;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
}

.business-hours-wrapper .section-subtitle {
    margin-bottom: 60px;
}

.business-hours-wrapper .day-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.business-hours-wrapper .day-row:last-child {
    margin-bottom: 0;
}

.business-hours-wrapper .day-row .day {
    color: #b6292c;
    width: 255px;
}

.business-hours-wrapper .day-row .hours {
    font-weight: 300;
    font-style: italic;
    text-align: right;
}

.business-hours-wrapper .line-separator {
    margin-bottom: 32px;
}

.company-contact-block {
    padding-top: 37px;
}

.company-contact-block .section-subtitle {
    margin-bottom: 63px;
}

.company-contact-block .contact-map {
    margin-top: 39px;
}

.company-contact-block .contact-map img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.partners-list-wrapper {
    margin-top: 90px;
}

.partners-list .partners-item {
    text-align: center;
    margin-bottom: 60px;
}

.partners-list .partners-item .photo {
    display: flex;
    align-items: end;
    justify-content: center;
    position: relative;
    line-height: 0;
    margin-bottom: 53px;
}

.partners-list .partners-item .photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    max-width: 350px;
    height: 9px;
    border-radius: 4px;
    background: #b6292c;
    transform: translateX(-50%);
}

.partners-list .partners-item .name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}

.partners-list .partners-item .phone {
    font-size: 24px;
    font-weight: 300;
}

.partners-list .partners-item .phone .fa-phone {
    color: #b6292c;
    margin-right: 6px;
}

.car-wrapper .car-photos-wrapper {
    width: calc(48.35% - 15px);
}

.car-wrapper .car-info-wrapper {
    width: calc(51.65% - 15px);
}

.car-photos-thumbnails {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -7.5px;
}

.car-photos-thumbnails .thumbnail-img {
    width: 119px;
    height: 79px;
    object-fit: cover;
    margin: 7.5px;
    cursor: pointer;
}

.car-photos-thumbnails .thumbnail-img.active {
    border: 2px solid #b6292c;
}

.car-photos-gallery {
    position: relative;
}

.car-photos-gallery .image-box {
    margin-bottom: 22.5px;
}

.slick-prev,
.slick-next {
  width: 60px;
  height: 40px;
  border: 1px solid #050B20;
  border-radius: 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.slick-prev::before,
.slick-next::before {
  content: "\f105";
  color: #050B20;
  font-size: 14px;
  font-family: "Font Awesome 6 Pro";
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.slick-prev:hover,
.slick-next:hover {
  background-color: #050B20;
}

.slick-prev:hover:before,
.slick-next:hover:before {
  color: #fff;
}

.slick-prev {
  left: -150px;
}

.slick-prev:before {
  content: "\f104";
}

.slick-next {
  right: -150px;
}

.car-photos-gallery .slick-next,
.car-photos-gallery .slick-prev {
  border: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.car-photos-gallery .slick-prev::before,
.car-photos-gallery .slick-next::before {
  color: #fff;
}

.car-photos-gallery .slick-next {
  right: 20px;
}

.car-photos-gallery .slick-prev {
  left: 20px;
  z-index: 9;
}

.car-info-wrapper .car-info-inner {
    padding: 31px 30px 22px;
    border-radius: 8px; 
    border: 1px solid #cfcfcf;
}

.car-info-wrapper .car-info-inner .price {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 42px;
}

.car-info-wrapper .car-info-inner .price .sold-badge, .car-info-wrapper .car-info-inner .price .reserved-badge {
    height: 50px;
    margin-left: 30px;
    background-size: cover;
    background-repeat: no-repeat;
}

.car-info-wrapper .car-info-inner .price .sold-badge {
    width: 85px;
    background-image: url(../images/sold-badge.png);
}

.car-info-wrapper .car-info-inner .price .reserved-badge {
    width: 155px;
    background-image: url(../images/reserved-badge.png);
}

.car-info-wrapper .buttons-wrapper {
    margin-bottom: 40px;
}

.car-info-wrapper .buttons-wrapper .btn {
    width: 300px;
}

.car-info-wrapper .section-subtitle {
    margin-bottom: 33px;
}

.car-info-wrapper .description {
    font-size: 20px;
    line-height: 30px;
}

.car-characteristics {
    background: #f6f6f6;
    border-radius: 8px;
    padding: 42px 60px;
    display: flex;
    flex-direction: column;
    gap: 80px 40px;
    margin-top: 30px;
}

.car-characteristics .param {
    flex: 1 1 calc(33.333% - 20px);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #474747;
    font-weight: 300;
    font-size: 18px;
}

.car-characteristics .param i {
    color: #b6292c;
    font-size: 30px;
}

.car-wrapper .similar-products {
    margin-top: 88px;
}

.similar-products .cars-list .car-item .car-image .year {
    top: 12px;
    right: 10px;
    font-size: 10px;
    line-height: 14px;
    padding: 0 5px;
}

.similar-products .cars-list .car-item .title {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 7px;
}

.similar-products .cars-list .car-item .car-info {
    padding-top: 8px;
}

.similar-products .cars-list .car-item .vehicle-details ul {
    height: 32px;
    padding: 0 15px;
}

.similar-products .cars-list .car-item .vehicle-details ul li {
    font-size: 10px;
    line-height: 10px;
    flex-shrink: 0;
    max-width: 64px;
}

.similar-products .cars-list .car-item .vehicle-details ul li i {
    font-size: 9px;
    margin-right: 5px;
}

.cars-list .car-item .bottom {
    padding: 15px;
}

.similar-products .cars-list .car-item .bottom .price {
    font-size: 15px;
}

.similar-products .cars-list .car-item .bottom .btn {
    width: 126px;
    height: 27px;
    font-size: 14px;
}

.similar-products .cars-list .car-item .bottom .btn i {
    font-size: 10px;
    margin-right: 6px;
}

.similar-products .more-cars-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(100% - 30px);
    background: #f6f6f6;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: #666;
    font-size: 18px;
    transition: all .3s;
}

.similar-products .more-cars-button:hover {
    background: #f2f2f2;
}

.similar-products .more-cars-button i {
    font-size: 30px;
    margin-bottom: 20px;
}

/*Modal*/
.modal-dialog {
    position: relative;
    width: 605px;
    margin: 50px auto;
}

#check-availability-modal .modal-dialog {
    width: 1120px;
}

.modal-dialog-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none;
}

.modal-dialog-centered::before {
    display: block;
    height: calc(100vh - 1rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
    content: "";
}

body.modal-open {
    overflow: hidden;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
    will-change: transform, opacity;
}

.modal.show {
    display: block;
}

.modal-content {
    position: relative;
    width: 100%;
    padding: 82px 56px 100px;
    background: #FFF;
    border-radius: 8px;
    box-shadow: 0px 0 49px rgba(0, 0, 0, 0.9);
}

.modal-content .description {
    font-size: 18px;
    text-align: center;
}

.modal-content .section-title {
    margin-bottom: 100px;
}

.modal-close {
    position: absolute;
    right: 40px;
    top: 32px;
    background: none;
    color: #a7a7a7;
    font-size: 36px;
    cursor: pointer;
    border: 0;
    z-index: 10;
}

.modal-backdrop {
    opacity: 0;
    transition: opacity 0.3s ease;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1040;
}

.modal-backdrop.show {
    opacity: 1;
}

.modal .modal-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.modal .modal-title i {
    font-size: 20px;
    margin-right: 8px;
}

.modal .error-text {
    text-align: center;
}

.explode {
    -webkit-animation: explode .2s;
    animation: explode .2s;
}

.explode-out {
    -webkit-animation: explode-out .2s;
    animation: explode-out .2s;
}

@-webkit-keyframes explode {
    0% {
        transform: scale(0) rotate(-25deg)
    }

    to {
        transform: scale(1) rotate(0deg)
    }
}

@keyframes explode {
    0% {
        transform: scale(0) rotate(-25deg)
    }

    to {
        transform: scale(1) rotate(0deg)
    }
}

@-webkit-keyframes explode-out {
    0% {
        transform: scale(1) rotate(0px)
    }

    to {
        transform: scale(0) rotate(-25deg)
    }
}

@keyframes explode-out {
    0% {
        transform: scale(1) rotate(0deg)
    }

    to {
        transform: scale(0) rotate(-25deg)
    }
}

.custom-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.custom-checkbox input {
    display: none;
}

.custom-checkbox .label-text {
    font-size: 14px;
    line-height: 16px;
    font-style: italic;
}

.custom-checkbox .icon {
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-size: 20px;
    margin-right: 12px;
    color: #b6292c;
    content: "\f0c8";
}

.custom-checkbox input:checked+.icon {
    content: "\f14a";
}

.custom-checkbox input:not(:checked)+.icon::before {
    content: "\f0c8";
}

.custom-checkbox input:checked+.icon::before {
    content: "\f14a";
}

.form-car-info {
    margin: 95px 0 92px;
    background: #f6f6f6;
    padding: 30px;
    border-radius: 8px;
}

.form-car-info .photo {
    line-height: 0;
}

.form-car-info .photo img {
    width: 100%;
    height: auto;
}

.form-vehicle-details h4 {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.form-vehicle-details .price {
    text-align: center;
    padding: 6px 0;
    font-size: 20px;
    font-weight: 600;
    border: 2px solid #ebebeb;
    border-left: 0;
    border-right: 0;
    margin-bottom: 16px;
}

.form-vehicle-details ul {
    list-style: none;
    padding-left: 28px;
}

.form-vehicle-details ul li {
    display: flex;
    align-items: center;
    font-size: 18px;
    margin-bottom: 12px;
}

.form-vehicle-details ul li:last-child {
    margin-bottom: 0;
}

.form-vehicle-details ul li i {
    font-size: 15px;
    color: #b6292c;
    margin-right: 10px;
}

#check-availability-form .form-inner {
    /* padding: 0 90px; */
    padding: 0;
}

.form-group .form-control {
    width: 100%;
    height: 64px;
    padding: 0 45px 0 30px;
    border: 1px solid #c9c7cd;
    background: #fff;
    transition: all .3s;
    border-radius: 8px;
    color: #333;
    font-size: 20px;
    transition: all .3s;
}

::placeholder {
    color: #ccc;
    opacity: 1;
}

::-moz-placeholder {
    color: #ccc;
    opacity: 1;
}

:-moz-placeholder {
    color: #ccc;
    opacity: 1;
}

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

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

.form-group.file .form-control {
    line-height: 64px;
}

.form-group .mask {
    position: absolute;
    top: calc(50% + 1px);
    left: 10px;
    color: #333;
    font-size: 20px;
    transform: translateY(-50%);
    font-weight: 500;
}

.form-group.error .form-control {
    border-color: #ff0000;
}

.form-group textarea.form-control {
    font-family: 'Montserrat', sans-serif;
    height: auto;
    line-height: 23px;
    padding: 20px 30px;
    resize: none;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group::after {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-style: normal;
    color: #ff0000;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
}

.form-group.required::after, .form-group.error::after, .form-group.file::after {
    visibility: visible;
    opacity: 1;
}

.form-group.required::after {
    content: '*';
    font-size: 24px;
    margin-top: 6px;
}

.form-group.error::after {
    content: '\f071';
    font-family: 'Font Awesome 6 Pro';
    font-size: 20px;
    margin-top: 0;
}
.form-group.file::after {
    content: '\f0c6';
    font-family: 'Font Awesome 6 Pro';
    font-size: 24px;
    color: #ccc;
    font-weight: 400;
}

.form-group:not(.error) .form-control:hover, .form-group:not(.error) .form-control:focus {
    border-color: #999;
}

.lead-form .required-text {
    margin-bottom: 36px;
}

.lead-form .form-group textarea.form-control {
    height: 64px;
}

.lead-form .custom-checkbox {
    margin-top: 7px;
}

.lead-form .buttons-wrapper {
    /* margin-top: 96px; */
    margin-top: 0;
}

.finance-wrapper {
    padding: 70px 0 100px;
}

.finance-block {
    padding: 65px 0;
    border: 1px solid #cfcfcf;
    border-radius: 8px; 
    margin-bottom: 100px;
}

.finance-block .section-subtitle {
    margin-bottom: 60px;
}

.finance-block .section-description {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
} 

.field {
    position: relative;
}

.field label {
    display: block;
    font-size: 20px;
    margin-left: 10px;
}

.field .notice {
    position: absolute;
    bottom: 64px;
    right: 10px;
    font-size: 16px;
    color: #ccc;
}

.calculator-wrapper .buttons-wrapper {
    margin-bottom: 40px;
}

.calculator-wrapper .btn {
    width: 300px;
    max-width: 300px;
}

.calculator-wrapper .calculator-result {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.calculator-wrapper .calculator-result span {
    color: #b6292c;
    font-size: 24px;
    font-weight: 600;
    margin-left: 90px;
}

.steps-wrapper .steps-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 45px;
    margin-bottom: 14px;
}

.steps-wrapper .steps-header .borrower-information {
    font-size: 20px;
    color: #b6292c;
}

.steps-wrapper .steps-list {
    display: flex;
    align-items: center;
    background: #f1f1f1;
    height: 96px;
    padding: 0 45px;
    gap: 40px;
}

.steps-wrapper .steps-list .step-item {
    display: flex;
    flex: 1;
    position: relative;
    align-items: center;
}

.steps-wrapper .steps-list .step-item::before {
    content: '\f178';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Font Awesome 6 Pro';
    font-weight: 700;
    color: #dadada;
    font-size: 12px;
}

.steps-wrapper .steps-list .step-item:last-child::before {
    display: none;
}

.steps-wrapper .steps-list .step-item.active::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 14px solid #f1f1f1;
}

.steps-wrapper .steps-list .step-item .step-number {
    width: 34px;
    height: 34px;
    line-height: 34px;
    font-size: 20px;
    border-radius: 8px;
    background: #ccc;
    color: #f1f1f1;
    text-align: center;
    flex-shrink: 0;
    transition: all .3s;
    margin-right: 10px;
}

.steps-wrapper .steps-list .step-item.active .step-number {
    background: #212121;
}

.steps-wrapper .steps-list .step-item .step-title {
    font-size: 16px;
    line-height: 20px;
    color: #ccc;
    white-space: nowrap;
}

.steps-wrapper .steps-list .step-item.active .step-title {
     color: #212121;
}

.finance-wrapper .steps-list {
    margin-bottom: 47px;
}

.finance-wrapper .step-content {
    padding-top: 47px;
}

.pre-approved-form .btn {
    width: 300px;
    max-width: 300px;
}

.pre-approved-form .required-text {
    margin-bottom: 6px;
}

.form-group .checkboxes-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 7px;
}

.form-group .checkboxes-row label {
    flex: 1;
}

.form-group .checkboxes-row label {
    margin: 0;
}

.pre-approved-form .accept-terms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 60px 0 30px;
}

.pre-approved-form .accept-terms .terms-text {
    font-size: 14px;
    line-height: 16px;
    font-style: italic;
}

.pre-approved-form .accept-terms .custom-checkbox {
    width: 100%;
    flex-shrink: 0;
    justify-content: center;
    margin-bottom: 30px;
}

.pre-approved-form .accept-terms .custom-checkbox .label-text {
    font-size: 20px;
    font-style: normal;
}

header .mobile-menu-wrapper {
    display: none;
}

header .mobile-menu-wrapper {
    position: absolute;
    top: 0;
    right: 15px;
    padding: 16px 0;
}

header .mobile-menu-wrapper .mobile-menu-button {
    border: 0;
    background: none;
    font-size: 40px;
    color: #212121;
    cursor: pointer;
} 

header .mobile-menu-wrapper .mobile-menu-button.active .fa-solid::before {
    content: '\f00d';
}

header .col-mobile-btn {
    display: none;
}

.page-404-wrapper .section-description {
    font-size: 18px;
    text-align: center;
}

.page-404-wrapper .section-title {
    margin-bottom: 60px;
}

.page-404-wrapper .buttons-wrapper {
    margin-top: 60px;
}

@media (max-width: 1695px) {
    .business-hours-wrapper .day-row {
        margin-bottom: 21px;
    }
}

@media (max-width: 1535px) {
    .business-hours-wrapper .day-row {
        font-size: 24px;
        margin-bottom: 15px;
        line-height: 20px;
    }

    .business-hours-wrapper .line-separator {
        margin-bottom: 19px;
    }

    .how-to-buy-list .how-to-buy-item .icon {
        top: -38px;
        font-size: 70px;
        padding: 0 20px;
        margin-bottom: -38px;
    }

    .how-to-buy-list .how-to-buy-item {
        margin-top: 37px;
    }

    .how-to-buy-list .how-to-buy-item .step {
        font-size: 22px;
    }

    .how-to-buy-list .how-to-buy-item .title {
        font-size: 28px;
        line-height: 32px;
        height: 64px;
    }

    .how-to-buy-list .how-to-buy-item .body {
        font-size: 18px;
        line-height: 24px;
        margin-top: 20px;
    }

    .how-to-buy-list .how-to-buy-item {
        height: 340px;
    }

    .cars-list .car-item .vehicle-details ul {
        padding: 0 12px;
    }

    .cars-list .car-item .title {
        font-size: 18px;
    }

    .cars-list .car-item .bottom .price {
        font-size: 22px;
    }

    .cars-list .car-item .bottom .btn {
        width: 146px;
        height: 38px;
        font-size: 16px;
    }

    .car-characteristics {
        padding: 42px 30px;
    }

    .car-characteristics .param {
        padding: 0 15px;
    }

    .cars-list .col-xxl-2:nth-child(5) {
        display: none;
    }

    .car-photos-thumbnails .thumbnail-img {
        width: 136px;
        height: 91px;
    }

    .similar-products .more-cars-button {
        height: inherit;
        padding: 30px 20px;
    }
}

@media (max-width: 1279px) {
    .wellcome-screen-title {
        width: 900px;
    }

    .business-hours-wrapper {
        padding: 36px 40px 25px;
    }

    .partners-list .partners-item .photo img {
        width: auto;
        height: 430px;
    }

    .how-to-buy-list .how-to-buy-item {
        height: 380px;
    }

    .steps-wrapper .steps-header {
        padding: 0 20px;
    }

    .steps-wrapper .steps-list {
        padding: 0 20px;
        gap: 30px;
    }

    .steps-wrapper .steps-list .step-item::before {
        right: -20px;
    }

    .filter-wrapper {
        margin: 0 auto 60px;
    }

    .filter-wrapper .buttons-wrapper {
        margin-top: 30px;
    }

    .car-photos-thumbnails .thumbnail-img {
        width: 145px;
        height: 97px;
    }

    #check-availability-modal .modal-dialog {
        width: calc(100% - 20px);
    }
}

@media (max-width: 1023px) {
    .wrapper {
        padding-top: 80px;
    }

    header {
        height: 80px;
    }

    header .logo-wrapper {
        padding: 6px 15px;
    }

    header .logo img {
        width: 112px;
        height: auto;
    }

    header .col-mobile-btn {
        display: block;
    }

    header .header-nav {
        display: none;
        flex-wrap: wrap;
        background: #fff;
        z-index: 99;
        border-radius: 0 0 8px 8px;
        position: absolute;
        right: 15px;
        top: -1px;
        padding: 20px;
        width: calc(100% - 30px);
        max-width: 100%;
        box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
        justify-content: center;
        -webkit-animation: explode .2s;
        animation: explode .2s;
    }

    header .header-nav.active {
        display: flex;
    }

    header .mobile-menu-wrapper {
        display: block;
    }

    .header-nav ul {
        display: block;
        height: inherit;
    }

    .wellcome-screen-title {
        width: 100%;
    }

    .header-nav ul li {
        margin-left: 0;
    }

    .header-nav ul li a {
        padding: 20px;
        text-align: center;
    }

    .homepage-screen-1 .row {
        flex-direction: column-reverse;
    }

    .homepage-screen-1 .screen-inner {
        background: linear-gradient(to top, rgba(245, 245, 245, .9), transparent);
        padding: 87px 40px 92px;
    }

    .homepage-screen-2 .image img {
        margin-bottom: 60px;
    }

    footer .col-lg-4:nth-child(1) {
        order: 2;
    }

    footer .col-lg-4:nth-child(2) {
        order: 1;
    }

    footer .col-lg-4:nth-child(3) {
        order: 3;
    }

    footer .image img {
        margin-bottom: 50px;
    }

    .company-contact-block .contact-map {
        margin-bottom: 40px;
    }

    /* .partners-list .col-lg-4:last-child .partners-item {
        margin-top: 40px;
    } */

    .contact-us-wrapper .row {
        flex-direction: column-reverse;
    }

    .contact-us-wrapper .image {
        margin-bottom: 40px;
    }

    .steps-wrapper .steps-list {
        padding: 20px;
        height: auto;
        flex-wrap: wrap;
        justify-content: center;
    }

    .steps-wrapper .steps-list .step-item {
        flex: 0;
    }

    .steps-wrapper .steps-list .step-item.active::after {
        display: none;
    }

    .filter-wrapper .filter-item .filter-item-body {
        padding-left: 15px;
    }

    .car-page .breadcrumbs-wrapper .col-md-6 {
        width: 100%;
        text-align: center;
    }

    .car-page .breadcrumbs-wrapper .col-md-6 .title {
        margin-bottom: 30px;
    }

    .car-page .breadcrumbs-wrapper .breadcrumbs ul {
        justify-content: center;
    }

    .car-wrapper .d-flex {
        flex-wrap: wrap;
    }

    .car-wrapper .car-photos-wrapper {
        width: calc(100%);
    }

    .car-photos-thumbnails .thumbnail-img {
        width: 135px;
        height: 90px;
    }

    .car-wrapper .car-info-wrapper {
        width: 100%;
        margin-top: 40px;
    }

    .cars-list .col-xxl-2:nth-child(5) {
        display: block;
    }

    .similar-products .more-cars-button {
        height: calc(100% - 30px);
    }

    .form-car-info .photo {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .wrapper {
        padding-top: 60px;
    }

    body {
        font-size: 16px;;
    }

    .btn {
        padding: 0 20px;
        height: 54px;
        font-size: 22px;
    }

    .btn .fa-solid, .btn .fa-regular, .btn .fa-light, .btn .fa-thin, .btn .fa-brands {
        font-size: 18px;
        margin-right: 10px;
    }

    header {
        height: 60px;
    }

    header .header-nav {
        right: 0;
        width: 100%;
    }

    .wellcome-screen {
        width: 100%;
        height: auto;
    }

    .wellcome-screen-title {
        height: auto;
        padding: 20px;
        margin: 40px 0;
    }

    .wellcome-screen-title h1 {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 20px;
    }

    .wellcome-screen-title h1 br {
        display: none;
    }

    header .mobile-menu-wrapper .mobile-menu-button {
        font-size: 32px;
    }
    
    header .mobile-menu-wrapper {
        padding: 11px 0;
    }

    header .logo img {
        width: 76px;
    }

    .header-nav ul li a {
        padding: 10px;
    }

    .homepage-screen-1 .screen-inner h2 {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 40px;
    }

    .homepage-screen-1 .screen-inner {
        padding: 20px;
    }

    .image img {
        width: calc(100% - 30px);
    }

    .homepage-screen-1 .screen-inner p {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 20px;
    }

    .homepage-screen-2, .contact-us-wrapper {
        padding: 40px 0;
    }

    .homepage-screen-2 .image img {
        margin-bottom: 30px;
    }

    .section-title.type-1::before, .section-title.type-1::after {
        width: 30px;
        height: 8px;
    }

    .section-title.type-1 {
        position: relative;
        color: #fff;
        font-size: 24px;
        line-height: 28px;
        padding: 0 40px;
        text-transform: uppercase;
        text-align: center;
    }

    .rating-wrapper .rating {
        font-size: 22px;
        gap: 10px;
        margin-top: 30px;
    }

    .rating-wrapper .rating-number {
        font-size: 18px;
        margin-top: 15px;
    }

    .rating-wrapper .google-reviews-count {
        font-size: 16px;
    }

    .rating-wrapper .buttons-wrapper {
        margin-top: 30px;
    }

    .section-title.type-2 {
        position: relative;
        display: block;
        max-width: fit-content;
        padding-bottom: 8px;
        font-size: 24px;
        line-height: 28px;
        font-weight: 600;
        text-align: center;
        margin: 0 auto;
    }

    .section-title.type-2::after {
        max-width: 180px;
        height: 4px;
    }

    .testimonials-wrapper .section-title, .how-to-buy-wrapper .section-title, .inventory-wrapper .section-title, .faq-wrapper .section-title, .contact-wrapper .section-title, .car-wrapper .section-title, .page-404-wrapper .section-title {
        margin-bottom: 40px;
    }

    .testimonials-wrapper, .how-to-buy-wrapper, .inventory-wrapper, .faq-wrapper, .contact-wrapper, .car-wrapper, .page-404-wrapper {
        padding: 40px 0;
    } 

    .testimonials-list .testimonial-item .testimonial-photo img {
        width: 80px;
        height: 80px;
    }

    .testimonials-list .testimonial-item .testimonial-photo {
        top: -45px;
        width: 90px;
        height: 90px;
        padding: 5px;
        margin: 0 auto -60px;
    }

    .testimonials-list .testimonial-item .testimonial-author {
        font-size: 18px;
    }

    .testimonials-list .testimonial-item .testimonial-author {
        font-size: 18px;
        margin-top: 24px;
    }

    .testimonials-list .testimonial-item .testimonial-body {
        padding: 30px 20px;
    }

    .testimonials-list .testimonial-item {
        height: auto;
        margin: 40px 0;
    }

    .buttons-wrapper {
        gap: 15px;
    }

    .testimonials-wrapper .buttons-wrapper .btn {
        min-width: 280px;
    }

    footer {
        padding: 40px 0;
    }

    footer .image img {
        max-width: 180px;
        margin-bottom: 20px;
    }

    footer .company-contact {
        margin-bottom: 30px;
    }

    footer .footer-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .company-contact .contact-item {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .work-hours .work-hours-item {
        font-size: 16px;
    }

    footer .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        text-align: center;
        margin-top: 30px;
    }

    footer .footer-nav ul li {
        margin-bottom: 0;
    }

    footer .footer-nav ul li a {
        font-size: 16px;
    }

    .breadcrumbs-wrapper .title {
        font-size: 22px;
        text-align: center;
        margin-bottom: 30px;
    }

    .breadcrumbs-wrapper .breadcrumbs ul li, .breadcrumbs-wrapper .breadcrumbs ul li a {
        font-size: 18px;
    }

    .breadcrumbs-wrapper .breadcrumbs ul li::after {
        font-size: 12px;
        margin: 0 10px;
    }

    .breadcrumbs-wrapper .breadcrumbs ul {
        justify-content: center;
    }

    .company-contact-block {
        padding-top: 0;
    }

    .company-contact-block .section-subtitle {
        margin-bottom: 30px;
    }

    .section-subtitle {
        font-size: 22px;
        line-height: 24px;
        padding: 0 30px;
    }

    .section-subtitle::before, .section-subtitle::after {
        width: 20px;
        height: 3px;
    }

    .business-hours-wrapper .day-row {
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 10px;
    }

    .business-hours-wrapper .section-subtitle {
        margin-bottom: 30px;
    }

    .business-hours-wrapper .day-row .hours {
        white-space: nowrap;
    }

    .business-hours-wrapper .line-separator {
        margin-bottom: 12px;
    }

    .partners-list-wrapper {
        margin-top: 40px;
    }
    
    .partners-list .partners-item .photo {
        margin-bottom: 15px;
    }

    .partners-list .partners-item .name {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .partners-list .partners-item .phone {
        font-size: 18px;
    }

    .partners-list .partners-item {
        margin-bottom: 30px;
    }

    .faq-items-list .faq-item {
        padding: 0 20px;
    }

    .faq-items-list .faq-item .faq-question {
        padding: 15px 25px 15px 0;
        font-size: 20px;
        line-height: 24px;
    }

    .faq-items-list .faq-item .faq-question::after {
        font-size: 18px;
        margin-top: -12px;
    }

    .contact-us-wrapper .description {
        font-size: 20px;
        line-height: 24px;
        margin: 30px 0;
    }

    .faq-items-list .faq-item .faq-answer {
        font-size: 16px;
        line-height: 24px;
        padding: 10px 0 20px;
    }

    .how-to-buy-list {
        margin-bottom: 0;
    }

    .how-to-buy-list .how-to-buy-item .icon {
        top: -32px;
        font-size: 60px;
        margin-bottom: -32px;
    }

    .how-to-buy-list .how-to-buy-item {
        margin-top: 32px;
    }

    .how-to-buy-list .how-to-buy-item .step {
        font-size: 18px;
        margin-top: 0;
    }

    .how-to-buy-list .how-to-buy-item .title {
        font-size: 22px;
        line-height: 26px;
        height: auto;
    }

    .how-to-buy-list .how-to-buy-item {
        height: inherit;
        padding: 0 20px 20px;
        margin-bottom: 40px;
    }

    .how-to-buy-wrapper {
        margin-bottom: 60px;
    }

    .testimonials-list.last-row {
        margin-bottom: 0;
    }

    .finance-wrapper {
        padding: 40px 0;
        margin-bottom: -40px;
    }

    .finance-block {
        padding: 30px 0;
        margin-bottom: 40px;
    }

    .finance-block .section-subtitle {
        margin-bottom: 30px;
    }

    .finance-block .section-description {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .field label {
        font-size: 16px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group .form-control {
        height: 48px;
        padding: 0 25px 0 20px;
        font-size: 16px;
    }

    .calculator-wrapper .calculator-result {
        font-size: 18px;
    }

    .calculator-wrapper .calculator-result span {
        font-size: 20px;
    }

    .calculator-wrapper .buttons-wrapper {
        margin-bottom: 30px;
    }

    .steps-wrapper .steps-header .borrower-information {
        font-size: 16px;
    }

    .steps-wrapper .steps-header {
        margin-bottom: 10px;
    }

    .steps-wrapper .steps-list .step-item .step-number {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 14px;
        margin-right: 6px;
    }

    .steps-wrapper .steps-list .step-item .step-title {
        font-size: 14px;
        line-height: 16px;
    }

    .finance-wrapper .steps-list {
        margin-bottom: 20px;
    }

    .finance-wrapper .step-content {
        padding-top: 20px;
    }

    .form-group::after {
        right: 12px;
    }

    .form-group.required::after {
        font-size: 16px;
        margin-top: 4px;
    }

    .form-group.error::after {
        font-size: 16px;
    }

    .form-group.file::after {
        font-size: 18px;
    }

    .field .notice {
        bottom: 47px;
        font-size: 14px;
    }

    .form-group.file .form-control {
        line-height: 48px;
    }

    .pre-approved-form .buttons-wrapper {
        margin-top: 40px;
    }

    .cars-list .car-item {
        max-width: 350px;
        margin: 0 auto 30px;
    }

    .filter-wrapper .filter-item .filter-item-header {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .filter-wrapper .buttons-wrapper {
        margin-top: 10px;
    }

    .filter-wrapper .filter-item .filter-item-header::after {
        font-size: 18px;
    }

    .filter-wrapper .filter-item .filter-item-body ul {
        margin-bottom: 10px;
    }

    .filter-wrapper .filter-item .filter-item-body ul li {
        font-size: 16px;
        padding-right: 40px;
    }

    .filter-wrapper .filter-item .filter-item-body ul li::after {
        font-size: 18px;
    }

    .filter-wrapper {
        margin: 0 auto 40px;
    }

    .car-photos-gallery .image-box {
        margin-bottom: 15px;
    }

    .car-page .breadcrumbs-wrapper .breadcrumbs ul {
        flex-wrap: wrap;
    }

    .car-photos-wrapper .image img {
        width: 100%;
    }

    .car-photos-thumbnails .thumbnail-img {
        width: calc(33.33333% - 15px);
        height: auto;
    }

    .slick-prev, .slick-next {
        width: 40px;
        height: 30px;
    }

    .car-photos-gallery .slick-next {
        right: 10px;
    }

    .car-photos-gallery .slick-prev {
        left: 10px;
    }

    .car-info-wrapper .car-info-inner {
        padding: 20px;
    }

    .car-info-wrapper .buttons-wrapper .btn {
        width: 264px;
        max-width: 264px;
    }

    .car-info-wrapper .description {
        font-size: 16px;
        line-height: 24px;
    }

    .car-info-wrapper .car-info-inner .price {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .car-info-wrapper .car-info-inner .price .sold-badge {
        width: 65px;
    }

    .car-info-wrapper .car-info-inner .price .sold-badge, .car-info-wrapper .car-info-inner .price .reserved-badge {
        height: 38px;
        margin-left: 20px;
    }

    .car-info-wrapper .car-info-inner .price .reserved-badge {
        width: 117px;
    }

    .car-characteristics {
        padding: 30px 20px;
        flex-direction: row;
    }

    .car-characteristics .param i {
        font-size: 20px;
    }

    .car-characteristics .param {
        font-size: 16px;
    }

    .car-wrapper .similar-products {
        margin-top: 40px;
    }

    .car-characteristics .param {
        padding: 0;
    }

    .car-characteristics .param {
        font-size: 14px;
        line-height: 16px;
    }

    .car-characteristics .param {
        font-size: 14px;
        line-height: 16px;
        margin-bottom: 20px;
        flex: 1 1 100%;
    }

    .car-characteristics .param:last-child {
        margin-bottom: 0;
    }

    .similar-products .cars-list .car-item {
        max-width: 280px;
        margin: 0 auto 30px;
    }

    .form-car-info .photo {
        margin-bottom: 30px;
    }

    .modal-close {
        right: 15px;
        top: 10px;
        font-size: 24px;
    }

    .modal-content {
        width: 100%;
        padding: 40px 20px 40px;
    }

    .modal-content .description {
        font-size: 16px;
        margin-top: 30px;
    }

    .form-car-info {
        margin: 30px 0;
        padding: 10px;
    }

    .form-vehicle-details h4 {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .form-vehicle-details .price {
        font-size: 18px;
    }

    .form-vehicle-details ul {
        padding-left: 0;
    }

    .form-vehicle-details ul li {
        display: flex;
        align-items: center;
        font-size: 16px;
        margin-bottom: 8px;
    }

    #check-availability-form .form-inner {
        padding: 0;
    }

    .lead-form .required-text {
        margin-bottom: 10px;
    }

    .lead-form .buttons-wrapper {
        margin-top: 40px;
    }

    #check-availability-modal .modal-dialog {
        width: 100%;
    }

    .page-404-wrapper .section-description {
        font-size: 16px;
    }
    
    .page-404-wrapper .buttons-wrapper {
        margin-top: 40px;
    }

    .form-group .mask {
        top: 50%;
        left: 5px;
        font-size: 16px;
    }
}

@media (max-width: 639px) {
    .car-photos-thumbnails .thumbnail-img {
        width: calc(50% - 15px);
    }
}