﻿@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;700&display=swap");

#app {
    overflow: hidden;
}

/* Header */
.header {
    z-index: 10;
    position: relative;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.35);
    /* padding-bottom: 10px; */
}

    .header .header-top-wrapper .header-top-wrap ul {
        margin-bottom: 0
    }

.header-top-wrapper {
    background-color: #003265;
}

.header-top-wrap {
    max-width: 1200px;
    margin: 0 69px;
    display: flex;
    justify-content: space-between;
    color: var(--white-color);
    font-size: 0.9rem;
    font-weight: 510;
    margin: auto;
}

    .header-top-wrap a {
        color: var(--white-color);
    }

.header-top-left {
    padding: 12.25px 15px;
}

    .header-top-left i {
        /*font-size: 1.2rem;*/
    }

.header-top-right i {
    /*font-size: 1.4rem;*/
}

.icon-email,
.icon-clock,
.icon-user {
    color: var(--white-color);
    margin-right: 6px;
}

.header-top-left ul,
.header-top-right ul {
    display: flex;
    position: relative;
}

    .header-top-left ul li + li::before {
        content: "|";
        position: absolute;
        color: #4f4f4f;
        display: inline-block;
        padding: 0 13px;
    }

.icon-clock {
    margin-left: 30px;
}

.header-top-right {
    text-transform: uppercase;
    padding: 12.25px 15px;
}

.header-top-social a {
    margin-right: 11px;
    color: var(--white-color);
}

.icon-user {
    margin-left: 6px;
}

#login-top {
    margin-right: 21px;
}

.header-top-login a + a::before {
    content: "|";
    position: absolute;
    color: #4f4f4f;
    display: inline-block;
    margin: 0 -13px;
}

.btn-bars {
    display: none;
    font-size: 3rem;
}

    .btn-bars a i {
        color: #525252;
    }

.header-top-right a:hover,
.btn-search i:hover {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.header-main-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 80px;
    opacity: .5;
    z-index: -1;
}

.header-middle-logo {
    min-width: 300px;
    display: flex;
    justify-content: center;
}
.header-middle-contact {
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-middle-contact ul {
    display: flex;
    flex-direction: row;
}

.header-middle-contact-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.btn-round {
    border-radius: 50%;
}

.header-middle-address,
.header-middle-timeworking,
.header-middle-phone {
    display: flex;
    flex-direction: column;
}

.header-middle-container {
    max-width: 1200px;
    padding: 20px 0;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    margin: auto;
}
.header-middle {
    width: 100%;
    background-color: #003265;
}

.header-container-wrap {
    height: 50px;
}

    .header-container-wrap .logo-two {
        display: none;
    }

.header-container {
    max-width: 1200px;
    margin: 0 69px 0px;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    margin: auto;
}

/* stick-menu */
.stick-menu .btn-bars a i {
    color: #525252
}

.header-container-wrap.stick-menu {
    position: fixed;
    padding: 0;
    top: 0;
    background-color: #003265;
    width: 100%;
    box-shadow: 0 10px 15px rgb(25 25 25 / 10%);
    border-radius: 0;
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    height: auto;
}

.header-container-wrap .logo-one {
    display: none;
}

.header-container-wrap.stick-menu .logo-one {
    display: none;
}

.header-container-wrap.stick-menu .logo-two {
    display: block;
}

.header-container-wrap.stick-menu .navbar-wrap-list a {
    color: #FFFFFF;
}
.header-container-wrap.stick-menu .navbar-wrap-list-child a  {
    color: #525252;
}

.stick-menu .navbar-wrap .navbar-wrap-item.active a {
    color: var(--primary-color);
}

.header-container-wrap.stick-menu .header-cart i,
.header-container-wrap.stick-menu .btn-search i {
    color: #525252;
}

.stick-menu .btn-search::before {
    background-color: #000;
}

.stick-menu .btn-search i:hover {
    color: var(--primary-color);
}

.stick-menu .navbar-wrap-item a:hover {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

/* stick-menu-end */
.navbar-wrap {
    flex: 1;
    align-items: center;
    display: flex;
    justify-content: center;
}

    .navbar-wrap .navbar-wrap-list {
        display: flex;
        justify-content: center;
        align-items: center;
/*        font-size: 1.4rem;*/
        text-transform: uppercase;
        font-weight: 700;
        margin-right: -2px;
    }

.navbar-wrap-item a {
    padding: 36px 18px;
}

.navbar-wrap-item {
    position: relative;
}

.navbar-wrap .navbar-wrap-item.active a {
    color: var(--primary-color);
}

.navbar-wrap-item a:hover {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.navbar-wrap-list-child {
    position: absolute;
    min-width: 350px;
    background-color: var(--white-color);
    top: 40px;
    opacity: 0;
    visibility: hidden;
    transform-origin: 0 0;
    transform: scale(1, 0);
    box-shadow: 0px 30px 70px 0px rgb(137 139 142 / 15%);
    border: 1px solid #f5f5f5;
    display: block;
    transition: all 0.3s ease-in-out;
    z-index: 10;
}

.navbar-wrap-list-child {
    padding: 5px 0;
}

    .navbar-wrap-list-child li a {
        color: #5d5d5d;
        text-transform: none;
        padding: 0 10px 0 25px;
        line-height: 40px;
        font-weight: 600;
    }

.inventory-hv:hover .navbar-wrap-list-child,
.pages-hv:hover .navbar-wrap-list-child,
.blog-hv:hover .navbar-wrap-list-child {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.navbar-wrap-list a {
    /* color: var(--black-color); */
    color: #525252;
}

.logo {
    padding: 17px 15px;
}

.logo__link img {
    height: 80px;
}

.header-action {
    padding: 0 7px;
    margin-right: 0 15px;
    justify-content: center;
    display: flex;
}

    .header-action > ul {
        display: flex;
        /* width: 80px; */
        justify-content: space-between;
        align-items: center;
        /* margin-left: 20px; */
    }

.header-cart {
    padding: 2px;
    position: relative;
}

    .header-cart::after {
        content: "";
        width: 40px;
        height: 51px;
        position: absolute;
        left: -16px;
        top: 14px;
    }

    .header-cart a {
        position: relative;
    }

        .header-cart a span {
            position: absolute;
            right: 0px;
            left: 10px;
            top: -7px;
            width: 16px;
            height: 16px;
            text-align: center;
            border-radius: 50%;
            font-size: 12px;
            font-weight: 700;
            line-height: 16px;
            color: #fff;
            box-shadow: 0px 5px 12.09px 0.91px rgb(71 51 127 / 14%);
            background: #ff5400;
        }

    .header-cart i,
    .btn-search i {
        font-size: 2.5rem;
        color: #525252;
    }

.btn.btn__quote {
    padding: 12.5px;
    margin-right: 2px;
    width: 129px;
}

.btn-search {
    position: relative;
}

    .btn-search i {
        display: flex;
        width: 24px;
        padding: 10px;
        flex-direction: row-reverse;
        cursor: pointer;
    }

        .btn-search i:hover {
            color: var(--primary-color);
        }

.btn__quote:hover {
    background-color: var(--black-color);
    transition: all 0.3s ease;
}

/* .btn-search::before {
    content: "";
    position: absolute;
    left: -9px;
    top: 50%;
    transform: translateY(-50%);
    background: #dddcdc;
    width: 1px;
    height: 41px;
    opacity: .23;
} */
.header-container-wrap.stick-menu .cart-wrap {
    top: 44px;
}

/* Sidebar Mobile */
.side-bar-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    visibility: hidden;
}

    .side-bar-wrapper.show {
        visibility: visible;
    }

        .side-bar-wrapper.show .btn-close {
            /* transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg); */
        }

.side-bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
    background: #202020;
    width: 60%;
    min-width: 280px;
    display: none;
    transform: translateX(-100%);
    transition: all 0.7s ease;
    opacity: 0;
    z-index: 10;
}

.side-bar-wrapper.show .overlay__mobile {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
    transition: all 0.3s ease;
}

.side-bar-wrapper.show .side-bar {
    opacity: 1;
    transform: translateX(0);
}

.side-bar .btn-close {
    position: absolute;
    right: 30px;
    top: 10px;
    line-height: 30px;
    width: 24px;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}

    .side-bar .btn-close i {
        font-size: 3.2rem;
    }

.side-bar-logo {
    position: relative;
    padding: 30px 25px;
}

    .side-bar-logo img {
        width: 50px;
    }

.nav-wrapper__item {
    position: relative;
    display: block;
}

.nav-list-child {
    display: none;
}

    .nav-list-child.show {
        display: block;
    }

.nav-wrapper li {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

    .nav-wrapper li a {
        color: var(--white-color);
    }

.nav-wrapper__item > a {
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 500;
}

.nav-wrapper__item ul li a {
    margin-left: 20px;
}

.nav-wrapper__item ul li a {
    font-size: 1.5rem;
    text-transform: capitalize;
}

.nav-wrapper li a {
    padding: 14px 25px;
    display: block;
}

.drop-down {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 1.4rem;
    line-height: 32px;
    color: #ffffff;
    /* background: rgba(255, 255, 255, 0.10); */
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 5;
}

    .drop-down.open {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

/* has items */
.cart-wrap {
    background-color: var(--white-color);
    position: absolute;
    width: 350px;
    right: -23px;
    top: 53px;
    padding: 25px;
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease 0s;
    transform: translateY(10px);
    z-index: 10;
    border-radius: 4px;
}

.header-cart:hover .cart-wrap {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.social-links {
    position: relative;
    text-align: center;
    padding: 37px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

    .social-links ul li {
        position: relative;
        display: inline-block;
        margin: 0px 10px 10px;
    }

        .social-links ul li i {
            font-size: 1.6rem;
            color: var(--white-color);
        }

/* no item */
.cart-wrap-no__item {
    position: absolute;
    background-color: var(--white-color);
    width: 350px;
    right: -23px;
    top: 53px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease 0s;
    transform: translateY(10px);
    z-index: 10;
    border-radius: 4px;
}

.header-cart:hover .cart-wrap-no__item {
    visibility: hidden;
    opacity: 0;
    transform: translateY(0px);
}

.header-cart-list_msg {
    font-size: 1.8rem;
    margin-top: 20px;
    color: #979da0;
}

.cart-wrap-no__item img {
    width: 200px;
    height: 200px;
}

.mini-cart {
    max-height: 26vh;
    overflow-y: auto;
}

    .mini-cart::-webkit-scrollbar {
        width: 6px;
        background-color: #F5F5F5;
    }

.mini-cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 17px;
}

    .mini-cart-item:last-child {
        margin-bottom: 0;
    }

    .mini-cart-item img {
        width: 100px;
        height: 87px;
    }

.cart-item__heading {
    font-size: 15px;
    font-weight: 600px;
    line-height: 21px;
    margin-top: 16px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

    .cart-item__heading a:hover {
        color: var(--primary-color);
        transition: all 0.3s ease;
    }

    .cart-item__heading a {
        color: #323232;
    }

.header-action .icon-trash {
    font-size: 18px;
    color: #323232;
    margin-right: 6px;
}

.icon-trash:hover {
    color: var(--primary-color);
}

.cart-item-content {
    margin-left: 15px;
    margin-top: -38px;
    max-width: 178px;
    height: 87px;
    padding-right: 25px;
}

.cart-item-price {
    font-size: 1.4rem;
    color: #8b8b8b;
    font-weight: 500;
    margin-top: 15px;
}

.item-price__old {
    margin-left: 6px;
    text-decoration: line-through;
}

.total-price {
    color: #6a6a6a;
    font-weight: 500;
    font-size: 1.4rem;
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 26px;
    border-top: 1px solid rgb(34 34 34 / 21%);
}

.btn.btn-shopping {
    width: 100%;
    height: 56px;
    margin: 22px 0 8px;
    border-radius: 0px;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 500;
}

.btn-checkout {
    width: 100%;
    height: 56px;
    background-color: #222;
    border-radius: 0px;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
}

.header-search-body input::placeholder {
    color: var(--white-color);
    opacity: 1;
}

.header-search-body {
    padding: 0 83px;
    background-color: #333;
    height: 60px;
    width: 100%;
    position: relative;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform-origin: 0 0;
    transform: scale(1, 0);
    transition: all 0.4s ease-in-out;
}

    .header-search-body.stick-search {
        background-color: #333;
        position: fixed;
        top: 87px;
        left: 0;
        right: 0;
        z-index: -1;
    }

    .header-search-body.show {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

.input-search {
    padding: 0px;
    border: none;
    height: 60px;
    color: #ffffff;
    background-color: transparent;
    width: 95%;
    outline: none;
    font-size: 1.4rem;
}

.btn-search-cart {
    top: 50%;
    right: 83px;
    color: #ffffff;
    font-size: 22px;
    position: absolute;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    padding: 0;
    cursor: pointer;
}

.searchX-box {
    width: fit-content;
    height: fit-content;
    position: relative;
}

.input-searchX {
    height: 40px;
    width: 40px;
    border-style: none;
    /* padding-left: 10px; */
    font-size: 14px;
    letter-spacing: 2px;
    outline: none;
    border-radius: 25px;
    transition: all .5s ease-in-out;
    background-color: #525252;
    padding-right: 40px;
    color: #fff;
}

    .input-searchX::placeholder {
        /* color:rgba(207, 25, 25, 1); */
        color: white;
        font-size: 14px;
        letter-spacing: 2px;
        font-weight: 100;
    }

.btn-searchX {
    width: 40px;
    height: 40px;
    border-style: none;
    font-size: 15px;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    right: 0px;
    color: #ffffff;
    background-color: #525252;
    pointer-events: painted;
}

    .btn-searchX:focus ~ .input-searchX {
        width: 200px;
        border-radius: 16px;
        padding-left: 10px;
        background-color: #525252;
        border-bottom: 1px solid rgba(255, 255, 255, .5);
        transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
    }

.input-searchX:focus {
    width: 200px;
    padding-left: 10px;
    border-radius: 16px;
    background-color: #525252;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}

/* Slider */


/* Main */
.main-slider {
    padding: 680px 0 257px;
    /* padding-top: 50%; */
    background-position: center;
    background-size: cover;
    z-index: 1;
    position: relative;
}

/* banner-area */
.main-content-show {
    text-align: center;
    color: var(--white-color);
    margin: 0 auto;
    position: absolute;
    top: 270px;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
}

    .main-content-show img {
        width: 160px;
        height: 63px;
        margin-bottom: 25px;
        visibility: visible;
        animation: fadeInUp 1s;
    }

    .main-content-show h2 {
        text-transform: uppercase;
        color: #fff;
        font-weight: 1000;
        line-height: .9;
        letter-spacing: 3px;
        margin-bottom: 12px;
        font-size: 70px;
        visibility: visible;
        animation: fadeInUp 2s;
    }

    .main-content-show p {
        color: #f7f7f7;
        font-weight: 500;
        margin-bottom: 30px;
        font-size: 1.6rem;
        visibility: visible;
        animation: fadeInUp 2.5s;
        line-height: 22px;
    }

.btn.btn-find {
    padding: 17px 34px;
    visibility: visible;
    animation: fadeInUp 3s;
}

    .btn.btn-find:hover {
        background-color: var(--black-color);
        transition: all 0.3s ease;
    }

.banner-car-search-wrap {
    position: absolute;
    bottom: 0;
    padding: 39px 20px;
    background: rgba(35, 35, 35, 0.478);
    width: 100%;
}

.form-select {
    display: block;
    background: #f3f3f3;
    border-radius: 0;
    padding: 21px 40px 21px 20px;
    color: #73757a;
    font-weight: 400;
    font-size: 1.4rem;
    position: relative;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}

    .form-select::after {
        content: "";
        position: absolute;
        border-bottom: 2px solid #73767a;
        border-right: 2px solid #73767a;
        height: 4px;
        margin-top: -5px;
        right: 20px;
        width: 4px;
        display: block;
        top: 50%;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transition: all 0.15s ease-in-out;
    }

    .form-select.active::after {
        transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg);
    }

    .form-select .form-select-list {
        display: none;
        position: absolute;
        background-color: #fff;
        border-radius: 0;
        box-shadow: 0 0 0 1px rgb(68 68 68 / 11%);
        box-sizing: border-box;
        margin-top: 6px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 10;
        width: 100%;
    }

.form-select-list.show {
    display: block;
}

.form-select .select-car-item {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    display: block;
    color: #133046;
}

    .form-select .select-car-item.active {
        background-color: #f6f6f6;
    }

.select-car-item:hover {
    background-color: #f6f6f6;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.btn-vehicle {
    padding: 22px 23px;
    border-radius: 0;
    font-weight: 700;
    font-size: 1.4rem;
}

    .btn-vehicle:hover {
        background-color: var(--black-color);
        transition: all 0.3s ease;
    }

/* features-area */
.features-area {
    background-color: #f7f7f7;
}

.features-item {
    text-align: center;
    background: #fff;
    box-shadow: 0px 5px 14.88px 1.12px rgb(157 157 157 / 15%);
    border-radius: 5px;
    padding: 55px 30px 55px;
}

.features-icon img {
    transform: rotateY(0);
    transition: .5s linear;
}

.features-item:hover .features-icon img {
    transform: rotateY(360deg);
}

.features-content h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #282828;
    margin-top: 0px;
    font-style: normal;
}

.features-content p {
    margin-bottom: 0;
    color: #9c9c9c;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 24px;
}

/* latest-cars-area  */
.latest-cars-control .row {
    justify-content: center;
    text-align: center;
}

.exclusive-car-area .overlay-title {
    bottom: 90%;
}

.blog-area {
    background-color: antiquewhite;
}

    .blog-area .overlay-title {
        bottom: 90%;
    }

.latest-cars-btn .row {
    justify-content: center;
}

.section-title {
    position: relative;
}

.overlay-title {
    color: #f3f3f3;
    font-size: 8.7rem;
    line-height: 0.8;
    position: absolute;
    bottom: 82%;
    text-align: center;
    right: 0;
    left: 0;
    z-index: -1;
    opacity: 0.4;
    font-weight: 700;
}

.section-title span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    letter-spacing: 3px;
    line-height: 1;
    color: #868686;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 36px;
    text-transform: capitalize;
    margin-bottom: 0;
    color: #323232;
    line-height: 3.6rem;
}

.latest-cars-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 55px;
}

.btn.btn-cars-menu {
    border: 1px solid #e9e9e9;
    font-size: 12px;
    font-weight: 700;
    color: #646161;
    background: #f3f3f3;
    padding: 11px 20px;
    line-height: 1;
    border-radius: 50px;
    margin: 0 6px 10px;
    text-transform: uppercase;
}

.btn-cars-menu:hover {
    transition: all 0.3s ease;
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-cars-menu.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* latest-cars-area */
.cars-item-content {
    padding: 25px 30px 15px 30px;
}

.latest-cars-item {
    border-radius: 5px;
    box-shadow: 0px 3px 12.09px 0.91px rgb(105 105 105 / 13%);
    background: #fff;
    padding-bottom: 13px;
    position: relative;
    overflow: hidden;
    will-change: opacity, transform;
    animation: carFadeIn ease-out 0.5s;
}

    .latest-cars-item img {
        max-width: 100%;
    }

.cars-item-header {
    text-align: center;
    margin-bottom: 30px;
}

    .cars-item-header h5 {
        font-size: 1.8rem;
        margin-bottom: 10px;
        text-transform: capitalize;
        line-height: 1.2;
    }

        .cars-item-header h5 a {
            color: #282828;
        }

            .cars-item-header h5 a:hover {
                color: var(--primary-color);
                transition: all 0.3s ease;
            }

    .cars-item-header p {
        font-size: 14px;
        font-weight: 500;
        color: #9c9c9c;
    }

.cars-item-meta ul {
    display: flex;
    align-items: center;
    padding-bottom: 17px;
    border-bottom: 1px dashed #e1e1e1;
    padding-top: 0;
    border-top: none;
    margin-top: 30px;
    margin-bottom: 20px;
    justify-content: space-between;
}

    .cars-item-meta ul li {
        font-size: 12px;
        font-weight: 500;
        color: #7e7e7e;
        display: flex;
        align-items: center;
        line-height: 1;
    }

.cars-item-meta i {
    margin-right: 8px;
    font-size: 1.3rem;
}

.cars-item-meta .icon-road {
    color: var(--primary-color);
}

.cars-item-bottom {
    padding-bottom: 3px;
}

    .cars-item-bottom ul {
        display: flex;
        justify-content: space-between;
        padding-bottom: 10px;
        padding-top: 6px;
        cursor: pointer;
    }

        .cars-item-bottom ul .rating {
            font-size: 1.2rem;
            letter-spacing: -1px;
            color: #323232;
        }

.rating .active {
    color: #f39c12;
}

.cars-item-bottom .total {
    font-size: 1.2rem;
    font-weight: 500;
    margin-right: 10px;
    color: #7f7e7e;
}

.cars-item-bottom .price {
    font-size: 1.8rem;
    font-weight: 500;
    color: #323232;
}

.latest-cars-item::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 13px;
    background: #ff5400;
    transition: .3s linear;
    opacity: .18;
}

.btn.btn-book-now {
    width: 123px;
    font-size: 1.2rem;
    padding: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, calc(-50% + 20px));
    transition: all 0.3s ease;
}

    .btn.btn-book-now:hover {
        background-color: var(--black-color);
        transition: all 0.7s ease 0s;
    }

.latest-cars-img {
    position: relative;
    background-color: #1b1310;
    cursor: pointer;
}

.latest-cars-item:hover img {
    opacity: 0.7;
    transition: .3s linear;
}

.latest-cars-item:hover .btn.btn-book-now {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -50%);
}

.latest-cars-item:hover::before {
    opacity: 1;
    transition: all 0.3s ease;
}

.latest-cars-link {
    position: relative;
}

.latest-cars-item:hover .latest-cars-img::after {
    animation: shine 1s;
}

.latest-cars-img::after {
    position: absolute;
    top: 0;
    left: -80%;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 42556, 255, 0)), to(rgba(255, 255, 255, .3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.btn.bnt-show-all {
    padding: 21px 45px;
}

/* about-area */
.about-area {
    background-position: center;
    background-size: cover;
    z-index: 1;
}

.about-container {
    width: 100%;
}

.about-text h2 {
    font-size: 17rem;
    line-height: .8;
    color: #fff;
    letter-spacing: -5px;
    background: url(..//img/bg/text_bg.jpg) no-repeat;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: white;
    background-size: cover;
    background-position: top center;
    margin-bottom: 20px;
}

    .about-text h2 span {
        font-size: 12rem;
    }

.about-img img {
    max-width: 100%;
    box-shadow: 0px 3px 10px 0px rgb(35 35 35 / 30%);
    border-radius: 10px
}

.about-heading p {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 12px;
}

.about-content-wrapper {
    padding: 22px 30px 22px 50px;
}

.about-heading h2 {
    font-size: 3.6rem;
    line-height: 1.2;
    color: var(--white-color);
    text-transform: capitalize;
}

.about-heading span {
    color: var(--primary-color);
}

.about-desc {
    display: flex;
    padding-right: 4px;
}

    .about-desc p {
        color: #d3d3d3;
        font-size: 1.4rem;
        font-weight: 500;
        font-style: italic;
        margin-left: 25px;
        line-height: 24px;
    }

.about-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 500;
    color: #d3d3d3;
}

    .about-item i {
        width: 32px;
        height: 32px;
        text-align: center;
        line-height: 32px;
        background: #373d46;
        border-radius: 50%;
        margin-right: 15px;
        transition: 0.3s linear;
        font-size: 1.6rem;
        color: var(--primary-color);
    }

    .about-item:hover i {
        color: var(--white-color);
        background-color: var(--primary-color);
        transition: all 0.3s ease;
    }

.btn.btn-learn {
    width: 172px;
    padding: 20px;
}

/* exclusive car featured */
.img-line {
    margin-top: 22px;
    margin-bottom: 70px;
}

.exclusive-car__img-right {
    color: #767676;
    height: 84px;
    width: 84px;
    text-align: center;
    line-height: 84px;
    border: 1px dashed #b7b2b2;
    border-radius: 50%;
    margin-bottom: 17px;
    transition: .3s linear;
    margin-left: auto;
}

.exclusive-car__img {
    color: #767676;
    height: 84px;
    width: 84px;
    text-align: center;
    line-height: 84px;
    border: 1px dashed #b7b2b2;
    border-radius: 50%;
    margin-bottom: 17px;
    transition: .3s linear;
}


    .exclusive-car__img-right img,
    .exclusive-car__img img {
        width: 36px;
        height: 36px;
    }

.exclusive-car-item {
    width: 100%;
}

    .exclusive-car-item h5 {
        font-size: 1.8rem;
        color: #282828;
        margin-bottom: 9px;
    }

    .exclusive-car-item p {
        font-size: 1.4rem;
        color: #6a6a6a;
        line-height: 24px;
        width: 325px;
    }

.exclusive-car-featured img {
    width: 100%;
}

.exclusive-car-featured__img {
    text-align: center;
}

.exclusive-car-item:hover .exclusive-car__img-right,
.exclusive-car-item:hover .exclusive-car__img {
    border: 1px dashed var(--primary-color);
}

/* fact-area */
.fact-area {
    padding-top: 255px;
    padding-bottom: 70px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

    .fact-area::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: #1b212e;
        opacity: 0.86;
        z-index: 2;
        top: 0;
    }

.fact-area-title-wrap {
    display: flex;
    justify-content: center;
}

    .fact-area-title-wrap .fact-area-title {
        position: absolute;
    }

    .fact-area-title-wrap .fact-area-title {
        animation: none;
        z-index: 7;
        top: -15px;
    }

.fact-container {
    z-index: 3;
    position: absolute;
    width: 100%;
    top: 135px;
}

.fact-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fact-img img {
    width: 68px;
    height: 68px;
    margin-right: 20px;
}

.fact-content h3 {
    font-size: 36px;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 6px;
}

.fact-content p {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
}

/* blog-item */
.blog-item {
    border-right: 1px dashed #c4c4c4;
}

.blog-item__img {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .blog-item__img img {
        border-radius: 3px;
        max-width: 100%;
    }

    .blog-item__img::after {
        position: absolute;
        top: 0;
        left: -80%;
        display: block;
        content: '';
        width: 50%;
        height: 100%;
        background: -webkit-gradient(linear, left top, right top, from(rgba(255, 42556, 255, 0)), to(rgba(255, 255, 255, .3)));
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
        -webkit-transform: skewX(-25deg);
        -ms-transform: skewX(-25deg);
        transform: skewX(-25deg);
    }

.blog-item:hover .blog-item__img::after {
    animation: shine 1s;
}

.blog-item-content h3 a:hover,
.blog-item-bottom .blog-item__name a:hover {
    color: var(--primary-color);
    transition: all 0.3s ease 0s;
}

.blog-item-content > a {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-top: 20px;
    line-height: 24px;
}

.blog-item-content h3 {
    font-size: 2.4em;
    line-height: 1.4;
    margin-bottom: 0;
    padding-right: 50px;
    margin-top: 5px;
    margin-bottom: 27px;
}

    .blog-item-content h3 a {
        color: #282828;
    }

.blog-item-bottom {
    display: flex;
    justify-content: space-between;
    padding-right: 22px;
}

    .blog-item-bottom ul {
        border-top: 1px dashed #c4c4c4;
        align-items: center;
        padding: 18px 0;
        display: flex;
        flex: 1;
    }

        .blog-item-bottom ul li a {
            font-size: 1.4rem;
            color: #868585;
            position: relative;
            font-weight: 500;
        }

.blog-item__name {
    position: relative;
    margin-right: 30px;
}

    .blog-item__name::after {
        content: "";
        position: absolute;
        display: block;
        font-weight: 1000;
        right: -28px;
        top: 50%;
        transform: translateY(-50%);
        background-color: #d7d6d6;
        margin: 0 12px;
        width: 2px;
        height: 13px;
    }

.blog-item-bottom ul li i {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-right: 5px;
}

.btn.btn-details {
    border-radius: 0;
    width: 55px;
}

.blog-item__time a {
    cursor: default;
}

/* Footer */
.footer-top-wrap {
    background-color: #f6f6f6;
}

    .footer-top-wrap .row {
        align-items: center;
    }

.footer-logo {
    text-align: center;
    padding: 40px 50px;
    background-color: var(--white-color);
}

    .footer-logo img {
        width: 50px;
    }

.footer-slider {
    padding-left: 50px;
}

.footer-slider-item {
    padding: 0 15px;
}

.slider-img {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 61px;
}

    .slider-img img {
        width: 50px;
        height: 50px;
    }

.btn-slider button {
    font-size: 1.4rem;
}

.footer-main-wrap {
    background-color: #1b1a24;
}

.footer-main__left {
    padding: 40px 40px 18px;
    z-index: 10;
    background-color: rgba(16, 16, 20, 0.78);
}

.footer-main__heading h4 {
/*    font-size: 2rem;*/
    color: var(--white-color);
    line-height: 25px;
    margin-bottom: 30px;
}

.footer-main__heading p {
    font-size: 1.4rem;
    color: #dedede;
    line-height: 20px;
    margin-bottom: 30px;
    line-height: 24px;
    margin-bottom: 46px;
    width: 100%;
}

.footer-contact-item {
    margin-bottom: 19px;
    display: flex;
    align-items: center;
}

    .footer-contact-item a {
        width: 44px;
        height: 44px;
    }

.btn.btn-contact {
    transition: none;
    background-color: #dcbb75;
    margin-right: 15px;
}

.btn.btn--email {
    background-color: #dcbb75;
}

.btn.btn--location {
    background-color: #dcbb75;
}

.contact-item__content > p {
    color: #c3c3c3;
    /*font-size: 1.2rem;*/
    margin-bottom: 8px;
}
.contact-item__content a,
.contact-item__content span {
    color: #FFFFFF;
    /*    font-size: 1.4rem;*/
    padding: 2px 0;
    line-height: 20px;
}

.header-middle-contact-item a:hover {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-main__right {
    padding: 40px 0 40px 40px;
    z-index: 10;
}

    .footer-main__right .row.large-gutter {
        justify-content: space-between;
    }

.main-right__title h4 {
    color: #fff;
    /*font-size: 2rem;*/
    margin-bottom: 38px;
}

.main-right__list li {
    margin-bottom: 21px;
}

    .main-right__list li a {
        /*font-size: 1.4rem;*/
        display: inline-block;
        color: #dfdede;
    }

        .main-right__list li a:hover {
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

.main-right__input {
    position: relative;
}

    .main-right__input input {
        width: 100%;
        border: none;
        padding: 18px 80px 18px 25px;
        background: #333236;
        color: #bebebe;
        border-radius: 4px;
        font-size: 13px;
        height: 60px;
        outline: none;
        margin-bottom: 40px;
    }

    .main-right__input button {
        position: absolute;
        right: 6px;
        top: 6px;
        bottom: 6px;
        border: none;
        color: #fff;
        font-size: 1.6rem;
        width: 63px;
        padding: 0;
        height: 48px;
        border-radius: 0;
    }

        .main-right__input button:hover {
            background-color: var(--primary-color);
        }

.main-right__social-media ul {
    display: flex;
}

    .main-right__social-media ul li a {
        height: 44px;
        margin-right: 14px;
    }

.main-right__social-BCT {
    width: 200px;
    padding: 10px 0;
}

    .main-right__social-BCT img {
        width: 200px;
        /* padding: 10px 0; */
    }

.btn.icon--facebook {
    background-color: rgb(59, 89, 152);
}

.btn.icon--twitter {
    background-color: #55acee;
}

.btn.icon--pinter {
    background-color: #d71e18;
}

.btn.icon--linkedin {
    background-color: #1565c0;
}

.payment {
    background: rgba(16, 16, 20, 0.78);
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
    padding: 38px 35px;
    margin-top: 42px;
}

    .payment p {
        color: #cbc9c9;
        font-size: 1.4rem;
        line-height: 24px;
    }

.footer-bottom-wrap {
    background: rgb(19 19 24 / 100%);
    padding: 20px 0;
    position: relative;
}

    .footer-bottom-wrap p {
        color: #afafaf;
        /*font-size: 1.4rem;*/
        line-height: 24px;
    }

.footer-BCT {
    display: flex;
    justify-content: center;
}

    .footer-BCT img {
        width: 150px;
    }

.btn.btn-scroll-top {
    height: 49px;
    width: 49px;
    border: none;
    margin-left: auto;
    display: block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    z-index: 10;
    animation: fadeIn ease-in 0.3s;
}

    .btn.btn-scroll-top:hover {
        transition: .3s ease;
        background-color: var(--white-color);
        color: var(--primary-color);
    }

.footer-bottom-wrap .row {
    align-items: center;
}

/* Modal */
.modal-wrapper {
    position: fixed;
    z-index: 10;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    visibility: hidden;
    display: none;
}

    .modal-wrapper.show {
        visibility: visible;
        display: block;
    }

        .modal-wrapper.show .modal-body {
            animation: fadeInModal ease 0.8s;
        }

.modal__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.4);
    animation: fadeIn ease-in 0.3s;
    z-index: 10;
}

.modal-body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    position: relative;
}

.form {
    width: 600px;
    min-height: 100px;
    padding: 32px 24px;
    text-align: center;
    background: #fff;
    border-radius: 2px;
    margin: 24px;
    align-self: center;
    box-shadow: 0 2px 5px 0 rgba(51, 62, 73, 0.1);
    z-index: 11;
    position: absolute;
    top: 0px;
    margin: 28px auto;
}

    .form ul {
        display: flex;
        justify-content: center;
        position: relative;
    }

        .form ul li {
            position: relative;
            padding: 15px 0;
            cursor: pointer;
            margin: 0 10px;
        }

            .form ul li h3:hover {
                color: var(--primary-color);
                transition: all 0.3s ease 0s;
            }

            .form ul li + li::before {
                content: "";
                position: absolute;
                height: 28px;
                width: 3px;
                background-color: #3c3c45;
                top: 50%;
                transform: translateY(-50%);
                left: -11px;
            }

            .form ul li::after {
                content: "";
                background: var(--primary-color);
                position: absolute;
                width: 100%;
                height: 3px;
                border-radius: 2px;
                background-color: var(--primary-color);
                bottom: 0;
                left: 0;
                transform: scale(0);
                transition: all 250ms ease 0s;
            }

    .form .heading {
        font-size: 2.8rem;
        color: #3c3c45;
        ;
        line-height: 28px;
        text-transform: uppercase;
        font-weight: 500;
    }

.line:after {
    transform: scale(0);
}

.line.active::after {
    transform: scale(1);
}

.form .heading.active {
    color: var(--primary-color);
}

.form .desc {
    text-align: center;
    color: #636d77;
    font-size: 1.6rem;
    font-weight: lighter;
    line-height: 2.4rem;
    margin-top: 16px;
    font-weight: 300;
}

.form-group {
    display: flex;
    margin-bottom: 16px;
    flex-direction: column;
}

.form-label,
.form-message {
    text-align: left;
}

    .form-label span {
        color: var(--primary-color);
    }

.form-label {
    font-weight: 600;
    padding-bottom: 6px;
    line-height: 1.8rem;
    font-size: 1.4rem;
    color: #6a6a6a;
}

.form-control {
    height: 52px;
    padding: 8px 12px;
    border: 1px solid #b3b3b3;
    border-radius: 3px;
    outline: none;
    /*font-size: 1.4rem;*/
}

    .form-control:hover {
        border-color: var(--primary-color);
    }

.form-group.invalid .form-control {
    border-color: #f33a58;
}

.form-group.invalid .form-message {
    color: #f33a58;
    /* margin-top: 2px; */
}

.form-message {
    font-size: 1.2rem;
    line-height: 1.6rem;
    padding: 4px 0 0;
}

.form-submit {
    outline: none;
    background-color: var(--primary-color);
    margin-top: 12px;
    padding: 18px 16px;
    font-weight: 600;
    color: #fff;
    border: none;
    width: 100%;
    font-size: 1.4rem;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
}

    .form-submit:hover {
        background-color: var(--black-color);
    }

.spacer {
    margin-top: 20px;
}

.btn-close-login {
    position: absolute;
    right: 24px;
    top: 20px;
    font-size: 2.2rem;
    color: #1b1310;
}

    .btn-close-login:hover {
        color: var(--primary-color);
    }

.login-tab {
    display: none;
}

    .login-tab.active {
        display: block;
    }

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

    /* On hover, add a black background color with a little bit see-through */
    .prev:hover,
    .next:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}




/* Slider */
.slider {
    width: 100%;
    overflow: hidden;
}

.slide {
    /*height: calc(100vh - 380px);*/
}

    .slide img {
        object-fit: cover;
        width: 100%;
        /*height: 100%;*/
    }

.slick-prev {
    left: 10px;
    z-index: 1;
}

.slick-next {
    right: 10px;
    z-index: 1;
}

.slick-dots {
    bottom: 0;
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

/*End Slider */
.breadcrumbs {
    background: #f9f9f9;
    fill: #f9f9f9;
}

@media (min-width: 1200px) {
    .section-lg-40 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (min-width: 768px) {
    .wrap-sm-justify-horizontal {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.breadcrumbs-custom {
    position: relative;
}

    .breadcrumbs-custom li {
        position: relative;
        display: inline-block;
        padding-right: 36px;
    }

    .breadcrumbs-custom a, .breadcrumbs-custom a:active, .breadcrumbs-custom a:focus {
        color: #42a4ff;
    }

    .breadcrumbs-custom li:after {
        content: ">";
        position: absolute;
        top: 50%;
        right: 9px;
        display: inline-block;
        color: #b1b1b1;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .breadcrumbs-custom li:last-child:after {
        display: none;
    }

    .breadcrumbs-custom a:hover, .breadcrumbs-custom li.active {
        color: #777;
    }

/*.slider .slick-slide {
    height: 25vw !important;
}

    .slider.slick-slide img {
        height: 25vw !important;
    }*/
.card .card-body .card-title {
    text-align:center;
}