@import url('https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&family=El+Messiri:wght@400;500;600;700&display=swap');

:root {
   /* Colors: */
   --main-color: #34347A;
   --secondry-color: #FFCC00;
   --rate: #FFBB00;
   --shape:#1C608D;
   --muted-text: #575757;
   --dark:#2D2D2D;
   --light:#DBDBDB;
}
::-webkit-scrollbar {
   height: 0.5rem;
   width: 0.6rem;
}
::-webkit-scrollbar-thumb {
   background-color: var(--secondry-color);
}

*{
   font-family: 'Tajawal', sans-serif;
   margin:0;
   padding:0;
   box-sizing: border-box;
   outline: none; border:none;
   text-decoration: none;
   transition: .2s linear;
}
p{
   margin: 0;
}

html{
   overflow-x: hidden;
   scroll-behavior: smooth;
}

/* width */
::-webkit-scrollbar {
   width: 4px;
 }
 
 /* Track */
 ::-webkit-scrollbar-track {
   box-shadow: inset 0 0 5px rgba(128, 128, 128, 0.63); 
 }
  
 /* Handle */
 ::-webkit-scrollbar-thumb {
   background: var(--secondry-color); 
   border-radius: 10px;
 }
 
 /* Handle on hover */
 ::-webkit-scrollbar-thumb:hover {
   background: var(--main-color); 
 }

/* ------------- global --------------- */

body{
   direction: rtl;
   line-height: 1.7;
   
}
#loading {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 999999;
   background-color: #fff;
   display: flex;
   justify-content: center;
   align-items: center;
}


.loader {
   position: relative;
   width: 80px;
   letter-spacing: 2px;
   display: inline-block;
   box-sizing: border-box;
   animation: floating 1s ease-out infinite alternate;
}
.loader img{
   width: 80px;
}

.loader::after {
   content: '';
   width: 80%;
   height: 20px;
   background: rgba(0, 0, 0, 0.424);
   position: absolute;
   left: 10%;
   top: 110%;
   filter: blur(4px);
   border-radius: 50%;
   box-sizing: border-box;
   animation: animloader 1s ease-out infinite alternate;
}

@keyframes floating {
   0% {
      transform: translateY(0);
   }

   100% {
      transform: translateY(-25px);
   }
}

@keyframes animloader {
   0% {
      transform: scale(0.8);
   }

   100% {
      transform: scale(1.2);
   }
}

a{
   text-decoration: none;
   color: #000000;
}

ul{
    padding-left: 0rem !important;
    list-style: none;
}

.main-color{
   color: var(--main-color) !important;
}
.secondry-color{
   color: var(--secondry-color);
}
.bg-main-color{
   background-color: var(--main-color);
   color: #fff !important;
}
.bg-white{
   background-color: #fff;
   color: var(--main-color) !important; 
}
.bg-secondry-color{
   background-color: var(--secondry-color);
   color: #fff !important;
}
::selection{
   color: #fff;
   background-color: #34347a50;
}

.nice-select{
   width: 100%;
   color: var(--dark);
}
.nice-select .list{
   width: 100%;
}
.nice-select{
   border:none;
}
.nice-select ,.nice-select .list li{
   text-align: right !important;
   padding-right: 18px;
   padding-left: 30px;
}
.nice-select:after {
   right: unset;
   left: 12px;
}

p+.form-control{
   margin-top: .75rem;
}
.form-control{
   padding: 0.75rem 0.75rem ;
   width: 100%;
   font-size: 1rem;
   font-weight: 400;
   line-height: 1.5;
   color: #212529;
   border: 1px solid #ced4da ;
   border-radius: 0.25rem;
   transition: .15s ease-in-out;
   box-shadow :  none !important
}
.form-control:focus{
   border: 1px solid #ff54165e;
   outline: none !important;
}

/* + */
.accordion-button::after{
   background-image: none !important;
   content: "+";
   position: absolute;
   left: 1rem;
   font-size: 25px;
   width: 30px;
   height: 30px;
   background-color: #fff;
   border-radius: 50%;
   text-align: center;
   vertical-align: sub;
   line-height: 1;
}

/* - */
.accordion-button:not(.collapsed)::after { 
   background-image: none !important;
   content: "-";
}



.car-button {
   border-radius: 3px;
   width: 144px;
   height: fit-content;
   display: flex;
   align-items: center;
   justify-content: center;
   background: linear-gradient(to right, #fff 50%, var(--main-color) 50%);
   background-size: 200% 100%;
   background-position: left bottom;
   transition: all .3s ease-out;
}
.car-button.button:hover {
   background-position: right bottom;
}
 
.car-button.button .text {
   text-align: center;
   font-size: 16px;
   color:var(--main-color);
   transition: all .3s ease-out;
   display: block;
   font-weight: bold;
}
.car-button.button:hover .text {
   color: #fff;
}

.link{
   position: absolute;
   top: 0;
   right: 0;
   left: 0;
   bottom: 0;
}
/* h5+p{
   color: var(--muted-text);
   font-size: 14px;
   margin: 0%;
} */

.Stars {
   --percent: calc(var(--rating) / 5 * 100%);
   font-size: 21px;
}

.Stars::before {
   content: "★★★★★";
   background: linear-gradient(-90deg, #fc0 var(--percent), #B9B9B9 var(--percent));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}
.whatsapp {
   position: fixed;
   bottom: 35px;
   left: 15px;
   z-index: 9999;
}
.whatsapp a, .whatsapp svg {
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: large;
   width: 35px;
   height: 35px;
   padding: 10px;
   text-align: center;
   line-height: 2.2;
   color: white;
   background: #25D366;
   border-radius: 50%;
   box-shadow: 0 2px 6px 0 rgb(0 0 0 / 30%);
   transition: .5s;
}

.nav-tabs{
   border: none;
}

.breadcrumb {
   display: flex;
   justify-content: center;
   width: 100%;
   color: #fff;
   align-items: center;
   background-position: center center;
   background-size: cover;
   height: 400px;
   position: relative;
}
.breadcrumb h6 {
   line-height: inherit;
   margin-bottom: 0;
}
.breadcrumb .content {
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: large;
}
#scroll-to {
   position: absolute;
   top: 100%;
   left: 50%;
   transform: translate(-50%, -50%);
   background: #fff;
   display: inline-block;
   width: 50px;
   height: 50px;
   border-radius: 50%;
   box-shadow: 0px 1px 6px #0005e450;
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 4;
}
#scroll-to img{
   padding: .5rem;
   width: 100%;
   height: 100%;
}
.overlay{
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   background-color: rgba(0, 0, 0, 0.62);
   z-index: 3;
}
.more{
   display: flex;
   align-items: center;
   width: max-content;
   margin: auto;
   font-size: 24px;
   color: var(--main-color) !important;
   font-weight: bold;
   margin-top: 3rem;
}

.more img{
   transform: rotate(90deg);
   margin-right: 1rem;
}
@keyframes moreArrow {
   0% {
      transform: rotate(90deg) translateY(0PX);
   }

   100% {
      transform: rotate(90deg) translateY(10PX);
   }
}
.more:hover img{
   animation: moreArrow .5s ease-out infinite alternate;
}

.car-heading{
   color: var(--main-color);
   font-weight: bold;
   font-size: 22px;
   text-align: center;
   margin-bottom: 2rem;
}

/* navbar */
.navbar{
   padding: 1rem 0;
   position: fixed;
   width: 100%;
   z-index: 999;
}
.navbar-nav{
   justify-content: space-evenly;
   width: 70% !important;
   margin: 0 auto;
}
.navbar-light .navbar-brand{
   font-weight: 500;
}
.navbar-light .navbar-brand img{
   width: 60px;
   height: 60px;
   background-color: #fff;
   border-radius: 50%;
   padding: .5rem;
   overflow: initial;
}
.navbar a{
   color: #fff !important;
}
.navbar .nav-link.active{
   font-weight: bold;
}
.navbar-light .navbar-toggler-icon {
   background-image: url(../images/Group\ 67653.png);
}
.navbar li.top-nav-user{
   position: relative;
}
.navbar li > a{
   background-color: var(--ultra-lite);
   overflow: hidden;
   transition: all 0.3s;
   position: relative;
}
.navbar  li > a.active > i{
   background-color: #fff;
   color: var(--main-color);
}
.navbar a i{
   width: 35px;
   height: 35px;
   border-radius: 50%;
   border: 1px solid #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 10px;
}
.navbar .sub-menu{
   position: absolute;
   top: 100%;
   left: 50%;
   transform: translateX(-50%);
   min-width: 140px;
   font-size: 12px;
   background-color: #fff;
   border-radius: 10px;
   display: none;
   flex-direction: column;
   overflow: hidden;
   z-index: 10;
}
.navbar .sub-menu > button, .sub-menu > a{
   padding: 15px;
   display: block;
   text-align: center;
   white-space: nowrap;
   color: var(--main-color);
   transition: all 0.3s;
   background-color: transparent;
   color: var(--main-color) !important;
   position: relative;
}
.navbar .sub-menu > button:not(:last-child),.sub-menu > a:not(:last-child){
   border-bottom: 1px solid var(--light);
}
.navbar .sub-menu > button:hover, .sub-menu > a:hover{
   background-color: #34347A60 ;
   color: #fff !important;
}

.navbar li.top-nav-user .sub-menu a.active::after{
   content: "";
   height: 100%;
   position: absolute;
   top: 0;
   right: 0;
   border: 1px solid var(--main-color);
}
.navbar li.top-nav-user:hover .sub-menu{
   display: block;
}
.navbar .car-button{
   margin-right: .75rem;
}

/* ----------------- home page ----------------- */

/* header section */
/* header{
   height: 80vh;
} */
header .carousel-item{
   height: 100%;
}
header .carousel-item img{
   object-fit: cover;
}
header .carousel-caption {
   position: absolute;
   right: 7%;
   bottom: 50%;
   transform: translateY(50%);
   left: auto;
   padding-top: 1.25rem;
   padding-bottom: 1.25rem;
   color: #fff;
   text-align: inherit;
   width: 45%;
   z-index: 4;
}
header .carousel-caption p{
   line-height: 2;
   padding: 1rem 0;
}

header .carousel-indicators {
   position: absolute;
   right: auto;
   bottom: 50%;
   transform: translateY(50%);
   left: 8%;
   z-index: 4;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   padding: 0;
   margin-right: 0%;
   margin-bottom: 1rem;
   margin-left: 0%;
   list-style: none;
}
header .carousel-indicators [data-bs-target] {
   box-sizing: content-box;
   flex: 0 1 auto;
   width: 30px;
   height: 30px;
   position: relative;
   text-indent: 0;
   background-color: transparent;
   z-index: 4;
}
.carousel-indicators div{
   width: 0px;
   height: 30px;
   border: 1px solid #FFFFFF50;
   margin-top: 10px;
}
header .carousel-indicators button{
   position: relative;
}
header .carousel-indicators button span{
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   font-size: 20px;
   font-weight: 500;
}


header main svg {
   position: absolute;
   bottom: 0;
   fill: #fcfcfc;
   width: 100%;
   height: auto;
   z-index: 4;
   right: 0;
   left: 0;
}

.classification{
   padding: 10px;
   border-radius: 5px;
   position: absolute;
   right: 7%;
   bottom: 155px;
   z-index: 4;
}
.classification-content{
   display: flex;
   align-items:center;
   padding: 5px 15px;
   border-radius: 5px;
   background: #fff;
}
.classification-content .form-control{
   margin-left: 6px;
   padding:10px;
}
.classification-content .form-select, .classification-content .nice-select{
   margin: 0 3px !important;
   border: 1px solid transparent;
}
.classification-content .nice-select{
   border-radius: 0;
   border-right: 1px solid #bbb;
}
.classification-content .btn{
   margin-right: 3px;
   padding: 10px 35px
}
.classification-content .btn-orange{
   background: var(--main-color);
   color: #fff !important;
   transition: all 0.3s;
}

/* ------side-menu-classification------ */

.side-menu-classification{
   position: fixed;
   top: 0;
   left: -250px;
   width: 250px;
   height: 100vh;
   background: var(--main-color);
   z-index: 98000999;
   padding: 100px 10px;
   transition: all 0.3s;
}
.side-menu-classification.show{
   left: 0;
}
.toggle-side-menu-classification {
   position: absolute;
   top: 250px;
   left: 100%;
   color: #fff;
   padding: 9px;
   background-color: var(--main-color);
   font-size: 26px;
   border-radius: 0px 5px 5px 0;
   display: none;
   line-height: 6px;
   z-index: 100;
}
.toggle-side-menu-classification:hover{
   color: #fff;
}
.close-side-menu-classification ,.close-side-menu-classification:hover{
   position: absolute;
   top: 15px;
   left: 20px;
   cursor:pointer;
   color: #fff;
   transition: all 0.5s;
}
.side-menu-classification .side-menu-classification-content{
   display: flex;
   flex-direction: column;
}
.side-menu-classification .side-menu-classification-content .form-select{
   margin: 15px 0;
}
.side-menu-classification .side-menu-classification-content .form-control{
   margin-bottom: 15px;
}
.side-menu-classification .side-menu-classification-content .btn{
   margin-top: 30px;
   background-color: #fff;
   color: var(--main-color);
   font-weight: bold;
}


/* ------ about section ------ */
section{
   margin-top: 80px !important;
}
.about{
   padding-top: 100px !important;
}
.about ol {
   counter-reset: list;
   list-style: none;
}
.about ol li {
   counter-increment: list;
   padding-bottom: 30px;
   display:flex;
   align-items:center;
   position:relative;
}
.about ol li:last-child{
   margin-bottom: 0px;
}
.about .about-shape{
   text-align: center;
   border-radius: 110px 110px 0px 110px;
   border: 2px solid var(--secondry-color);
   width: 3rem !important;
   height: 3rem;
   line-height: 2em;
   transition: .3s;
   transform: matrix(-0.71, 0.71, -0.71, -0.71, 0, 0);
   position: relative;
   background-color: #fff;
   z-index: 3;
   color: var(--secondry-color);
}
.about .about-shape+div{
   width: calc(100% - 3rem);
   padding-right: 1.5rem;
}
.about ol li .about-shape::before {
   content: counter(list);
   font-family: Arial, sans-serif;
   font-size: 26px;
   display: inline-block;
   position: absolute;
   left: 50%;
   top: 50%;
   transform: translate(-50% , -50%)rotate(-135deg);
}
.about ol li:hover .about-shape{
   background-color: var(--secondry-color);
   font-family: Arial, sans-serif;
   color: #fff;
   cursor: pointer;
}
.about ol li::after{
   content: '';
   position: absolute;
   top: 3em;
   right: 22px;
   border-left: 0.5px dotted var(--secondry-color);
   height: 100%;
   padding: 10px 0px;
}
.about ol li:last-child::after{
   content:'';
   border:none;
}
.about .img-bg{
   border: 1px solid #DCDCDC;
   border-radius: 24px;
   background: #F1F1FF;
   position: absolute;
   height: 100%;
   width: 70%;
   left: 15%;
}
.about .car-img {
   height: 100%;
   display: flex;
}
.about .car-img img{
   padding: 5rem 0;
   position: relative;
   z-index: 1;
}

/* ------ gallery section ------  */

.gallery{
   background: url(../images/gallery-bg.svg);
   background-size: cover;
   background-repeat: no-repeat;
   background-position: top left;
   padding: 3rem 0;
}

.gallery .photo a {
   display: block;
   border-radius: 10px;
   overflow: hidden;
   cursor: pointer;
}
.gallery .photo img {
   transition: .4s;
   height: 215px;
   object-fit: cover;
}

/* ------ owl-carousels section ------  */


.owl-carousel .owl-stage-outer {
   position: relative;
   /* overflow: hidden; */
}
.owl-carousel .owl-stage{
   display: flex;
}

/* ------ cars sections ------ */

.our-cars{
   position: relative;
   background: url(../images/cars-bg.svg);
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center;
   padding: 0;
   color: #fff;
   text-align: center;
   padding: 4rem 0;
}

.our-cars svg {
   position: absolute;
   bottom: 0;
   fill: #fcfcfc;
   width: 100%;
   height: auto;
   z-index: 4;
}
.choose-car{
   padding: 5% 0;
   background-color: var(--ultra-lite);
}
.choose-car-heading > img{
   width:50px;
}
.choose-car-item{
   padding:15px;
   background-color: #fff;
   width: 120px;
   height: 120px;
   display: flex;
   align-items: center;
   border-radius: 10px;
}
.new-cars .owl-carousel .owl-stage{
   display: flex;
   align-items: stretch;
}
.new-cars .card{
   border-color: transparent;
   background: #FFFFFF;
   box-shadow: -10px 10px 20px #0000000D;
   border-radius: 10px;
   overflow: hidden;
   position: relative;
   height: 100%;
}
.new-cars .card .card-img-top{
   height: 235px;
   object-fit: cover;
}
.new-cars .card .card-body{
   display: flex;
   align-items: center;
   justify-content: center;
   padding: .5rem;
}

.new-cars .card .card-title{
   color: var(--main-color);
   text-align: center;
}
.arrow{
   width: 50px;
   height: 50px;
   border-radius: 50%;
   color: var(--secondry-color);
   font-size: 20px;
   background-color:#FCFCFC;
   display: flex;
   align-items: center;
   justify-content: center;
   transform: rotate(45deg);
}
.arrow:hover{
   background-color: var(--secondry-color);
   color: #fff;
   transform: rotate(0deg);
}

/* ------------- why-us --------------- */
.why-us .about-shape {
   text-align: center;
   border-radius: 110px 110px 0px 110px;
   width: 2.2rem !important;
   height: 2.2rem;
   line-height: 2em;
   transition: .3s;
   transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
   position: relative;
   background-color: var(--main-color);
   z-index: 3;
   color: #fff;
}
.why-us li{
   counter-increment: count;
   position: relative;
}
.why-us li .about-shape::before {
   content: counter(count);
   font-size: 16px;
   display: inline-block;
   position: absolute;
   left: 50%;
   top: 50%;
   color: #fff;
   transform: translate(-50% , -50%)rotate(-45deg);
   z-index: 9;
}
.why-us li .about-shape+h5{
   width: calc(100% - 2.2rem);
   padding-right: 1rem;
   color: var(--main-color);
   margin: 0;
}
.user-comment{
   height: 100%;
   display: flex;
   border: none;
   padding: 1.3rem 0.5rem;
   background: #F8F8F8 ;
   border-radius: 21px;
}

/* ------------- sendMail --------------- */
.sendMail{
   background: #FFFFFF 0% 0% no-repeat padding-box;
   border-radius: 32px;
   padding: 0.5rem;
}

.sendMail form{
   width: 100%;
   display: flex;
   justify-content: space-between;
}
.sendMail input{
   margin: 0 1rem ;
   background-color: transparent;
   flex-grow: 1;

}

.contact-content{
   color: #fff;
   padding: 0 2rem;
}
.contact-content h5{
   font-weight: bold;
}
.contact-content p{
   margin: 1.5rem 0 3rem 0;
}
.contact-us img{
   position: relative;
   left: -40px;
}

.sendMail button{
   background-color:var(--main-color);
   color: #FFF;
   padding: .5rem 2.5rem;
   border-radius: 32px;
}
.sendMail form .btn:hover{
   background-color:var(--main-color);
}

/* ------------- contact section --------------- */
.contact-us{
   background: var(--main-color);
   /* background-size: 94% 100%;
   background-repeat: no-repeat;
   background-position: top right; */
   border-radius: 20px;
   padding: 4rem 0;
}

/* ------------- footer --------------- */
.toTop {
   background-color: #fff;
   color: #fc0;
   position: absolute;
   top: -30px;
   left: 50%;
   transform: translateX(-50%);
   width: 60px;
   height: 60px;
   cursor: pointer;
   line-height: 40px;
   border-radius: 100%;
   text-align: center;
   z-index: 35;
   transition: all .2s;
   font-size: 16px;
   box-shadow: 0px -25px 50px #00000008;
   display: flex;
   align-items: center;
   justify-content: center;
}
.toTop:hover {
   background-color: var(--secondry-color);
   color: #fff;
}
footer{
   margin-top: 80px;
   position: relative;
   background: #FCFCFC; 
   padding-top: 3rem;
   border-radius: 60px 60px 0 0;
}
footer h4{
   position: relative;
   padding: 0 15px;
   font-size: 22px;
   font-weight: bold;
   color: var(--secondry-color);
   margin-bottom: 35px;
}

footer h4:before {
   content: '';
   position: absolute;
   right: 0;
   top: 50%;
   transform: translateY(-50%);
   background-color: var(--secondry-color);
   width: 4px;
   border-radius: 50px;
   height: 100%;
}
footer .footer-content{
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
}
footer .footer-content>li {
   width: 45%;
   transition: all 0.3s;
}
footer ul li ,
.car-description ul li{
   margin-bottom: 18px;
   position: relative;
   padding-right: 30px;
   font-weight: 500;
   color: #6B6B6B !important;
}
footer ul li a{
   color: inherit;
}
footer li::before ,
.car-description li::before{
   position: absolute;
   content: '';
   right: 0;
   width: 20px;
   height: 20px;
   transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
   background: var(--main-color);
   border-radius: 110px 110px 0px 110px;
   cursor: pointer;
}
footer li:hover a{
   color: var(--main-color);
}
footer li:hover ::before{
   background-color: var(--secondry-color);
}
footer .social{
   width:75%;
   display: flex;
   justify-content: space-between;
}
footer .social i{
   width: 50px;
   height: 50px;
   border-radius: 50%;
   background-color:#fff ;
   display: flex;
   justify-content: center;
   align-items: center;
   color: var(--main-color);
   font-size: 20px;
   opacity: .8;
}
footer .social div:hover i{
   background-color: var(--main-color);
   color: #fff;
   opacity: 1;
   transform: translateY(-10px);
}
footer .sub-footer{
   position: relative;
   color: #000;
   padding: 10px 0;
   display: flex; 
   align-items: center; 
   justify-content: space-between ;
}

footer .sub-footer img {
   width: 130px;
   object-fit: scale-down;
   margin: 0 10px;
}

.modal-content {
   border-radius: 40px;
}
.gallery-car-img img{
   border-radius: 40px;
   height: 270px;
   object-fit: cover;
   margin-bottom: 1rem;
}

/* -----------------  cars page ----------------- */

.filter{
   background-color:#FCFCFC;
   border-radius: 20px;
   border: 0.30000001192092896px solid #B5B5B54a;
   padding: 2rem 1.5rem;
}
.filter  ul li {
   padding: 5px 0px;
}
.filter input{
   margin-left: .5rem;
}
.filter input:checked {
   accent-color: var(--main-color);
}
.filter input:checked +label{
   color: var(--main-color);
   font-weight: bold;
}
.op-pro-filter {
   width: 100%;
   text-align: inherit;
   border-radius: 5px;
   background-color: transparent;
   color: var(--main-color);
   border: 1px solid var(--main-color);
   border-radius: 10px;
   padding: 0.5rem 1rem;
   margin-bottom: 20px;
   display: none;
   position: relative;
   margin-bottom: 1rem;
}
.op-pro-filter.active:after {
   transform: rotate(315deg);
   transition: all .3s;
   top: 20px;
}

.op-pro-filter:after {
   content: '';
   position: absolute;
   left: 15px;
   border-right: 2px solid var(--main-color);
   border-top: 2px solid var(--main-color);
   width: 10px;
   height: 10px;
   transform: rotate(135deg);
   transition: all .3s;
   top: 18px;
}

/* -----------------  videos page ----------------- */
.video-wrap{
   position: relative;
   height: 240px;
   border-radius: 20px;
   overflow: hidden;
}
.video-wrap img{
   transition: .4s;
}
.video-wrap:hover img{
   transform: scale(1.2);
}
.video-wrap .video-cover-img {
   position: absolute;
   right: 0;
   top: 0;
   width: 100%;
   height: 100% !important;
   z-index: 5;
   cursor: pointer;
   border: 0 !important;
   margin: 0 !important;
   background-color: transparent !important;
   filter: brightness(.65);
}
.video-wrap .op-video {
   position: absolute;
   left: 50%;
   transform: translate(-50%, -50%);
   z-index: 6;
   top: 50%;
   width: 40px;
   height: 40px;
   border-radius: 100%;
   text-align: center;
   background: #fff;
   line-height: 70px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--main-color) !important;
   font-size: 14px;
}
.video-wrap .op-video:before {
   content: "";
   position: absolute;
   border: 10px solid #ffffff88;
   border-radius: 100%;
   top: -10px;
   right: -10px;
   bottom: -10px;
   left: -10px;
   box-shadow: 0 0 0 10px #ffffff55;
}
.video-wrap:hover .op-video:before{
   -webkit-animation-duration: 1.5s;
   animation-duration: 1.5s;
   animation-fill-mode: forwards;
   -webkit-animation: ripple-out 1s infinite;
   animation: ripple-out 1s infinite;
 }
 .vid-title{
   text-align: center;
   margin-top: 1rem;
 }

 /* Ripple Out */
 @keyframes ripple-out {
     100% {
         top: -30px;
         right: -30px;
         bottom: -30px;
         left: -30px;
         opacity: 0;
     }
 }

 @-webkit-keyframes ripple-out {
     100% {
         top: -30px;
         right: -30px;
         bottom: -30px;
         left: -30px;
         opacity: 0;
     }
 }

.video-wrap .video-cover-img.off,
.video-wrap .op-video.off {
   opacity: 0;
   visibility: hidden;
}

/* -----------------  car-details page ----------------- */
.car-details .car-color-nav{
   background: #FFFFFF 0% 0% no-repeat padding-box;
   box-shadow: 0px 0px 15px #9E9E9E29;
   border-radius: 12px;
   padding: .75rem 2rem;
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 1rem;
   margin-top: 1.5rem;
}
.car-details .nav-tabs .nav-item .nav-link{
   border: 0;
   margin-right: 1.5rem ;
   color: #575757 !important;
   transition: .3s all;
   background: #FFFFFF 0% 0% no-repeat padding-box;
   border: 1px dashed #34347A;
   border-radius: 50%;
   width: 35px;
   height: 35px;
   padding: 0;
   display: flex;
   align-items: center;
   justify-content: center;
}
.car-details .nav-tabs .nav-item .nav-link span{
   display: block;
   width: 22px;
   height: 22px;
   border-radius: 100%;
   box-shadow: 0 0 0 1px transparent;
   transition: all .3s;
   margin: 0;
   border: none !important;
   box-shadow: 0px 3px 6px #00000029;
}
.car-details .nav-tabs .nav-item .nav-link.active{
   transform: scale(1.1);
}
.car-details .car-name{
   margin-bottom: 1.5rem;
   font-weight: bold;
   text-align: center;
}
.car-details .car-img{
   border-radius: 20px;
   overflow: hidden;
}
.car-details .car-img img{
   height: 360px;
   object-fit: cover;
}
.car-details #common-q{
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
}
/* .car-details #common-q .accordion-item {
   width: 48.5%;
} */

/* -----------------  blog page ----------------- */

.news .news-wrapper .news-wrapper-img{
   border-radius: 20px;
   height: 215px;
   overflow: hidden;
}
.news .news-wrapper .news-wrapper-img img{
height: 100%;
}
.news .news-wrapper p.cut-text{
-webkit-line-clamp: 2;
color: #9E9E9E;
line-height: 1.8;
margin: 1rem 0;
}
.news .news-wrapper .date img{
width: 15px;
display: inline;
margin-left: 5px;
filter: brightness(0) invert(.7);
}


.single-news .news-img, .single-news .news-img>img{
   height: 370px ;
   border-radius: 20px;
   overflow: hidden;
   object-fit: cover;
}
.single-news  .news-header{
   padding-top: 2rem ;
   display: flex;
   align-items: center;
   justify-content: space-between;
}
.single-news  .news-header > div > span{
   padding: 0 .4rem;
   color: var(--main-color);
}
.single-news  .news-header img{
   width: 15px;
   margin-left: 5px;
   filter: brightness(0) invert(.68);
}

.single-news .news-details p, .single-news>.container>p{
   color: #818181;
   line-height: 1.9;
   padding: 1.5rem 0;
}
.single-news .news-header > div > span{
   color: #9E9E9E;
}

.description-comments{
   background: #FCFCFC;
   border-radius: 5px;
}
.description-comments .comment-details,.your-comment textarea , .your-comment .form-control{
   border: 1px solid #CCCCCC;
   border-radius: 5px;
   background: #FBFBFB
}
.your-comment textarea{
   padding: 1rem;
}
.description-comments .comment-details{
   background-color: #FBFBFB;
}
.description-comments .comment-details .sec-small{
   border-bottom: 1px solid #CCCCCC;
   padding: 22px;
   display: flex;
   justify-content: space-between;
   align-items: center;
}
.description-comments .comment-details .sec-small .avatar{
   width: 30px;
   height: 30px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   background: #e4e7f5bc;
   color: #8F95A3;
}
.description-comments .comment-details .title{
   margin: 0;
   color: var(--main-color);
}
.description-comments .comment-details .text-comment{
   padding: 22px;
}
.description-comments .nav-pills .nav-link{
   font-size: 20px;
   color: #9E9E9E;
}
.description-comments .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
   color: var(--secondary-color);
   background-color: transparent;
   text-decoration: underline;
   font-weight: bold;
   margin-bottom: 1rem;
}
.description-comments .description{
   color: #818181;
   padding: 20px;
   line-height: 1.8;
}
.your-comment .btn{
   background-color: var(--main-color);
   color: #fff;
   border-radius: 17px;
   width: 170px;
   margin-top: 1rem;
   padding: .75rem !important;
   font-weight: bold;
}
/* -----------------  common-que page ----------------- */

.common-q{
   background-color: #F9F9F9;
}
#common-q .accordion-item {
   border: 1px solid #E4E4E4;
   border-radius: 15px;
   margin-bottom: 1rem;
   overflow: hidden;
}
#common-q .accordion-button:focus {
   border: none;
   box-shadow: none !important;
}
#common-q .accordion-button:not(.collapsed) {
   color: var(--main-color);
   box-shadow: none;
   border: none;
}
 #common-q .accordion-header{
   overflow: hidden;
   background: #F2F4FA;
   border-radius: 8px !important;
}
#common-q .accordion-button {
   color: #2A2A2A;
   position: relative;
   background: #FFFFFF;
   border: 1px solid #E4E4E4;
   border-radius: 8px;
   font-weight: 500;
   font-size: large;
   padding: 1rem 1rem 1rem 3rem;
   text-align: right !important;
   border: none !important;
}
#common-q  .accordion-body {
   padding: 0 1.25rem 1rem 1.25rem;
}
#common-q .accordion-body ul li{
   display: flex;
   align-items: center;
   justify-content: space-between;
   color:  #4B4B4B;;
}

/* ------ contact page ----------- */
.contact-data .contact-info{
   background-color: #FFF;
   text-align: center;
   padding: 1.5rem 0.5rem;
   height: 100%;
   border: 1px solid #DBDBDB;
   border-radius: 8px;
}

.contact-data i{
   display: inline-block;
   font-size: 30px;
   color: var(--main-color);
}
.contact-info:hover i{
   transform: scale(1.2);
}
.contact-data a{
   color: inherit;
}
.contact-data iframe{
   margin-top: 1rem;
   border-radius: 10px;
}




/* ------ policy page ----------- */
.privacy,.policy{
   padding: 3rem 0;
   margin-bottom: 30px;
}
.privacy li{
   position: relative;
   margin-bottom: 1.5rem;
   padding-right: 30px;
   color: #909090;
   font-weight: 500;
   line-height: 1.6;
}
.privacy li::before {
   position: absolute;
   content: '';
   right: 0;
   top: 5px;
   width: 20px;
   height: 20px;
   background: transparent;
   border: 4px solid var(--secondry-color);
   border-radius: 50%;
   cursor: pointer;
}
.policy li{
   margin-bottom: 1.5rem;
   color: #909090;
   font-weight: 500;
   line-height: 1.6;
}


/* ------------- media --------------- */
@media (max-width:991.8px){
   .navbar-collapse.show{
      background-color: var(--main-color);
      padding: 2rem;
      border-radius: 20px;
   }
   .navbar-collapse.show .navbar-nav {
      width: max-content !important;
      margin: 0;
   }
   .navbar-collapse.show .navbar-nav .nav-item{
      margin-bottom: 10px;
   }
   .navbar-collapse.show .navbar-nav .nav-link.active::after {
      content: "";
      width: 80%;
      left: 20%;
   }
   .navbar-toggler{
      border: none;
   }
   .navbar-toggler:focus {
      text-decoration: none;
      outline: 0;
      box-shadow: none;
   }
   footer .footer-content>li {
      width: 30%;
   }
}
@media (max-width:768px){
   .classification{
      display: none;
   }   
}
@media (max-width:576px){
   #header{
      height: 80vh;
   }
   .navbar a {
      font-size: inherit;
   }
   .about ol li::before {
      width: 3.2em;
   }
   .new-cars .card .card-img-top {
      height: 150px !important;
   }
   footer .footer-content>li {
      width: 45%;
      transition: all 0.3s;
   }
   .op-pro-filter {
      display: block;
   }
   .filter{
      display: none;
   }
   /* .car-details #common-q .accordion-item {
      width: 100%;
   } */

}
@media (max-width:415px){

}
@media (min-width:768.8px){
   .profile-nav-sm{
      display: none;
   }  
}
@media (max-width:991.8px){
   header .classification{
      display: none;
   }
   .toggle-side-menu-classification {
      display: block;
   }
}






/* 
 */
@media (min-width: 992px){
   .navbar-expand-lg .navbar-nav {
      justify-content: space-around;
      flex-direction: row;
      width: 75% !important;
   }
}
@media (max-width: 992px){
   .navbar>.container, .navbar>.container-fluid, .navbar>.container-lg, .navbar>.container-md, .navbar>.container-sm, .navbar>.container-xl, .navbar>.container-xxl {
      display: flex;
      flex-direction: row-reverse;
   }
   .contact-us {
      padding: 4rem 0 0 0;
   }
   .contact-us img {
      position: relative;
      left: -35px;
      bottom: -30px;
  }
}
@media (max-width: 587px) {
   header .carousel-caption {
      width: 66%;
   }
   .contact-us img{
      position: relative;
      left: 0px;
      bottom: -20px;
      padding: 0 1rem;
   }
   .sendMail button {
      padding: 0.5rem 1.5rem;
   }
   .gallery .photo img {
      height: 165px;
   }
   .sendMail input {
      margin: 0;
   }
   .about .car-img img {
      padding: 2.5rem 0;
   }
   .sub-footer p{
      font-size: 12px;
   }
   footer .sub-footer img{
      width: 110px;
   }
}


 