:root {
    --main-color: rgba(57, 99, 162, 1);
    --black: #13131a;
    --bg: rgba(57, 99, 162, 1);

}

* {

    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    /* text-transform: capitalize; */
    transition: .2s linear;
}

html {
    font-size: 62.5%;
    scroll-padding-top: 4rem;
    scroll-behavior: smooth;
    width: auto !important;
    overflow-x: hidden !important
}

html::-webkit-scrollbar {
    width: .8rem;
}

html::-webkit-scrollbar-track {
    /* background: transparent; */
}

html::-webkit-scrollbar-thumb {
    background: rgba(28, 68, 125, 0.6);
    border-radius: 5rem;
}



h1,
h2,
h3,
h4,
h5,
h6 {}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
}

a,
a:active,
a:focus {
    text-decoration: none;
    color: none;
    text-transform: none;
}

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

li {}

p {
    text-transform: none;
}

img {
    max-width: 100%;
    height: auto;
}

@font-face {
    font-family: 'Intro';
    src:
        url('../Fonts/Intro.otf');

}

@font-face {
    font-family: 'Intro Inline ';
    src:
        url('../Fonts/IntroInline.otf');

}

@font-face {
    font-family: 'Intro-Book';
    src:
        url('../Fonts/Intro-Book.ttf');

}

body {
    width: auto !important;
    overflow-x: hidden !important
}

/* header */
section {
    padding: 10rem 7% 15rem 7%;
}

.heading {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 3.5rem;
    font-size: 4rem;
}

.heading span {
    color: var(--main-color);
    text-transform: uppercase;
}

.filter-body .btn {
    margin-top: 1rem;
    display: inline-block;
    padding: .9rem 3rem;
    font-size: 1.7rem;
    color: #fff;
    background: var(--main-color);
    cursor: pointer;
}

.filter-body .btn:hover {
    letter-spacing: .2rem;
}

/* menu (the right one) */

.profile_menu {
    position: absolute;
    top: calc(100% + 24px);
    right: 16px;
    width: 200px;
    min-height: 100px;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: 300ms;
}



.profile_menu.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* menu links */

.profile_menu ul {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 10;
    background: #fff;
}

.profile_menu ul li {
    list-style: none;
}

.profile_menu ul li:hover {
    background: #eee;
}

.profile_menu {
    position: absolute;
    top: 100%;
    right: 43px;
    width: 172px;
    min-height: 100px;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: 300ms;
}



.profile_menu.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.profile_menu ul li a {
    text-decoration: none;
    color: #000 !important;
    display: flex;
    align-items: center;
    padding: 1rem 10px !important;
    gap: 6px;
    font-family: "Intro-book";
}

.profile_menu ul li a i {
    font-size: 1.2em;
    font-family: "Intro-book";
}

.header {
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex: 0 0 25em;
    padding: 1.5rem 5%;
    border-bottom: var(--border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .navbar {
    padding-left: 100px;
}

.header .icons a {
    color: #fff;
    cursor: pointer;
    margin: 0 1rem;
    font-size: 16px;
    /* margin-left: 2rem; */
    padding: 0 1rem 0 0;
    border-right: 1px solid #fff;
    font-family: 'Intro-Book';
}

.header .icons a:nth-child(2),
.header .icons a:nth-child(3),
.header .icons a:nth-child(4),
.header .icons a:last-child {
    border-right: none;
}

.header .icons .profile_icon img {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    object-fit: cover;
    padding: 0px;
    margin: 0px;
}

.mobile {
    display: none;
}

.header .logo img {
    height: 6rem;
    /* border-radius:50px; */
}

.header .navbar a {
    margin: 0 1rem;
    font-size: 1.6rem;
    color: #fff;
    position: relative;
    font-family: 'Intro-Book';
}

.header .navbar a:after {
    position: absolute;
    content: '';
    height: 3px;
    background: #fff;
    width: 0;
    bottom: 0;
    top: 24px;
    left: 0;
    right: 0;
    margin: auto;
}

.header .navbar a:hover:after {
    width: 15px;
}

.header .icons div {
    color: #fff;
    cursor: pointer;
    font-size: 2.5rem;
    /* margin-left: 2rem; */
}

.header .icons div:hover {
    color: var(--main-color);
}

#menu-btn {
    display: none;
}

.header .search-form {
    position: absolute;
    top: 115%;
    right: 7%;
    background: #fff;
    width: 50rem;
    height: 5rem;
    display: flex;
    align-items: center;
    transform: scaleY(0);
    transform-origin: top;
    border-radius: 40px;
}

.header .search-form.active {
    transform: scaleY(1);
}

.header .search-form input {
    height: 100%;
    width: 100%;
    font-size: 1.6rem;
    /* color:var(--black); */
    padding: 1rem;
    text-transform: none;
    border-radius: 40px;
}

.header .search-box {
    position: absolute;
    /* top: 50%;
left: 50%;
transform: translate(-50%,-50%);
background: black; */
    height: 50px;
    border-radius: 50px;
    padding: 10px;
}

.header .fa-search {
    color: #fff;
    font-size: 18px;
    margin-right: 10px;
}

.header .openBtn {
    background: #f1f1f1;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
}

.header .openBtn:hover {
    background: #bbb;
}

#myOverlay {
    margin-left: unset !important;
}

.header .overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 1;

    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
}

.header .overlay-content {
    position: relative;
    top: 46%;
    width: 80%;
    text-align: center;
    margin-top: 30px;
    margin: auto;
}

.header .overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    cursor: pointer;
    color: white;
}

.header .overlay .closebtn:hover {
    color: #ccc;
}

.header .overlay input[type=text] {
    padding: 15px;
    font-size: 17px;
    border: 1px solid #ffff;
    width: 80%;
    font-weight: 'Intro-book';
    border-radius: 30px;
}

.header .overlay input[type=text]:hover {
    background: #f1f1f1;
}

.header .overlay button {

    width: 10%;
    padding: 17px;
    background: rgba(28, 68, 125, 1);
    font-size: 17px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
}

.header .overlay button:hover {
    background: #bbb;
}

.header .search-input {
    border: none;
    background: none;
    outline: none;
    float: left;
    padding: 0;
    color: white;
    font-size: 20px;
    transition: 0.4s;

    width: 0;
}

.header .search-form label {
    cursor: pointer;
    font-size: 2.2rem;
    margin-right: 1.5rem;
    color: var(--black);
}

.header .search-form label:hover {
    color: var(--main-color);
}

.header .cart-items-container {
    position: absolute;
    top: 100%;
    right: -100%;
    height: calc(100vh - 12rem);
    width: 35rem;
    background: #fff;
    padding: 0 1.5rem;
}

.header .cart-items-container.active {
    right: 0;
}

.header .cart-items-container .cart-item {
    position: relative;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header .cart-items-container .cart-item .fa-times {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--black);
}

.header .cart-items-container .cart-item .fa-times:hover {
    color: var(--main-color);
}

.header .cart-items-container .cart-item img {
    height: 7rem;
}

.header .cart-items-container .cart-item .content h3 {
    font-size: 2rem;
    color: var(--black);
    padding-bottom: .5rem;
}

.header .cart-items-container .cart-item .content .price {
    font-size: 1.5rem;
    color: var(--main-color);
}

.header .cart-items-container .btn {
    width: 100%;
    text-align: center;
}



/* Header */
/* Hero */
.hero {
    width: 100vw;
    height: 100vh;
    background-color: var(--main-color);
    color: white;
    padding: 125px 0;
}


/* Hero */


.home .owl-carousel {
    position: relative;
    display: block !important;
}

.home .image {
    position: absolute;
    top: 20rem;
}

.home .description {
    position: absolute;
    top: 35rem;
    font-size: 18px;
    text-align: center;
    left: 50%;
    transform: translate(-50%, -50%);
}

.home .owl-carousel .owl-item {
    opacity: 1;
}

.home .owl-carousel .owl-item img {
    display: block;
    width: 89% !important;
    position: absolute;
    top: 5rem;
    height: auto;
    margin: 0 2.6rem;
    max-width: 100%;
    height: auto;
    display: block;

}

.home .owl-carousel .owl-item .description {

    font-size: 18px;
    font-weight: 400;
    width: 60%;
    margin: 13rem auto 0 auto;
}

.home .owl-carousel .owl-item.active {
    opacity: 1;
}

.home .owl-carousel .owl-dots {
    text-align: center;
}

.home .owl-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    margin: 5px;
    border-radius: 50%;
    background: #e6e6e6;
    position: relative;
}

.home .owl-carousel .owl-dots .owl-dot:after {
    position: absolute;
    top: -2px;
    left: -2px;
    right: 0;
    bottom: 0;
    width: 14px;
    height: 14px;
    content: '';
    border: 1px solid #4d4d4d;
    border-radius: 50%;
}

.home .owl-carousel .owl-dots .owl-dot:hover,
.owl-carousel .owl-dots .owl-dot:focus {
    outline: none !important;
}

.home .owl-carousel .owl-dots .owl-dot.active {
    background: rgba(28, 68, 125, 1)
}

.home .owl-carousel .owl-dots .owl-dot.active:after {
    border-color: #fff;
}

.home .owl-carousel.home-slider {
    position: relative;
    height: 650px;
    z-index: 0;
    background: var(--bg);
}

.home .owl-carousel.home-slider .slider-item {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 650px;
    position: relative;
    z-index: 0;
    margin-top: 6rem;
}

@media (max-width: 1199.98px) {
    .home .owl-carousel.home-slider .slider-item {
        background-position: center center !important;
    }
}

.home .owl-carousel.home-slider .slider-item .slider-text {
    height: 650px;
    position: relative;
}

.home .owl-carousel.home-slider .slider-item .slider-text .text {
    z-index: 0;
    color: rgba(255, 255, 255, 0.9);
}

.home .owl-carousel.home-slider .slider-item .slider-text h1 {
    font-size: 270px;
    font-weight: 900;
    text-transform: uppercase;
    font-family: 'Intro-Book';
    color: #fff;
    line-height: 1;
}

.home .owl-carousel.home-slider .slider-item .slider-text h2 {
    font-size: 16px;
    text-transform: capitalize;
    letter-spacing: 2px;
    font-family: 'Intro Book';
    font-weight: 400;
    color: white;
    display: inline-block;
    position: relative;
    letter-spacing: 4px;
}

.home .owl-carousel.home-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: none;
}

@media (prefers-reduced-motion: reduce) {

    .home .owl-carousel.home-slider .owl-nav .owl-prev,
    .home .owl-carousel.home-slider .owl-nav .owl-next {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.home .owl-carousel.home-slider .owl-nav .owl-prev span:before,
.home .owl-carousel.home-slider .owl-nav .owl-next span:before {
    font-size: 30px;
    color: rgba(255, 255, 255, 0.5);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.home .owl-carousel.home-slider .owl-dots {
    position: absolute;
    left: auto;
    right: 10px;
    bottom: 50%;
    /* width: 100%; */
    text-align: center;
    display: flex;
    flex-direction: column;
}

@media (max-width: 767.98px) {
    .home .owl-carousel.home-slider .owl-dots {
        bottom: 5px;
    }
}

.home .owl-carousel.home-slider .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    margin: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
}

.home .owl-carousel.home-slider .owl-dots .owl-dot.active {
    background: #fff;
}

.home .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}



/* Categories */
#category {
    padding-bottom: 0;
}

#category .custom-col {
    /* width: 11%; */
    height: 90px;
    color: rgba(51, 51, 51, 1);
    padding: 17px;
    float: left;
    display: block;
    margin: 3rem 0.5rem;
    border-radius: 10px;
    box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.11);


}

#category .custom-col svg {
    height: 30px
}

#category .custom-col h6 {
    /* width: 11%; */
    font-size: 14px;

}

.categories {
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
}

.how_it_works {
    margin-bottom: 10%;
}

.dream_car_wrapper .box {
    margin-top: 2.7rem;

}


#category .custom-col:hover svg path {
    fill: rgba(28, 68, 125, 1)
        /* Change this color to the desired hover color */
}

#category .custom-col:hover h6 {
    color: rgba(28, 68, 125, 1)
}



#category .custom-col img {
    width: 82.67px;
    height: 37.2px;

}

#category .custom-col:last-child {
    /* border: 1px solid #000; */
}

#manufacturer .custom-col {
    width: 11%;
    height: 90px;
    color: rgba(51, 51, 51, 1);
    padding: 20px;
    float: left;
    display: block;
    margin: 3rem 7px;
    border: 1px solid #000;
    border-radius: 10px;
    flex: 1;
}

#manufacturer .custom-col img {
    width: 82.67px;
    height: 37.2px;

}

#manufacturer .custom-col:last-child {
    border: 1px solid #000;
}

#category h2,
#menu h2 {
    font-size: 24px;
    font-family: 'Intro-Book';
    font-weight: 700;
}

/* menufacturer */
.menu .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 1.2rem;

}

.menu .box-container .box:hover h3 {
    color: #0c4c91;
}

.menu .box-container .box {
    display: flex;

    justify-content: flex-start;
    margin: 0.2rem;
    align-items: center;
}

.menu .box-container .box:hover {
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
    color: #0c4c91
}

.menu .box-container .box img {
    width: 33px;

}

.menu h2 {
    font-size: 22px;
    font-weight: 700;
    color: rgba(51, 51, 51, 1);


}

.menu .box-container .box h3 {
    color: rgba(51, 51, 51, 1);
    font-size: 16px;

}


/* end of it */

/* Best match form */
#matchForm {
    padding-top: 0;
}

#matchForm .matchForm {

    background-image: url("../../assets/img/bestmatch.png");
    height: 450px;
    position: relative;
}

#matchForm .form {
    background: linear-gradient(180deg, #343434 0%, #40464A 100%);
    width: 80%;
    /* height: 340px; */
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -20%);
}

#matchForm .form h3 {
    text-align: left;
    color: #fff;
    font-family: 'Intro-Book';
    font-size: 36px;
    padding: 18px;
    padding-bottom: 0px;
}

#matchForm .form p {
    text-align: left;
    color: #fff;
    font-family: 'Intro-Book';
    font-size: 14px;
    padding: 0 18px;

}

#matchForm .form-control {
    display: block;
    width: 100%;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
}

#matchForm form {
    display: flex;

}

#matchForm form label {
    color: #fff;
    font-size: 12px;
    font-family: 'Intro-Book';

}

#matchForm form .row {
    /* width: 100%; */
    /* padding: 0 2px; */
}

#matchForm form .checkboxes {
    display: flex;
    justify-content: center;
    text-align: center;
    position: absolute;
    top: 65%;
    left: 45%;
    transform: translate(-55%, -35%);
}

#matchForm form .check-form {
    position: relative;
}

#matchForm form .form-group {
    padding: 0 13px;
}

#matchForm .new {
    display: flex;
    margin-top: 3rem;
}

#matchForm .new .form-group {
    display: flex;
    margin-bottom: 15px;

}

#matchForm .new .form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    /* cursor: pointer; */
}

#matchForm .buttons {
    padding: 14px;
    border-radius: 5px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
    margin-bottom: 2rem;
    width: 126px;
    height: 43.75px;
    font-size: 14px;
    font-weight: 700;
}

#matchForm .buttons {
    padding: 14px;
    border-radius: 5px;
    background-color: #fff;
    color: rgba(51, 51, 51, 1);
}

#matchForm .buttons:hover {
    color: #fff;
    background-color: rgba(51, 51, 51, 0.6);
}

#matchForm .new .form-group {
    padding: 0 8px;
}

#matchForm .new .form-group label {
    position: relative;
    cursor: pointer;
    display: flex;
}

#matchForm .new .form-group label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 8px;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}

#matchForm .new .form-group input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 6px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

#matchForm form .form-select {
    color: rgba(51, 51, 51, 1);
    font-size: 12.5px;
    font-family: 'Intro-Book';
}

/* Best match form ends */

/* Feature */

.features .h1-text {
    font-size: 1.3rem;
    margin: 40px 0;
    color: #2c2c2c;
    font-weight: 500;
    font-family: 'Intro-book';
    display: flex;
    align-items: center;
    justify-content: center;
}


.features .box {
    position: relative;
    min-width: 250px;
    display: flex;
    flex: 0 0 27%;
    background-color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30%;
    border-radius: 5px;
    margin: 29px;
    position: relative;

}

.features .box:hover {

    box-shadow: 0 0 11px rgba(57, 99, 162, 0.2);

}

.features .box:hover h3 {
    color: rgba(57, 99, 162, 1);
}

.features .box:hover .buttons {
    background: #fff;
    border: 1px solid rgba(28, 68, 125, 1);
    color: rgba(57, 99, 162, 1)
}


.features .fa-check-circle {
    color: #17b667;
}

/* creating heart */
.features .heart {
    color: rgba(155, 155, 155);
    float: inline-end;

}

.features .heart::before {
    content: '\f08a';
    font-family: fontawesome;
    line-height: 30px;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s;
    outline: #0000;
    font-size: 20px;
}

.features .box .heart-btn:checked~.features .heart::before {
    color: rgba(28, 68, 125, 1);
}

.feature .box .heart-btn.filled::before {
    content: '\2665'; /* Unicode for heart symbol */
    color: rgba(28, 68, 125, 1);; /* Color of filled heart */
}
.features .heart-btn {
    position: absolute;
    top: 25px;
    right: 20px;
    padding: 1rem;
    display: none;
}


.features .content img {

    overflow: hidden;
    object-fit: cover;
    object-position: top;
}

.features .content h3 {
    font-size: 20px;
    color: rgba(30, 30, 30, 1);
    padding: 10px;
    font-family: 'Intro-Book';
}

.features .box .price {
    /* padding: 0 38px; */
}

.features .box .like {
    /* padding: 0 38px; */
}

.features .box .price h4 {
    color: rgba(28, 68, 125, 1);
    font-size: 25px;
    font-family: 'Intro-Book';
}
.featured .heart-checkbox {
    display: none;
}

.featured .heart-label {
    cursor: pointer;
    font-size: 30px;
    color: #0c4c91;
}

.featured .heart-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -1.2rem;
}

.featured .like label {
    background: #eee;
    padding: 7px;
    border-radius: 5px;
    height: 35px;
}



.featured .heart-icon:before {
    content: "\2661";
}

.featured .heart-checkbox:checked+.heart-label .heart-icon:before {
    content: "\2665";
    color: #0c4c91;
}

.choose_us .card:hover {
    transform: translateY(-20px);
}

.choose_us p {
    font-family: 'Intro-Book';
}

.choose_us {
    padding-top: 30px;
}

.features .box .price h6 {
    color: rgba(30, 30, 30, 1);
    font-size: 18px;
    font-weight: 400;
    font-family: 'Intro-Book';
}

.features .box .featured_vehicle {

    display: block;
    text-align: center;
    margin-top: 1.5rem 0;
}

.features .box .like img {
    float: inline-end;
    margin-top: 1.5rem 0;
}

.features .box .featured_vehicle img {

    width: 25px;
}

.features .box .featured_vehicle h5 {

    font-size: 12px;
    font-family: 'Intro-Book';
    padding-top: 5px;
}

.features .box .row {

    width: 100%;
    /* padding: 10px 38px; */
}

.features .content {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
}

.features .content p {
    font-size: 0.9rem;
    color: #7a7a7a;
    margin: 4px 0px 10px 0px;
    cursor: pointer;
    font-family: 'Intro-Book';
}

.features h2 {
    font-size: 38px;
    text-align: center;
    padding: 10px;
    margin-top: 1rem;
    font-family: 'Intro-book';
    font-weight: 700;
}

.features .buttons {
    background-color: rgba(52, 52, 52, 1);
    color: white;
    width: 220px;
    font-weight: 500;
    text-align: center;
    padding: 10px 0px 10px 0px;
    font-size: 12px;
    border-radius: 5px;
    border: 1px solid rgba(28, 68, 125, 0);
    font-family: 'Intro-Book';
    border: 1px solid rgba(28, 68, 125, 0);
    margin: 1rem 4.6rem 1rem 4.6rem;
}

.features hr {
    border: solid 1px rgba(0, 0, 0, 1);
    width: 94%;

    height: 1px;

}


.features .container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;

}

.features {
    background-color: rgba(217, 217, 217, 1);
    margin-top: 6rem;
    padding-top: 30px;
}



/* Feature ends */


/* why choose us */



.choose_us .row {
    display: flex;
    flex-wrap: wrap;
}

.choose_us .column {
    width: 100%;
    padding: 0 1em 1em 1em;
    text-align: center;
}

.choose_us .card {
    width: 100%;
    height: 100%;
    padding: 2em 1.5em;
    margin: 2rem auto 0 auto;
    background-size: 100% 200%;
    background-position: 0 2.5%;
    border-radius: 5px;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: 0.5s;
}

.choose_us h2 {
    font-weight: 700;
    margin: 1em 0;
    text-align: center;
    color: rgba(30, 30, 30, 1);
    font-size: 36px;
}

.choose_us h3 {
    font-weight: 700;
    font-family: 'Intro-Book';
    text-align: center;
    color: rgba(30, 30, 30, 1);
    font-size: 18px;
}

.choose_us .caption {
    color: rgba(51, 51, 51, 1);
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-align: center;
    width: 50%;
    font-family: 'Intro-Book';
    text-transform: none;
    margin: 0 auto 1rem auto;
}

.choose_us .icon-wrapper {
    background-color: none;
    border: 1px solid rgba(35, 35, 35, 1);
    position: relative;
    margin: auto;
    font-size: 30px;
    height: 2.5em;
    width: 2.5em;
    color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: 0.5s;
}

/* contact us */

.contact_us .wrapper {
    background: linear-gradient(180deg, #1E1E1E 0%, #343434 96.35%);
    height: 300px;
    display: flex;
    position: relative;

}

.dream_car_wrapper {
    margin-top: -26rem;
}

.contact_us .box h2 {
    color: rgba(255, 255, 255, 1);
    font-size: 36px;
    padding: 30px 50px 10px 50px;
    text-transform: capitalize;
    font-family: 'Intro-Book';

}

.contact_us .box p {
    font-size: 16px;
    padding: 0px 50px;
    color: rgba(255, 255, 255, 1);
    width: 60%;
    ;
    font-family: 'Intro-Book';


}

.contact_us .box button {
    background-color: #0c4c91;
    color: white;
    width: 250px;
    text-align: center;
    padding: 15px 0px 15px 0px;
    font-size: 14pt;
    border-radius: 5px;
    margin: 2rem 4.6rem;
    font-family: 'Intro-Book';

}

.contact_us .box button:hover {
    background-color: #fff;
    color: #0c4c91;
    border: 1px solid #0c4c91;
}

.contact_us .contact_car {
    position: absolute;
    top: -11rem;
    /* left: auto; */
    right: 0;

}

.contact_us .dream_car {
    position: absolute;
    top: 0rem;
    /* left: auto; */
    right: 0;

}

.contact_us {
    padding-top: 30px
}

/* contact us ends */


/* Why choose us  ends */

/* Footer */
.main-footer {
    position: absolute;
    left: 0;
    right: 0;
    padding: 110px 0px 0px;
    background-color: #f4f5f7;
    background-repeat: repeat-x;
    background-position: right bottom;
}

.main-footer .footer-widget {
    position: relative;
    margin-bottom: 50px;
}

.main-footer .links_widget {
    margin-left: 4rem;
}

.main-footer .widgets-section {
    position: relative;
    padding-bottom: 60px;
}

.main-footer .footer-widget h2 {
    position: relative;
    font-size: 22px;
    font-weight: 600;
    color: #161c42;
    line-height: 1.2em;
    margin-bottom: 30px;
    margin-top: 25px;
    text-transform: capitalize;
    font-family: 'Intro-Book';
}

.main-footer .about-widget {
    position: relative;
}

.main-footer .about-widget .logo {
    position: relative;
    margin-bottom: 15px;
    width: 210px;
}

.main-footer .about-widget .text {
    position: relative;
}

.main-footer .about-widget .text p {
    position: relative;
    color: #8a8d91;
    font-size: 15px;
    line-height: 1.7em;
    margin-bottom: 20px;
}

.main-footer .about-widget .text p:last-child {
    margin-bottom: 0px;
}

/* Footer List */

.main-footer .footer-list {
    position: relative;
}

.main-footer .footer-list li {
    position: relative;
    margin-bottom: 17px;
}

.main-footer .footer-list li a {
    position: relative;
    color: rgba(52, 52, 52, 1);
    font-size: 15px;
    transition: all 300ms ease;
    font-family: 'Intro-Book';
}

.main-footer .footer-list li a:hover {
    text-decoration: none;
    color: rgba(28, 68, 125, 1);
}

.pages {
    float: inline-end;
}

.newsletter {

    width: 300px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 0 20px #000 60;
    box-sizing: border-box;
}

.newsletter h1 span {
    display: block;
    font-size: 28px;
}

.newsletter p {
    color: #fff;
    font-size: 14px;
    margin: 10px 0;
}

.text {
    width: 100%;
    height: 70px;
    background-color: #f1f1f1 99;
    border-radius: 40px;
    position: relative;
    margin-top: 40px;
}

.text input {
    width: 100%;
    height: 58px;
    border-radius: 5px;
    border: 5px;
    background: none;
    padding: 0 20px;
    outline: none;
    color: rgba(51, 51, 51, 1);
    font-size: 15px;
    background-color: #fff;
    font-family: 'Intro-Book';
}

.newsletter h1 {
    text-transform: uppercase;
    color: #fff;
    font-size: 38px;
    line-height: 40px;
}

.text button {
    background-color: rgba(28, 68, 125, 1);
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    position: absolute;
    right: 17px;
    top: 12px;
    outline: none;
    cursor: pointer;
    color: #fff;
    transition: 0.3s linear;
}

.text button:hover {
    opacity: 0.5;
}


/*Gallery Widget*/

.main-footer .gallery-widget {
    position: relative;
    max-width: 350px;
}

.main-footer .gallery-widget .images-outer {
    position: relative;
    margin: 0px -3px;
}

.main-footer .gallery-widget .image-box {
    position: relative;
    float: left;
    width: 33.333%;
    padding: 0px 5px;
    margin-bottom: 10px;
}

.main-footer .gallery-widget .image-box img {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 4px;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-footer .gallery-widget .image-box img:hover {
    opacity: 0.70;
}

/* Info List */

.main-footer .info-list {
    position: relative;
}

.main-footer .info-list li {
    position: relative;
    color: rgba(52, 52, 52, 1);
    font-size: 15px;
    font-family: 'Intro-Book';
    /* line-height:1.8em; */
    /* margin-bottom:12px; */
}

.main-footer .info-list span {
    position: relative;
    color: rgba(52, 52, 52, 1);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.8em;
    margin-bottom: 12px;
}


.main-footer .info-widget .social-links {
    position: relative;
    float: right;
    padding: 15px 0px;
}

.main-footer .info-widget .social-links li {
    position: relative;
    margin-right: 8px;
    display: inline-block;
}

.main-footer .info-widget .social-links li:last-child {
    margin-right: 0px;
}

.main-footer .info-widget .social-links li a {
    position: relative;
    color: #ffffff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-footer .info-widget .social-links li.google a {
    color: rgba(51, 51, 51, 1);

}

.main-footer .info-widget .social-links li.google a:hover {
    background-color: rgba(28, 68, 125, 0.2)
}

.main-footer .info-widget .social-links li.google img {}

/* Footer */

/* About Us page */
.about {
    cursor: pointer;
    background-color: #fff;
    padding-top: 200px;
    padding-bottom: 200px;
}

.about h1 {
    padding: 10px 0;
    margin-bottom: 20px;
    font-size: 75px;
    font-family: 'Intro-book';
    font-weight: 700;
}

.about h2 {
    opacity: .8;
}

.about span {
    display: block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    margin: auto;
    border-radius: 50%;
    font-size: 40px;
    color: #FFFFFF;
    opacity: 0.7;
    background-color: #4C0822;
    border: 2px solid #4C0822;

    webkit-transition: all .5s ease;
    moz-transition: all .5s ease;
    os-transition: all .5s ease;
    transition: all .5s ease;

}

.about-item:hover span {
    opacity: 1;
    border: 2px solid #CC0039;
    font-size: 42px;
    -webkit-transform: scale(1.1, 1.1) rotate(360deg);
    -moz-transform: scale(1.1, 1.1) rotate(360deg);
    -o-transform: scale(1.1, 1.1) rotate(360deg);
    transform: scale(1.1, 1.1) rotate(360deg);
}

.about-item:hover h2 {
    opacity: 1;
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.about .lead {
    color: rgba(53, 53, 53, 1);
    font-size: 18px;
    font-weight: 400;
    font-family: 'Intro-book';
    display: flex;
    margin: 0 auto;
    padding: 0 8%;

}

.section-bg {
    background-image: url(../../assets/img/started.png);
    /* background-color: #cccccc; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}

.about_us .container {
    margin-bottom: 30%;
}

.about_us .section-header h3 {
    font-size: 36px;
    color: #fff;
    text-align: center;
    font-weight: 700;
    position: relative;
    font-family: "Intro-book";
}

.about_us .section-header p {
    text-align: center;
    margin: auto;
    font-size: 16px;
    font-weight: 400;
    font-family: "Intro-book";
    padding-bottom: 60px;
    color: #fff;
    width: 100%;
}


#about_us {
    padding: 10rem 0 40px 0;
}

.contact_us .wrapper .box {
    margin-top: 2rem;
}

#about_us .box {

    padding: 30px;

    position: relative;
    overflow: hidden;
    height: 400px;
    border-radius: 10px;
    margin: 2rem 10px 40px 10px;
    background: #fff;
    box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
    transition: all 0.3s ease-in-out;
    text-align: center;
}

#about_us .box:hover {
    transform: scale(1.1);
}

#about_us .icon {
    margin: 0 auto 15px auto;
    padding-top: 12px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

div {
    box-sizing: border-box;
}

#about_us .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
    font-family: 'Intro-Book';

}

#about_us .title a {
    color: #111;
}

#about_us .description {
    font-family: 'Intro-Book';
    font-size: 16px;
    line-height: 20px;
    font-family: "Intro-book";
    margin-bottom: 0;
    text-align: center;
}



/* About us page end */


/* How it works */

#how_it_works .section-bg {
    background: #f5f8fd;
}

#how_it_works .section-header h3 {
    font-size: 36px;
    color: rgba(53, 53, 53, 1);
    text-align: center;
    font-weight: 700;
    position: relative;
    font-family: "Intro-book", sans-serif;
}

#how_it_works .section-header p {
    text-align: center;
    margin: auto;
    font-size: 16px;
    padding-bottom: 60px;
    color: rgba(53, 53, 53, 1);
    width: 50%;
    font-family: "Intro-book", sans-serif;
}

#how_it_works {
    /* padding: 60px 0 40px 0; */
}

#how_it_works .row {

    margin-left: 5.5rem;
}

#how_it_works .section-header {
    margin-top: 0rem;
}

#how_it_works .box {

    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    text-align: center;
    padding: 10px;
}

#how_it_works .box:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
}




#how_it_works .icon {
    margin: 0 auto 15px auto;
    padding-top: 21px;
    background-color: rgba(217, 217, 217, 1);
    display: inline-block;
    text-align: center;
    border-radius: 8.2px;
    width: 70px;
    height: 70px;
}

#how_it_works .icon .service-icon {
    width: 43px;
    height: 26px;
}

#how_it_works .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 26px;
    padding-top: 45px;
    font-family: 'Intro-Book';
}

#how_it_works .dotted_line1 {
    max-width: 100%;
    height: auto;
    margin-bottom: 22rem;
    width: 100px;
}

#how_it_works .dotted_line2 {
    max-width: 100%;
    height: auto;
    margin-bottom: 20rem;
    width: 100px;
}



#how_it_works .title {
    color: #111;
}


#how_it_works .description {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0;
    text-align: center;
    padding-top: 15px;
    font-family: 'Intro-Book';
}

.slider {

    width: 200px;

    display: flex;
    align-items: center;
    /* box-shadow: 0px 15px 40px #7E6D5766; */
}

.slider p {
    font-size: 18px;
    font-weight: 600;
    font-family: Open Sans;
    padding-left: 15px;
    margin-top: 7px;
    color: black;
}

.slider input[type="range"] {

    width: 420px;
    height: 3px;
    background: black;
    border: none;
    outline: none;
}

.slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    width: 30px;
    height: 30px;
    background: black;
    border: 2px solid black;
    border-radius: 50%;
    cursor: pointer;
}

.slider input[type="range"]::-webkit-slider-thumb:hover {
    background: black;
}



/* how it works end */


/* Contact us */
.contact {
    cursor: pointer;
    background-color: #fff;
    margin-top: 11rem;
    /* padding-top: 200px;
padding-bottom: 200px; */
}
.apply_for_auction{
    background-color: #0c4c91;
    color:#fff;
    border: 1px solid transparent;
}
.apply_for_auction:hover{
    color: #0c4c91;
    background-color:#fff;
    border:1px solid #0c4c91;
}

.connect .connect_wrapper .box {
    margin-top: 1rem;
}

.contact h1 {
    padding: 10px 0;
    margin-bottom: 0px;
    font-size: 75px;
    font-family: 'Intro-book';
    font-weight: 700;
    text-align: center;
    color: rgba(0, 0, 0, 1);
    margin-top: 5rem;
}

.contact h3 {
    padding: 10px 0;
    margin-bottom: 0px;
    font-size: 36px;
    font-family: 'Intro-book';
    font-weight: 700;
    text-align: center;
    color: #fff;
}

.contact .description {
    color: rgba(52, 52, 52, 1);
}

.contact p {
    padding: 0px 0 10px 0;
    margin-bottom: 20px;
    font-size: 16px;
    font-family: 'Intro-book';
    font-weight: 400;
    text-align: center;
    color: #fff;

}

.contact .lead {
    color: rgba(53, 53, 53, 1);
    font-size: 18px;
    font-weight: 400;
    font-family: 'Intro-book';
    display: flex;
    margin: 0 auto;
    padding: 0 8%;
}

#contact .box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    height: 230px;
    border-radius: 10px;
    margin: 0 40px 40px 40px;
    background: #fff;
    box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
    transition: all 0.3s ease-in-out;
    text-align: center;
}

#contact .box .title {
    font-size: 26px;
    font-family: 'Intro-Book';
    font-weight: 700;
}

#contact .box .description {
    font-size: 16px;
    margin-top: 1rem;

    font-family: 'Intro-Book';
}

#contact .box ul {
    margin-top: 1rem;

}

#contact .box li {
    font-size: 18px;

}

#contact .box li span {
    font-size: 18px;
    margin-top: 1rem;
    color: rgba(28, 68, 125, 1);
    font-weight: 700;
    font-family: 'Intro-book';
}

.connect .box p {
    font-size: 16px;
    padding: 0px 50px;
    color: rgba(255, 255, 255, 1);
    width: 100%;
    font-family: 'Intro-book';
}

.connect {
    margin-top: -16rem;
}

.connect .form-control {
    display: block;
    font-family: 'Intro-book';
    width: 100%;
    padding: 0.825rem .75rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: rgba(217, 217, 217, 1);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.connect_wrapper .contact_form {
    margin: 5rem;
    position: relative;
}

.connect_wrapper .form-label {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-family: 'Intro-book';
}

.connect .contact_form button {
    background-color: rgba(28, 68, 125, 1);
    color: white;
    width: 150px;
    text-align: center;
    padding: 10px 0px 10px 0px;
    font-size: 14px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    margin: 80% 15%;
    font-family: 'Intro-book';
}

.connect_wrapper .dream_car {
    /* width: 600px; */
    padding: 30px;
}

.connect .connect_wrapper {
    background: linear-gradient(180deg, #1E1E1E 0%, #343434 96.35%);
    height: 635px;
    display: flex;
    position: relative;

}

/* Contact us ends */


/* Login Form */
.login_modal .modal-body form {
    border-radius: 20px;
}

.login_modal .modal-body .container {
    margin: 70px auto;
    background-color: white;
    /* border: 2px red solid; */
    border-radius: 5px;
    width: 400px;
    height: 590px;
    box-shadow: 2px 3px 10px rgb(184, 184, 184);
}

.login_modal .modal-body img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
}

.login_modal .modal-body #main-title {
    /* border: 2px red solid; */
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    font-family: "Intro-book";
    color: rgb(20, 20, 20);
}

/* It only takes a minute! */
.login_modal .modal-body #subtitle {
    text-align: center;
    font-size: 12px;
    color: rgb(70, 70, 70);
    width: 50%;
    display: block;
    margin: auto;
}

.login_modal .modal-body form {
    padding: 20px 40px 20px 40px;

}

.login_modal .modal-body .placeholders {

    height: 65px;
}

.login_modal .modal-body .placeholders>label {
    display: block;
    font-size: 14px;
    font-family: 'Intro-book', 'sans-serif';
    color: rgba(0, 0, 0, 1);
    font-weight: 700;

}


.login_modal .modal-body .placeholders input {

    width: 100%;
    height: 35px;
    font-size: 14px;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.5);
    font-family: 'Intro-book', 'sans-serif';
}

.login_modal .modal-body .terms-conditions input[type=checkbox]:checked {
    background-color: rgba(217, 217, 217, 1) !important;
    color: rgba(28, 68, 125, 1) !important;
}

.login_modal .modal-body .terms-conditions {
    display: flex;
    font-size: 14px;
    color: black;
    font-family: 'Intro-book', 'sans-serif';
}

.login_modal .modal-body .forget_password {
    font-family: 'Intro-book';
    font-size: 14px;
    font-weight: 700;
    line-height: 12px;
    text-transform: none;
    text-align: center;


}

.login_modal .modal-body .register_now {
    font-family: 'Intro-book';
    font-size: 14px;
    font-weight: 400;
    line-height: 12px;
    text-transform: none;
    text-align: center;
}

.login_modal .modal-body #register_now {
    color: rgba(0, 0, 0, 1) !important;
    font-family: 'Intro-book';
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    text-align: center;
    cursor: pointer;
}

.login_modal .modal-body #forget_password {
    color: rgba(0, 0, 0, 1) !important;
}

.login_modal .modal-body .btn-close {
    float: inline-end;
}


.login_modal .modal-body #submit-login {
    display: block;
    margin: auto;
    text-align: center;
    padding: 10px;
    font-family: 'Intro-book', 'sans-serif';
    border: 1px solid rgba(28, 68, 125, 1);
    color: white;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;

    font-size: 16px;
    background-color: rgba(28, 68, 125, 1);
    font-weight: 400;
}






/* Login form ends */

/* Login Form */
.login_modal .modal-body form {
    border-radius: 20px;
}

.register_modal .modal-body .container {
    margin: 70px auto;
    background-color: white;
    /* border: 2px red solid; */
    border-radius: 5px;
    width: 400px;
    height: 590px;
    box-shadow: 2px 3px 10px rgb(184, 184, 184);
}

.register_modal .modal-body img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 25%;
}

.register_modal .modal-body #main-title {
    /* border: 2px red solid; */
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    color: rgb(20, 20, 20);
    font-family: 'Intro-book', 'sans-serif';

}

/* It only takes a minute! */
.register_modal .modal-body #subtitle {
    text-align: center;
    font-size: 12px;
    color: rgb(70, 70, 70);
    width: 50%;
    display: block;
    margin: auto;
    font-family: 'Intro-book', 'sans-serif';
}

.register_modal .modal-body form {
    padding: 20px 40px 20px 40px;
    font-family: 'Intro-book', 'sans-serif';

}

.register_modal .modal-body .placeholders {

    height: 65px;
    font-family: 'Intro-book', 'sans-serif';
}

.register_modal .modal-body .placeholders>label {
    display: block;
    font-size: 14px;
    font-family: 'Intro-book', 'sans-serif';
    color: rgba(0, 0, 0, 1);
    font-weight: 700;

}


.register_modal .modal-body .placeholders input {

    width: 100%;
    height: 35px;
    font-size: 14px;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.5);
    font-family: 'Intro-book', 'sans-serif';
}

.register_modal .modal-body .terms-conditions input[type=checkbox]:checked {
    background-color: rgba(217, 217, 217, 1) !important;
    color: rgba(28, 68, 125, 1) !important;
}

.register_modal .modal-body .terms-conditions {
    display: flex;
    font-size: 14px;
    color: black;
}

.register_modal .modal-body .forget_password {
    font-family: 'Intro-book';
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
    text-transform: none;
    text-align: center;
}

.register_modal .modal-body .container {
    margin: 70px auto;
    background-color: white;
    /* border: 2px red solid; */
    border-radius: 5px;
    width: 400px;
    height: 590px;
    box-shadow: 2px 3px 10px rgb(184, 184, 184);
}

.register_modal .modal-body img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 20%;
}

.aution_modal .aution-body #main-title {
    /* border: 2px red solid; */
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    color: rgb(20, 20, 20);
    font-family: 'Intro-book', 'sans-serif';
}

.aution_modal .aution-body form {
    padding: 20px 40px 20px 40px;
    font-family: 'Intro-book', 'sans-serif';
}

.aution_modal .aution-body .placeholders {
    height: 65px;
    font-family: 'Intro-book', 'sans-serif';
}

.aution_modal .aution-body .placeholders>label {
    display: block;
    font-size: 14px;
    font-family: 'Intro-book', 'sans-serif';
    color: rgba(0, 0, 0, 1);
    font-weight: 700;
    text-align: left
}

.aution_modal .aution-body .placeholders input {
    width: 100%;
    height: 35px;
    font-size: 14px;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.5);
    font-family: 'Intro-book', 'sans-serif';
}

.aution_modal .aution-body .terms-conditions {
    display: flex;
    font-size: 14px;
    color: black;
}

.aution_modal .aution-body #submit-register {
    display: block;
    margin: auto;
    text-align: center;
    padding: 10px;
    font-family: 'Intro-book', 'sans-serif';
    border: 1px solid rgba(28, 68, 125, 1);
    color: white;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    background-color: rgba(28, 68, 125, 1);
    font-weight: 400;
}

.aution_modal {
    position: relative;
    margin-top: 2rem;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
    width: 100%;
    pointer-events: auto;
    background: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.175);
    border-radius: 0.5rem;
    outline: 0;
}

.aution_modal .aution-body img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 25%;
}

.register_modal .modal-body #main-title {
    /* border: 2px red solid; */
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    color: rgb(20, 20, 20);
    font-family: 'Intro-book', 'sans-serif';

}

/* It only takes a minute! */
.register_modal .modal-body #subtitle {
    text-align: center;
    font-size: 12px;
    color: rgb(70, 70, 70);
    width: 50%;
    display: block;
    margin: auto;
    font-family: 'Intro-book', 'sans-serif';
}

.register_modal .modal-body form {
    padding: 20px 40px 20px 40px;
    font-family: 'Intro-book', 'sans-serif';

}

.aution_modal .aution-body form {
    padding: 20px 40px 20px 40px;
    font-family: 'Intro-book', 'sans-serif';

}

.aution_modal .aution-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background: #fff;

}

.register_modal .modal-body .placeholders {

    height: 65px;
    font-family: 'Intro-book', 'sans-serif';
}

.register_modal .modal-body .placeholders>label {
    display: block;
    font-size: 14px;
    font-family: 'Intro-book', 'sans-serif';
    color: rgba(0, 0, 0, 1);
    font-weight: 700;

}


.register_modal .modal-body .placeholders input {

    width: 100%;
    height: 35px;
    font-size: 14px;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.5);
    font-family: 'Intro-book', 'sans-serif';
}

.register_modal .modal-body .terms-conditions input[type=checkbox]:checked {
    background-color: rgba(217, 217, 217, 1) !important;
    color: rgba(28, 68, 125, 1) !important;
}

.register_modal .modal-body .terms-conditions {
    display: flex;
    font-size: 14px;
    color: black;
}

.register_modal .modal-body .forget_password {
    font-family: 'Intro-book';
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
    text-transform: none;
    text-align: center;


}

.register_modal .modal-body .register_now {
    font-family: 'Intro-book';
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
    text-transform: none;
    text-align: center;
}

.register_modal .modal-body #register_now {
    color: rgba(0, 0, 0, 1) !important;
    font-family: 'Intro-book';
    font-size: 12px;
    font-weight: 700;
    text-transform: none;
    text-align: center;
}

.register_modal .modal-body #forget_password {
    color: rgba(0, 0, 0, 1) !important;
}

.register_modal .modal-body .btn-close {
    float: inline-end;
}


.register_modal .modal-body #submit-register {
    display: block;
    margin: auto;
    text-align: center;
    padding: 10px;
    font-family: 'Intro-book', 'sans-serif';
    border: 1px solid rgba(28, 68, 125, 1);
    color: white;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    background-color: rgba(28, 68, 125, 1);
    font-weight: 400;
}



/* Login form ends */

/* listing style css */

#listing {
    margin-top: 0%;
    background: rgba(240, 246, 255, 1);
}

#listing .sidebar {
    background: #fff;
    /* margin-top: 7.5%; */
    border: 1px solid rgba(0, 0, 0, 0.25);
    height: 40%;
    border-radius: 5px;
}

#listing .search-section {
    padding: 50px 0;


}

.register_modal .modal-body .register_now {
    font-family: 'Intro-book';
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
    text-transform: none;
    text-align: center;
}

.register_modal .modal-body #register_now {
    color: rgba(0, 0, 0, 1) !important;
    font-family: 'Intro-book';
    font-size: 12px;
    font-weight: 700;
    text-transform: none;
    text-align: center;
}

.register_modal .modal-body #forget_password {
    color: rgba(0, 0, 0, 1) !important;
}

.register_modal .modal-body .btn-close {
    float: inline-end;
}


.register_modal .modal-body #submit-register {
    display: block;
    margin: auto;
    text-align: center;
    padding: 10px;
    font-family: 'Intro-book', 'sans-serif';
    border: 1px solid rgba(28, 68, 125, 1);
    color: white;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    background-color: rgba(28, 68, 125, 1);
    font-weight: 400;
}



/* Login form ends */

/* listing style css */

#listing {
    margin-top: 0%;
    background: rgba(240, 246, 255, 1);
}

#listing .sidebar {
    background: #fff;
    /* margin-top: 7.5%; */
    border: 1px solid rgba(0, 0, 0, 0.25);
    height: 40%;
    border-radius: 5px;
}

#listing .search-section {
    padding: 50px 0;


}

#listing .filter-header {
    font-weight: bold;
    font-size: 30px;
}

#listing .filter-title {
    font-weight: 700;
    font-size: 22px;
    font-family: 'Intro-book';
    padding-top: 25px;
    padding-left: 40px;
    padding-bottom: 20px;
    color: rgba(28, 68, 125, 1);
    border-bottom: 1px solid rgba(217, 217, 217, 1);

}

#listing .filter .title {
    font-weight: 600 !important;
    font-size: 16px !important;
    padding-bottom: 0;
    margin-bottom: 4px;

}

#listing .title {
    font-weight: bold;
    font-size: 20px;
    padding-bottom: 0;
    margin-bottom: 15px;
}

#listing .mb-30 {
    /* margin-bottom: 30px; */
    height: 400px;
    overflow-y: auto;
}

#style-2::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    background-color: rgba(217, 217, 217, 1);
}

#style-2::-webkit-scrollbar {
    width: 8px;
    background-color: rgba(217, 217, 217, 1);
}

#style-2::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: rgba(28, 68, 125, 1);
}

#listing .row-grid img {
    margin-bottom: 30px;
    max-width: 100%
}


#listing .sidebar .nav-links {
    height: 100%;
    padding: 0px;
    overflow: auto;

}

#listing .sidebar.close .nav-links {
    overflow: visible;
}

#listing .sidebar .nav-links li {
    position: relative;
    list-style: none;
    transition: all 0.4s ease;

}


#listing .sidebar .nav-links li .iocn-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 10%;
}

#listing .sidebar.close .nav-links li .iocn-link {
    display: block
}

#listing .sidebar .nav-links li i {
    height: 50px;
    text-align: center;
    line-height: 50px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#listing .sidebar .nav-links li.showMenu i.arrow {
    transform: rotate(180deg);
}

#listing .sidebar.close .nav-links i.arrow {
    display: none;
}

#listing .sidebar .nav-links li a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

#listing .sidebar .nav-links li a .link_name {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    transition: all 0.4s ease;
    font-family: 'Intro-Book';
}

#listing .sidebar.close .nav-links li a .link_name {
    opacity: 0;
    pointer-events: none;
}

/* #listing .sidebar .nav-links li .sub-menu{
  padding: 6px 80px 14px 80px;
  margin-top: -10px;
  color: #fff;
  display: none;
} */
#listing .sidebar .nav-links .first_link {
    border-bottom: 1px solid #fff;
}

#listing .sidebar .nav-links li.showMenu .sub-menu {
    display: block;
}

#listing custom-control-input {
    padding-left: 5px;
}

#listing .sidebar .nav-links li .sub-menu a {
    color: #fff;
    font-size: 15px;
    padding: 5px 0;
    white-space: nowrap;
    opacity: 0.6;
    transition: all 0.3s ease;
}


#listing .dropdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0 10px 0;
    margin-left: 2.5rem;
}

#listing .dropdown-container h4 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 5px 10px 0;
    font-family: 'Intro-Book';
}

#listing .buttons h4 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2px 5px 10px 0;
}


#listing .dropdown-container .dropdown {
    background: #fff;
    padding: 10px;
    border-radius: 3px;
    width: 140px;
    display: flex;
    justify-content: space-around;
    font-size: 14px;
    cursor: pointer;

    position: relative;
    font-family: 'Intro-Book';

}

#listing .dropdown-container .fa-angle-down {
    position: relative;
    top: 2px;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    color: rgba(15, 139, 240, 1)
}

#listing .dropdown-container .rotate-dropdown-arrow {
    transform: rotate(-180deg);
}

#listing .dropdown-container .dropdown-menu {
    display: none;
    flex-direction: column;
    border-radius: 4px;
    margin-top: 8px;
    width: 140px;
    padding: 10px;
    background: #fafafa;
    transform-origin: top left;
    position: absolute;
    top: 67%;
    left: 10.5%;
}

#listing .dropdown-container .dropdown-menu span {
    padding: 10px;
    flex-grow: 1;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: larger;
}

#listing .filters-actions {
    margin-right: 25px !important;
}

#listing .filters-actions h4 {
    font-family: 'Intro-Book';
    font-weight: 600;
}

#listing .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 2rem;
    font-family: 'Intro-Book';
    font-size: 16px;
}

#listing .dropdown-container .dropdown-menu span:hover {
    background: #eee;
}

#listing .dropdown-container #openDropdown:checked+.dropdown-menu {
    display: flex;
    animation: openDropDown 0.4s ease 0s 1 forwards;
}

#listing .listing-view-btn a {
    margin: 0px 10px;
    border: 2px solid transparent;
    margin-bottom: 10px;
}

#listing .listing-view-btn .active {
    border: 2px solid #1C447D;
    padding: 0px;
    margin: 0 0 10px 0;
    border-radius: 5px;
}

@keyframes openDropDown {
    from {
        transform: rotateX(50deg);
    }

    to {
        transform: rotateX(0deg);
    }
}

/* Featured */

.featured .h1-text {
    font-size: 1.3rem;
    margin: 40px 0;
    color: #2c2c2c;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}


.featured .box {
    position: relative;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32%;
    margin: 0 0px 4.2rem 10px;
    padding: 1rem;
    border: 1px solid rgba(217, 217, 217, 0.6);
    border-radius: 5px;
    background: #fff;
    position: relative;

}

.featured .box:hover {
    box-shadow: 0 0 11px rgba(57, 99, 162, 0.2);

}

#listing .buttons:hover .buttons {}

.featured .box:hover h3 {
    color: rgba(57, 99, 162, 1);

}


.featured .fa-check-circle {
    color: #17b667;
}

/* creating heart */
.featured .heart {
    color: rgba(155, 155, 155);
    float: inline-end;

}

.featured .heart::before {
    content: '\f08a';
    font-family: fontawesome;
    line-height: 30px;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s;
    outline: #0000;
    font-size: 20px;
}

.featured .box .heart-btn:checked~.featured .heart::before {
    color: rgba(28, 68, 125, 1);
}

.featured .heart-btn {
    position: absolute;
    top: 25px;
    right: 20px;
    padding: 1rem;
    display: none;
}


.featured .content img {

    overflow: hidden;
    object-fit: cover;
    object-position: top;
}

.featured .content h3 {
    font-size: 22px;
    color: rgba(30, 30, 30, 1);
    padding: 10px;
    font-family: 'Intro-Book';
    font-weight: 700;
}

.featured .box .price {
    /* padding: 0 38px; */
}

.featured .box .like {
    padding: 0px;
    float: inline-end;
}

.featured .box .price h4 {
    color: rgba(28, 68, 125, 1);
    font-size: 19px;
    font-family: 'Intro-Book';
    font-weight: 700;
}

.featured .box .price h6 {
    color: rgba(30, 30, 30, 1);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Intro-Book';
}

.featured .box .featured_vehicle {

    display: block;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem 0;
}

.featured .box .like img {
    float: inline-end;
    /* margin-top: 1.5rem 0; */
}

.featured .box .featured_vehicle img {

    width: 27px;
}

.featured .box .featured_vehicle h5 {

    font-size: 14px;
    padding-top: 5px;
    font-family: 'Intro-Book';
}

.featured .box .row {

    width: 100%;
    /* padding: 10px 38px; */
}

.featured .content {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
}

.featured .content p {
    font-size: 0.9rem;
    color: #7a7a7a;
    margin: 4px 0px 10px 0px;
    cursor: pointer;
}

.featured h2 {
    font-size: 38px;
    text-align: center;
    padding: 10px;
    margin-top: 1rem;
    font-family: 'Intro-book';
    font-weight: 700;
}

.featured .buttons {
    background-color: rgba(52, 52, 52, 1);
    color: white;
    width: 216px;
    text-align: center;
    padding: 10px 0px 10px 0px;
    font-size: 14pt;
    border-radius: 5px;
    margin: 1rem 4.6rem;
    border: 1px solid rgba(52, 52, 52, 0);
}

.featured hr {
    border: solid 1px rgba(0, 0, 0, 1);
    width: 94%;

    height: 1px;

}


.featured .container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /* margin-top: 2rem; */

}

.featured {}

/* Recent posts */

.list_view .inner-wrapper {
    display: flex;
    flex-direction: row;
    /* background-color: #ddd; */
    margin: 3px 10px 3rem;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(217, 217, 217, 0.6);
    background-color: #fff;

}

.list_view .inner-wrapper:hover {
    box-shadow: 0 0 11px rgba(57, 99, 162, 0.2)
}

.list_view .inner-wrapper:hover .meta_wrap .listview_title .rp_title h3 {
    color: rgba(28, 68, 125, 1)
}

.list_view .posts_heading {
    margin: 2.5rem 0;
}

.list_view .rp_image span {
    /* this styling is for illustration only */
    margin: 10px;
    width: 262.32px;
    height: 138.06px;
    display: inline-block;
}

.list_view .meta_wrap .listview_title {
    display: flex;
    justify-content: space-between;
    font-family: 'Intro-book';
    padding-top: 10px;

}

.list_view .meta_wrap .listview_title .price h4 {
    color: rgba(28, 68, 125, 1);
    font-size: 22px;
    line-height: 14px;
    font-family: 'Intro-book';
    font-weight: 700;


}
.most_selling .heart-checkbox {
    display: none;
}
.most_selling .like{
 float:inline-end
}

.most_selling .heart-label {
    cursor: pointer;
    font-size: 30px;
    color: rgba(28, 68, 125, 1);
}

.most_selling .heart-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -1.2rem;
}

.most_selling .like label {
    background: #eee;
    padding: 7px;
    border-radius: 5px;
    height: 35px;
}



.most_selling .heart-icon:before {
    content: "\2661";
}

.most_selling .heart-checkbox:checked+.heart-label .heart-icon:before {
    content: "\2665";
    color: rgba(28, 68, 125, 1);;
}

.most_selling .box .price h6 {
    color: rgba(30, 30, 30, 1);
    font-size: 20px;
    font-weight: 400;
    font-family: 'Intro-book';
}

.most_selling .swiper-slide {
    height: 410px;
    padding: 0px;
    background-color: #fff;
}

.most_selling .mySwiper {}

.most_selling .swiper-slide:hover {
    box-shadow: 0 0 11px rgba(28, 68, 125, 0.2);
}

.most_selling .swiper-slide:hover h3 {
    color: rgba(28, 68, 125, 1);
}

.most_selling .swiper-slide:hover .buttons {
    background: #fff;
    border: 1px solid rgba(28, 68, 125, 1);
    color: rgba(57, 99, 162, 1);
}

.list_view .meta_wrap .listview_title .rp_title h3 {
    font-family: 'Intro-Book';
    font-size: 28px;
    color: rgba(53, 53, 53, 1);
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;

}

.list_view .tags {
    display: flex;
    flex-wrap: wrap;
    width: 85%
}

.list_view .tags .rp_titleinfo {
    display: flex;


}

.list_view .tags .rp_titleinfo img {
    width: 28px;
}

.list_view .tags .rp_titleinfo h5 {
    font-family: 'Intro-Book';
    font-size: 16px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0em;
    text-align: center;
    padding: 5px 8px 0px;
}


.list_view .tags .dott,
.list_view .tags .rp_cattags {
    font-family: 'Intro-Book';
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: left;
    color: rgba(53, 53, 53, 0.5)
}

.list_view .rp_content {
    font-family: 'Intro-Book';
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0em;
    text-align: left;

}

.list_view .rp_image img {}

.list_view .rp_cattags {
    margin-left: auto;
    font-size: 14px;
}

.list_view .meta_wrap {
    padding: 2px 15px;
    width: 100%;
    position: relative;
}

.list_view .heart {
    color: rgba(51, 51, 51, 1);
    width: 30px;
    height: 30px;
    background: rgba(217, 217, 217, 1);
    border-radius: 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    /* float: inline-end; */
}


.list_view  .heart-btn.filled::before {
    content: '\2665'; /* Unicode for heart symbol */
    color: rgba(28, 68, 125, 1);; /* Color of filled heart */
}
.list_view .heart-btn {
    position: absolute;
    top: 25px;
    bottom: 0;
    right: 20px;
    padding: 1rem;
    display: none;
}

.list_view .heart-checkbox {
    display: none;
}

.list_view .heart-label {
    cursor: pointer;
    font-size: 30px;
    color: #1C447D;
}

.list_view .heart-icon {
    display: flex
}

.list_view .like label {
    background: #eee;
    padding: 7px;
    border-radius: 5px;
}



.list_view .heart-icon:before {
    content: "\2661";
}

.list_view .heart-checkbox:checked+.heart-label .heart-icon:before {
    content: "\2665";
    color: #1C447D;
}
.list_view .heart::before {
    content: '\f08a';
    font-family: fontawesome;
    line-height: 30px;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s;
    outline: #0000;
    font-size: 18px;
}

.list_view .meta_wrap div {
    /* position: relative; */
}

.list_view .like {
    position: absolute;
    bottom: 0;
    margin-bottom: 5px;

}

.list_view .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 2rem;

}

.list_view .buttons {
    background-color: rgba(52, 52, 52, 1);
    color: white;
    width: 138.89px;
    text-align: center;
    padding: 10px 0px 10px 0px;
    font-size: 12pt;
    border-radius: 11.11px;
    margin: 1rem 4.6rem;
    position: absolute;

    bottom: 0;
    right: 0px;

}



/* Trending post */
.trending_posts .swiper-container {
    width: 100%;
    height: 100%;
}

.trending_posts .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.trending_posts .swiper-pagination {
    position: absolute;
    top: 10px;
    right: 10px;
    width: auto !important;
    left: auto !important;
    margin: 0;
}

.trending_posts .swiper-pagination-bullet {
    padding: 5px 10px;
    border-radius: 2px;
    width: auto;
    height: 30px;
    text-align: center;
    /* line-height: 30px; */
    font-size: 12px;
    color: #fff;
    opacity: 1;
    background: rgba(28, 68, 125, 0.75);
}

.trending_posts .swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    position: absolute;
    top: 80%;
    right: 40%;
    transform: translate(-50%, -50%);
}

.trending_posts {
    margin-top: 23%;
    margin-bottom: 10%;
}

.trending_posts .swiper-pagination-bullet-active {
    color: #fff;
    background: rgba(28, 68, 125, 1);
}


.most_selling .swiper-button-next,
.swiper-button-prev {

    color: rgba(51, 51, 51, 1);
    transition: all 0.3s ease;
}

.most_selling .swiper-button-next {
    margin-right: 3%;
}

.most_selling .swiper-button-prev {
    margin-left: 3%;
}

.most_selling .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {

    color: black;
}

.most_selling .swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
    color: rgba(51, 51, 51, 1);
    ;
}


.most_selling {
    background: rgba(217, 217, 217, 0.25);
    position: relative;
    padding-top: 39px;


}

/* most selling grid slider */




.most_selling .box {
    position: relative;
    min-width: 335px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    width: 20%;
    position: relative;

}

.most_selling .fa-check-circle {
    color: #17b667;
}

/* creating heart */
.most_selling .heart {
    color: rgba(155, 155, 155);
    float: inline-end;

}

.most_selling .heart::before {
    content: '\f08a';
    font-family: fontawesome;
    line-height: 30px;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s;
    outline: #0000;
    font-size: 20px;
}

.most_selling .box .heart-btn:checked+.most_selling .heart {
    color: rgba(28, 68, 125, 1);
}

.most_selling .heart-btn {
    position: absolute;
    top: 25px;
    right: 20px;
    padding: 1rem;
    display: none;
}


.most_selling .content h3 {
    font-size: 20px;
    color: rgba(30, 30, 30, 1);
    padding: 10px;
    font-family: 'Intro-Book';
    font-weight: 700;
}


.most_selling .box .price h4 {
    color: rgba(28, 68, 125, 1);
    font-size: 24px;
    font-family: 'Intro-Book';
}

.most_selling .box .price h6 {
    color: rgba(30, 30, 30, 1);
    font-size: 18px;
    font-weight: 400;
    font-family: 'Intro-Book';
}

.most_selling .box .featured_vehicle {

    display: flex;
    margin-top: 1.5rem 0;
}

.most_selling .box .like img {
    float: inline-end;
    margin-top: 1.5rem 0;
}

.most_selling .box .featured_vehicle img {

    width: 25px;
}

.most_selling .box .featured_vehicle h5 {

    font-size: 12px;
    font-family: 'Intro-Book';
    padding-top: 5px;
}

.most_selling .box .row {

    width: 100%;
    /* padding: 10px 38px; */
}

.most_selling .content {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
}

.most_selling .content p {
    font-size: 0.9rem;
    color: #7a7a7a;
    margin: 4px 0px 10px 0px;
    cursor: pointer;
    font-family: 'Intro-Book';
}

.most_selling h2 {
    font-size: 38px;
    text-align: center;
    padding: 10px;
    margin-top: 1rem;
    font-family: 'Intro-book';
    font-weight: 700;
}

.most_selling .buttons {
    background-color: rgba(52, 52, 52, 1);
    color: white;
    width: 300px;
    text-align: center;
    padding: 10px 0px 10px 0px;
    font-size: 14pt;
    border-radius: 5px;
    margin-bottom: 40px;
    font-family: 'Intro-Book';
}

.most_selling hr {
    border: solid 1px rgba(0, 0, 0, 1);
    width: 87%;

    height: 1px;

}


.most_selling .container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;


}

.most_selling h2 {
    width: 100%;
    font-family: 'Intro-book';
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0em;



}

/* Pr page gallery */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px;
    padding-bottom: 55px;

}

.photos-grid-container {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-gap: 0;
    align-items: start;
}

.photos-grid-container .img-box {
    border: 1px solid #fff;
    position: relative;



}

.photos-grid-container .img-boxes {
    border: 1px solid #fff;
    position: relative;
    width: 600px;
    height: 300px;

}

.photos-grid-container .img-box:hover .transparent-box {
    background-color: rgba(0, 0, 0, 0.6);
}

.photos-grid-container .img-box:hover .caption {
    transform: translateY(-5px);
}

.photos-grid-container img {}

.photos-grid-container .caption {
    color: white;
    transition: transform 0.3s ease, opacity 0.3s ease;
    font-size: 1.5rem;
}

.photos-grid-container .transparent-box {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.photos-grid-container .main-photo {
    grid-row: 1;
    grid-column: 1;
}

.photos-grid-container .sub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 0em;
}


.photos-grid-container .sub:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.photos-grid-container .sub:nth-child(2) {
    grid-column: 2;
    grid-row: 2;
}

.photos-grid-container .sub:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
}

.hide-element {
    border: 0;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* @media screen and (min-width: 1280px) {
.container {
  margin: 0 auto;
  width: 1250px;
}
} */

/* Profile starts*/

.profile {
    background: rgba(240, 246, 255, 1);
}

.profile .header-tabs {
    font-size: 18px;
    font-family: "Intro-book";
    list-style-type: none;
    padding: 0;
    position: relative;
    margin-left: 30px;
}

.profile .header-tabs li {
    cursor: pointer;
    display: inline-block;
    padding: 0 17px;
    margin: 5px 7px 4px 7px;
    color: rgba(6, 6, 6, 1);

    border-width: 50%;

}

.profile .header-tabs li:nth-child(2) {
    position: relative;
}

.profile .header-tabs li a {
    text-decoration: none;
    color: rgba(6, 6, 6, 1);

}

.profile .header-tabs .num {
    position: absolute;
    top: -3%;
    background: rgba(28, 68, 125, 1);
    border-radius: 50%;
    color: #fff;
    font-size: 10px;
    font-family: 'Intro-book';
    width: 15px;
    height: 15px;
    padding: 1px 4px;
}

.profile .header-tabs li:after {
    content: '';
    display: block;
    position: relative;
    width: 0;
    border-bottom: 2px solid rgba(28, 68, 125, 1);
    margin: 4px auto;
}

.profile .header-tabs li:first-of-type {
    margin-left: 0;
}

.profile .header-tabs li :hover {
    color: rgba(28, 68, 125, 1)
}

.profile .header-tabs li:hover::after,
.profile .header-tabs li.active::after

/*this is it*/
    {
    width: 30%;
    color: rgba(28, 68, 125, 1)
}

.profile .header-tabs.light {
    color: white;
    padding-top: 3rem;
}

.profile .header-tabs.light li.active {
    text-shadow: 0 0 4px rgba(255, 255, 255, .8);
}

.profile .card {
    margin: 0 4.5rem;
}

.profile .card-title-order {
    font-family: 'Intro-book';
    font-size: 24px;
    font-weight: 400;
    line-height: 31px;
    letter-spacing: 0em;
    text-align: left;
    padding: 28px 49px;
}

#order .tables-page-section .card .row {
    padding: 0px 37px !important;
}

.input-container input[type="date"],
.input-container input[type="text"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
}

/* INPUT CONTAINER  */
.input-container {
    display: flex;
    flex-direction: column;
    width: 70px;
    height: auto;
    /* min-width: 217px; */
    /* height: 60px; */
    padding: 5px 10px 10px 10px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #343434;
    overflow: hidden;
    cursor: pointer;
}


.input-container label {
    position: relative;
    width: 100%;
    font-family: "Intro-book";
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.1em;
    line-height: 10px;
    color: #0c4c91;
    margin-left: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.input-container input {
    position: relative;
    align-items: center;
    width: 70px;
    height: auto;
    font-family: "Intro-book";
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.01em;
    line-height: 16px;
    text-transform: uppercase;
    margin-left: 0px;
}

/* RESERVATION BOX */
.reservation-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    height: auto;
    padding: 10px;
    border-radius: 7px;
    background-color: rgba(255, 255, 255, 1);

}

.reservation-box .static {
    position: relative;
    display: flex;
    align-items: center;
    float: left;
    width: auto;
    margin-right: 20px;
}

.reservation-box .flex {
    position: relative;
    display: flex;
    float: left;
    flex-direction: table;
    align-items: center;
    gap: 10px;
    width: auto;
}

.range-slider-minimilistic {
    position: relative;
    width: 200px;
    height: 39px;
    margin-top: 3rem;
    text-align: center;
}

.range-slider-minimilistic input {
    pointer-events: none;
    position: absolute;
    overflow: hidden;
    left: 0;
    top: 15px;
    width: 200px;
    outline: none;
    height: 18px;
    margin: 0;
    padding: 0;
}

.range-slider-minimilistic input::-webkit-slider-thumb {
    pointer-events: all;
    position: relative;
    z-index: 1;
    outline: 0;
}

.range-slider-minimilistic input::-moz-range-thumb {
    pointer-events: all;
    position: relative;
    z-index: 10;
    -moz-appearance: none;
    width: 9px;
}

.range-slider-minimilistic input::-moz-range-track {
    position: relative;
    z-index: -1;
    background-color: rgba(0, 0, 0, 1);
    border: 0;
}

.range-slider-minimilistic input:last-of-type::-moz-range-track {
    -moz-appearance: none;
    background: none transparent;
    border: 0;
}

.range-slider-minimilistic input[type=range]::-moz-focus-outer {
    border: 0;
}

.rangeValue {
    width: 30px;
}
.table>tbody {
    text-align:center !important;
    vertical-align: middle !important;
}
.output {
    position: absolute;
    border: 1px solid #999;
    width: auto;
    padding:0px 15px;
    height: 30px;
    text-align: center;
    color: #999;
    border-radius: 4px;
    display: inline-block;
    font: bold 15px/30px Helvetica, Arial;
    bottom: 75%;
    left: 50%;
    transform: translate(-50%, 0);
}

.output.outputTwo {
    left: 100%;
}

.range-slider-minimilistic {
    /* position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); */
}

.range-slider-minimilistic input[type=range] {
    -webkit-appearance: none;
    background: none;

}

.range-slider-minimilistic input[type=range]::-webkit-slider-runnable-track {
    height: 5px;
    border: none;
    border-radius: 3px;
    background: transparent;

}

.range-slider-minimilistic input[type=range]::-ms-track {
    height: 5px;
    background: transparent;
    border: none;
    border-radius: 3px;

}

.range-slider-minimilistic input[type=range]::-moz-range-track {
    height: 5px;
    background: transparent;
    border: none;
    border-radius: 3px;

}

.range-slider-minimilistic input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #555;
    margin-top: -5px;
    position: relative;
    z-index: 10000;

}

.range-slider-minimilistic input[type=range]::-ms-thumb {
    -webkit-appearance: none;
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #555;
    margin-top: -5px;
    position: relative;
    z-index: 10000;

}

.range-slider-minimilistic input[type=range]::-moz-range-thumb {
    -webkit-appearance: none;
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #555;
    margin-top: -5px;
    position: relative;
    z-index: 10000;

}

.range-slider-minimilistic input[type=range]:focus {
    outline: none;
}

.range-slider-minimilistic .full-range,
.range-slider-minimilistic .incl-range,
.range-slider-minimilistic .full-range-second {
    width: 100%;
    height: 5px;
    left: 0;
    top: 21px;
    position: absolute;
    background: #DDD;
}

.range-slider-minimilistic .incl-range,
.range-slider-minimilistic .incl-range-second {
    background: #0c4c91 !important
}

.profile .card-title {
    font-family: 'Intro-book';
    font-size: 24px;
    font-weight: 400;
    line-height: 31px;
    letter-spacing: 0em;
    text-align: left;
    padding: 28px 37px;
}

.profile .card-title:after {
    content: '';
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin: 17px auto;
}

.profile .card .row {

    padding: 0px 39px 28px;
}

.profile .card form {
    position: relative;
}

.profile .card .row label {
    font-family: 'Intro-book';
    font-size: 16px;
    font-weight: 600;
    line-height: 33px;
    letter-spacing: 0em;
    text-align: left;

}

.profile .card .row .btn {
    position: absolute;
    bottom: 0;
    left: 100%;
    margin: 0 3rem;
    width: 156px;
    height: 40px;
    font-size: 16px;
    font-weight: 600;
    background: rgba(28, 68, 125, 1);
}

.profile .card .last_field {
    display: flex;
}

.profile .card .row input {

    border: 0;
    border-radius: 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    font-family: "Intro-family";
}

.profile .profilepic {
    position: relative;
    width: 159px;
    height: 159px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #eee;
    margin: 0 3%;
}

.profile .name {
    margin-top: 1.4rem;
}

.profile table {
    padding: 0 0.45rem;
}

.profile .title_name {
    font-family: "Intro-book";
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0em;
    text-align: left;
    margin: 0.5rem auto 0;

}

.profile .description {
    font-family: "Intro-book";
    font-size: 16px;
    width: 70%;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 25px;


}

.profile .edit_profile_picture {
    width: 190px;
    height: 40px;
    font-family: "Intro-book";
    font-size: 16px;
    font-weight: 500;
    line-height: 12px;

    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(213, 213, 213, 1);
    border-radius: 2px;
    color: #000;
}


.profile .profilepic:hover .profilepic__content {
    opacity: 1;
}

.profile .profilepic:hover .profilepic__image {
    opacity: .5;
}

.profile .profilepic__image {
    width: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity .2s ease-in-out;
    height: 100%;
}

.profile .profilepic__content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: opacity .2s ease-in-out;
}

.profile .profilepic__icon {
    color: white;
    padding-bottom: 8px;
}

.profile .fas {
    font-size: 20px;
}

.profile .profile_intro {
    display: flex;
    padding: 12px 9%;
}

.profile .profilepic__text {
    /* text-transform: uppercase; */
    font-size: 12px;
    width: 50%;
    text-align: center;
}

#order {
    padding: 0 0.45rem;
}

.profile .card-body h3 {
    padding: 1rem 5rem 0rem;
}

#order .tables-page-section .table {
    border-top: 1px solid #000;
    font-family: "Intro-book";
    font-size: 16px;


}

#order .tables-page-section .table {
    text-align: center;
    margin-bottom: 40px;
}

#order .tables-page-section .table th {


    font-size: 15px;
    font-weight: 700;
    padding: 10px 20px;
    text-align: center;
}

#order .tables-page-section .table td {

    background: #f1f1f1;
    font-family: 'Intro-book', sans-serif;
    font-size: 16px;
    vertical-align: middle;
    color: #666666;
    padding: 10px 20px;
}

#order .tables-page-section .table thead th {
    padding: 15px 20px;
    text-align: center;

}

#order .tables-page-section .table tr th {
    background: #f1f1f1;
    font-family: 'Intro-book', sans-serif;
    font-size: 16px;
}

/* Profile ends */


/* Chat box start */

.chat_box .tab {
    float: left;
    background-color: rgba(217, 217, 217, 0.25);
    width: 30%;
    /* height: 400px; */
    border-radius: 10px 0 0 10px;
    overflow: auto;
}

.chat_box .tab button:first-child {
    font-family: 'Intro-book';
    font-size: 24px;
    font-weight: 400;
    line-height: 31px;
    letter-spacing: 0em;
    text-align: left;

}



.chat_box .tab button {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    background-color: inherit;
    color: black;
    font-family: 'Intro-book';
    padding: 15px 16px;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    font-size: 20px;
    font-weight: 400;
    /* line-height: 31px; */
    letter-spacing: 0em;

}


.chat_box .tab button:hover {
    background: linear-gradient(180deg, #1C447D 0%, #3963A2 100%);
    color: rgba(255, 255, 255, 1);

}

.chat_box .tab button.active {
    background: linear-gradient(180deg, #1C447D 0%, #3963A2 100%);
    color: rgba(255, 255, 255, 1)
}

.chat_box .tabcontent .row {

    padding: 18px;
    height: 137px
}

.chat_box .tabcontent h4 {
    font-family: 'Intro-book';
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: left;

}

.chat_box .tabcontent .price {
    display: flex;
    flex-direction: column;
    float: inline-end;
    padding: 15px 9px;
}

.chat_box .tabcontent .price h4 {
    color: rgba(28, 68, 125, 1);
    font-size: 29px;
    float: inline-end;
}

.chat_box .tabcontent .price h6 {
    color: rgba(30, 30, 30, 1);
    font-size: 20px;
    font-weight: 400;
    float: inline-end;
    font-family: "Intro-book";
}

.search_form {
    background-color: inherit;

}

.search-form .input-group {
    background-color: #0c4c91;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}

#search_button {
    background-color: #0c4c91;
}

#search_button i {
    color: #fff
}

.search_input {
    font-family: "Intro-book";
}

.chat_box .tabcontent {
    float: left;
    padding: 1px;
    border: 1px solid #ccc;
    width: 70%;
    border-left: none;
    border-bottom: 0px;
    /* height: 400px; */
    /* border-radius: 0 10px 10px 0; */
}

.chat_box .msger-inputarea img {}

.chat_box .border-bottom {
    color: #000
}

.chat_box .tabcontent .featured_vehicle {
    /* float: left; */
    display: flex;
    justify-content: end;
    width: 100%;
    border-left: none;
    font-family: 'Intro-book';

}

.chat_box .tabcontent .featured_vehicle h6 {

    font-family: 'Intro-book';

}

.chat_box .tabcontent .featured_vehicle img {
    height: 13.37px;
    width: 21px
        /* border-radius: 0 10px 10px 0; */
}

.msger-chat {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

.msger-chat::-webkit-scrollbar {
    width: 6px;
}

.msger-chat::-webkit-scrollbar-track {
    background: #ddd;
}

.msger-chat::-webkit-scrollbar-thumb {
    background: #bdbdbd;
}

.msg {
    display: flex;

    margin-bottom: 10px;
}

.msg:last-of-type {
    margin: 0;
}

.msg-img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    background: #ddd;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 50%;
}

.chat_box .text_field {
    display: flex;
    background: rgba(217, 217, 217, 0.5);
    width: 100%;
}

.msg-bubble {
    max-width: 450px;
    padding: 15px;
    border-radius: 15px;

}

.msg-info {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 10px;
    color: #000
}

.msg-info-name {
    margin-right: 10px;
    font-weight: bold;
    font-family: 'Intro-book';
    font-size: 10px;
    font-weight: 400;
    line-height: 17px;
    float: inline-end;


}

.left-msg .msg-bubble {
    border-bottom-left-radius: 0;
}

.right-msg {
    flex-direction: row-reverse;
    align-items: flex-end;
}

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

.right-msg .msg-bubble {
    background: var(--right-msg-bg);
    color: #fff;
    border-bottom-right-radius: 0;
}

.msg-text {
    background: rgba(217, 217, 217, 0.5);
    padding: 13px;
    color: rgba(0, 0, 0, 1);
    font-family: 'Intro-book';
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0.02em;
    text-align: left;

}

.right-msg .msg-img {
    margin: 0 0 0 10px;
}

.msger-inputarea {
    display: flex;
    padding: 0 0 0 30px;
    font-family: 'Intro-book';
    border-radius: 5px;
}

.chat_box {
    padding-bottom: 2rem;
}

.msger-inputarea * {
    padding: 2px 10px;
    border: none;
    border-radius: 3px;
    font-size: 1em;
    background: none;
}

.msger-input {
    flex: 1;
    background: none;
    border-left: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 0;
}

.msger-send-btn {
    margin-left: 10px;
    background: rgb(0, 196, 65);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.23s;
}

.msger-send-btn:hover {
    background: rgb(0, 180, 50);
}

.details_form {
    background: rgba(240, 246, 255, 1);
    padding: 35px;
}

.details_form .form_heading {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #000;
}

.details_form .form_heading h3 {
    font-family: 'Intro-book';
    font-size: 32px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: 0em;
    text-align: left;

}

.details_form .form_heading .price_detail {
    display: flex;
    justify-content: space-between;
}

.details_form .form_heading .price_detail {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.details_form .form_heading .price_detail p {
    font-family: 'Intro-book';
    font-size: 12px;
    font-weight: 400;
    line-height: 11px;
    letter-spacing: 0em;
    text-align: left;

}

.details_form .form_heading .price_detail h6 {
    font-family: 'Intro-book';
    font-size: 20px;
    font-weight: 700;
    line-height: 10px;
    letter-spacing: 0em;
    color: rgba(28, 68, 125, 1);
    margin-left: 9rem;

}

.details_form .form_heading .inquiry_btn {
    width: 250px;
    height: 54px;
    background-color: rgba(245, 46, 35, 1);
    color: rgba(255, 255, 255, 1);
    border-radius: 5px;
    font-family: 'Intro-book';
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0em;
    text-align: center;

}

.details_form .form_heading .message img,
.details_form .form_heading .contact_numb img {
    width: 15px;
    height: 15px;
}

.details_form .form_heading .message a,
.details_form .form_heading .contact_numb a {
    font-family: "Intro-book";
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0em;
    margin-left: 3px;
    color: #333;


}

.details_form .info_details {
    margin-top: -15px;
}

.measurements .featured_vehicle {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.measurements .featured_vehicle img {
    background: white;
    padding: 10px;
    border-radius: 10px;

}

.measurements {
    margin: 1rem 0 4rem;
}

.measurements .featured_vehicle h5 {
    font-family: 'Intro-book';
    font-size: 16px;
    font-weight: 400;
    margin: 6px 8px 0px;
    text-align: center;

}

.measurements .featured_vehicle p {
    font-family: 'Intro-book';
    font-size: 12px;
    font-weight: 400;
    margin: 0px 8px 0px;
    text-align: left;

}

.details_form .car_info {
    display: flex;
    /* justify-content: space-around; */
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    margin: 1.5rem;
}

.details_form .car_info h4 {
    font-family: 'Intro-book';
    font-size: 16px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0em;
    margin-left: auto;

}

.car_features h3 {
    font-family: 'Intro-book';
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: left;
    padding: 3rem 1rem
}

.details_form .car_info h5 {
    font-family: 'Intro-book';
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0em;
    text-align: left;


}

#listing .price {
    margin-top: 2px;
}

.price_text {
    display: flex;
    flex-direction: column;
}

.details_form .form_heading .contact_info,
.details_form .form_heading .message,
.details_form .form_heading .contact_numb {
    display: flex;
    justify-content: space-around;
}

.meeasurements .featured_vehicle {
    display: flex;
}

.details_form .accordion-button:not(.collapsed),
.details_form .accordion-button:focus {
    outline: none;
    border-color: transparent;
    box-shadow: none;
    background-image: url("../../assets/img/downwarddarrow.svg");
    background-repeat: no-repeat;
    background-position: center;
}

.details_form .accordion-button::after {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background-color: rgba(240, 246, 255, 1);
    background-image: url("../../assets/img/upwardarrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    right: 5px;
    position: absolute;
    display: inline-block;
}

.details_form .accordion-button.collapsed::after {
    /* background-color: var(--bs-gray-300);
background-image: url("../../assets/img/upwardarrow.svg")  no-repeat  */


}

.details_form .accordion-button:not(.collapsed) {

    background-color: transparent;

}

.details_form .accordion-button {
    font-family: 'Intro-book';
    font-size: 18px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0em;
    text-align: left;

}

.details_form .accordion-header {
    padding: 18px;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;

    width: 100%;
    margin: 0 auto;

}

.gallery-item {

    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-content {
    font-size: .8em;
}

.main_photo {
    height: 400px
}

.center_align {
    height: 200px;
}

.center_align_1,
.center_align_2 {
    height: 190px;
    width: 250px;
    padding: 0 5px 0 0;
}

.center_align_1 img,
.center_align_2 img {
    object-fit: fill;
}

.gallery_layout {
    display: flex;
    padding: 4px;
}

.overlay_img {
    position: fixed;
    /* Sit on top of the page content */
    /* Hidden by default */
    width: 100%;
    /* Full width (cover the whole page) */
    height: 100%;
    /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black background with opacity */
    z-index: 2;
    /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer;
    /* Add a pointer on hover */
}

.caption {
    color: white;
    transition: transform 0.3s ease, opacity 0.3s ease;
    font-size: 1.5rem;
}

.multi_link {
    position: relative;
}

.transparent-box {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox {
    position: fixed;
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    overflow: auto;
    top: 5%;
    left: 0;
}

.lightbox-content {
    position: relative;
    width: 70%;
     margin: 5% auto;
}

.lightbox-content img {
    border-radius: 7px;
    box-shadow: 0 0 3px 0 rgba(225, 225, 225, .25);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 7px;
    top: 45%;
    cursor: pointer;
}

.lightbox-prev {
    left: 0;
}

.lightbox-next {
    right: 0;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: .8;
}

@media (max-width: 767px) {
    .gallery-container {
        width: 100%;
    }

    .gallery-item {
        flex-basis: 49.80%;
        margin-bottom: 3px;
    }

    .lightbox-content {
        width: 80%;
        height: 60%;
        margin: 15% auto;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        flex-basis: 100%;
        margin-bottom: 1px;
    }

    .lightbox-content {
        width: 90%;
        margin: 20% auto;
    }
}

.feature_details {
    display: block;
}

.feature_vehicle_info {
    position: relative;
}

.vehicle_detail,
.feature_vehicle_info {
    display: flex;
}

.chat_box .status {
    display: flex;
    justify-content: space-between;
    font-family: 'Intro-book';
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;

}

.status h6 {
    font-family: 'Intro-book';
    font-size: 13px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;

}

.filter .main .accordion {

    height: auto;
    margin: 0 auto;
    padding: 0.6rem 0 1rem 0;

}

.filter .range {
    display: flex;

}

.filter .range input {
    color: rgba(52, 52, 52, 1);
    font-size: 14px;
    font-family: "Intro-book";
    border: 1px solid rgba(52, 52, 52, 1);
    width: 80px;
    padding: 7px;
    border-radius: 5px;
    margin: 0 5px;

}

.filter .main .accordion-item {
    padding: 0.5rem 0;
    margin: 0;
    overflow: hidden;
    border: none;
    outline: none;
    background: none;
    border-bottom: 1px solid rgba(217, 217, 217, 1);
    border-radius: 0;
}

.filter .main .accordion-item .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: inherit;
    cursor: pointer;
    color: rgba(52, 52, 52, 1);
    padding: 0 10%;
    font-family: 'Intro-book';
}

.filter .main .accordion-item .title i.fas {
    font-size: 16px;
    color: rgba(52, 52, 52, 1);
    transform: translateX(-50%) rotate(0);
    transition: transform 0.15s ease;
}

.filter .main .accordion-item .paragraph {
    font-family: inherit;
    font-size: 1rem;
    font-weight: normal;
    line-height: inherit;
    color: #fff;
    display: none;
    padding: 0.3rem 15%;

}

.filter .main .link_name {
    color: rgba(52, 52, 52, 1);
    font-size: 14px;
    font-family: "Intro-book";
    padding: 5px 2%
}

.filter .main .accordion-item.active .title i.fas {
    color: rgba(52, 52, 52, 1);
    transform: translateX(-50%) rotate(180deg);
}

.filter .main .accordion-item.active .paragraph {
    display: block;
}

@media only screen and (max-width: 768px) {
    .filter .main .accordion {
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }
}
.login_user{
    display: none !important;
}
@media only screen and (max-width: 600px) {
    .login_user{
        display: block !important;
    }
    .mobile_img, .icons{
        display: none !important;
    }
    .mobile_view_search{
        font-size: 25px !important;
    }
    .rp_image{
        width: 100% !important;
    }
}

@media only screen and (min-width: 600px) {
    .rp_image{
        width: 496px !important;
    }
}

.pagination{
    justify-content:center !important;
}

.page-link{
    padding:5px 10px !important;
    margin:0px 5px !important;
}

.page-item.active .page-link{
    z-index: 4 !important;
    font-size:14px !important;
    background-color: #3963A2 !important;
    border-color: #3963A2 !important;
    opacity:1 !important;
}

.page-item .page-link{
      z-index: 3 !important;
    font-size:14px !important;
    color: #fff !important;
    background-color: #3963a2 !important;
    border-color: #3963A2 !important;
    opacity:0.7 !important;
}
