@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}


@font-face {
    font-family: 'sui-generis';
    src: url(../fonts/sui-generis.otf);
    font-weight: 400;
    font-style: normal
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.btn10 {
    border: 1px solid #a30000 !important;
    text-align: center;
    position: relative;
    overflow: hidden !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: #a30000 !important;
    z-index: 10;
    display: inline-block;
    color: #fff;
    padding: 20px 20px;
    border-radius: 10px;
    font-size: 17px;
    font-family: Poppins;
    font-weight: 400
}

.btn10:hover {
    border: 1px solid #a30000 !important;
    color: #fff !important
}

.btn10::before {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #a30000;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 1;
    top: 0;
    z-index: -12;
    -moz-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -o-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    -webkit-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    transition: all .7s cubic-bezier(.77, 0, .175, 1);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000 !important
}

.btn10::after {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #fff;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 0;
    top: 0;
    z-index: -15;
    -webkit-transition: all .94s cubic-bezier(.2, .95, .57, .99);
    -moz-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    -o-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    transition: all .4s cubic-bezier(.2, .95, .57, .99);
    box-shadow: 2px 0 14px rgba(0, 0, 0, .6);
    border-color: #a30000 !important
}

.btn10:hover::before,
.btn1O:hover::before {
    opacity: 1;
    width: 116%
}

.btn10:hover::after,
.btn1O:hover::after {
    opacity: 1;
    width: 120%
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'sui-generis';
    font-size: 73px;
    line-height: 80px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 20px;
}

h2 {
    font-family: 'sui-generis';
    font-size: 70px;
    line-height: 60px;
    color: #000;
    font-weight: 500;
    margin: 0 0 20px;
}

h3 {
    font-family: 'sui-generis';
    font-size: 30px;
    line-height: 34px;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 24px;
    line-height: 29px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 20px;
    line-height: 25px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 18px;
    line-height: 23px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

p {
    color: #676767;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    margin: 0px;
    font-family: "Roboto", sans-serif;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 20px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

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

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

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


/*Header  Start */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    margin-top: 20px;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 10px 20px 16px;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
}

.menusec-singup-btn {
    text-align: center;
    margin-top: 10px;
}

.menuSec ul li:last-child a {
    padding-right: 0px;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #c7293d;
}

.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #c7293d;
    text-decoration: underline;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #06131b;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 18px;
    border: 1px solid #ffffff1f;
}

ul.sub-menu.sub-menu-multi-column {
    column-count: 3;
    width: 800px !important;
    -webkit-column-rule: solid 1px #e0e0e0;
    column-rule: solid 1px #e0e0e024;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 12px 10px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 12px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menusec-singup-btn a {
    background: #c7293d;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 15px 15px;
}

.menusec-singup-btn a span i {
    margin-left: 15px;
    color: #c7293d;
    background: #fff;
    border-radius: 50%;
    font-size: 16px;
    padding: 9px 10px;
    animation: tada 1.5s ease infinite;
}

.menusec-singup-btn a {
    background: #c7293d;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 15px 8px 15px 18px;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}

header {
    background: #06131b;
    position: relative;
    z-index: 10;
}

.add-padding {
    padding: 0 5%;
}

.top-sec-follow-us ul li {
    font-family: "Montserrat", sans-serif;
}

.top-sec-email-number ul li a {
    font-family: "Montserrat", sans-serif;
}

.top-sec-email-number ul {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 50px;
    margin-bottom: 0;
}

.topSec {
    padding: 20px 0 0;
    position: relative;
}

.topSec:before {
    content: "";
    position: absolute;
    background-image: url(../images/header-top-row-before.png);
    width: 1200px;
    height: 65px;
    background-size: cover;
    right: 0;
    top: 0;
}

.header-logo {
    margin-top: -30px;
}


.topSec .row {
    position: relative;
    z-index: 2;
}

.top-sec-email-number ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 15px;
}

.top-sec-follow-us ul {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-bottom: 0;
    gap: 30px;
}

.top-sec-follow-us ul li a {
    font-size: 18px;
    color: #fff;

}

.top-sec-follow-us ul li a i {

    animation: tada 1.5s ease infinite;
}

.top-sec-follow-us ul li {
    color: #fff;
    font-weight: 500;
}

.top-sec-follow-us ul li span {
    margin-right: 10px;
    font-size: 16px;
}

.top-sec-email-number ul li a i {
    animation: tada 1.5s ease infinite;
}

@keyframes tada {

    0% {
        transform: scale(1);
    }

    10%,
    20% {
        transform: scale(0.9) rotate(-3deg);
    }

    30%,
    50%,
    70%,
    90% {
        transform: scale(1.1) rotate(3deg);
    }

    40%,
    60%,
    80% {
        transform: scale(1.1) rotate(-3deg);
    }

    100% {
        transform: scale(1) rotate(0);
    }

}

/* Header End */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*banner css start */
.banner_text a {
    background: #bc1e32;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    display: inline-block !important;
    position: relative;
    padding-left: 12px;
    border: 1px solid #fff;
    transform: skew(25deg, 0deg);
    margin-right: 10px;
}

.banner_text a i {
    background: #000;
    padding: 18px 18px;
    margin-left: 18px;
    border-left: 2px solid #fff;
    transform: skew(1deg, 1deg);
}

span.lat-btn-text {}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.img-fluid {
    width: 100%;
    height: auto;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators {}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px !important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}

.banner_text p {
    color: #e1e1e1;
    margin-bottom: 30px;
    font-size: 20px;
}

.banner_text h1 span {
    display: block;
}

.btn-shine {
    background: linear-gradient(to right, #fff 0, #06131b, #c7293d 33%, #fff 0%);
    background-position: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 7s infinite linear;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
    text-decoration: none;
}

@keyframes shine {

    0%,
    100% {
        background-position: 0;
    }

    10% {
        background-position: 50px;
    }

    20% {
        background-position: 100px;
    }

    30% {
        background-position: 150px;
    }

    40% {
        background-position: 200px;
    }

    50% {
        background-position: 250px;
    }

    60% {
        background-position: 300px;
    }

    70% {
        background-position: 350px;
    }

    80% {
        background-position: 400px;
    }

    90% {
        background-position: -450px;
    }
}

.banner_text span.lat-btn-text {
    transform: skew(-20deg, 1deg);
    display: inline-block;
}

/* Banner End*/

/*Search Bar Start*/
.search-bar-sec.fixed {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    height: auto;
    padding: 12px 0;
}

.search-bar-sec {
    background-image: url(../images/search-bar-back.png);
    width: 100%;
    height: 100%;
    background-size: cover;
    padding: 45px 0;
    background-attachment: fixed;
    display: none;
}

.search-bar-button label {
    font-size: 18px;
    color: #fff;
    margin-bottom: 18px;
    font-family: "Roboto", sans-serif;
}

.search-bar-box label {
    font-size: 18px;
    color: #fff;
    margin-bottom: 8px;
    font-family: "Roboto", sans-serif;
}

.search-bar-button button {
    background: #06131b;
    border: none;
    color: #fff;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    padding: 15px 18px;
}

.search-bar-button button {
    background: #06131b;
    border: none;
    color: #fff;
    height: 45px;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    padding: 7px 30px;
    clip-path: polygon(0 0, 88% 0, 100% 100%, 12% 100%);
}

.no-padding {
    padding: 0;
}

.search-bar-box select {
    width: 100%;
    height: 45px;
    padding: 0 20px 0 30px;
    border: none;
    background: #fff;
    color: #383539;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 500;
    /* transform: skew(14deg, 0deg); */
    clip-path: polygon(0 0, 95% 0, 100% 100%, 6% 100%);
    appearance: unset;
}

.search-bar-select {
    position: relative;
    display: flex;
    align-items: center;
}

.search-bar-select-arrow {
    position: absolute;
    right: 25px;
    pointer-events: none;
    top: 18px;
}

.search-bar-select-arrow img {
    width: 13px;
    height: 7px;
    object-fit: contain;
}

/*Search Bar End*/

/*About Us Start*/

.about-us-sec {
    padding: 80px 0;
}

.about-us-images img {
    width: 100%;
    height: 570px;
    object-fit: cover;
}

.about-us-text {
    margin-left: 40px;
}

.about-us-text ul {
    margin-top: 20px;
}

.about-us-text ul {
    column-count: 2;
    line-height: 30px;
}

.about-us-text ul li {
    font-size: 15px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    color: #000;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-us-logo-row {
    margin-top: 50px;
}

.browse-by-make-box h2 {
    font-size: 30px;
    color: #c7293d;
    margin-bottom: 20px;
}

.browse-by-make-box ul {
    column-count: 4;
    margin-bottom: 35px;
    width: 75%;
    margin: 0 auto;
}

.about-us-text ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #bc1e32;
    border-radius: 50%;
    color: #fff;
    font-size: 10px;
}

.browse-by-make-box ul li p {
    font-family: "Roboto", sans-serif;
    margin-bottom: 0;
    color: #000;
    font-size: 15px;
    text-align: center;
}

.browse-by-make-box ul li img {
    width: 70%;
    object-fit: contain;
    margin: 0 auto;
    height: 60px;
    margin-bottom: 10px;
    animation: tada 4s ease infinite;
}

.browse-by-make-box ul li {
    text-align: center;
    text-align: center;
    border: 1px solid #00000024;
    padding: 20px 0;
    margin-bottom: 20px;
}

.browse-by-make-box {
    box-shadow: 0 0 10px 0 #0000000f;
    padding: 25px 35px;
    width: 95%;
    margin: 0 auto;

}

.browse-by {
    display: flex;
    align-items: center;
    justify-content: end;
    position: relative;
}

.browse-by:before {
    content: "";
    position: absolute;
    background: #888688;
    width: 3px;
    height: 70%;
    left: -10px;
}

.lat-feat-button .lat-btn-text {
    background: #bc1e32;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    padding: 15px 25px;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 10% 100%);
    font-size: 15px;
    text-transform: uppercase;
}

.about-us-sec .lat-feat-button {
    margin-top: 30px;
}

.lat-feat-button span.lat-feat-arrow {
    background: #111117;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    padding: 15px 25px;
    clip-path: polygon(0 0, 70% 0, 100% 100%, 26% 100%);
    font-size: 16px;
    margin-left: -11px;
}

/*About Us End*/

/*Latest Featured Start*/

.latest-featured-heading p {
    width: 70%;
    margin: 0 auto;
    color: #fff;
}

ul.lat-feat-icon li img {
    animation: tada 4s ease infinite;
    width: 24px;
    height: 30px;
    object-fit: contain;
}

.latest-featured-sec {
    margin: 30px 0;
    padding: 150px 0;
    /* background-image: url(../images/latest-featured-back.png); */
    width: 100%;
    height: 100%;
    background-size: cover;
}

.latest-featured-heading h2 {
    color: #fff;
}

.latest-featured-box {
    background: #fff;
    padding: 30px 30px;
    margin-top: 50px;
}

.lat-feat-button {
    margin-top: 25px;
}

.lat-feat-silder-items img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.latest-featured-sec .slick-slide {
    margin: 0px 0px;
}

.latest-featured-sec .slick-dots li button:before {
    font-family: 'slick';

    width: 100%;
    height: 5px;
    content: '';
    text-align: center;
    opacity: 1;
    background: #c3c2c3;
}

.latest-featured-sec .slick-dots li {

    width: 100%;
    height: 20px;
    margin: 0 0px;
    padding: 0;

}

.latest-featured-sec .slick-dots {
    bottom: -30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.latest-featured-sec .slick-dots li.slick-active button:before {
    opacity: 78 !important;
    background: #bc1e32;
}

ul.lat-feat-heading li:first-child {
    width: 70%;
}

ul.lat-feat-heading li h2 {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.2;
    font-weight: 600;
}

ul.lat-feat-heading li h3 {
    background: #bc1e32;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    padding: 5px 10px 5px 15px;
    margin-bottom: 0;
    clip-path: polygon(8% 0%, 100% 0, 100% 100%, 0% 100%);
}

ul.lat-feat-heading {
    margin-top: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul.lat-feat-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 2px solid #999799;
    padding-top: 15px;
}

ul.lat-feat-icon li {
    display: flex;
    align-items: center;
    gap: 12px;
}

ul.lat-feat-icon li {
    font-family: "Montserrat", sans-serif;
    color: #000;
    font-size: 12px;
    font-weight: 600;
}

.lat-feat-button a {
    display: flex;
    align-items: center;

}

.latest-featured-box span.lat-btn-text {
    background: #bc1e32;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    padding: 15px 25px;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 10% 100%);
    font-size: 15px;
    text-transform: uppercase;
}

.latest-featured-box span.lat-feat-arrow {
    background: #111117;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    padding: 15px 25px;
    clip-path: polygon(0 0, 70% 0, 100% 100%, 26% 100%);
    font-size: 16px;
    margin-left: -11px;
}

/*Latest Featured End*/


/*Conatct Us Start*/

.contact-us-we-sec {
    padding: 70px 0;
}

.contact-us-we-images img {
    width: 100%;
}

.contact-us-we-heading h2 span {
    display: block;
    color: #bc1e32;
}

.contact-us-we-form {
    padding: 50px 50px 65px;
    border: 15px solid #eab4ba;
}

.contact-us-we-heading h2 {
    font-size: 50px;
    margin-bottom: 15px;
}

.contact-us-we-heading {
    margin-top: 45px;
}

.contact-us-we-form input {
    width: 100%;
    height: 70px;
    margin-bottom: 55px;
    border: none;
    border-bottom: 2px solid #a1a1a1;
    color: #8e8e8e;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}


.contact-us-we-form input::placeholder {
    font-size: 16px;
    font-weight: 600;
    color: #8e8e8e;
    font-family: "Montserrat", sans-serif;
}

.contact-us-we-form textarea::placeholder {
    font-size: 16px;
    font-weight: 600;
    color: #8e8e8e;
    font-family: "Montserrat", sans-serif;
}

.contact-us-we-form textarea {
    width: 100%;
    height: 150px;
    margin-bottom: 50px;
    border: none;
    border-bottom: 2px solid #a1a1a1;
    color: #8e8e8e;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    resize: none;
}

.contact-us-we-button button {
    border: none;
    background: none;
}

.contact-us-we-button span.lat-btn-text {
    background: #bc1e32;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    padding: 18px 25px;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 10% 100%);
    font-size: 15px;
    text-transform: uppercase;
}

.contact-us-we-button span.lat-feat-arrow {
    background: #111117;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    padding: 18px 25px;
    clip-path: polygon(0 0, 70% 0, 100% 100%, 26% 100%);
    font-size: 16px;
    margin-left: -11px;
}

/*Conatct Us End*/

/*Why Choose Us Start*/

.why-choose-us-right-img {
    position: absolute;
    top: -190px;
    left: -30px;
}

.why-choose-us-heading h2 {
    font-size: 55px;
    margin-bottom: 10px;
    color: #fff;
}

.why-choose-us-heading p {
    font-size: 14px;
    line-height: 25px;
    color: #fff;
}

.why-choose-us-row {
    margin-top: 120px;
}

.why-choose-us-right-img img {
    width: 857px;
    /*height: 506px;*/
    height: 470px;
    object-fit: contain;
}

.why-img {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.why-choose-number-box span img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    animation: tada 4s ease infinite;
}

.why-choose-us-sec {
    margin: 180px 0 80px;
    /* background-image: url(../images/why-choose-us-back.png); */
    width: 100%;
    height: 100%;
    padding: 100px 0 100px;
    position: relative;
}

.why-choose-number-box h2 {
    font-size: 40px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}

.why-choose-number-box h3 {
    font-size: 25px;
    font-family: "Roboto", sans-serif;
    color: #fff;
    margin-bottom: 5px;
}

.why-choose-number-box p {
    color: #fff;
    font-weight: 400;
    margin-bottom: 0;
}

/*Why Choose Us End*/

/*Our Happy Clients Start*/

.our-happy-clients-heading p {
    width: 50%;
    margin: 0 auto;
}

.our-happy-clients-row {
    margin-top: 15px;
}

li.our-happy-icon i {
    font-size: 65px;
    color: #bc1e32;
}

.our-happy-clients-silder-items p {
    color: #000;
    font-size: 16px;
    margin-bottom: 15px;
}

.our-happy-clients-silder-items ul li span i {
    color: #fd8f00;
    font-size: 18px;
}

.our-happy-clients-silder-items ul li span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.our-happy-clients-silder-items {
    box-shadow: 0 0 10px 0 #00000024;
    position: relative;
}

.our-happy-clients-silder-circle {
    position: absolute;
    bottom: -50px;
    right: 50px;
}

.our-happy-clients-sec .slick-slide {
    margin: 30px 20px;
}

.our-happy-clients-silder-items ul {
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 60px 65px 80px;
}

.our-happy-clients-sec .slick-next:before {
    content: '\f356';
    font-weight: 900;
    font-family: 'Font Awesome 5 Pro';
    background: #c7293d;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff !important;
    opacity: 9 !important;
}

.our-happy-clients-sec .slick-prev {
    left: -50px;
}

.our-happy-clients-sec .slick-prev:before {
    content: '\f355';
    font-weight: 900;
    font-family: 'Font Awesome 5 Pro';
    background: #c7293d;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff !important;
    opacity: 9 !important;
}

.our-happy-cli-sild-it-heading h2 {
    font-size: 20px;
    color: #bc1e32;
    margin-bottom: 5px;
    line-height: 30px;
}

.our-happy-cli-sild-it-heading h3 {
    font-size: 13px;
    color: #333333;
    margin-bottom: 0;
    line-height: 20px;
}

.our-happy-cli-sild-it-heading {
    margin-top: 25px;
    margin-left: 20px;
}

.our-happy-clients-silder-circle img {
    width: 92px;
    height: 102px;
    object-fit: cover;
}

.our-happy-clients-sec .slick-active {
    opacity: 1.5;
}

.our-happy-clients-silder {
    padding: 0 20px;
}

.our-happy-clients-sec {
    padding: 20px 0 80px;
}

/*Our Happy Clients End*/

/* Footer Start */

section.footer {
    background: #06131b;
    padding-top: 50px;
    padding-bottom: 60px;
}


section.footer p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #8c8c8c;
}



ul.adrs-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.7s ease-in-out;
    font-size: 14px;
    color: #b9babb;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    border-bottom: 1px solid;
    padding-bottom: 23px;
}

li.boader a {
    border: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

ul.adrs-links {
    margin-bottom: 0 !important;
}

ul.adrs-links li {
    line-height: 1.5;
    margin-bottom: 32px;
}

ul.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

ul.social-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #033059;
    height: 38px;
    width: 38px;
    border-radius: 0;
    font-size: 20px;
    border-radius: 0px;
}

ul.social-links li a:hover {
    background: #ffe1a8;
    color: #033059;
    animation: float 1s ease-in-out infinite;
}

ul.social-links li a:hover i {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}

ul.adrs-links li a:hover {
    color: #bc1e32;
}

section.footer h2 {
    font-size: 30px;
    color: #fff;
}

ul.linkList li a {
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 400;
    color: #b9babb;
    font-family: 'Montserrat';
    transition: 0.5s;
}

ul.linkList li a i {
    color: #ffffff94;
}

section.footer h4::before {
    position: absolute;
    content: "";
    background: #94c83d;
    height: 4px;
    width: 55px;
    bottom: -12px;
    display: none;
}

form.footerForm input {
    margin-bottom: 20px;
    background: #fff;
    border-radius: 0;
    width: 100%;
    height: 55px;
    padding: 0 20px;
}

form.footerForm input::placeholder {
    text-transform: uppercase;
    color: #b9babb;
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 500;

}

ul.linkList li a:hover {
    color: #c7293d;
    margin-left: 20px;
}

.foot1 {
    padding: 0 0% 0 0;
    margin-top: 24px;
    position: relative;
}

.foot4 {
    padding: 30px 0% 0px 21px;
}

section.copyrite-txt {
    background: #06131b;
    border-top: 1px solid #475157;
    padding: 20px 0;
}

section.copyrite-txt p {
    margin-bottom: 0;
    font-size: 16px;
    text-align: center;
    color: #777a7c;
    font-family: 'Montserrat';
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }

    25% {
        transform: translatey(-10px);
    }

    100% {
        transform: translatey(0px);
    }
}

ul.adrs-links li a:hover i {
    animation: float 1s ease-in-out infinite;
    font-size: 20px;
}

.foot2 {
    padding-right: 0px;
    margin-top: 32px;
    padding-left: 17px;
}

form.footerForm button {
    border-radius: 0;
}

form.footerForm button:hover {
    color: #000;
}

form.footerForm button::before,
form.footerForm button::after {
    border-radius: 0;
}

ul.adrs-links li:first-child,
ul.adrs-links li:last-child {
    display: flex;
    align-items: baseline;
    gap: 12px;
    transition: 0.7s ease-in-out;
    font-size: 13px;
    color: #fff;
    font-family: 'Montserrat';
    font-weight: 400;
    /* margin-left: 10px; */
}

form.footerForm button {
    background: #c7293d;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    padding: 15px 35px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
}

button.btn:hover {
    background-color: #ffe1a8;
    border: 1px solid #ffe1a8;
}

ul.footer-social li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 16px;
    border-radius: 50%;
    transition: 0.5s;
}


ul.footer-social li a:hover {
    background: #c7293d;
    transition: 0.5s;
}

.social-icon ul {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 10px;
    margin-top: 10px;
    padding: 0 0 0 0%;
}

.social-icon h5 {
    color: #fff;
    margin-bottom: 0px;
    font-size: 14px;
    font-family: 'Graphik';
}

.quick-links-ft ul {
    column-count: 2;
    line-height: 45px;
}

ul.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

.payment-card {
    float: inline-end;
}

section.copyrite-txt .row {
    align-items: center;
}

.social-icon ul li a:hover {
    background: #fff;
}

/*Footer End*/


.inner-banner .img-fluid {
    height: 500px;
    object-fit: cover;
}



/* about us :start */
.prices {
    background-image: url(../images/price-back.jpg);
    width: 100%;
    height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 110px 0px;
    background-attachment: fixed;
}

.prices .row {
    /* border: 3px solid #eb4036; */
    padding: 50px 0px;
    /* background: #0d2a3c; */
    position: relative;
}

.text-prices:before {
    position: absolute;
    content: '';
    background: #eb4036;
    width: 5px;
    height: 135px;
    right: 0;
    top: -24px;
    transform: skew(25deg, 0deg);
}

.maindv-verified-col .text-prices:before {
    display: none;
}

.text-prices {
    text-align: center;
    position: relative;
}

.text-prices h3 {
    text-transform: uppercase;
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #fff;
}

.text-prices h4 {
    font-weight: 700;
    font-size: 24px;
    color: #fff;
}

.prices .row:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #eb4036;
    background: #0d2a3c;
    transform: skew(25deg, 0deg);
}

/* about us :end */
/*Section Prices End*/


/*Section Our Team Start*/
.top-heading-team {
    text-align: center;
}

.top-heading-team h2 {
    font-size: 60px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.top-heading-team p {
    width: 69%;
    margin: 0 auto;
}

.top-heading-team {
    text-align: center;
    margin-bottom: 20px;
}

.img-team img {
    width: 100%;
    height: 450px;
    border: 1px solid #dd3d53;
    border-radius: 5px;
}

.text-team {
    text-align: center;
}

.text-team h3 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 36px;
    color: #000;
    margin-bottom: 10px;
}

.text-team p {
    color: #dd3d53;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 600;
}

.text-team {
    padding: 10px 0px;
}

.our-team {
    padding: 90px 0px;
}

/*Section Our Team End*/



/* vicel pages :start */
.locat-tabs-vehical ul {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.locat-tabs-vehical ul li {
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.locat-tabs-vehical {
    border-bottom: 1px solid #dee0e1;
}

.bodystyle-text-vehicle ul li select {
    border: unset;
    color: #000;
    appearance: auto;
}

.bodystyle-text-vehicle ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bodystyle-text-vehicle ul li {
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.bodystyle-text-vehicle {
    padding: 5px 20px;
    border-bottom: 1px solid #dee0e1;
}

.price-text-vehicel h5 {
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 400;
    color: #000;
    margin-top: 21px;
    padding: 0 20px;
}

.price-text-vehicel h5 span {
    border: 2px solid #000;
    padding: 0px 11px;
    border-radius: 26px;
    font-weight: 600;
    font-size: 22px;
    margin-left: 10px;
}

.fields-vehicle input {
    border: 1px solid #0000008c;
    width: 45%;
    padding: 0px 10px;
    height: 40px;
    border-radius: 4px;
}

.fields-vehicle {
    margin-bottom: 5px;
    padding: 0 20px;
}

.range-slider input[type=range] {
    -webkit-appearance: none;
    width: 93%;
    position: absolute;
    left: 0;
    border: none;
    padding: 0px !important;
    height: 5px;
    border: 0;
    margin-left: 14px;
}

.range-slider {
    box-shadow: 0 0 10px 0 #000;
    padding: 15px 15px;
}

.range-slider {
    width: 100%;
    background: #ffff;
    padding: 10px 0px;
    box-shadow: unset;
    border-radius: 10px;
    position: relative;
    margin-bottom: 0px;
}

.flx-fg.rangeValues {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0 0;
}

.flx-fg.rangeValues .flx-fg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
    gap: 10px;
}

.range-slider input[type=range] {
    -webkit-appearance: none;
    width: 93%;
    position: absolute;
    left: 0;
    border: none;
    padding: 0px !important;
    height: 5px;
    border: 0;
    margin-left: 14px;
}

.range-slider input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    background: #dd3d53;
    border: none;
    border-radius: 3px;
}

.range-slider input[type=range]:focus::-webkit-slider-runnable-track {
    background: #9fb5b3;
}

.flx-fg.rangeValues .flx-fg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
    gap: 10px;
}

.range-slider a {
    border: 1px solid #9fb5b3;
    padding: 7px 35px;
    border-radius: 13px;
    color: #9fb5b3;
    margin: 0 auto;
}

.price-btn {
    text-align: center;
    margin-top: 30px;
}

.flx-fg.rangeValues .flx-fg div {
    display: flex;
    align-items: center;
}

.price-dv-mn {
    padding: 0px 20px 20px 0;
    /* background-color: white; */
}

.flx-fg span {
    top: 0px;
    font-size: 16px;
    font-family: "Josefin Sans", sans-serif;
    color: #000;
    font-weight: 700;
}

.range-slider input[type=range]::-moz-range-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #9fb5b3;
}

.range-slider input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #dd3d53;
    margin-top: -8px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    /*     border: 1px solid #fff !important; */
}

.pric-drop-text ul li {
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 500;
}

.pric-drop-text ul {
    display: flex;
    justify-content: space-between;
}

.pric-drop-text p {
    font-size: 14px;
    margin-left: 30px;
    margin-top: -21px;
}

.pric-drop-text ul li input {
    margin-right: 13px;
}

.range-slider p {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-left: 17px;
    margin-bottom: 30px;
}

.second-rang {
    border-bottom: 1px solid #dee0e1;
    padding-bottom: 11px;
}

.make-vehicle select {
    background: unset;
    position: relative;
}

.make-vehicle select {
    background: unset;
    position: relative;
    font-family: 'Poppins';
    font-weight: 500;
    color: #000;
    width: 100%;
    padding: 15px 40px 5px 25px;
    border-color: #dee0e1;
}

.make-vehicle {
    position: relative;
}

.make-vehicle:after {
    content: '\f078' !important;
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 13px;
    right: 25px;
    top: 12px;
    color: #00000061;
}

.pric-drop-text {
    padding: 0 20px;
}

.maindv-vehical {
    border: 1px solid #dee0e1;
}

.row2-vehicle-products {
    margin-top: 31px;
}

.product-list-main {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    margin-left: 10px;
    margin-top: 30px;
    justify-content: center;
    width: 95%;
}

.product-slct-img label {
    padding: 12px 28px !important;
    border: 1px solid #0000003d;
    border-radius: 5px;
    display: flex;
}

.productdetailtext ul {
    padding: 0;
    margin: 1px 0 0;
    align-items: center;
    justify-content: flex-start;
}

.product-slct-img label span {
    transform: skew(-25deg, 0deg);
    display: block;
}

[type="radio"]:checked+label,
[type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
    transform: skew(25deg, 0deg);
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.product-slct-img input {
    display: none !important;
}

.productdetailtext ul li {
    list-style: none;
    display: inline-block;
    color: black;
    font-size: 21px;
    font-weight: 500;
    font-family: "Poppins";
    text-transform: capitalize;
}

.product-slct-img img {
    width: 40px;
    height: 40px;
}

.product-slct-img input[type="radio"]:checked+label {
    border: 1px solid #dd3d53;
    background: #dd3d53;
    color: #fff;
}

.product-list-main ul {
    margin-bottom: 0px;
    transform: skew(-32deg, 0deg);
}

.product-list-main ul li a {
    color: #000;
}

.cash-finance-btn .product-slct-img label {
    padding: 12px 32px !important;
}

.Vehical {
    padding: 100px 0;
}

.Vehical.latest-featured-sec {
    background: unset;
}

.Vehical.latest-featured-sec .latest-featured-box {
    box-shadow: 0 0 10px #0000001c;
    margin-top: 0;
    margin-bottom: 40px;
}

/* vicel pages :end */


/*Detail Vehical Page Start*/

.product-heading-txt ul li {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    color: #dd3d53;
    position: relative;
}

.product-heading-txt ul {
    display: flex;
    gap: 70px;
    margin-left: 58px;
}

.productdetailportion img {
    width: 100%;
    height: 480px;
    border-radius: 5px;
}

.productdetailsmallportion img {
    width: 141px;
    height: 110px;
    border-radius: 3px;
    object-fit: cover;
}

.product-heading-txt h2 {
    text-transform: uppercase;
    font-weight: bold;
    color: #000;
    font-size: 60px;
    margin-left: 20px;
}

.productdetailnav .slick-active {
    opacity: 1.5;
}

.product-heading-txt ul li:before {
    position: absolute;
    width: 7px;
    height: 7px;
    background: #dd3d53;
    content: '';
    border-radius: 4px;
    left: -36px;
    bottom: 8px;
}

.productdetailnav .slick-slide {
    margin: 20px 20px;
}

.detvehical-descri-text h3 {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.detvehical-descri-text p {
    text-align: justify;
}

.detvehical-descri-text {
    padding: 20px 0px;
    border-bottom: 1px solid #00000075;
}

.finanal-calcula-fields input {
    width: 100%;
    height: 50px;
    border: 1px solid #0000004a;
    border-radius: 3px;
    padding: 0 11px;
    margin-bottom: 20px;
}

.finanal-calcula-fields input::placeholder {
    font-family: 'Poppins';
    text-transform: capitalize;
    color: #000;
    font-size: 14px;
}

.finanal-calculator h3 {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 30px;
}

.calcu-btn {
    margin-top: 20px;
}

.text-detail-vehicel h2 {
    font-weight: bold;
    color: #dd3d53;
    font-size: 60px;
}

.text-detail-vehicel h3 {
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
}

.user-detaiveical-img h4 {
    font-size: 18px;
    font-family: 'Poppins';
    font-weight: 500;
    color: #000;
    margin-bottom: 5px;
}

.user-detaiveical-img p {
    font-family: 'Poppins';
    font-size: 14px;
    color: #000;
}

ul.user-vehical-detail li {
    font-family: 'Poppins';
    font-size: 16px;
}

ul.user-vehical-detail li i {
    padding: 13px 15px;
    border: 1px solid #000;
    border-radius: 30px;
    color: #a93c4b;
    background: #01323f;
}

ul.user-vehical-detail {
    display: flex;
    align-items: center;
    gap: 19px;
    margin-top: 13px;
}

ul.user-vehical-detail li a {
    color: #000;
}

.btn-message-user-detailvehicel .theme-btn {
    padding: 14px 136px;
}

.btn-chet-userdetail-vehical {
    margin-top: 40px;
}

.btn-chet-userdetail-vehical .theme-btn {
    padding: 14px 120px;
    background: #fff;
    color: #000;
    border: 1px solid #dd3d53;
}

.btn-message-user-detailvehicel {
    margin-top: 30px;
}

.user-detaiveical {
    border: 1px solid #0000005c;
    padding: 30px 50px 42px;
    border-radius: 5px;
}

.detvehical-overviewtext ul li {
    display: flex;
    /* gap: 200px; */
    font-size: 16px;
    font-family: 'Poppins';
    justify-content: space-between;
    border-bottom: 1px solid #00000021;
    padding: 7px 0;
}

.maindvmake-text {
    background: #f3f4f5;
    padding: 33px 30px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.cblog-detail {
    padding: 90px 0px;
}

section.sec-for-detailvehical .top-heading-ourvehicle .top-heading-cartype h2 {
    text-align: center;
    padding: 40px 0px 10px;
    border-top: 1px solid #00000047;
}

.lat-feat-button.via-btn {
    justify-content: center;
    display: flex;
}

.user-detaiveical .lat-feat-button .lat-btn-text {
    padding: 14px 20px;
    font-size: 12px;
}

.user-detaiveical-img {
    display: flex;
    align-items: center;
    gap: 20px;
}

.detvehical-overviewtext span {
    text-align: start;
    width: 200px;
}

/*Detail Vehical Page End*/




/*Blog Page Start*/
.text-blog ul li {
    font-size: 15px;
    font-weight: 400;
}

.text-blog ul li i {
    margin-right: 12px;
    color: #bc1e32;
}

.text-blog ul {
    display: flex;
    /* justify-content: space-around; */
    margin-bottom: 10px;
    gap: 60px;
    justify-content: center;
}

.text-blog h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    margin-top: 20px;
}

.text-blog {
    text-align: center;
    width: 87%;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin: 0 auto;
    padding: 16px 0px 10px;
    margin-top: -71px;
}

.text-blog a {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #dd3d53;
    /* border-bottom: 2px solid #dd3d53; */
}

.img-blog img {
    width: 100%;
    height: 340px;
    border-radius: 5px;
    position: relative;
    z-index: -1;
}

.top-heading-blog {
    text-align: center;
    margin-bottom: 25px;
}

.top-heading-blog h2 {
    font-size: 60px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.maindv-blog .text-blog a {
    justify-content: center;
}

.top-heading-blog p {
    width: 61%;
    margin: 0 auto;
}

.maindv-blog {
    margin-bottom: 40px;
}

.blog {
    padding: 100px 0px;
}

/*Blog Page End*/

/*CONTACT START*/
.contact_page_sidbar h6 {
    font-size: 14px;
    color: #dad7d7;
    line-height: 20px;
    margin: 0;
    font-weight: 400;
}

.fa-color {
    color: #e51921;
    font-size: 80px;
}

.contact_page_sidbar h4 {
    color: #000;
    font-weight: 700;
    margin: 0;
    margin-bottom: 0px;
    font-size: 16px;
}

.contact_page_sidbar i {
    font-size: 35px;
    margin: 0 20px 0 0;
    width: 35px;
}

.contact_social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #e51921;
    color: #ffffff;
    border-radius: 0;
    margin: 0 10px 0 0;
    font-size: 22px;
}

.contact_social a:hover {
    background-color: #e51921;
    color: #fff;
}

.contact_map iframe {
    width: 100%;
    height: 600px;
}

.contact-left img {
    width: 100%;
}

ul.contact_page_sidbar li i {
    color: #000;
}

ul.contact_page_sidbar a {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 18px;
    color: #8b8a8a;
    text-decoration: none;
}

ul.contact_page_sidbar h6 {
    line-height: 26px;
    font-family: 'Poppins';
    font-size: 18px;
    color: #8b8a8a;
    font-weight: 400;
}

.contact-form {
    border-radius: 5px;
    padding: 40px 35px 40px 35px;
    border: 2px solid #dcdcdc;
}

.contact-form-title h4 {
    color: #000;
    font-size: 36px;
    line-height: 26px;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-form input {
    width: 100%;
    margin-bottom: 20px;
    padding: 15px 20px;
    border: 2px solid #dcdcdc;
    border-radius: 5px;
}

.contact-form input::placeholder {
    color: #000;
}

.contact-form textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px 18px 80px;
    border-radius: 5px;
    border: 2px solid #dcdcdc;
    resize: none;
}

.contact-submit button {
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 17px;
    background: none;
}

.contact-form input::placeholder {
    font-size: 16px;
    line-height: 14px;
    color: #9d9a9a;
    border-radius: 5px;
    margin-bottom: 0px;
}

.contact-form textarea::placeholder {
    font-size: 16px;
    line-height: 14px;
    border-radius: 5px;
    color: #9d9a9a;
    margin-bottom: 0px;
    font-family: 'Poppins';
}

section.contact_page_main.pt-8.pb-8 {
    padding: 100px 0;
    background-color: #050505;
}

li.d-flex.align-items-center.mt-5 {
    margin: 0 !important;
    margin-bottom: 30px !important;
}

.contact_page_sidbar p {
    margin-bottom: 0;
}

.cont-1 h3 {
    color: #000;
}

.cont-1 p {
    color: #8b8a8a;
    font-size: 18px;
    font-weight: 500;
    width: 100%;
}

i.fas.fa-phone-alt {
    transform: rotate(92deg);
}

.icons i {
    background: #000;
    color: #fff;
    padding: 10px;
    margin: 0px 5px;
    font-size: 22px;
}

.con-form {
    padding: 20px 50px;
}

section.contact-us {
    padding: 100px;
}

.btn-contact a {
    background: #194376;
    padding: 10px 80px;
    border: none;
    border-radius: 5px;
    color: #fff;
}

section.contact-us.inner h3 {
    font-size: 45px;
    line-height: 26px;
    color: #000;
    font-weight: 700;
    font-weight: bold;
    text-transform: uppercase;
}

.map-col {
    padding: 0;
}

section.contact-us .row {
    align-items: baseline;
}

iframe {
    margin-bottom: -7px;
    width: 100%;
    height: 610px;
}

.contact-text {
    padding: 23px 0px;
}

.btn-contact button.btn-1 {
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 400;
    text-transform: uppercase;
    border: 1px solid #dd3d53;
    padding: 16px 112px;
    color: #fff;
    background: #dd3d53;
    border-radius: 5px;
    letter-spacing: 2px;
}

.icons i:hover {
    background: #0072bc;
}

/*contact inner page sec end*/

/*blog details Page start*/
section.blogs-details {
    padding: 100px 0;
}

.blogs-img-text ul li i {
    color: #0d0d0d;
    font-size: 20px;
    margin-right: 10px;
}

.blogs-img-text ul {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 20px;
}

.blogs-img-text h2 {
    font-weight: 700;
    font-size: 48px;
    margin-top: 15px;
    color: #000;
    border-bottom: 1px solid #00000057;
    line-height: 65px;
}

.blogs-img-text p {
    font-weight: 400;
    font-size: 16px;
    color: #000;
    font-family: 'Poppins';
    line-height: 32px;
}

.search a {
    width: 100px;
    height: 51px;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 17px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #bf751d;
    color: #fff !important;
}

.search {
    position: relative;
}

.search input {
    border: 1px solid #e1e1e1;
    width: 100%;
    padding: 12px 10px;
}

.blog-categories h4 {
    font-weight: bold;
    font-size: 38px;
    margin-top: 30px;
    padding-bottom: 25px;
    position: relative;
    color: #000;
    text-transform: uppercase;
}

.blog-categories a {
    display: block;
    font-family: 'Poppins';
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    padding: 10px 0;
    border-bottom: 1px solid #e1e1e1;
}

.blog-categories p {
    font-family: 'Poppins';
    font-weight: 500;
    color: #646464;
    font-size: 14px;
}

.postss i {
    color: #000 !important;
    font-size: 18px;
    margin-right: 10px;
}

.postss h6 {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 15px;
    color: #9fb5b3;
    margin-bottom: 0;
    margin-top: 4%;
    text-transform: uppercase;
}

.blog-categories {

    /* padding-left: 45px; */
}

.blogs-img-text img {
    width: 100%;
    height: 565px;
    border-radius: 5px;
}

.postss p {
    font-weight: 500;
    color: #000;
    font-size: 14px;
    text-transform: capitalize;
}

.postss ul li img {
    width: 100px;
    height: 88px;
}

.postss ul {
    display: flex;
    align-items: center;
    gap: 19px;
}

.postss ul li p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.postss {
    border-bottom: 2px solid #e1e1e1;
    margin-bottom: 2%;
}

.blog-text1 li i {
    font-size: 22px;
    height: 35px;
    width: 35px;
    border: 1px solid #9fb5b3;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    display: flex;
}

.blog-text1 li {
    display: inline-block;
}

.blog-text1 ul {
    display: inline-block;
}

.keyword input {
    padding: 10px;
    border-radius: 10px 0px 0px 10px;
    outline: none;
    border: 1px solid #bfbebe;
}

.keyword button {
    padding: 11px 10px;
    background-color: #c3272e;
    color: #fff;
    border-radius: 0px 10px 10px 0px;
    border: none;
}

.blog-categories h4:before {
    position: absolute;
    content: '';
    width: 44px;
    height: 3px;
    background: #d96262;
    bottom: 10px;
    left: 4px;
}

/*blog details Page end*/


.faq-inn-mn button {
    color: #717171;
    border-radius: 15px !important;
    box-shadow: unset !important;
    margin-bottom: 0;
    font-weight: 400;
    border: none;
    padding: 0px 0;
    position: relative;
    font-weight: 500;
    font-size: 20px;
    font-family: 'Poppins';
}

.faq-inn-mn span {
    margin-right: 25px;
}

.faq-inn-mn .accordion-item {
    margin-bottom: 0;
    border: 0;
    border: 1px solid #ccc;
    box-shadow: unset;
    border-radius: 0;
    padding: 0px 20px;
    margin-bottom: 19px;
}

.faq-inn-mn .accordion-button:not(.collapsed) {
    background: transparent;
    color: #000;
    /* border-bottom: 1px solid #F5F5F5; */
    border-radius: 0 !important;
    outline: none;
}

.faq-inn-mn .accordion-button:not(.collapsed) span {
    color: #000;
}

.faq-inn-mn .accordion-body p {
    font-size: 13px;
    line-height: 18px;
    padding: 5px 0;
}

.faq-inn-mn .accordion-body {
    padding: 0 0;
}

.faq-txt h3 {
    font-size: 46px;
    font-weight: 700;
}

.faq-txt h6 {
    font-size: 15px;
    color: #13213c;
    font-family: 'Rubik';
    font-weight: 500;
    margin-bottom: 15px;
}

section.faqs {
    padding: 80px 0px;
}

.faq-txt2 h4 {
    font-size: 28px;
    color: #13213c;
    font-weight: 700;
}

.faq-txt2 p {
    font-size: 15px;
    color: #535353;
    line-height: 22px;
    margin-bottom: 40px;
}

.faq-txt2 {
    background-color: #ffffff9e;
    padding: 20px;
    position: absolute;
    bottom: 0px;
    width: 72%;
}

.faq-txt2 a {
    margin-bottom: 20px;
}

.faq-img {
    position: relative;
}

.top-heading-faqs h2 {
    text-align: center;
    font-size: 60px;
    font-weight: 700;
    color: #000;
    margin-bottom: 50px;
}

.faqs {
    padding: 80px 0px;
}

.faqs .row {
    background: #e6e9eb;
    padding: 80px 60px;
    border-radius: 5px;
}

.contact-form .contact-us-we-button span.lat-btn-text {
    width: 130px;
    display: inline-flex;
    font-size: 20px;
    justify-content: center;
}

.contact-form .contact-us-we-button button {
    display: flex;
}

/* Faqs */

.price-text-vehicel {
    position: relative;
    width: 42%;
}

p.tol-tip {
    position: absolute;
    top: 0;
    left: 107px;
    width: 142%;
    z-index: 99;
    background: #bc1e32;
    color: #fff;
    padding: 10px 10px;
    display: none;
    font-size: 11px;
    line-height: 18px;
}

.price-text-vehicel span:hover p.tol-tip {
    display: block;
}

.range-slider {
    position: relative;
    /* Ensure relative positioning for the container */
}

.range-value {
    position: absolute;
    top: -30px;
    /* Adjust this value to position the numbers above the sliders */
    left: 0;
    display: inline-block;
    width: 30px;
    /* Adjust width as needed */
    text-align: center;
    font-size: 14px;
}

.range-new {
    position: relative;
}

span.range-value.rangemax {
    right: 0;
    left: inherit;
}

.range-new input.range-input {
    width: 100%;
    margin: 0;
}


.yourform {
    /* position: absolute; */
    /* width: 280px; */
    /* top: 25%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    /* margin-right: -50%; */
}

.dropdownWrapper {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    width: 100%;
}

.dropdownWrapper .dropdown {
    transition: 0.2s;
    z-index: 1;
    overflow: hidden;
    color: #000;
    padding: 8px;
    font-size: 21px;
    width: 100%;
    cursor: pointer;
    border-bottom: 1px solid #dee0e1;
    font-size: 16px;
    padding: 10px 30px;
    font-weight: 500;
    text-transform: capitalize;
}

.dropdownWrapper .dropdown::selection {
    background: transparent;
}

.dropdownWrapper .dropdown.active {
    color: #000;
    /* background: #000; */
    /* border: 1px solid #000; */
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.dropdownWrapper .dropdown.active:after {
    color: #fff;
    transform: translateY(-50%) rotateX(180deg);
    transition: 0.1s;
}

.dropdownWrapper .dropdown-itemsWrapper {
    top: calc(100% - 1px);
    opacity: 1;
    z-index: 1;
    color: #000;
    font-family: sans-serif;
    font-size: 18px;
    transition: 0.2s;
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    /* height: 177px; */
    overflow-y: auto;
    border: 1px solid #0000001c;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    margin: 0;
    padding: 0;
    z-index: 99;
    background: #fff;
}

.dropdownWrapper .dropdown-itemsWrapper.inactive {
    border: 0px;
    opacity: 0;
    height: 0px;
}

.dropdownWrapper .dropdown-itemsWrapper li {
    margin: 0px;
    transition: 0.1s;
    /* box-shadow: 0 3px 5px #000; */
    cursor: pointer;
    list-style: none;
    padding: 8px 10px;
    background: #fff;
    width: auto;
    height: auto;
    border-bottom: 1px solid #0d0d0d24;
    border-top: none;
}

.dropdownWrapper .dropdown-itemsWrapper li::selection {
    background: transparent;
}

.dropdownWrapper .dropdown-itemsWrapper li:hover {
    background: #000;
    color: #fff;
}

.license-plate-sec {
    padding: 70px 0;
}

.license-plate-box {
    border-radius: 15px;
    padding: 50px 30px;
    box-shadow: 0 0 5px 0 #00000024;
    text-align: center;
}

.license-plate-box .nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: #fff !important;
    background-color: #dd3d53;
    border-color: inherit;
}

.license-plate-box .nav-tabs .nav-link {
    margin-bottom: -1px;
    background: none;
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    font-family: "Barlow", sans-serif;
    padding: 0;
    font-size: 20px;
    font-weight: 500;
    color: #000;
    border: 2px solid #0d2a3c;
    padding: 10px 35px;
    border-radius: 5px !important;
}

.license-plate-box p {
    font-family: "Barlow", sans-serif;
    font-size: 20px;
    color: #000;
    font-weight: 600;
}

.license-plate-box a {
    font-family: "Barlow", sans-serif;
    text-decoration: underline;
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

.license-plate-form-box button {
    margin-top: 20px;
    background: #dd3d53;
    font-family: "Barlow", sans-serif;
    color: #fff;
    font-size: 20px;
    border: none;
    margin-bottom: 20px;
    padding: 10px 35px;
    border-radius: 5px;
}

.license-plate-box .nav-tabs {
    border-bottom: 1px solid #dee2e6;
    justify-content: center;
    padding-bottom: 10px;
}

.license-plate-form-box {
    margin-top: 20px;
}

.license-plate-form-box input {
    width: 100%;
    height: 50px;
    padding: 0 10px;
    margin-bottom: 15px;
    border: 1px solid #000;
    border-radius: 5px;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
}

.license-plate-form-box select {
    width: 100%;
    height: 50px;
    padding: 0 10px;
    margin-bottom: 15px;
    border: 1px solid #000;
    border-radius: 5px;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
}

.how-it-works-box span {
    background: #dd3d53;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-family: "Barlow", sans-serif;
    margin: 0 auto;
    margin-bottom: 5px;
}

.license-plate-form-box input::placeholder {
    color: #000;
    font-weight: 700;
}

.how-it-works-heading h2 {
    font-weight: 500;
    font-size: 50px;
    color: #000;
    margin-bottom: 16px;
}

.how-it-works-sec {
    text-align: center;
    padding: 20px 0 80px;
}

.how-it-works-box h2 {
    font-weight: 500;
    font-size: 30px;
    color: #000;
    margin-bottom: 5px;
    line-height: 40px;
}

.how-it-works-box p {
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

.selling-your-car-box h2 {
    font-weight: 500;
    font-size: 35px;
    color: #000;
    margin-bottom: 0px;
}

.selling-your-car-box {
    margin-top: 25px;
}

.selling-your-car-box p {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    margin-bottom: 10px;
}

.selling-your-car-box ul li {
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    color: #000;
    font-weight: 700;
    margin-left: 15px;
    position: relative;
}

.selling-your-car-box ul li:before {
    content: "";
    position: absolute;
    background: #dd3d53;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 11px;
    left: -15px;
}

.car-selling-sec {
    padding: 0 0 100px;
}

.car-selling-heading h2 {
    font-weight: 500;
    font-size: 45px;
    color: #000;
    margin-bottom: 25px;
}

.selling-your-car-box ul {
    margin-top: 15px;
    line-height: 30px;
}

.selling-your-car-heading p {
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

.how-it-works-box {
    padding: 0 20px;
}

.quick-easy-images img {
    width: 40%;
}

.benefits-getting-sec .row {
    align-items: center;
}

.quick-easy-box p {
    margin-bottom: 0;
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

.quick-easy-images.chg {
    text-align: center !important;
}

.background-quick {
    background: #f8f8f8;
    padding: 20px 0;
}

.quick-easy-images {
    text-align: end;
}

.benefits-getting-heading h2 {
    font-weight: 500;
    font-size: 50px;
    color: #000;
    margin-bottom: 16px;
}

.benefits-getting-heading {
    text-align: center;
    margin-bottom: 35px;
}

.benefits-getting-sec {
    padding: 15px 0 100px;
}

.quick-easy-box h2 {
    font-weight: 500;
    font-size: 40px;
    color: #000;
    margin-bottom: 2px;
}

.selling-your-car {
    padding: 100px 0;
}

.selling-your-car-heading h2 {
    font-weight: 500;
    font-size: 50px;
    color: #000;
    margin-bottom: 5px;
}

.selling-your-car-heading {
    text-align: center;
}

/*login start*/

.log-form .theme_btn {
    width: 100%;
    background: #bc1e32;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    padding: 12px 25px;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 10% 100%);
    text-transform: uppercase;
    border: unset;
    font-size: 21px;
    margin-top: 10px;
}

.log-p {
    padding: 7% 0px;
    /* background: #f8f7e1; */
}

.log-form {
    /* border: 1px solid #787878; */
    padding: 30px 20px;
    background-color: #fff;
    box-shadow: 0px 0px 16px #0000003d;
}

.log-form h2 {
    color: #000000;
    font-size: 33px;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
}

.log-form input {
    width: 100%;
    border: 1px solid #1f1f1f59;
    padding: 15px 30px;
    margin-top: 10px;
    background: #ffffff;
    margin-bottom: 10px;
    border-radius: 30px;
}

.log-form ::placeholder {
    color: rgba(0, 0, 0, 0.575);
    font-size: 15px;
}

.btn-submits {
    /* background: #326651; */
    color: #fff;
    font-size: 17px;
    padding: 13px 30px;
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 20px;
    border: 1px solid transparent;
    font-weight: 500;
    border-radius: 30px;
    text-transform: capitalize;
}

.btn-submits:hover {
    box-shadow: inset 300px 0 0 0px #fff, inset -295px 0 0 0px #fff;
    color: #000;
    border: 1px solid #000;
    transition: 1.3s ease-in-out;
}

.log-form-footer {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-top: 10px;
}

.log-form-footer input {
    width: 20px;
}

.log-form-footer a {
    color: #00000087;
    font-size: 15px;
    font-weight: 500;
}

.log-form p {
    color: #00000087;
    font-size: 15px;
    padding-top: 20px;
    font-weight: 500;
    font-family: 'Roboto';
}

.log-form p a {
    text-decoration: underline;
    color: #1356cf;
    /* float: right; */
    font-weight: 500;
}

.login_header a {
    color: #000;
}


/*login end*/


.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: 1px solid #c5c5c5;
    background: #f6f6f6;
    font-weight: normal;
    color: #454545;
    border-radius: 50%;
}

.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
    background: #bc1e32;
}

input#amount-4 {
    background: transparent;
}

.range-text {
    display: flex;
    justify-content: center;
    position: relative;
}

div#slider-range-3 {
    margin: 20px 10px;
    border-radius: 80px;
    /* height: 6px; */
    background: #c5c5c5;
}

div#slider-range-4 {
    margin: 20px 10px;
    border-radius: 80px;
    /* height: 6px; */
    background: #c5c5c5;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    background: #bc1e32 !important;
}


.fields-vehicle.Mileage-input input {
    padding: 0;
    height: auto;
    border: unset;
    position: absolute;
    top: -60px;
    right: 0;
    width: 40px;
}

input#Mileage {
    right: inherit;
    left: 5px;
}

.make-vehicle label {
    position: absolute;
    top: 0;
    left: 24px;
    font-size: 10px;
    font-weight: 600;
}

.vehicle-registration-form-sec {
    padding: 100px 0;
}

.vehicle-registration-form-sec .row {
    /* border: 2px solid #dcdcdc; */
    /* padding: 50px 50px; */
}

.vehicle-registration-form-input label {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

.vehicle-registration-form-input input {
    width: 100%;
    height: 55px;
    padding: 0 15px;
}

.vehicle-registration-form-heading h2 {
    font-size: 65px;
}

.vehicle-registration-form-heading {
    margin-bottom: 30px;
}

.vehicle-registration-form-input {
    margin-bottom: 20px;
}

.vehicle-registration-form-input input {
    width: 100%;
    height: 60px;
    padding: 0 15px;
    border: 2px solid #dcdcdc;
    font-family: "Montserrat", sans-serif;
    text-transform: capitalize;
    font-size: 16px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.vehicle-registration-form-input.file input {
    padding: 14px 15px;
}

.vehicle-registration-form-button button {
    background: #bc1e32;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    padding: 15px 55px;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 10% 100%);
    font-size: 15px;
    text-transform: uppercase;
    border: none;
    font-weight: 500;
}

.vehicle-registration-form-button {
    margin-top: 5px;
}

.latest-featured-box p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

a.place-ad {
    padding: 15px 20px;
    margin: 0 5px;
}

section.category-new {
    /*padding: 100px 0;*/
}

.category-new-box img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 10px;
}

.category-new-box {
    text-align: center;
    border: 1px solid #00000024;
    padding: 20px 0;
    margin-bottom: 20px;
}

.category-new-box h4 {
    font-size: 16px;
}

@media only screen and (min-width: 1661px) and (max-width: 1920px) {
    .main_slider.homebnr>.side_barfixd>ul {
        height: 53vh !important;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {}

@media only screen and (min-width: 992px) and (max-width: 1199px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (min-width: 520px) and (max-width: 767px) {
    ul.sub-menu.sub-menu-multi-column {
        column-count: 1;
    }
}

@media only screen and (min-width: 300px) and (max-width: 519px) {
    .adfvert-wrapper {
        height: 50vh !important;
        width: 90% !important;
        z-index: 9999 !important;
    }

    .carousel-item>img.img-fluid {
        height: 650px;
    }

    html,
    body {
        overflow-x: hidden;
    }

    ul.sub-menu.sub-menu-multi-column {
        column-count: 1;
    }

}

#msform {
    text-align: center;
    position: relative;
    margin-top: 20px
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative
}

.form-card {
    text-align: left
}

#msform fieldset:not(:first-of-type) {
    display: none
}

#msform input,
#msform textarea,
select {
    padding: 8px 15px 8px 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 25px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    font-size: 16px;
    letter-spacing: 1px;
    appearance: auto;
}

#msform input:focus,
#msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #673AB7;
    outline-width: 0
}

#msform .action-button {
    width: 100px;
    background: #c7293d;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 0px 10px 5px;
    float: right
}

#msform .action-button:hover,
#msform .action-button:focus {
    background-color: #000000;
}

#msform .action-button-previous {
    width: 100px;
    background: #616161;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px 10px 0px;
    float: right
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
    background-color: #000000
}

.card {
    z-index: 0;
    border: none;
    position: relative
}

.fs-title {
    font-size: 25px;
    color: #c7293d;
    margin-bottom: 15px;
    font-weight: normal;
    text-align: left;
    margin: 0;
}

.purple-text {
    color: #c7293d;
    font-weight: normal
}

.steps {
    font-size: 25px;
    color: gray;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right
}

.fieldlabels {
    color: gray;
    text-align: left
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey
}

#progressbar .active {
    color: #c7293d;
}

#progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 25%;
    float: left;
    position: relative;
    font-weight: 400
}

#progressbar #account:before {
    font-family: FontAwesome;
    content: "1"
}

#progressbar #personal:before {
    font-family: FontAwesome;
    content: "2"
}

#progressbar #payment:before {
    font-family: FontAwesome;
    content: "3"
}

#progressbar #confirm:before {
    font-family: FontAwesome;
    content: "4"
}

#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px
}

#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: #c7293d;
}

.progress {
    height: 20px
}

.progress-bar {
    background-color: #c7293d;
}

.fit-image {
    width: 100%;
    object-fit: cover
}

.advertising-list {
    border: 1px solid #b52538;
    padding: 0px 20px;
    margin-top: 10px;
}

.advertising-list ul {
    margin: 0;
    padding: 30px 0;
}

.advertising-list ul a {
    color: #000;
    font-weight: 400;
    line-height: 35px;
}

ul.advertising-rigt-list {
    column-count: 2;
}

ul.advertising-left-list {
    border-right: 1px solid #b52538;
}

ul.advertising-left-list a.active {
    border-bottom: 2px solid #c7293d;
}

ul.advertising-rigt-list input {
    position: inherit !important;
    left: 0;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
}

ul.advertising-rigt-list label {
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 30px;
    color: #000;
    font-weight: 400;
}

.form-card input[type="radio"] {
    position: inherit !important;
    display: inline;
    width: auto !important;
    margin: 0 !important;
}

.form-card label {
    display: flex;
    gap: 8px;
    margin-bottom: 5px;
}

.ad-check input {
    width: auto !important;
    margin: 0 !important;
}

.ad-check {
    margin-bottom: 20px;
}

.Preview-dtl h3 a {
    color: #000;
    font-size: 22px;
    margin-bottom: 0;
}

.Preview-dtl h3 {
    margin-bottom: 10px;
}

.ad-price {
    background: #c7293d;
    text-align: center;
    color: #fff;
    padding: 5px 0;
}

.Preview-main {
    border: 1px solid #00000042;
    padding: 40px 20px;
}

/* new css */

.main_slider.homebnr {
    display: flex;
    position: relative;
}

.main_slider.homebnr>.side_barfixd {
    width: 12%;
    background: #06131b;
    display: none;
}

.main_slider.homebnr>div#carouselExampleControls {
    width: 100%;
}

.main_slider.homebnr>.side_barfixd>ul {
    margin: 0;
    height: 52vh;
    overflow-x: hidden;
}

.main_slider.homebnr>.side_barfixd>ul::-webkit-scrollbar-track {
    background-color: #06131b;
}

.main_slider.homebnr>.side_barfixd>ul::-webkit-scrollbar {
    width: 6px;
    background-color: #06131b;
}

.main_slider.homebnr>.side_barfixd>ul::-webkit-scrollbar-thumb {
    background-color: #c7293d;
}

.main_slider.homebnr>.side_barfixd>ul>li {
    padding: 15px 20px;
    border-bottom: 1px solid #777777;
}

.main_slider.homebnr>.side_barfixd>ul>li>a {
    display: flex;
    font-size: 15px;
    font-family: 'Montserrat';
    color: #fff;
    align-items: center;
    gap: 30px;
}

.main_slider.homebnr>.side_barfixd>ul>li:first-child {
    border-top: 1px solid #777777;
}

.main_slider.homebnr>.side_barfixd>ul>li:hover {
    background: #c7293d;
}

.main_slider.homebnr>.side_barfixd>ul>li>ul {
    position: absolute;
    left: 12%;
    z-index: 2;
    background: #06131b;
    width: fit-content;
    padding: 20px;
    top: 21%;
    column-count: 2;
    display: none;
}

.main_slider.homebnr>.side_barfixd>ul>li>ul>li {
    padding: 10px 30px;
    border: 1px solid #777777;
    margin-bottom: 10px;
}

.main_slider.homebnr>.side_barfixd>ul>li>ul>li>a {
    display: flex;
    font-size: 16px;
    font-family: 'Montserrat';
    color: #fff;
}

.main_slider.homebnr>.side_barfixd>ul>li>ul>li:hover {
    background: #c7293d;
}

.main_slider.homebnr>.side_barfixd>ul>li:hover>ul {
    display: block;
}

header .menusec-singup-btn>a {
    height: 50px;
    display: flex;
    align-items: center;
}

header .menusec-singup-btn {
    display: flex;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 10px;
}

.prod_slider_ad .slick-slide {
    opacity: 1;
    margin: 0 10px;
}

.banner_text h1 {
    font-size: 65px;
}

#progressbar #paymenttt:before {
    content: "4";
    font-family: 'Roboto';
}

.new_adding_css #progressbar {
    display: flex;
    justify-content: space-between;
}

#progressbar li:before {
    font-family: 'Roboto' !IMPORTANT;
}

.new_adding_css #progressbar #confirm:before {
    content: "5";
}

.form-card .foam-radio {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.form-card .foam-radio [type="radio"]:checked+label,
[type="radio"]:not(:checked)+label {
    padding-left: 0;
    transform: none;
    line-height: 1;
    font-size: 19px;
    color: #000;
    margin: 0;
}

.form-card .foam-radio>p {
    font-size: 25px;
    color: #000;
}

.main_slider.homebnr>.side_barfixd>a {
    padding: 20px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid #777777;
    color: #fff;
    font-size: 16px;
}

.main_slider.homebnr>.side_barfixd>a>i {
    color: #c7293d;
}

.carousel-item>img.img-fluid {
    height: 72vh;
    object-fit: cover;
}


/* new slider add */

/* business_registration_secc page */

.business_registration_secc {
    padding: 80px 0px;
}

.business_registration_secc h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 50px;
    font-family: 'sui-generis';
}

.business_registration_secc form {
    width: 80%;
    margin: 0 auto;
}

.business_registration_secc form label {
    display: block;
    font-size: 14px;
    color: #000;
    font-family: 'Montserrat';
    margin-bottom: 4px;
}

.business_registration_secc form input {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    border: 1px solid #000;
    outline: none;
    color: #000;
    padding: 10px;
    margin-bottom: 15px;
}

.business_registration_secc form select {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    border: 1px solid #000;
    outline: none;
    color: #000;
    padding: 10px;
    margin-bottom: 15px;
}

.business_registration_secc form textarea {
    width: 100%;
    height: 100px;
    border-radius: 5px;
    border: 1px solid #000;
    outline: none;
    color: #000;
    padding: 10px;
    margin-bottom: 15px;
    resize: none;
}

.business_registration_secc form h3 {
    text-align: center;
    font-size: 30px;
    margin: 20px 0px;
    font-weight: 100;
}

.business_registration_secc form button {
    background: #c7293d;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    padding: 0 50px;
    height: 50px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    border-radius: 5px;
    border: 1px solid #c7293d;
    transition: 0.3s ease-in-out;
}

.business_registration_secc form button:hover {
    color: #c7293d;
    background: transparent;
}


@media only screen and (min-width: 1401px) and (max-width: 1650px) {
    .top-sec-email-number ul li a {
        font-size: 14px;
    }

    .menuSec ul li a {
        padding: 10px 10px;
        font-size: 13px;
    }

    header .menusec-singup-btn {
        margin-left: -40px;
    }

    header .menusec-singup-btn>a {
        font-size: 11px;
        padding: 0 19px;
    }

    .main_slider.homebnr>.side_barfixd {
        width: 15%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
    .topSec:before {
        width: 85%;
    }

    .add-padding {
        padding: 0 4%;
    }

    .menusec-singup-btn a {
        font-size: 10px;
        padding: 0 13px;
    }

    .main_slider.homebnr>.side_barfixd>ul>li>a {
        font-size: 13px;
    }

    .search-bar-button button {
        padding: 10px 18px;
    }

    .menuSec ul {
        margin-left: -50px;
    }

    .menuSec ul li a {
        padding: 10px 10px;
        font-size: 14px;
    }

    header .menusec-singup-btn {
        margin-left: -40px;
    }

    .top-sec-email-number ul li a {
        font-size: 12px;
    }



    .main_slider.homebnr>.side_barfixd {
        width: 15%;
    }

    .why-choose-us-right-img img {
        width: 90%;
    }

    .why-choose-us-right-img {
        position: absolute;
        top: -110px;
    }

    .why_choose_extra_box {
        height: 250px !important;
    }

    ul.lat-feat-icon li {
        gap: 5px;
    }

    ul.lat-feat-icon li {
        font-size: 10px;
    }

    .banner_text a {
        font-size: 12px;
        margin-right: 6px;
        padding-left: 8px;
    }

}

@media only screen and (min-width: 992px) and (max-width: 1199px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (min-width: 520px) and (max-width: 767px) {}

@media only screen and (min-width: 300px) and (max-width: 519px) {
    .top-sec-email-number ul {
        display: none;
    }

    .foot4 {
        padding: 0px 0% 0px 0px;
    }

    .top-sec-follow-us ul {
        justify-content: center;
    }

    .header-logo {
        margin-top: 20px;
        text-align: center;
    }

    header .menusec-singup-btn {
        flex-flow: wrap;
        display: flex;
        align-items: center;
        margin-top: 0;
        margin-bottom: 20px;
        justify-content: center;
        gap: 8px 0;
    }

    .main_slider.homebnr>.side_barfixd {
        display: none;
    }

    .main_slider.homebnr>div#carouselExampleControls {
        width: 100%;
    }

    .banner-button {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 10px;
    }

    .banner-button a {
        width: 100%;
        justify-content: space-between;
        padding-left: 20px;
        display: flex !important;
        align-items: center;
    }

    .banner-button a:last-child {
        width: 100%;
        justify-content: space-between;
        padding-left: 20px;
    }

    .search-bar-sec {
        display: block;
    }

    .search-bar-sec.fixed {
        position: relative;
    }

    .category-new .row {
        justify-content: center;
    }

    .category-new .row .col {
        width: 50%;
        flex: unset;
    }

    .banner_text h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .browse-by-make-box ul {
        column-count: 2;
        margin: 0 auto;
        width: 100%;
    }

    .browse-by-make-box ul li {
        height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .browse-by-make-box {
        padding: 25px 15px;
        width: 100%;
    }

    .search-bar-sec form .col:last-child {
        width: 100%;
        flex: unset;
    }

    .search-bar-sec form .col {
        width: 50%;
        flex: unset;
    }

    .latest-featured-heading h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .latest-featured-heading p {
        width: 100%;
    }

    ul.lat-feat-heading {
        margin-top: 25px;
        display: block;
    }

    ul.lat-feat-heading li:first-child {
        width: 100%;
    }

    ul.lat-feat-heading li h3 {
        clip-path: none;
        text-align: center;
    }

    ul.lat-feat-icon {
        display: block;
    }

    ul.lat-feat-icon li {
        justify-content: space-between;
    }

    .latest-featured-box {
        padding: 10px 10px;
    }

    .lat-feat-silder-items img {
        height: 210px;
    }

    ul.lat-feat-heading li h2 {
        font-size: 16px;
        margin-bottom: 10px;
        text-align: center;
    }

    .why-choose-us-sec {
        padding: 90px 0 100px;
    }

    .why-choose-us-right-img img {
        width: 100%;
        height: 300px;
        object-fit: contain;
    }

    .why-choose-us-heading h2 {
        font-size: 27px;
        margin-bottom: 10px;
        color: #fff;
        line-height: 1.2;
    }

    .why-choose-us-row {
        margin-top: 30px;
    }

    .why-choose-us-row {
        margin-top: 30px;
    }

    .why-img {
        margin: 0 auto 0px;
    }

    .why-choose-number-box {
        text-align: center;
        margin-bottom: 20px;
    }

    h2 {
        font-size: 27px !important;
        line-height: 30px !important;
    }

    .our-happy-clients-heading p {
        width: 100%;
        margin: 0 auto;
    }

    .our-happy-clients-silder {
        padding: 0;
    }

    .our-happy-clients-silder-items ul {
        display: block;
        padding: 20px 15px 60px;
    }

    .our-happy-cli-sild-it-heading {
        margin-top: 15px;
        margin-left: 0;
    }

    .our-happy-cli-sild-it-heading h2 {
        font-size: 16px;
        color: #bc1e32;
        margin-bottom: 5px;
        line-height: 20px;
    }

    .our-happy-clients-silder .slick-next {
        right: 25px;
    }

    .our-happy-clients-silder .slick-prev {
        left: -17px;
        z-index: 1;
    }

    .foot2 {
        padding-left: 0;
    }

    .search-bar-button label {
        display: none;
    }

    .search-bar-button {
        text-align: center;
    }

    .inner-banner img.img-fluid {
        height: 230px;
    }

    .about-us-images img {
        height: 320px;
    }

    .about-us-text {
        margin-left: 0;
    }

    .prices {
        height: auto;
        padding: 40px 0px;
    }

    .prices .row:before {
        left: 50%;
        width: 90%;
        background: #0d2a3c;
        transform: skew(0deg, 0deg);
        transform: translateX(-50%);
    }

    .text-prices:before {
        display: none;
    }

    .top-heading-blog p {
        width: 100%;
    }

    .img-blog img {
        object-fit: cover;
    }

    .blogs-img-text img {
        height: 340px;
        object-fit: cover;
    }

    .keyword {
        margin-top: 30px;
    }

    .keyword input {
        width: 77%;
    }

    .faqs .row {
        padding: 50px 10px;
        border-radius: 5px;
    }

    .faq-inn-mn .accordion-item {
        padding: 10px 10px;
    }

    .faq-inn-mn button {
        font-size: 16px;
    }

    section.contact-us {
        padding: 60px 10px;
    }

    section.contact-us.inner h3 {
        font-size: 27px;
        line-height: 1.2;
    }

    .contact-form {
        padding: 20px 15px 20px 15px;
    }

    section.main_slider.inner-banner .col-12.col-md-12.col-lg-6.offset-3.align-self-center {
        margin-left: 0 !important;
    }

    .bodystyle-text-vehicle ul li select {
        margin-bottom: 0;
    }

    section.main_slider.inner-banner {}

    section.main_slider.inner-banner .col-12.col-md-12.col-lg-6.offset-3.align-self-center {
        margin-left: 0 !important;
    }

    .make-vehicle select {
        margin-bottom: 10px;
        appearance: none;
        text-transform: capitalize;
    }

    .bodystyle-text-vehicle ul:nth-child(2) li:nth-child(2) {
        display: flex;
        justify-content: flex-end;
        width: 80%;
        gap: 6px;
        align-items: center;
    }

    .bodystyle-text-vehicle ul:nth-child(2) li:nth-child(2) select {
        border: 1px solid;
        width: 40%;
    }

    .bodystyle-text-vehicle ul:nth-child(2) li:nth-child(1) {
        width: 20%;
    }

    .bodystyle-text-vehicle ul:nth-child(2) {
        width: 100% !important;
    }

    .log-form {
        margin-bottom: 30px;
    }

    .product-heading-txt h2 {
        margin-left: 0;
    }

    .product-heading-txt ul {
        gap: 20px;
        margin-left: 15px;
    }

    .product-heading-txt ul li {
        font-size: 16px;
        font-weight: 400;
    }

    .productdetailportion img {
        height: 280px;
        object-fit: contain;
        border: 1px solid;
    }

    .productdetailsmallportion img {
        height: 50px;
        border: 1px solid;
    }

    .maindvmake-text {
        padding: 20px 20px;
    }

    .detvehical-overviewtext span {
        width: auto;
    }

    .detvehical-overviewtext ul li {
        font-size: 13px;
    }

    .user-detaiveical {
        border: 1px solid #0000005c;
        padding: 10px 10px 0px;
        border-radius: 5px;
    }

    .lat-feat-button {
        margin-top: 0px;
    }

    .lat-feat-button.via-btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .lat-feat-button a {
        width: 100%;
        background: #bc1e32;
        justify-content: space-between;
    }

    .lat-feat-button a span {
        clip-path: none;
    }


    .btn-message-user-detailvehicel {
        margin-top: 0px;
    }


}




.add_box {
    position: relative;
    z-index: 1;
    height: 300px;
}

.add_content {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #b31529ba;
    height: 100%;
    width: 70%;
    padding: 20px;
    text-align: end;
    clip-path: polygon(40% 0, 100% 0, 100% 100%, 10% 100%, 0 70%);
    display: block;
    align-content: center;
}

.add_content h5 {
    font-size: 24px;
    color: #fff;
    text-transform: capitalize;
    margin: 0 0 10px;
}

.add_content p {
    color: #fff;
    font-size: 14px;
    line-height: 24px;
}

.ads_popup_wrpr.show .add_content {}


.why_choose__box {
    margin-top: 80px;
}

.why_choose_extra_box {
    padding: 10px;
    border: 2px solid #fff;
    height: 220px;
}

.why_choose_extra_box h4 {
    font-size: 18px;
    line-height: 1.2;
    color: #fff;
    font-weight: 600;
    height: 40px;
}

.why_choose_extra_box p {
    font-size: 12px;
    line-height: 1.4;
    color: #fff;
    font-weight: 400;
}

.what_we_offer_image {
    position: relative;
    text-align: right;
}

.what_we_offer_image>img {
    width: 90%;
}

.what_we_offer_image .what2 {
    position: absolute;
    width: 40%;
    height: 180px;
    object-fit: cover;
    left: 0;
    bottom: -50px;
}

.what_we_offer {
    padding: 80px 0;
}

.what_we_offer_content h2 {
    font-size: 50px;
}

.what_we_offer_content ul {
    padding-left: 20px;
}

.what_we_offer_content ul li {
    position: relative;
}

.what_we_offer_content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    color: #000;
    left: -20px;
    position: absolute;
}

.what_we_offer_content ul li strong {
    display: block;
    color: #000;
    font-size: 19px;
    margin-bottom: 10px;
}

.what_we_offer_content ul li:not(:last-child) {
    margin-bottom: 20px;
}

.what_we_offer_content ul li {
    font-size: 13px;
}

.vqlr_p {
    color: #fff;
    margin-bottom: 0;
}



.lat-feat-button-2 {
    display: table;
    margin: 3% auto;
}

.lat-feat-button-2 .lat-btn-text {
    background: #111117;
}

/*Company Ads*/
.compny-tilee {
    display: flex !important;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 12px;
    border-radius: 8px;
    opacity: 1;
    box-shadow: 0 0 8px 0 #0000002b;
    border: 1px solid #ddd;
    margin: 0 20px 10px;
}

.adfvert-wrapper {
    position: fixed;
    right: 0;
    width: 315px;
    z-index: 9;
    bottom: 0;
    height: 100vh;
}

.compny-tilee>img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 1px solid #ddd;
    object-fit: cover;
}

.compny-tilee h4 {
    color: #000;
    font-size: 15px;
    margin: 0 0 2px;
    line-height: 1.2;
}

.compny-tilee span {
    color: #ae1528;
    font-weight: 500;
    font-size: 11px;
    text-decoration: underline;
}

.compny-tilee p {
    font-size: 12px;
    line-height: 0.8;
}

/*.adfvert-wrapper:before, .adfvert-wrapper:after {
     content: ''; 
    position: absolute;
    height: 45%;
    width: 100%;
    top: -34%;
    left: 0;
    z-index: 99;
    background: radial-gradient(#ac15289c 40%, transparent, transparent);
    pointer-events: none;
}

.adfvert-wrapper:after {
    bottom: -36%;
    top: unset;
    background: radial-gradient(#ac15289c 40%, transparent, transparent);
}*/

.adfvert-wrapper button {
    height: 35px;
    width: 35px;
    background: #c7293d;
    border-radius: 50%;
    position: absolute;
    left: -25px;
    bottom: 10px;
    border: 1px solid #fff;
    color: #fff;
}

.hrdr-tile {
    position: absolute;
    padding: 18px 55px;
    background: #fff;
    bottom: 0;
    box-shadow: 0 0 9px 0 #00000045;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    visibility: hidden;
    padding-right: 20px;
}

.hrdr-tile h4 {
    color: #000;
    font-size: 18px;
    margin: 0;
    line-height: 1;
}

.adfvert-wrapper.closed button {
    left: 10px;
    transform: rotate(180deg);
    padding-top: 3px;
}

.adfvert-wrapper.closed .sdfgg,
.adfvert-wrapper.closed .sdfgg * {
    visibility: hidden;
    transition: none !important;
}

.adfvert-wrapper.closed .hrdr-tile {
    visibility: visible;
}

/*Company Ads*/


.header-announcement-desktop {
    background: #f8f8f8;
    border: 1px solid #efefef;
    border-radius: .5rem;
    box-shadow: 0 .25rem 1rem 0 rgba(0, 0, 0, .05);
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.75;
    padding: 15px;
    padding: .9375rem;
    text-align: center;
}

.proprt-tile {
    padding: 20px;
    background: #132a37;
}

.proprt-tile a {
    color: #c7293d;
}


.product-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    padding: 12px;
    text-align: center;
    margin: 24px 0;
    border: 1px solid #ddd;
}

.product-card img {
    max-width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.product-card h2 {
    font-size: 18px;
    color: #2c2c2c;
    margin: 10px 0;
    line-height: 1.5;
}

.product-card p {
    font-size: 14px;
    color: #2c2c2c;
    margin: 5px 0;
    line-height: 1;
}

.product-card .price {
    font-size: 34px;
    color: #000;
    margin: 10px 0 0;
    font-weight: 700;
}

.product-card .divider {
    width: 50px;
    height: 2px;
    background-color: #ddd;
    margin: 10px auto;
}

.product-card .add-to-cart {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    display: block;
}

.search-bar-sec.d-block {
    display: block;
    position: relative !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    height: auto;
    padding: 12px 0;
}

.autoparts-sec .compny-tilee {
    margin: 24px 0;
}

.autoparts-sec .compny-tilee p {
    line-height: 1.4;
}

.autoparts-sec .compny-tilee>img {
    height: 80px;
    width: 80px;
}

section.autoparts-sec {
    padding: 60px 0 40px;
}

select.filter-type {
    width: 300px;
    display: block;
    border-radius: 10px;
    position: relative;
    z-index: 11;
    margin-bottom: 0;
}

html {
    overflow-x: hidden;
}

.product-listing nav {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-listing nav .page-item.active .page-link {
    background-color: #bc1e32;
    border-color: #bc1e32;
}

.page-link {
    color: #bc1e32;
}

.adfvert-wrapper.closed {
    height: 0px;
}

.img-blog img {
    object-fit: cover;
}

.make-vehicle:after {
    display: none;
}





.ads_page .adfvert-wrapper {
    display: none;
}

.ads_contentw .adfvert-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    display: block !important;
}

.ads_contentw .adfvert-wrapper .ads_popup_sliderr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    row-gap: 20px;
}

section.ads_page {
    padding: 80px 0;
}

.ads_contentw .adfvert-wrapper .ads_popup_sliderr a.compny-tilee {
    margin: 0;
    width: 24%;
}



















/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1200px) and (max-width: 1365px) {
    ul.lat-feat-heading li h2 br {
        display: none;
    }

    ul.lat-feat-heading li h2 {
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    ul.lat-feat-heading li:first-child {
        width: 58%;
    }

    .why_choose_extra_box h4 {
        font-size: 16px;
    }

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

    .search-bar-button label {
        margin-bottom: 10px;
    }

    .bodystyle-text-vehicle ul {
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: column;
    }

    .product-list-main {
        gap: 2%;
        margin-left: 2%;
        margin-top: 30px;
        width: 95%;
    }

    .bodystyle-text-vehicle ul li select {
        border: 1px solid #000;
        border-radius: 10px;
    }

    .form-card .foam-radio [type="radio"]:checked+label,
    [type="radio"]:not(:checked)+label {
        font-size: 14px;
    }

    .product-slct-img label {
        padding: 12px 14px !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .menuSec .col-xl-2.col-lg-4.col-md-2.col-sm-12.col-xs-6 {
        order: 1;
    }

    .menuSec .col-xl-4.col-lg-8.col-md-10.col-sm-12.col-xs-6.text-right {
        order: 2;
    }

    .menuSec .col-xl-6.col-lg-10.col-md-12.d-none.d-md-block {
        order: 3;
    }

    .header-logo {
        margin-top: 20px;
    }

    .why_choose_extra_box {
        margin-bottom: 15px;
    }

    .why-choose-us-sec .row {
        justify-content: center !important;
    }

    .why-choose-us-sec {
        margin: 250px 0 80px;
        padding: 313px 0 100px;
    }

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

    .lat-feat-button.via-btn {
        gap: 10px;
        flex-wrap: wrap;
    }

    .user-detaiveical {
        padding: 20px 27px 10px;
    }

    .product-heading-txt h2 {
        font-size: 40px;
        margin-left: 20px;
    }

    .text-detail-vehicel h2 {
        font-size: 40px;
    }

    .card h2 {
        font-size: 40px;
    }

    section.contact-us.inner h3 {
        font-size: 27px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h2 {
        font-size: 60px;
        line-height: 50px;
    }

    .header-logo {
        margin-top: 0px;
    }

    header .menusec-singup-btn {
        margin-top: 15px;
    }

    .menuSec .col-xl-2.col-lg-4.col-md-2.col-sm-12.col-xs-6 {
        order: 1;
    }

    .menuSec .col-xl-4.col-lg-8.col-md-10.col-sm-12.col-xs-6.text-right {
        order: 2;
    }

    .menuSec .col-xl-6.col-lg-10.col-md-12.d-none.d-md-block {
        order: 3;
    }

    .topSec {
        height: 65px;
    }

    .adfvert- {
        height: 220px;
    }

    .category-new-box h4 {
        font-size: 13px;
    }

    .why_choose_extra_box {
        margin-bottom: 15px;
    }

    .latest-featured-box {
        padding: 25px 15px;
    }

    .banner-button {
        gap: 9px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .category-new .container .row.mt-3 .col {
        width: 30%;
        flex: auto;
    }

    .search-bar-button label {
        margin-bottom: 10px;
    }

    .why-choose-us-sec .row {
        justify-content: center !important;
    }

    .why-choose-us-sec {
        margin: 225px 0 80px;
        padding: 300px 0 100px;
    }

    .why-choose-us-heading h2 {
        font-size: 40px;
    }

    ul.lat-feat-heading li:first-child {
        width: 60%;
    }

    ul.lat-feat-heading li h2 {
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .our-happy-clients-sec .slick-next:before,
    .our-happy-clients-sec .slick-prev:before {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .our-happy-clients-sec .slick-next {
        right: 0px;
    }

    .our-happy-clients-sec .slick-prev {
        left: -20px;
    }

    ul.lat-feat-icon li {
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .lat-feat-silder-items img {
        height: 200px;
    }

    .maindv-vehical {
        margin-bottom: 25px;
    }

    .inner-banner .offset-3 {
        margin-left: 0%;
    }

    .bodystyle-text-vehicle ul:nth-child(2) {
        width: 100% !important;
    }

    .bodystyle-text-vehicle ul:nth-child(2) li:nth-child(2) select {
        border: 1px solid;
        width: 40%;
    }

    .bodystyle-text-vehicle ul:nth-child(2) li:nth-child(2) {
        display: flex;
        justify-content: flex-end;
        width: 80%;
        gap: 6px;
        align-items: center;
    }

    .bodystyle-text-vehicle ul li select {
        margin-bottom: 0px;
    }

    .fields-vehicle input {
        width: 47%;
    }

    .make-vehicle:after {
        display: none;
    }

    .adfvert-wrapper {
        height: 25vh;
    }

    .top-heading-blog h2 {
        font-size: 40px;
    }

    .top-heading-faqs h2 {
        font-size: 40px;
    }

    .faqs .row {
        padding: 40px 25px;
    }

    .log-form {
        margin-bottom: 30px;
    }

    .lat-feat-button.via-btn {
        gap: 10px;
        flex-wrap: wrap;
    }

    .user-detaiveical {
        padding: 20px 27px 10px;
    }

    .product-heading-txt h2 {
        font-size: 39px;

    }

    .text-detail-vehicel h2 {
        font-size: 30px;
        line-height: 30px;
    }

    .productdetailportion img {
        height: 325px;
        object-fit: cover;
    }

    .detvehical-overviewtext span {
        text-align: start;
        width: auto;
    }

    .card h2 {
        font-size: 35px;
    }

    .vehicle-registration-form-sec {
        padding: 10px 0;
    }

    section.contact-us {
        padding: 50px 0px;
    }

    section.contact-us.inner h3 {
        font-size: 25px;
        line-height: 26px;
    }

    .contact-form {
        padding: 21px 15px 20px 15px;
    }

    .contact-form input {
        padding: 10px 20px;
    }

    .cont-1 p {
        font-size: 16px;
    }

    ul.contact_page_sidbar a {
        font-size: 14px;
    }

    .contact_page_sidbar i {
        font-size: 30px;
        width: 29px;
    }

    ul.contact_page_sidbar h6 {
        line-height: 20px;
        font-size: 14px;
    }
}

@media only screen and (min-width: 520px) and (max-width: 767px) {
    h2 {
        font-size: 40px;
        line-height: 35px;
    }

    .adfvert-wrapper {
        height: 120px !important;
    }

    .product-slct-img label span {
        font-size: 13px;
    }

    .menusec-singup-btn a {
        font-size: 12px;
    }

    .what_we_offer {
        padding: 40px 0;
    }

    .what_we_offer_content ul li {
        font-size: 12px;
        line-height: 18px;
    }

    .what_we_offer_image .what2 {
        height: 98px;
        bottom: -15px;
    }

    .why_choose_extra_box {
        margin-bottom: 10px;
        height: auto;
    }

    .lat-feat-button .lat-btn-text {
        font-size: 12px;
        padding: 15px 15px;
    }

    p {
        color: #676767;
        font-size: 12px;
        line-height: 20px;
    }

    .latest-featured-sec {
        padding: 60px 0px 40px;
    }

    .inner-banner img.img-fluid {
        height: 400px;
    }

    .Vehical {
        padding: 40px 0s;
    }

    .latest-featured-sec {
        margin: 0px;
    }

    .text-prices h3 {
        font-size: 30px;
    }

    .text-prices h4 {
        font-size: 18px;
    }

    .lat-feat-silder-items img {
        height: 160px;
    }

    .latest-featured-box p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .lat-feat-heading h2 {
        font-size: 20px;
    }

    ul.lat-feat-heading li h2 {
        font-size: 16px !important;
    }

    .our-happy-clients-silder-circle {
        position: absolute;
        bottom: 15px;
        right: 25px;
    }

    .our-happy-clients-silder-circle img {
        width: 50px;
        height: 50px;
        object-fit: contain;
    }

    .our-happy-clients-silder-items p {
        font-size: 12px;
    }

    li.our-happy-icon i {
        font-size: 35px;
    }

    .our-happy-clients-sec .slick-prev:before,
    .our-happy-clients-sec .slick-next:before {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    .our-happy-clients-silder .slick-next {
        right: -5px;
    }

    .our-happy-clients-silder .slick-prev {
        left: -10px;
    }

    .our-happy-clients-silder-items ul li span i {
        font-size: 14px;
    }

    .our-happy-cli-sild-it-heading h2 {
        font-size: 16px !important;
        line-height: 20px !important;
    }

    .category-new-box img {
        width: 50px;
        height: 50px;
    }

    .category-new-box h4 {
        font-size: 13px;
    }

    .header-logo {
        margin-top: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    header .menusec-singup-btn {
        display: flex;
        align-items: center;
        margin-top: 0px;
        margin-bottom: 24px;
        justify-content: center;
    }

    .top-sec-follow-us ul {
        justify-content: center;
        margin-bottom: 15px;
    }

    .topSec:before {
        height: 100%;
    }

    .top-sec-email-number ul {
        justify-content: center;
        margin-bottom: 15px;
    }

    .top-heading-faqs h2 {
        font-size: 30px;
        line-height: 30px;
    }

    .banner-button {
        gap: 10px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .search-bar-box label {
        font-size: 14px;
    }

    .category-new .container .row.mt-3 .col {
        width: 50%;
        flex: auto;
    }

    .why-choose-us-sec {
        margin: 190px 0 80px;
        padding: 200px 0 100px;
    }

    .why-choose-us-right-img img {
        width: 100%;
        height: 380px;
    }

    .search-bar-box select {
        padding: 0 20px 0 15px;
        font-size: 14px;
    }

    .why-choose-us-heading h2 {
        font-size: 40px;
    }

    .foot2 {
        margin-top: 15px;
        padding-left: 0px;
    }

    .foot4 {
        padding: 10px 0% 0px 0px;
    }

    section.footer {
        padding-top: 25px;
        padding-bottom: 40px;
    }

    .our-happy-clients-sec {
        padding: 40px 0;
    }

    .about-us-text {
        margin-left: 0px;
    }

    .prices {
        height: auto;
        padding: 50px 0px;
    }

    .text-prices:before {
        display: none;
    }

    .prices .row:before {
        right: 0;
        width: 75%;
        margin: auto;
        transform: skew(15deg, 0deg);
    }

    .offset-3 {
        margin-left: 0%;
    }

    .banner_text h1 {
        font-size: 40px;
    }

    .banner_text p {
        font-size: 13px;
    }

    .bodystyle-text-vehicle ul:nth-child(2) {
        width: 100% !important;
    }

    .bodystyle-text-vehicle ul:nth-child(2) li:nth-child(2) select {
        border: 1px solid;
        width: 40%;
    }

    .bodystyle-text-vehicle ul:nth-child(2) li:nth-child(2) {
        display: flex;
        justify-content: flex-end;
        width: 80%;
        gap: 6px;
        align-items: center;
    }

    .bodystyle-text-vehicle ul li select {
        margin-bottom: 0px;
    }

    .top-heading-blog h2 {
        font-size: 30px;
    }

    .MsoNormal {
        font-size: 12px;
    }

    .log-form .theme_btn {
        font-size: 14px;
    }

    .log-form {
        margin-bottom: 30px;
    }

    .blogs-img-text span {
        font-size: 14px !important;
    }

    .blogs-img-text h2 {
        font-size: 35px;
    }

    .blogs-img-text img {
        height: 400px;
        object-fit: cover;
        margin-bottom: 20px;
    }

    .product-heading-txt h2 {
        font-size: 30px;
        line-height: 30px;
    }

    .productdetailportion img {
        height: 430px;
        object-fit: cover;
    }

    .text-detail-vehicel h2 {
        font-size: 40px;
        line-height: 30px;
    }

    .vehicle-registration-form-sec.new_adding_css .p-0 {
        padding: 3% !important;
    }

    #progressbar li:before {
        width: 35px;
        height: 35px;
        line-height: 34px;
        font-size: 14px;
    }

    #progressbar li:after {
        top: 17px;
    }

    #progressbar li {
        font-size: 13px;
        width: 33.3%;
        margin-bottom: 15px;
    }

    .new_adding_css #progressbar {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .fs-title {
        font-size: 18px;
        line-height: 25px;
    }

    section.contact-us {
        padding: 50px 0px;
    }

    section.contact-us.inner h3 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 519px) {
    .adfvert-wrapper {
        height: 120px !important;
    }

    .product-slct-img label span {
        font-size: 13px;
    }

    .menusec-singup-btn a {
        font-size: 12px;
    }

    .what_we_offer {
        padding: 40px 0;
    }

    .what_we_offer_content ul li {
        font-size: 12px;
        line-height: 18px;
    }

    .what_we_offer_image .what2 {
        height: 98px;
        bottom: -15px;
    }

    .why_choose_extra_box {
        margin-bottom: 10px;
        height: auto;
    }

    .lat-feat-button .lat-btn-text {
        font-size: 12px;
        padding: 15px 15px;
    }

    p {
        color: #676767;
        font-size: 12px;
        line-height: 20px;
    }

    .latest-featured-sec {
        margin: 0px 0 20px;
        padding: 40px 0;
    }

    .inner-banner img.img-fluid {
        height: 400px;
    }

    .Vehical {
        padding: 40px 0s;
    }

    .latest-featured-sec {
        margin: 0px;
    }

    .text-prices h3 {
        font-size: 30px;
    }

    .text-prices h4 {
        font-size: 18px;
    }

    .lat-feat-silder-items img {
        height: 160px;
    }

    .latest-featured-box p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .lat-feat-heading h2 {
        font-size: 20px;
    }

    ul.lat-feat-heading li h2 {
        font-size: 16px !important;
    }

    .our-happy-clients-silder-circle {
        position: absolute;
        bottom: 15px;
        right: 25px;
    }

    .our-happy-clients-silder-circle img {
        width: 50px;
        height: 50px;
        object-fit: contain;
    }

    .our-happy-clients-silder-items p {
        font-size: 12px;
    }

    li.our-happy-icon i {
        font-size: 35px;
    }

    .our-happy-clients-sec .slick-prev:before,
    .our-happy-clients-sec .slick-next:before {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    .our-happy-clients-silder .slick-next {
        right: -5px;
    }

    .our-happy-clients-silder .slick-prev {
        left: -10px;
    }

    .our-happy-clients-silder-items ul li span i {
        font-size: 14px;
    }

    .our-happy-cli-sild-it-heading h2 {
        font-size: 16px !important;
        line-height: 20px !important;
    }

    .category-new-box img {
        width: 50px;
        height: 50px;
    }

    .category-new-box h4 {
        font-size: 13px;
    }

    .product-heading-txt ul li:before {
        width: 5px;
        height: 5px;
        left: -10px;
        bottom: 9px;
    }

    .banner_text p {
        font-size: 12px;
    }

    .MsoNormal {
        font-size: 12px;
    }

    .log-form .theme_btn {
        font-size: 14px;
    }

    .blogs-img-text span {
        font-size: 14px !important;
    }

    .keyword input {
        width: 71%;
    }

    .postss ul li p {
        font-size: 14px;
    }

    .lat-feat-button a {
        margin-bottom: 10px;
    }

    #progressbar li:before {
        width: 30px;
        height: 30px;
        line-height: 29px;
        font-size: 14px;
    }

    #progressbar li:after {
        top: 15px;
    }

    #progressbar li {
        font-size: 12px;
        width: 50%;
        margin-bottom: 15px;
    }

    .vehicle-registration-form-sec.new_adding_css .p-0 {
        padding: 3% !important;
    }

    .new_adding_css #progressbar {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .advertising-list {
        padding: 0px 10px;
    }

    ul.advertising-rigt-list label {
        font-size: 11px;
        line-height: 12px;
    }

    .fs-title {
        font-size: 16px;
        line-height: 20px;
    }

    .cont-1 p {
        font-size: 12px;
    }

    ul.contact_page_sidbar h6 {
        line-height: 18px;
        font-size: 12px;
    }

    .contact_page_sidbar i {
        font-size: 25px;
        width: 25px;
    }

    ul.contact_page_sidbar a {
        font-size: 12px;
    }
    .contact-us-we-button span.lat-btn-text {
        padding: 10px 25px;
        font-size: 13px;
    }
    .contact-us-we-button span.lat-feat-arrow {
        padding: 10px 25px;
        font-size: 14px;
    }
}


/* /resources/views/front           home */
/* /public/web-assets/css           css */
/* /resources/views/layouts/front/includes/templates  header */

/*Media Query End*/








