﻿@import url('https://fonts.googleapis.com/css2?family=Zain:ital,wght@0,200;0,300;0,400;0,700;0,800;0,900;1,300;1,400&display=swap');
body {
     font-family: "Zain", sans-serif;
    font-optical-sizing: auto;
}
.navbar .container{
    display: flex;
    justify-content: space-around;   
}
.langbtn{
    background-color: inherit;
    border: none;
    outline: none;
    width: 30px;
}
.langbtn img{
    width: 25px;
}
.navbar-nav .active{
    background-color: var(--primary-color);
    padding-right: 10px;
    padding-left: 10px;
    color: #fff;
    border-radius: 3px;
}
.navbar-nav .active a{
    color: #fff;
}
/* Hero section */
.hero{

    width: 100%;
    margin-top: -20px;
    height: 80vh;
    background-size: 100% 100%;
    position: relative;
}

/* الكونتينر الأساسي للسلايدر */
.car-slider {
    position: relative;
    width: 100% ;
    height: 80vh;
    overflow: hidden;
    background: url("../images/freebackground.jpg") center/cover no-repeat fixed;
}

/* طبقة خفيفة غامقة فوق الخلفية عشان توضح المحتوى */
.car-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

/* كل سلايد */
.car-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.car-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* المحتوى جوه السلايد */
.slide-inner {
    position: relative;
    width: 100%;
    height: 80vh;
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;  
    align-items: center;
    padding: 30px 40px;
    gap: 20px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);  
    z-index: 1; 
}

/* بوكس العناوين */
.slide-info {
    width: 100%;       
    border-radius: 16px;
    padding: 14px 16px;
    background: none;
     display: flex;
    flex-direction: row;
    justify-content: space-around; 
    gap: 4px;
    opacity: 0;       
    position: relative;
}
.slid-ifo-right{
    width: 100px;
}
.slid-ifo-right img{
    width: 100px;
}
.slide-info h2,
.slide-info h3 {
    color: var(--secondary-color);     /* لون العنوان */
    font-weight: bold;
    margin: 0;
    
}
.slid-ifo-left h2{
    margin: 20px 30px;
    line-height: 50px;
}

.slide-info p {
    color: #ffffffcc;   /* نص أبيض ناعم */
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}
.slid-ifo-left p{
    margin:0 40px;
    line-height: 20px;
}
.carimg{
    height: 40vh;
}
/* صورة العربية */
.car-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.car-image {
    max-width: 100%;
    max-height: 90%;
    object-fit: contain;
}

/* أنيميشن دخول العربية */
.car-slide.active .car-image {
    animation: car-enter 0.9s ease-out forwards;
}

@keyframes car-enter {
    0% {
        transform: translate(60%, -60%) scale(0.9);
        opacity: 0;
    }
    60% {
        transform: translate(-8%, 6%) scale(1.02);
        opacity: 1;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
}

/* أزرار السابق / التالي */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    cursor: pointer;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.05);
}

.nav-prev {
    inset-inline-start: 15px;
}

.nav-next {
    inset-inline-end: 15px;
}

/* الدوتس */
.dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.dots button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.dots button.active {
    width: 26px;
    background: #fff;
}
.slide-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    justify-content: space-between; /* توزّع الـ 3 بوكسات طول العمود */
}

/* لو حابب تديهم فرق بسيط في المحاذاة */
.slide-column-right {
    align-items: flex-start;
}

.slide-column-left {
    align-items: flex-start;
    align-content: center;
}

.slide-column .slide-info {
    opacity: 0;
    animation: infoFade 0.6s ease forwards;
}

.slide-column .slide-info:nth-child(1) {
    animation-delay: 0.2s;
}

.slide-column .slide-info:nth-child(2) {
    animation-delay: 0.45s;
}

.slide-column .slide-info:nth-child(3) {
    animation-delay: 0.7s;
}

@keyframes infoFade {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.slide-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
    justify-content: space-between;
}
.slid-ifo-left {
    align-self: center;
}
/* موبايل / شاشات صغيرة */
@media (max-width: 900px) {
    .car-slider {
        height: 430px;
    }

    .slide-inner {
       grid-template-columns: 1fr;
        grid-auto-rows: auto;
        padding: 20px 18px 50px;
        text-align: center;
    }

      .slide-column-right {
        order: 1;
    }

    .slide-column-left {
        order: 2;
    }

    .car-image-wrap {
        order: 0;
        height: 200px;
    }

    .nav-prev {
        inset-inline-start: 8px;
    }

    .nav-next {
        inset-inline-end: 8px;
    }
}
.discoveryourcar{
 
    margin-top: 20px;
    
}
.supslides-container{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    z-index: 9999;
    position: absolute;
    bottom: 40px;
    left: 0;
     animation: infoFade 0.6s ease forwards;
}
.sup-info {
   margin-right: 100px;
   width: 300px;
   display: flex;
   justify-content: center;
   align-items: flex-start;
   align-items: center;
 
}
.sup-info img{
    width: 40px;
    margin-left: 10px;
}
.sup-info h3{
    color: #fff;
    font-size: 1rem;
}
.sup-info h3 span{
    color:var(--secondary-color);
    font-size: 1rem;
}
.sup-info-2 {
   width: 300px;
   display: flex;
   justify-content: center;
   align-items: flex-start;
   align-items: center;
 
 
}
.sup-info-2 img{
    width: 40px;
    margin-left: 10px;
}
.sup-info-2 h3{
    color: #fff;
    font-size: 1rem;
}
.sup-info-2 h3 span{
    color:var(--secondary-color);
    font-size: 1rem;
}
.sup-info-3 {
 
   width: 300px;
   display: flex;
   justify-content: center;
   align-items: flex-start;
   align-items: center;
 
 
}
.sup-info-3 img{
    width: 40px;
    margin-left: 10px;
}
.sup-info-3 h3{
    color: #fff;
    font-size: 1rem;
}
.sup-info-3 h3 span{
    color:var(--secondary-color);
    font-size: 1rem;
}
.sup-info-4 {
 
   width: 300px;
   display: flex;
   justify-content: center;
   align-items: flex-start;
   align-items: center;
 
}
.sup-info-4 a{
    background-color: var(--primary-color);
    padding: 7px 20px;
    border-radius: 3px;
    border: #fff solid 1px;
    color: #fff;
    text-decoration: none;
}
.slid-top{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}
.defult-btn{
    background-color: var(--primary-color);
 
    border: #fff solid 1px;
    color: #fff;
    text-decoration: none;
}
    .brands-section {
      width: 100%;
 
    }

    

    /* Swiper container */
    .car-brands-swiper {
      padding: 16px 8px 32px;
    }
 
    /* Slide style */
    .brand-card {
      background: radial-gradient(circle at top left, var(--primary-color), var(--secondary-color));
      padding: 18px 14px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 1px solid rgba(148, 163, 184, 0.25);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      cursor: pointer;
      height: 170px;
      width: 170px;
      border-radius: 50%;
      margin: 30px 0 30px 0;
    }

    .brand-card:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 22px 55px rgba(15, 23, 42, 0.9);
      border-color: rgba(248, 250, 252, 0.45);
    }

    .brand-logo {
      width: 130px;
      height: 130px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.1rem;
      text-transform: uppercase;
      background: radial-gradient(circle at 30% 0%, #e5e7eb, #9ca3af);
      color: #111827;
      box-shadow: 0 5px 10px rgba(15, 23, 42, 0.6);
    }

    .brand-name {
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .brand-country {
      font-size: 0.75rem;
      opacity: 0.6;
    }

    /* Swiper navigation buttons */
    .swiper-button-next,
    .swiper-button-prev {
      color: #e5e7eb;
      width: 34px;
      height: 34px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.8);
      border: 1px solid rgba(148, 163, 184, 0.5);
      box-shadow: 0 2px 10px rgba(15, 23, 42, 0.8);
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
      font-size: 16px;
      font-weight: 700;
    }

    /* Pagination dots */
    .swiper-pagination-bullet {
      background: rgba(148, 163, 184, 0.8);
      opacity: 1;
    }

    .swiper-pagination-bullet-active {
      background: var(--secondary-color);
      width: 18px;
      border-radius: 999px;
    }

    @media (max-width: 640px) {
      .brands-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .brands-title {
        font-size: 1.2rem;
      }
    }
/* Recently added */
.recently-add{
    padding: 80px 20px;
}
h2{
    color: var(--secondary-color);
}
.Branches{
    padding: 80px 20px;
}
  .recently-add  .card {
           transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        border-radius: 25px;
    }
      .recently-add  .card img{
           transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        border-radius: 25px;
    }
  .recently-add  .card:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 22px 55px rgba(15, 23, 42, 0.9);
      border-color: rgba(248, 250, 252, 0.45);
    }
      .cars-result  .card {
           transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        border-radius: 25px;
    }
      .cars-result  .card img{
           transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        border-radius: 25px;
    }
  .cars-result  .card:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 22px 55px rgba(15, 23, 42, 0.9);
      border-color: rgba(248, 250, 252, 0.45);
    }
.card-body h5{
    font-size: 0.8rem;
    font-weight: 900;

}
 .car-top-buttons{
    display: flex;
    justify-content: space-around;
    align-items: center;
    align-content: center;
 }
 
 .car-top-buttons .button{
    font-size: .5rem;
    padding: 5px;
    border-radius: 10px;
 
 
 }
 .price-option{
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    padding: 2px;
    max-height: 100px;
 }
 .price-option .card-text{
    align-self: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
 
 }
 .txt1{
     align-self: center;
    border-right: solid 3px var(--primary-color);
    padding: 10px;
 }
  .txt1 strong{
    color: var(--primary-color);
    
 }
   .txt1 span{
    color: var(--secondary-color);
    
 }
  .txt2{
    align-self: center;
    border-right: solid 3px var(--secondary-color);
    padding: 10px;
 }
   .txt2 strong{
    color: var(--primary-color);
    
 }
   .txt2 span{
    color: var(--secondary-color);
    
 }
 del{
    font-size: .5rem;
    color: #9ca3af;
 }
 .fav-icon{
    position: absolute;
    top: 10px;
    left: 10px;
    outline: none;
    border: none;
    background-color:yellow;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: row;
 }
 .fav-icon i{
    align-self: center;
    color:var(--primary-color);
    font-size: 1.2rem;
 }
 .Branches i{
    font-size: 2rem;
    color: var(--primary-color);
 }
 .Branches p{
    font-size: .8rem;
 }
 .Branches strong{
    color: var(--primary-color);
     font-size: 1rem;
 }
 .Branches .card{
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      border-radius: 25px;
    }
  .Branches  .card:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 22px 55px rgba(15, 23, 42, 0.9);
      border-color: rgba(248, 250, 252, 0.45);
    }
/* Contact */
.contact .list-frist li{
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
}
.contact .list-frist li strong{
    
    margin: 10px ;
    font-size: 2rem;
    align-self: center;
    color: var(--primary-color);
}
.contact .list-frist li p{
    
    margin: 10px ;
    font-size: 1rem;
    align-self: center;
    color: var(--secondary-color);
}
.social-links{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: 40px 0;
}
.social-links a{
    text-decoration: none;
    margin: 10px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
 
.social-links a:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 22px 55px rgba(15, 23, 42, 0.9);
      border-color: rgba(248, 250, 252, 0.45);
  }
.social-links a i{
    font-size: 2rem;
   
}
.Instagram{
    color: darkviolet;
}
.TikTok{
    color: rgb(230, 22, 15);
}
.YouTube{
    color: red;
}
.list-footer li{
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
}
.list-footer li strong{
    
    margin: 2px ;
    font-size: 1rem;
    align-self: center;
    color: var(--primary-color);
}
.list-footer li p{
     margin: 2px ;
    font-size: .8rem;
    align-self: center;
    color: var(--secondary-color);
}
.staticlist li a{
 font-size: .8rem;
}
iframe{
    width: 70%;
    height: 40vh;
    border-radius: 25px;
}
.footer{
    background-color:var(--secondary-color);
    border-radius: 25px 25px 0 0;
}
.footer h6,.footer h5{
    color: var(--primary-color);
}
.footxt{
    color: #fff;
}
.Sub-hero{
    margin-top: -20px;
    height: 50vh;
    background-color: #111827;
    position: relative;
}
.div-bg{
    background:url(../imgs/sub-hero.jpg);
    position: absolute;
    width: 100%;
    height: 50vh;
    top: 0;
    right: 0;
    opacity:0.3;
    z-index: 1;
}
.div-txt{
    position: absolute;
    top: 40vh;
    z-index: 2;
    display: flex;
    width: 100%;
    right: 0;
    padding: 0 40px;
}
.cars-search{
    margin: 30px 0 30px 0;
}
.cars-search input ,.cars-search select{
   font-size: .8rem;
}
.cars-details-top{
    padding: 40px 0 40px 0;
}
.cars-details-top a,.cars-details-top li{
    text-decoration: none;
    color: var(--secondary-color);
    font-size: .7rem;
    margin-bottom: 30px;
}
.cars-details-top h1{
    color: var(--primary-color);
}
.cars-details-body .card-img-top{
    height: 70vh;
    width: auto;
    object-fit: cover;
}
.defult-txt{
    color: var(--primary-color);
}
 .car-gallery {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-radius: 25px;

}

/* الصورة الكبيرة */
.car-gallery-main {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    background: var(--secondary-color);
}

.car-main-image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

/* الصور المصغرة */
.car-gallery-thumbs {
    margin-top: 0.5rem;
}

.car-thumb-btn {
    border: none;
    padding: 0;
    background: transparent;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
    border: 2px solid transparent;
}

.car-thumb-btn.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-color);
}

.car-thumb-img {
    display: block;
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

/* Hover effect */
.car-thumb-btn:hover {
    transform: translateY(-2px);
}

/* تأثير الإنيميشن */
.car-main-image.fade-out {
    opacity: 0;
    transform: scale(0.98);
}

.car-main-image.fade-in {
    opacity: 1;
    transform: scale(1);
}

/* موبايل: خلي الثمبنيلز تعمل Scroll أفقى */
@media (max-width: 576px) {
    .car-gallery-thumbs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.25rem;
    }

    .car-thumb-btn {
        flex: 0 0 auto;
    }
}

#carImagesModal .lightbox-prev,
#carImagesModal .lightbox-next {
    z-index: 1056;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.options-container{
    display: flex;
    justify-content: flex-start;
    margin:20px 5px;
    flex-wrap: wrap;
}
.btn-options{
    background-color: var(--primary-color);
    padding: 5px;
    color: var(--secondary-color);
    border-radius: 25px;
    border-left: groove 3px var(--secondary-color);
    box-shadow: var(--secondary-color) 5px 5px 5px;
    margin: 5px;
}
.btn-options i{
color: #fff;
}
.spec-card {
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff, #f7f7f9);
}

.spec-accordion-header {
    background: transparent;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.spec-accordion-header:not(.collapsed) {
    background: rgba(0, 0, 0, 0.02);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.spec-icon {
    font-size: 1.2rem;
    opacity: 0.9;
}

.spec-value {
    font-size: 0.9rem;
}

.color-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* تحسين شكل الـ accordion */
.accordion-item {
    border: none;
    border-bottom: 1px solid #eee;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    margin-left: 0.5rem;
}
.spec-card {
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff, #f7f8fa);

}

.spec-accordion-header {
    font-size: 1rem;
    padding: 1rem 0;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #eee;
}

.accordion-button {
    background: transparent;
    margin-right: 10px;
    display: flex;
    justify-content: space-around;
}
.accordion-button i{
     font-size: 1.5rem;
}
.accordion-button:not(.collapsed) {
    background: rgba(0,0,0,0.03);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding-top: 0.5rem;
}
.accordion-body li  {
    height: 50px;
}
.accordion-body li:last-child {
    border-bottom: none;
}
.color_div{
    width: 50px;
    height: 50px;
    border-radius: 50%;
     
    margin-right: 10px;
    opacity: 0.5;
}
.ch3{
    align-self: center;
    margin-top: 10px;
}
.x-prop{
    position: sticky;
    top: 0px;
}
.h4contact{
    color: var(--primary-color);
}
.financ ,.compa{
    font-size: .7rem;
}
.car-top{
    display: flex;
    justify-content: space-around;
    background-color: antiquewhite;
    height: 60px;
    align-items: center;
    align-content: center;
    border-radius: 20px;
    margin: 10px;
   
}
.car-top h5{
     color: var(--secondary-color);
     font-size: 1.4rem;
    
}
.floating-btn{
  position: fixed;
  z-index: 9999;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  border: 0;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  animation: floaty 2.6s ease-in-out infinite;
}

/* Back to top: أقصى أسفل يمين */
.back-to-top{
  right: 18px;
  bottom: 18px;
  background: #111;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

/* WhatsApp: أقصى أسفل يسار */
.whatsapp-btn{
  left: 18px;
  bottom: 18px;
  background: #25D366;
  color: #fff;
  animation: floaty 2.6s ease-in-out infinite, pulse 1.6s ease-in-out infinite;
}

.floating-btn i{
  font-size: 22px;
}

/* Hover */
.floating-btn:hover{
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}

/* show backToTop عندما يظهر */
.back-to-top.show{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@keyframes floaty{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.45), 0 12px 30px rgba(0,0,0,.18); }
  70%{ box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 12px 30px rgba(0,0,0,.18); }
  100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 12px 30px rgba(0,0,0,.18); }
}
.blog-content img { max-width: 100%; height: auto; }
.blog-content h2, .blog-content h3 { margin-top: 1.25rem; }
.blog-card { border-radius: 16px; overflow: hidden; }
.hover-shadow:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); transition: .2s; }
.blog-content h1,.blog-content h2,.blog-content h3 ,.blog-content h4 ,.blog-content h5 ,.blog-content h6{
    color: var(--primary-color);
}
.xlogin {
 
    object-fit: contain;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    padding: 5px;
    color: #fff;
    border: none;
    outline: none;
}
.xlogin img{
 
    object-fit: contain;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    padding: 5px;
    color: #fff;
    border: none;
    outline: none;
}
 
  .dropdown-menu li a{
    display: flex;
    justify-content:flex-start;
    align-items: center;
    margin: 5px;
    font-size: .8rem;
    font-weight: 900;
    color: var(--secondary-color);

 }
 .dropdown-menu li a span{
    margin: 4px;
    
 }
 .dropdown-menu li a i{
    font-size: 1.2rem;
    color: var(--primary-color);
    
 }
.xgallery{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

    flex-direction: row;
    overflow: auto;
}







/* Phone */
@media (max-width: 576px) {

    header nav .container{
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: space-around;
       
    }
    .hero{
        
        height: 60vh;
    }
    .car-slider{
       height: 60vh;
    }
    .slid-ifo-right{
       display: none;
    }
     .slid-ifo-left h2{
        padding: 0;
        margin: -10vh 0 0 0;
        font-size: 1.2rem;
    }
    .slid-ifo-left p{
        display: none;
    }
    .supslides-container {
    
        display: flex;
        justify-content:center;
        bottom: 26vh;
        align-items: center;
        align-content: center;
        padding-right: 40px;
        padding-left: 40px;
    }
    .supslides-container h3{
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    .supslides-container h3{
        font-size: 0.7rem;
        font-weight: 700;
        
    }
    .supslides-container h3 span{
        font-size: 0.6rem;
        font-weight: 900;
        padding-top: 20px;
    }
    .sup-info{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        margin: 0;
      
    }
     .sup-info-2{
         display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    
    }
     .sup-info-3{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
       
    }
     .sup-info-4{
        display: block;
        font-size: 0.5rem;
        font-weight: 700;
        padding-left: 5px;
    }
    .sup-info-4 a{
        display: block;
        font-size: 0.5rem;
        font-weight: 700;
         
        align-self: center;
    }
     .sup-info-4{
        display: none;
 
    }
    .discoveryourcar .container{
        margin: 0;
        padding: 0;
        text-align: center;
    }
    .xbton{
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    .xbton a{
        font-size: .8rem;
        margin: 5px;
    }
    .brands-section .container{
        padding: 0 0 0 5px;
    }
   .brand-card {
       padding: 2px 2px;
 
      gap: 10px;
 
      height: 100px;
      width: 100px;
      border-radius: 50%;
      margin: 30px 0 30px 0;
    }
    .brand-logo {
      width: 70px;
      height: 70px;
      border-radius: 50%;
 
    }
     .car-brands-swiper {
      padding: 16px 8px 32px;
    }
    .recently-add .container{
        padding: 0;
    }
    .recently-add{
        padding-bottom: 20px;
    }
    .blog{
        margin-bottom: 0;
    }
    .h4{
        font-size: .7rem;
        font-weight: 900;
        text-decoration: underline;
    }
    .defult-btn{
        font-size: .7rem;
    }
    .Branches .container{
        padding: 0;
    }
    .contact label{
        font-size: .7rem;
        font-weight: 900;
    }
    .xcontp{
                font-size: .7rem;

    }
    .social-links{
 
    margin: 40px 0;
}
.social-links a{
    
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    
}
 .social-links a i{
 font-size: 1.3rem;   
}  
.btn-outline-danger{
      font-size: .7rem;
}
.blog .container{
    padding: 0;
}
 .xfoot{
    flex-direction: column;
 }
 .whatsapp-btn{
    left: 20px;
 }
 .div-txt{
    padding: 0;
    margin: 0;
 
 }
 .div-txt p{
    font-size: .6rem;
    font-weight: 900;
 }
 .blog-content h1,.blog-content h2,.blog-content h3 ,.blog-content h4 ,.blog-content h5 ,.blog-content h6{
    font-size: .8rem;
    font-weight: 900;
}
.blog{
    padding: 20px;
}
.blog nav{
    font-size: .8rem;
}
.blog p{
    font-size: .6rem;
    font-weight: 700;
}
.blog ul{
    font-size: .6rem;
    font-weight: 700;
}
.compare h5{
     font-size: .6rem;
    font-weight: 700;
}
.compare td{
   text-align: center;
}
.compare th{
   text-align: center;
    font-size: .6rem;
    font-weight: 700;
}
.compare p{
   text-align: center;
    font-size: .6rem;
    font-weight: 700;
}
.table-responsive td{
    white-space: nowrap;
   font-size: .7rem;
    font-weight: 700;
}
.table-responsive th{
    white-space: nowrap;
       font-size: .8rem;
    font-weight: 700;
}
.color_div{
    width: 30px;
    height: 30px;
}
 .car-top h4{
    font-size: .8rem;
    font-weight: 900;
 }
  .car-top h5{
    font-size: .8rem;
    font-weight: 900;
 }
 .btn-options{
     font-size: .6rem;
    font-weight: 700;
    color: #fff;
    border: none;

 }
 .options-container{
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
 }
 .card-body p{
    font-size: .8rem;
 }
 .accordion-body{
    font-size: .7rem;
 }
 .description{
    margin-bottom: 20px;
 }
 .reviews .list-group strong{
     font-size: .6rem;
    font-weight: 700;
 }
 .xtyt{
    margin: 10px;
 }

 .ssss{
 
    margin: 0;
    padding: 0;
 }
 #mainNavbar{
    padding-top: 40px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    align-content: center;
 }
 .xnav{
    margin: 0;
    width: 100%;
    text-align: center;
    padding: 0;
 }
.xbtnlist{
    display: flex;
    justify-content: center;
}
}