﻿@charset "utf-8";

/*
Theme Name: Rims - MULTIPURPOSE HTML5 Template.
Author: Slidesigma
Author URL: https://themeforest.net/user/slidesigma
Version: 1.0.0

%%%%%%% Table of CSS %%%%%%%

1.General code
    1.1 Typography
    1.2 Space margins and padding
    1.3 forms
    1.4 Buttons
    1.5 Section-Colors-&-Backgrounds
    1.6 Modal & popups
2.Homepages
    2.1 Navigation
    2.2 Banner
    2.3 About Us
    2.4 Recently Listed Vehicles
    2.5 How It Works
    2.6 Best Deals
    2.7 Our Team
    2.8 Our Testimonials
    2.9 Our Blog
    2.10 Download App
    2.11 FAQs
    2.12 Brands
    2.13 Footer
    2.14 Copyright
3.Inventory
4.Inventory Detail
5.Blog
6.Blog Detail
7.Compare
8.About
9.FAQs
10.Contact
11.Heading and Paragraphs
12.404
13.Coming Soon
14.Gallery
15.Shop
16.Shop Detail
*/

/*======================
1.General Code
========================*/
button:focus,
*:focus {
    outline: none;
}
label {
    line-height: normal;
}
.align-item-center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}
.popins{
    font-family: 'Poppins', sans-serif;
}
.opensans{
    font-family: 'Open Sans', sans-serif;
}
.p-relative {
    position: relative;
}
.before-none:after,
.after-none:after,
.none {
    display: none;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.overlay-bg{
    background: #000;
    opacity: 0.5;
}
.overlay-2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}
.transform-center {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0%, -50%);
    z-index: 1;
}
[class^="flaticon-"]:before,
[class*=" flaticon-"]:before {
    font-size: inherit;
    margin: 0;
}
/*slider-arrow*/
.swiper-button-next:after, .swiper-button-prev:after {
    background: #020202;
    color: #fff;
    padding: 10px 15px;
    line-height: normal;
    font-size: 16px;
    font-weight: 600;
}
.swiper-button-next:hover:after, .swiper-button-prev:hover:after{
    background: #dd3333;
}
.swiper-button-next, .swiper-button-prev{
    width: auto;
    transition: all 0.2s cubic-bezier(.83, .8, .11, .64) 0s;
}
.swiper-button-next{
    right: -30px;
    opacity: 1;
    visibility: hidden;
}
.swiper-button-prev{
    left: -30px;
    opacity: 0;
    visibility: hidden;
}
.swiper-container:hover>.swiper-button-next{
    right: 3px;
    opacity: 1;
    visibility: visible;
}
.swiper-container:hover>.swiper-button-prev{
    left: 3px;
    opacity: 1;
    visibility: visible;
}
.swiper-container-horizontal>.swiper-pagination-bullets{
    top: 70%;
    transform: translate(0px, -30%);
    bottom: 0;
    text-align: left;
    left: 0;
    right: 0;
}
.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 100%;
    background: rgba(255,255,255,0.3);
    opacity: 1;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: transparent;
    border: 2px solid #fff;
    position: relative;
}
.swiper-pagination-bullet-active:before{
    content: '.';
    color: #fff;
    line-height: 0;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5px;
    margin-top: -7px;
    font-size: 35px;
}
.boxes {
    height: 32px;
    width: 32px;
    position: relative;
    transform-style: preserve-3d;
    transform-origin: 50% 50%;
    margin-top: 32px;
    transform: rotateX(60deg) rotateZ(45deg) rotateY(0deg) translateZ(0px);
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 99;
    margin: 0 auto;
}
.boxes .box {
    width: 32px;
    height: 32px;
    top: 0px;
    left: 0;
    position: absolute;
    transform-style: preserve-3d;
}
.boxes .box:nth-child(1) {
    transform: translate(100%, 0);
    animation: box1 1s linear infinite;
}
.boxes .box:nth-child(2) {
    transform: translate(0, 100%);
    animation: box2 1s linear infinite;
}
.boxes .box:nth-child(3) {
    transform: translate(100%, 100%);
    animation: box3 1s linear infinite;
}
.boxes .box:nth-child(4) {
    transform: translate(200%, 0);
    animation: box4 1s linear infinite;
}
.boxes .box > div {
    background: #dd3333;
    --translateZ: 15.5px;
    --rotateY: 0deg;
    --rotateX: 0deg;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #dd3333;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    transform: rotateY(var(--rotateY)) rotateX(var(--rotateX)) translateZ(var(--translateZ));
}
.boxes .box > div:nth-child(1) {
    top: 0;
    left: 0;
    background: #dd3333;
}
.boxes .box > div:nth-child(2) {
    background: #dd3333;
    right: 0;
    --rotateY: 90deg;
}
.boxes .box > div:nth-child(3) {
    background: #dd3333e6;
    --rotateX: -90deg;
}
.boxes .box > div:nth-child(4) {
    background: #DBE3F4;
    top: 0;
    left: 0;
    --translateZ: -90px;
}
@keyframes box1 {
    0%,
    50% {
        transform: translate(100%, 0);
    }
    100% {
        transform: translate(200%, 0);
    }
}
@keyframes box2 {
    0%{
        transform: translate(0, 100%);
    }
    50% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100%, 0);
    }
}
@keyframes box3 {
    0%,
    50% {
        transform: translate(100%, 100%);
    }
    100% {
        transform: translate(0, 100%);
    }
}
@keyframes box4 {
    0%{
        transform: translate(200%, 0);
    }
    50% {
        transform: translate(200%, 100%);
    }
    100% {
        transform: translate(100%, 100%);
    }
}
@keyframes ripple {
    0% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.75);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}
/*section-header*/
.section-header{
    margin: 0 auto;
    max-width: 660px;
    padding-bottom: 50px;
    text-align: center;
}
.section-heading>h3{
    margin-bottom: 20px;
}
.section-heading>p{
    margin-bottom: 0;
}
.heading-after{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.heading-after .line{
    width: 30px;
    height: 2px;
}
.heading-after .circle{
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    margin: 0 5px;
}
/*pagination*/
.page-item:first-child .page-link,
.page-item:last-child .page-link,
.page-item .page-link{
    border-radius: 0;
}
.page-link:focus{
    box-shadow: none;
    z-index: 1;
}
.page-item .page-link{
    padding: 8px 20px;
    font-size: 14px;
    line-height: 1.5;
    border: 2px solid #efefef;
    color: #020202;
}
.page-item:hover .page-link,
.page-item.active .page-link{
    background-color: #dd3333;
    border-color: #dd3333;
    color: #fff;
}
/*======================
1.1 Typography
========================*/
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #020202;
}
h1 {
    font-size: 50px;
    line-height: normal;
}
h2 {
    font-size: 40px;
}
h3 {
    font-size: 35px;
}
h4 {
    font-size: 26px;
}
h5 {
    font-size: 18px;
}
h6 {
    font-size: 16px;
}
p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
}

blockquote {
    background-color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    padding: 30px;
}
blockquote span{
    width: 50px;
    height: 50px;
    border: 2px solid #d33;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    font-size: 16px;
    margin-right: 15px;
}
blockquote p {
    font-size: 18px;
    font-style: italic;
    margin: 0;
    word-break: break-word;
    margin-bottom: 0;
}
blockquote h6 {
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 16px;
}
img {
    max-width: 100%;
    width: auto;
    height: auto;
    transition: 0.5s;
}
.fs-12 {
    font-size: 12px;
}
.fs-14 {
    font-size: 14px;
}
.fs-15 {
    font-size: 15px;
}
.fs-16 {
    font-size: 16px;
}
.fs-18 {
    font-size: 18px;
}
.fw-100 {
    font-weight: 100;
}
.fw-400 {
    font-weight: 400;
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 900;
}
/*======================
1.2 Space margins and padding
========================*/
.no-margin {
    margin: 0;
}
.no-padding {
    padding: 0;
}
.full-width {
    width: 100%;
}
.full-height {
    height: 100%;
}
.section-padding {
    padding: 80px 0;
}
.section-padding-top{
    padding-top:80px;
}
.section-padding-bottom{
    padding-bottom:80px;
}
.padding-10 {
    padding: 10px;
}
.padding-15 {
    padding: 15px;
}
.padding-20 {
    padding: 20px;
}
.mb-xl-20 {
    margin-bottom: 20px;
}
.mb-xl-30 {
    margin-bottom: 30px;
}
.pb-xl-20 {
    padding-bottom: 20px;
}
/*==================
1.4. Buttons
====================*/
.animated-button{
    display: inline-block;
    text-transform: uppercase;
    padding: 7px 25px;
    font-weight: 500;
    color: #fff;
    font-size: 14px;
    position: relative;
    z-index: 1;
}
.animated-button:after{
    position: absolute;
    content: "";
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    background: #020202 none repeat scroll 0 0;
    z-index: -1;
    transform: skew(40deg);
    transition: all 0.3s ease 0s;
}
.animated-button:hover{
    color: #fff;
}
.animated-button:hover:after {
    background: #dd3333 none repeat scroll 0 0;
    transform: skew(-40deg);
}
.btn-first {
  --hue: 190;
  position: relative;
  padding: 10px 25px;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  background-color: transparent;
  border: 1px solid hsl(var(--hue), 100%, 41%);
  border-radius: 3px;
  outline: transparent;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: 0.25s;
  border-color: #dd3333;
}
.red-btn {
  border-width: 4px;
  border-radius: 0;
  overflow: visible;
}
.red-btn:before, .red-btn:after {
  position: absolute;
  content: "";
  width: 14px;
  height: 4px;
  background: #020202;
  transform: skewX(60deg);
  transition: 0.4s linear;
}
.red-btn:before {
  top: -4px;
  left: 10%;
}
.red-btn:after {
  bottom: -4px;
  right: 10%;
}
.red-btn:hover {
  background: transparent;
}
.red-btn:hover:before {
  transform: translateX(360%) skewX(60deg);
}
.red-btn:hover:after {
  transform: translateX(-360%) skewX(60deg);
}
/*==================
1.5. Section-Colors-&-Backgrounds
====================*/
.bg-light-white-skew{
    background-color: #f4f4f4;
    height: 90px;
    margin-bottom: -35px;
    transform: skew(0deg,-2.5deg);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 120%;
    backface-visibility: hidden;
}
.bg-light-white-skew-2{
    background-color: #f4f4f4;
    height: 90px;
    margin-bottom: -50px;
    transform: skew(0deg, 2.5deg);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 120%;
    backface-visibility: hidden;
}
.bg-white-skew{
    background-color: #fff;
    height: 90px;
    margin-bottom: -35px;
    transform:skew(0deg,-2.5deg);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 120%;
    backface-visibility: hidden;
    z-index: 1;
}
.bg-white-skew-2{
    background-color: #fff;
    height: 90px;
    margin-bottom: -50px;
    transform:skew(0deg, 2.5deg);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 120%;
    backface-visibility: hidden;
    z-index: 1;
}
.bg-light-white {
    background-color: #f4f4f4;
}
.bg-custom-black {
    background-color: #020202;
}
.bg-custom-white {
    background-color: #ffffff;
}
.bg-custom-red {
    background-color: #dd3333;
}

/*Colors*/
.text-custom-black {
    color: #000000;
}
.text-custom-red {
    color: #dd3333;
}
.text-light-white{
    color: #7c8a97;
}
.text-dark-white{
    color: #999;
}
.text-custom-white {
    color: #ffffff;
}
.text-custom-yellow{
    color: #ff9600;
}
/*======================
1.6 Modal & Popups
========================*/
.modal-header .close{
    background: #020202;
    opacity: 1;
    margin: 0;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    padding: 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: none;
}
.modal-header{
    align-items: center;
}
.modal-header .close:not(:disabled):not(.disabled):hover{
    background: #dd3333;
    opacity: 1;
}
/*======================
2. Homepages
========================*/
/*topbar*/
.topbar .left-side ul,
.topbar .right-side ul{
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
}
.topbar .left-side ul li a,
.topbar .right-side ul li a{
    padding: 15px 20px;
    display: block;
}
.topbar .left-side ul li a i{
    margin-right: 5px;
    font-size: 12px;
}
.topbar .right-side ul{
    justify-content: flex-end;
}
.topbar .left-side ul li:first-child a{
    padding-left: 0px;
}
.topbar .right-side ul li:last-child a{
    padding-right: 0px;
}
.topbar .right-side ul li a{
    padding: 13px 20px;
}
/*middle-sec*/
.middle-sec{
    padding: 15px 0px;
}
.middle-sec .row>div{
    align-self: center;
}
.middle-sec .head-search-box .input-group:before{
    content: "\f111";
    font-family: Flaticon;
    line-height: 1;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translate(0px, -50%);
    z-index: 0;
    pointer-events: none;
    color: #020202;
}
.middle-sec .head-search-box .input-group input:focus{
    background-color: transparent;
}
.middle-sec .cart-section{
    display: flex;
    justify-content: flex-end;
}
.middle-sec .cart-section ul{
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}
.middle-sec .cart-section ul li{
    margin-left: 30px;
}
.middle-sec .cart-section ul li .cart-value{
    position: absolute;
    font-size: 9px;
    color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 50px;
    left: 15px;
    line-height: normal;
    text-align: center;
    line-height: 1.8;
}
.middle-sec .cart-section ul li a span{
    margin-left: 6px;
    font-size: 14px;
}
/*Navigation*/
.cat-box .seprator{
    display: block;
    width: 100%;
    background: #dd3333;
    height: 5px;
    position: absolute;
    top: -5px;
}
.cat-box .seprator:after {
    content: '';
    display: block;
    position: absolute;
    left: -5px;
    border: solid;
    border-width: 0px 5px 5px 0;
    border-color: #ffffff #dd3333 #ffffff rgb(255, 255, 255);
    transform: rotate(90deg);
}
.cat-box .seprator:before {
    content: '';
    display: block;
    position: absolute;
    right: -5px;
    border: solid;
    border-width: 0px 5px 5px 0;
    border-color: #ffffff #dd3333 #ffffff rgb(255, 255, 255);
    transform: rotate(-180deg);
}
.cat-box .cat-button{
    padding: 20px 40px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}
.cat-box .cat-button i{
    margin-right: 20px;
}
.cat-box .cat-box-accordion{
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.33s,opacity .33s,transform .33s;
    transform: translateY(10px);
}
.cat-box:hover .cat-box-accordion{
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition: visibility 0.33s,opacity .33s,transform .33s;
}
.cat-box .cat-box-accordion .card{
    border-radius: 0;
    border: none;
}
.cat-box .cat-box-accordion .card .card-header{
    padding: 0px;
    background: #fff;
    border-bottom: 1px solid #eee;
    border-radius: 0
}
.cat-box .cat-box-accordion .card .card-header button{
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 10px;
}
.cat-box .cat-box-accordion .card .card-header button i{
    font-size: 30px;
    margin-right: 5px;
    text-align: center;
    line-height: normal;
}
.cat-box .cat-box-accordion .card .card-header button:after{
    content: "\f109";
    font-family: Flaticon;
    font-size: 10px;
    position: absolute;
    top: 20px;
    right: 15px;
}
.cat-box .cat-box-accordion .card .card-header button.collapsed:after{
    content: "\f108";
    font-family: Flaticon;
}
.cat-box .cat-box-accordion .card .card-body{
    padding: 0;
}
.cat-box .cat-box-accordion .card .card-body>ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.cat-box .cat-box-accordion .card .card-body>ul>li>a{
    font-size: 14px;
    color: #020202;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 6px 15px 6px 30px;
    display: block;
}
.cat-box .cat-box-accordion .card .card-body>ul>li:hover>a,
.cat-box .cat-box-accordion .card .card-header button:hover{
    background-color: #dd3333;
    color: #fff;
}
.hide-in-desk{
    display: none;
}
.menu-style .header{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.main-navigation:not(.show){
    display: block;
}
.main-navigation nav>ul{
    display: flex;
}
.main-navigation nav ul{
    list-style: none;
    padding: 0;
}
.main-navigation nav ul>li.menu-item:hover>a,
.main-navigation nav ul>li.menu-item.active>a{
    color: #dd3333;
}
.main-navigation nav ul>li.menu-item>a{
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    padding: 20px 15px;
}
.main-navigation nav>ul>li.menu-item:first-child>a{
    padding-left: 0;
}
.menu-style .header .header-right{
    padding: 12px 0;
}
.menu-style .header .header-right>ul{
    display: flex;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
}
.menu-style .header .header-right .user_login{
    border: 1px solid rgba(255, 255, 255, 0.2);
    line-height: normal;
    margin: 0;
    cursor: pointer;
}
.menu-style .header .header-right .user_login a{
    padding: 10px 15px;
    display: block;
}
.menu-style .header .header-right .user_login a i{
    margin: 0 5px;
}
.user_login .dropdown-menu{
    border-radius: 0;
    padding: 0;
    width: 165px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.33s,opacity .33s,transform .33s;
    transform: translateY(10px);
}
.user_login .dropdown-menu.show,
.customdropdown:hover .dropdown-menu{
    opacity: 1;
    visibility: visible;
    transition: visibility 0.33s,opacity .33s,transform .33s;
    transform: translateY(0px);
}
.customdropdown:hover .fa-angle-down{
    transform: rotate(180deg);
}
.user_login .dropdown-menu li a{
    display: block;
    padding: 10px;
    font-size: 14px;
}
.user_login .dropdown-menu li:hover>a{
    background: #fff;
    color: #020202;
}
.hamburger-menu{
    margin-left: 25px;
   align-self: center;
   display: none;
}
.hamburger-menu.collapsed span:first-child,
.hamburger-menu.collapsed span:nth-child(2),
.hamburger-menu.collapsed span:last-child,
.hamburger-menu.collapsed span,
.hamburger-menu span{
    background: #fff;
    display: block;
    height: 2px;
    width: 30px;
    margin-bottom: 3px;
    transition: 0.5s;
}
.hamburger-menu[aria-expanded="true"] span:first-child{
    transform: rotate(45deg);
    transition: 0.5s;
    position: relative;
    top: 4.4px;
}
.hamburger-menu[aria-expanded="true"] span:last-child{
    transform: rotate(-45deg);
    transition: 0.5s;
}
.hamburger-menu[aria-expanded="true"] span:nth-child(2){
    display: none;
}
/*sub menu*/
.menu-item-has-children{
    position: relative;
}
.menu-item-has-megamenu>a>span:after,
.menu-item-has-children>a>span:after{
    display: inline-block;
    margin-left: .55em;
    content: "\f107";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: 0.3s;
}
.menu-item-has-children .sub-menu{
    position: absolute;
    left: 0%;
    top: 100%;
    padding: 0;
    width: 250px;
    border: none;
    opacity: 0;
    visibility: hidden;
    display: block;
    background-clip: unset;
    transition: visibility 0.33s,opacity .33s,transform .33s;
    transform: translateY(10px);
    z-index: 100;
}
.menu-item-has-megamenu:hover>a>span:after,
.menu-item-has-children:hover>a>span:after{
    transform: rotate(180deg);
    transition: 0.3s;
}
.menu-item-has-children:hover>.sub-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}
.menu-item-has-children .sub-menu li.menu-item>a{
    display: block;
    padding: 10px;
    background: #fff;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
}
.menu-item-has-children .sub-menu li.menu-item>a:before{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: #f3f7fa;
    transition: all 0.35s;
}
.menu-item-has-children .sub-menu li.menu-item>a:after{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0%;
    background-color: #dd3333;
    transition: all 0.35s;
}
.menu-item-has-children .sub-menu>li.menu-item:hover>a{
    padding-left: 20px;
}
.menu-item-has-children .sub-menu li.menu-item:hover>a:after{
    width: 100%;
}
.menu-item-has-children .sub-menu li.menu-item-has-children>a>span:after{
    position: absolute;
    right: 15px;
    transform: rotate(-90deg);
}
.menu-item-has-children .sub-menu li.menu-item-has-children>.sub-menu{
    left: 100%;
    top: 0;
}
/*megamenu*/
.menu-item-has-megamenu{
    position: static;
}
.megamenu{
    position: absolute;
    left: 15px;
    right: 0;
    top: 100%;
    width: 97.3%;
    border: none;
    opacity: 0;
    visibility: hidden;
    display: block;
    background-clip: unset;
    transition: visibility 0.33s,opacity .33s,transform .33s;
    transform: translateY(10px);
    background: #fff;
    z-index: 100;
}
.menu-item-has-megamenu:hover>.megamenu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}
.megamenu .single-image h5:after{
    content: '';
    background: #dd3333;
    height: 1px;
    width: 100%;
    display: block;
    margin-top: 20px;
}
.megamenu .menu-style ul{
    border: none;
    display: inline-block;
    width: 100%;
}
.megamenu .menu-style ul li{
    width: 100%;
    margin-bottom: 0;
}
.megamenu .menu-style ul li a{
    border:none;
    display: block;
    padding: 10px;
    background: #fff;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    font-size: 14px;
    border-radius: 0;
    white-space: nowrap;
}
.megamenu .menu-style ul li a:before{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: #f3f7fa;
    transition: all 0.35s;
}
.megamenu .menu-style ul li a:after{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0%;
    background-color: #dd3333;
    transition: all 0.35s;
}
.megamenu .menu-style ul li:hover>a{
    padding-left: 20px;
    color: #dd3333;
}
.megamenu .menu-style ul li.active>a,
.megamenu .menu-style ul li>a.active{
    color: #dd3333;
}
.megamenu .menu-style ul li:hover>a:after{
    width: 100%;
}
.single-image .gallery-img{
    position: relative;
}
.single-image .gallery-img .gallery-caption{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: #dd3333;
    transition: all 0.25s;
}
.single-image .gallery-img .gallery-caption a{
    display: block;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.25s ease-in-out 0s;
    position: relative;
    padding: 5px 0;
}
.single-image .gallery-img .gallery-caption a:before{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background-color: #fff;
    transition: all 0.35s;
}
.megamenu .single-image .gallery-img:hover .gallery-caption{
    opacity: 1;
}
.single-image .gallery-img:hover .gallery-caption a:before {
    width: 100%;
}
/*banner*/
.banner .main-banner .swiper-slide{
    width: 100%;
    height: 800px;
    position: relative;
}
.simple-banner img,
.banner-style-2 .main-banner-2 .swiper-slide>img,
.banner .main-banner .swiper-slide>img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.banner-style-2 .main-banner-2 .swiper-slide .contant-wrapper .content-box,
.banner .main-banner .swiper-slide .contant-wrapper .content-box{
    transition: all 1s linear;
    transition-delay: 1s;
}
.banner .main-banner .swiper-slide .contant-wrapper .content-box p,
.banner .main-banner .swiper-slide .contant-wrapper .content-box a,
.banner .main-banner .swiper-slide .contant-wrapper .content-box h1{
  transition: all .8s cubic-bezier(0.215, 0.61, 0.355, 1) 1.1s;
  transform: translate3d(-20%, 0, 0);
  opacity: 0;
}
.banner .main-banner .swiper-slide.swiper-slide-active .contant-wrapper .content-box a,
.banner .main-banner .swiper-slide.swiper-slide-active .contant-wrapper .content-box p,
.banner .main-banner .swiper-slide.swiper-slide-active .contant-wrapper .content-box h1{
    transform: translate3d(0, 0, 0);
    opacity: 1;
}
.simple-banner,
.video-banner .jarallax{
    height: 800px;
}
.banner-style-2 .main-banner-2 .swiper-slide{
    width: 100%;
    height: 700px;
    position: relative;
}
.banner-style-2 .main-banner-2 .swiper-slide .contant-wrapper .content-box h1{
    font-size: 80px;
    line-height: 70px;
    transition: all .8s cubic-bezier(0.215, 0.61, 0.355, 1) 1.1s;
    transform: translate3d(0%, 100px, 0);
    opacity: 0;
}
.banner-style-2 .main-banner-2 .swiper-slide.swiper-slide-active .contant-wrapper .content-box h1{
    transform: translate3d(0, 0, 0);
    opacity: 1;
}
/*car form*/
.car-search-form-sec {
    margin-top: -88px;
    position: relative;
    z-index: 10;
}
.car-search-form.tabs .nav-tabs {
    border: none;
    justify-content: flex-start;
}
.car-search-form.tabs .tab-content {
    padding: 30px;
    padding-bottom: 0px;
    background-color: #fff;
    box-shadow: 0px 4px 12px -10px #000;
}
.car-search-form .tab-content form .range-slider label{
    margin-bottom: 15px;
}
.car-search-form .tab-content form .range-slider,
.car-search-form .tab-content form .nice-select{
    margin-bottom: 30px;
}
.car-search-form .tab-content form button {
    height: 50px;
    margin-bottom: 30px;
}
.range-slider .slider.slider-horizontal{
    display: block;
    width: 100%;
}
.range-slider .slider.slider-horizontal .slider-track{
    height: 5px;
}
.range-slider .slider.slider-horizontal .slider-handle{
    background: #dd3333;
    box-shadow: none;
    cursor: pointer;
    top: -3px;
}
.range-slider .slider.slider-horizontal .slider-track-low,
.range-slider .slider.slider-horizontal .slider-track-high{
    background: #f4f4f4;
}
.range-slider .slider.slider-horizontal .slider-selection{
    background: #dd3333;
}
.range-slider .slider .tooltip.top.in{
    opacity: 1;
}
/*about us*/
.about-us-sec .about-left-side ul{
    columns: 2;
    padding: 0;
}
.about-us-sec .about-left-side ul li{
    margin: 0px 0 10px;
    list-style: none;
}
.about-us-sec .about-left-side .about-list ul li i {
    margin-right: 7px;
    width: 20px;
    height: 20px;
    text-align: center;
    background: #dd3333 none repeat scroll 0 0;
    color: #fff;
    line-height: 20px;
    font-size: 12px;
}
.about-us-sec .about-left-side .signature-sec{
    margin-top: 10px;
    display: flex;
    align-content: center;
    align-items: center;
}
.about-us-sec .about-left-side .signature-sec .signature-left {
    width: 190px;
    margin-left: 20px;
    padding-left: 10px;
    border-left: 3px solid #efefef;
}
.about-us-sec .about-left-side .signature-sec .signature-right h5{
    margin-bottom: 5px;
}
/*recent-listing*/
/*car-grid-box*/
.car-grid-box{
    position: relative;
}
.car-grid-box .car-grid-wrapper{
    border: 3px solid #efefef;
    background: #fff;
}
.car-grid-box .car-grid-wrapper .car-heading-wrapper p,
.car-grid-box .car-grid-wrapper .car-heading-wrapper h5{
    margin-bottom: 20px;
}
.car-grid-box .car-grid-wrapper .car-heading-wrapper .car-type-tag{
    position: absolute;
    top: 20px;
    right: 20px;
}
.type-tag{
    color: #fff;
    display: inline-block;
    padding: 3px 14px;
    font-size: 14px;
}
.type-tag:hover{
    color: #fff;
}
.car-grid-box .car-grid-wrapper .car-img{
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}
.car-grid-box .car-grid-wrapper:hover .car-img img{
    transition: 0.5s;
    transform: scale(1.1);
}
.car-grid-box .car-grid-wrapper .car-desc{
    margin-bottom: 20px;
}
.car-grid-box .car-grid-wrapper .car-desc ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}
.car-grid-box .car-grid-wrapper .car-desc ul li{
    margin: 0px;
}
.car-grid-box .car-grid-wrapper .car-desc ul li i{
    font-size: 15px;
}
.car-grid-box .car-grid-wrapper .car-btns a{
    display: inline-block;
    text-transform: uppercase;
    padding: 7px 15px;
    font-weight: 500;
    color: #fff;
    font-size: 14px;
    width: 50%;
    float: left;
}
.car-grid-box .car-grid-wrapper .car-btns{
    text-align: center;
    background: #020202 none repeat scroll 0 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    margin: 25px auto 0;
    transition: all 0.4s ease 0s;
}
.car-grid-box .car-grid-wrapper .car-btns:after{
    position: absolute;
    content: "";
    width: 55%;
    height: 100%;
    background: #dd3333 none repeat scroll 0 0;
    right: -20px;
    z-index: -1;
    transform: skewX(40deg);
    transition: all 0.4s ease 0s;
}
.car-grid-box .car-grid-wrapper .car-btns:hover {
    background: #dd3333 none repeat scroll 0 0;
}
.car-grid-box .car-grid-wrapper .car-btns:hover:after {
    background: #020202 none repeat scroll 0 0;
}

/*our-testimonials*/
.our-testimonials{
    background-image: url(../images/testimonial-bg.html);
    position: relative;
    z-index: 9;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.our-testimonials:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(0, 0, 0, 0.85);*/
	background-color: rgba(0, 0, 0, 0.5);
    z-index: -10;
}
.our-testimonials .section-heading .heading-after .circle{
    border-color: #fff;
}
.our-testimonials .testimonial-block{
    background: #fff;
    border: 3px solid #efefef;
    font-style: italic;
    text-align: center;
    padding: 35px 35px 120px;
    position: relative;
    margin-bottom: 40px;
}
.our-testimonials .testimonial-block .text span{
    font-size: 36px;
}
.our-testimonials .testimonial-block .quote {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}
.our-testimonials .testimonial-block .quote .designation,
.our-testimonials .testimonial-block .quote .name {
    font-style: normal;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.our-testimonials .testimonial-block .quote img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-clip: padding-box;
    margin-bottom: -40px;
    z-index: 2;
}
/*back to top*/
#back-top {
  text-align: center;
  display: none;
}
#back-top a {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 0px;
  text-align: center;
  line-height: 36px;
  border: #dd3333 solid 1px;
  color: #dd3333;
  transition-duration: 0.3s;
  font-size: 22px;
  box-shadow: rgba(0, 0, 0, 0.05) 0 0 10px;
  position: fixed;
  z-index: 100;
  bottom: 20px;
  right: 20px;
}
/*======================
3 . Inventory Grid
========================*/
/*sub-header*/
.sub-header{
    background-image: url(../images/sub-header.html);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.sub-header .section-padding{
    padding: 80px 0;
}
.sub-header h1{
    word-break: break-word;
}
.sub-header .sub-header-content ul{
    display: flex;
    align-items: center;
    padding: 0;
    list-style: none;
}
.sub-header .sub-header-content ul:before{
    content: '';
    width: 20px;
    height: 1px;
    background: #fff;
    margin-right: 10px;
    display: block;
    position: relative;
    top: 1px;
}
.sub-header .sub-header-content ul li{
    text-transform: capitalize;
    font-size: 14px;
    color: #dd3333;
}
.sub-header .sub-header-content ul li a:after{
    content: '/';
    color: #fff;
    font-size: 14px;
    margin: 0 5px;
}
/*sidebar*/
.sidebar_wrap .sidebar .sidebar_widgets{
    padding: 20px;
    background: #fff;
    border: #efefef solid 1px;
}
.sidebar_wrap .sidebar .sidebar_widgets .widget_title {
    margin: -20px -20px 20px;
    padding: 20px;
}
.sidebar_wrap .sidebar .sidebar_widgets .form-group.range-slider label,
.sidebar_wrap .sidebar .sidebar_widgets .form-group .nice-select,
.sidebar_wrap .sidebar .sidebar_widgets .form-group{
    margin-bottom: 20px;
}
.sidebar_wrap .sidebar .sidebar_widgets .location-box:before {
    content: "\f05b";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translate(0px, -50%);
    z-index: 0;
    pointer-events: none;
    color: #6c757d;
}
.sidebar_wrap .sidebar .sidebar_widgets .product-type{
    list-style: none;
    padding: 0;
}
.sidebar_wrap .sidebar .sidebar_widgets .product-type li{
    width: 100%;
    display: flex;
}
.sidebar_wrap .sidebar .sidebar_widgets .product-type li .recent_post_img{
    position: relative;
    overflow: hidden;
    flex: 0 0 80px;
    max-width: 80px;
}
.sidebar_wrap .sidebar .sidebar_widgets .product-type li .recent_post_img img{
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}
.sidebar_wrap .sidebar .sidebar_widgets .product-type li .recent_post_img:hover img{
    transition: 0.5s;
    transform: scale(1.1);
}
.sidebar_wrap .sidebar .sidebar_widgets .product-type li .recent_post_title{
    flex: 0 0 calc(100% - 80px);
    max-width: calc(100% - 80px);
    padding: 10px 15px;
    border: 2px solid #efefef;
    width: 100%;
    border-left: 0;
}
.sidebar_wrap .sidebar .sidebar_widgets .product-type li .recent_post_title h6{
    margin-bottom: 10px;
}
/*inventory heading*/
.inventory-heading{
    border-bottom: 2px solid #efefef;
    background: #f4f4f4;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.inventory-heading h6{
    padding: 20px 0;
}
.inventory-heading h2{
    font-size: 30px;
    padding: 12px 0;
}
.inventory-heading .sort-by{
    display: flex;
    align-items: center;
}
.inventory-heading .sort-by span{
    white-space: nowrap;
    margin-right: 15px;
}
.inventory-heading .sort-by .custom-select{
    margin-bottom: 0;
    background: #fff;
}
.inventory-heading .inventory-view .nav-tabs{
    display: flex;
    width: 80px;
    border: none;
}
.inventory-heading .inventory-view .nav-tabs .nav-item{
    margin-left: 15px;
}
.inventory-heading .inventory-view .nav-tabs .nav-item .nav-link{
    font-size: 25px;
    padding: 0;
    border-radius: 0;
    border: none;
    background: transparent;
    color: #020202;
}
.inventory-heading .inventory-view .nav-tabs .nav-item .nav-link.active{
    color: #dd3333;
}
.ratings{
    display: flex;
}
.ratings span{
    cursor: pointer;
}

