.featured-car {
    background-color: #f9f9f9;
}

.heading {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 600;
}

.hero-section {
    position: relative;
    height: 500px;
    z-index: 0;
}


.hero-section .slider-item {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 500px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}


.hero-section .slider-item .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background: #030972;
    opacity: .03;
    width: 100%;
    padding: 0;
    z-index: 0;
}



.hero-section .slider-item .slider-text {
    height: 700px;
    position: relative;
}

@media (max-width: 991.98px) {
    .hero-section .slider-item {
        height: 250px;
    }

    .hero-section .slider-item .slider-text {
        height: 380px;
    }
}

.about-video {
    border: 1px solid;
    border-radius: 3px;
    max-height: 360px;
    width: 540px;
}

@media (max-width: 991.98px) {
    .about-video {
        width: 340px;
    }
}

.filteriz-navigation li {
    display: inline-block;
    padding: 7px 25px 5px;
    background: #fff;
    color: #000000;
    font-size: 17px;
    box-shadow: 0 0 5px rgb(0 0 0 / 10%) !important;
    margin: 0 1px 4px;
    font-weight: 500;
    border-radius: 5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transform: skew(-21deg);
}

.filteriz-navigation li span {
    transform: skew(21deg);
    display: flex;
    z-index: 2;
}

.filteriz-navigation li.active span {
    color: #fff;
}

.filteriz-navigation li.active {
    background: #ffb606;
    box-shadow: 1px 1px 1px 1px rgb(0 0 0 / 10%) !important;
}

.filteriz-navigation li:hover {
    background: #ffb606;
}

.filteriz-navigation li:hover span {
    color: #fff;
}

.hero-wrap.hero-wrap-2 {
    height: 300px;
}

.hero-wrap.hero-wrap-2 .slider-text {
    height: 300px;
}

.products__slider .col-lg-3 {
    max-width: 100%;
}

.products__slider.owl-carousel .owl-item img {
    height: 185px;
}

.car-box {
    margin-bottom: 30px;
    border-radius: 0;
    border: none;
    background: #fff;
    z-index: 2;
    position: relative;
    -webkit-transition: .5s;
    transition: .5s;
    overflow: hidden;
    transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
}

.car-box:hover {

    transform: translateY(-5px);
}

.car-box .car-image {
    overflow: hidden;
    position: relative;
}

.car-box .car-image img {
    height: 200px;
}

.car-box .car-image::before {
    background: #ffb400;
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.car-box .car-image::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    right: 0;
    top: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    background: #ffb400;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.car-box:hover .car-image::before,
.car-box:hover .car-image::after {
    width: 100%;
    height: 100%;
    opacity: 0.5;
    visibility: visible;
    background: rgb(12 62 185 / 51%);
}

.Product__image {
    display: inline-block;
    vertical-align: top;
    width: 48%;
    margin: 20px 30px 0 0;
    height: 500px;
    border-radius: 10px;
    background-color: #fff;
}

.Product__image img {
    width: 100%;
    height: 400px;
}

.Product__text {
    display: inline-block;
    width: 46%;
    margin-top: 20px;
}

.Product__text .list {
    position: relative;
    background: #fff;
    padding: 50px;

    border-radius: 10px;
}

.Product__text .list h3 {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.2rem;
    font-weight: 700;
}

.list-item {
    position: relative;
    display: flex;
    align-items: center;

}

.list-item::before {
    content: '';
    position: absolute;
    left: 0;
    width: 30px;
    height: 30px;
    background: #030972;
    border-radius: 22.5px;
    box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.25),
        inset 2px 2px 5px rgba(255, 255, 255, 0.5),
        inset -3px -3px 5px rgba(0, 0, 0, 0.5);
    transition: 0.5s;
}



.list-item .rank {
    position: relative;
    min-width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 20px;
}


.list-item:hover .rank::before {
    transform: scale(1);
}

.list-item .rank span {
    position: relative;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    transition: 0.5s;
}

.list-item .name {
    position: relative;
    line-height: 1.15rem;
    margin-top: 10px;
}

.list-item .name h6 {
    font-weight: 600;
    color: #bcbcc0;
    transition: 0.5s;
    margin-bottom: 0.25rem;
}

.list-item .name p {
    font-size: 0.8125rem;
    font-weight: 400;
    color: #95999d;
    transition: 0.5s;
    margin-bottom: 0.5rem;
}


.tag {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 20;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: rgb(255, 255, 255);
    padding: 7px 16px 5px;
    font-weight: 500;
    border-radius: 3px 3px 3px 0;
    background: #ffb606;
}

.tag::after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-top: 0;
    border-bottom: 10px solid transparent;
    bottom: -10px;
    left: 0;
    border-left: 10px solid#ffb400;
}

.car-box .facilities-list {
    position: absolute;
    bottom: 0px;
    font-size: 15px;
    width: 100%;
    padding: 9.5px 0;
    text-align: center;
    background: rgb(255 180 0 / 65%);
    z-index: 999;
    transition: 0.9s cubic-bezier(0.24, 0.74, 0.58, 1);
}

.car-box .facilities-list ul {
    list-style: none;
}

.car-box .facilities-list ul li {
    display: inline-flex;
    color: #fff;
    font-weight: 500;
    line-height: 26px;
    width: 33.33%;
    float: left;
    color: #fff;
    text-align: center;
}

.car-box .detail {
    padding: 25px 25px;
}

.car-box .detail .title {
    font-size: 22px;
    margin-bottom: 10px;
}

.car-box .detail .title a {
    color: #ffb400;
}

.car-box .detail .location {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 400;
}

.car-box .detail .location a {
    color: #5a5959;
}

.car-box .footer {
    font-size: 15px;
    border-top: solid 1px #efefef;
    background: #fff;
}

.car-box .ratings {
    line-height: 49px;
    padding-left: 20px;
    color: #ffb400;
}

.car-box .footer .price {
    line-height: 49px;
    padding-right: 20px;
    font-size: 18px;
    margin-bottom: 0;
    color: #ffb400;
}

.products__slider.owl-carousel .owl-nav button {
    font-size: 18px;
    height: 70px;
    width: 30px;
    line-height: 70px;
    text-align: center;
    border: 1px solid #ebebeb;
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-35px);
    background: #ffffff;
    opacity: 1;
}

.products__slider.owl-carousel .owl-nav button:focus {
    outline: 1px solid #ebebeb;
}

.products__slider.owl-carousel .owl-nav button.owl-next {
    left: auto;
    right: -35px;
}

.image-column {
    position: relative;
    float: left;
    width: 50%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.content-column {
    position: relative;

}

.content-column h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffb400;
}

.content-column h3 {
    font-size: 24px;
    font-weight: 300;
    color: #ffb400;
    margin-bottom: 25px;
}

.content-column .text-content {
    position: relative;
    line-height: 1.8em;
    margin-bottom: 30px;
}

.content-column .read-more {
    position: relative;
    display: inline-block;
    color: #363636;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    border-bottom: 2px solid #ff4a46;
}

.navbar ul li {
    position: relative;
}

.navbar ul.header__menu__dropdown {
    position: absolute;
    left: 0;
    top: 150%;
    width: 200px;
    text-align: left;
    background-color: #030972;
    z-index: 9999;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.navbar ul.header__menu__dropdown li:first-child {
    border-top: none;
}

.navbar ul.header__menu__dropdown>li {
    border-top: 1px solid #f9f9;
}

.navbar ul li ul li {
    margin-left: 0;
}

.navbar ul.header__menu__dropdown>li>a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 15px 0 15px 20px;
    line-height: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.navbar ul li:hover>ul.header__menu__dropdown {
    top: 100%;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    visibility: visible;
}

.header__menu__dropdown .submenu {
    position: absolute;
    left: 200px;
    top: 0;
    width: 200px;
    text-align: left;
    background-color: #030972;
    z-index: 9999;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header__menu__dropdown .submenu>li>a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 15px 0 15px 20px;
    line-height: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header__menu__dropdown ul.submenu li:first-child {
    border-top: none;
}

.header__menu__dropdown ul.submenu>li {
    border-top: 1px solid #f9f9;
}

.header__menu__dropdown li:hover>ul.submenu {
    top: 0;
    opacity: 1;
    visibility: visible;
}

/**Easy Checkout**/
#EasyCheckout {
    box-shadow: 0px 4px 12px rgb(0 0 0 / 12%);
}

#EasyCheckout #rightSide ol {
    display: flex;
    flex-direction: column;
    counter-reset: stepper;
    gap: 8px;
    border: 2px solid #DBEAFE;
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
}

.stepper-item {
    display: grid;
    grid-template-rows: [text-row] auto [line-row] 20px;
    grid-template-columns: [counter-column] 28px [text-column] auto;
    -moz-column-gap: 16px;
    column-gap: 16px;
    row-gap: 8px;
    position: relative;
}

.stepper-item.complete .stepper-counter {
    background-color: #030972 !important;
    color: #fff !important;
    position: relative;
}

.stepper-item.complete .stepper-counter:after {
    position: absolute;
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #fff;
    right: -6px;
    bottom: -6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath fill='%231d4ed8' d='M10 15.172l9.192-9.193 1.415 1.414L10 18l-6.364-6.364 1.414-1.414z'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center center;
}

.stepper-item:last-child {
    grid-template-rows: [text-row] auto;
}

.stepper-line {
    display: block;
    width: 2px;
    background-color: #8f8f8f;
    height: 100%;
    justify-self: center;
}

.stepper-item:last-child .stepper-line {
    display: none;
}

.stepper-counter {
    flex-shrink: 0;
    counter-increment: stepper;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #666 !important;
    color: #fff;
    border-radius: 50%;
    line-height: 1;
}

.stepper-counter:before {
    content: counter(stepper);
}

.stepper-link {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: var(--c-primary);
}

.stepper-link span {
    padding-top: calc((28px - 1.5em) / 2);
    font-weight: 600;
    border-bottom: 2px solid transparent;
}

.stepper-link:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.stepper-link:hover span {
    border-color: currentcolor;
}

.stepper-link:focus {
    outline-offset: 4px;
    outline-color: var(--c-primary);
    outline-width: 2px;
    border-radius: 4px;
}

.square-holder {
    padding: 20px;

    align-items: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;

    min-height: 300px
}

.square-holder img {
    max-width: 100%;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.square-holder:hover img {
    filter: none;
}