:root {
  --container-width: 1216px;
  --unit: 72px;
  --um: 16px;
  --rn-width6: calc(2 * var(--unit) + 2 * var(--um));
  --rn-width4: calc(3 * var(--unit) + 4 * var(--um));
  --rn-width3: calc(4 * var(--unit) + 6 * var(--um));
  --rn-width2: calc(6 * var(--unit) + 10 * var(--um));
  --rn-width1: calc(12 * var(--unit) + 22 * var(--um));

  --cardHeight: 150px;

  --yellow: #ede04a;
  --lightYellow: #f8eb4c;
  --white: #ffffff;
  --gray1: #dad9d7;
  --gray2: #bbbbbb;
  --gray3: #898a8d;
  --black: #000000;
}

@font-face {
  font-family: "NouvelRBold";
  src: url("../fonts/NouvelRBold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "NouvelRRegular";
  src: url("../fonts/NouvelRRegular.ttf") format("truetype");
}

@font-face {
  font-family: "RenaultGroupSemibold";
  src: url("../fonts/RenaultGroupSemibold.otf") format("truetype");
  font-weight: 500;
}

.tablet {
  display: none;
}

.mobile {
  display: none;
}

a{
  text-decoration: none;
}

@media (max-width: 800px) {
  :root {
    --unit: 64px;
    --um: 16px;

    --cardHeight: 100px;


    --rn-width4: calc(2 * var(--unit) + 2 * var(--um));
    --rn-width2: calc(4 * var(--unit) + 6 * var(--um));
    --rn-width2-5: calc(3 * var(--unit) + 4 * var(--um));
    --rn-width1-2: calc(5 * var(--unit) + 8 * var(--um));
    --rn-width1: calc(8 * var(--unit) + 14 * var(--um));
  }
  .tablet {
    display: flex !important;
  }

  .desktop {
    display: none !important;
  }
  .mobile {
    display: none !important;
  }
}
@media (max-width: 343px) {
  :root {
    --unit: 94px;
    --um: 16px;

    --cardHeight: 70px;


    --rn-width3: var(--unit);
    --rn-width1-5: calc(2 * var(--unit) + 2 * var(--um));
    --rn-width1: calc(3 * var(--unit) + 44 * var(--um));
  }
  .tablet {
    display: none !important;
  }

  .desktop {
    display: none !important;
  }

  .mobile {
    display: flex !important;
  }
}

body {
  margin: 0;
  padding: 0;
  min-height: 70vh;
}

.main_container {
}

.row_i {
  position: absolute;
  width: 100%;
  top: 150px;
}
.row_6i {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 40px 0;
}
.card_s6 {
  box-shadow: 0px 0px 4px 0px var(--black);
  border-radius: 5px;
  border: solid 5px var(--gray1);
  height: var(--cardHeight);
  width: var(--rn-width6);
  margin: 0 var(--um);
  box-sizing: border-box;
}
.row_4i {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 40px 0;
}
.card_s4 {
  box-shadow: 0px 0px 4px 0px var(--black);
  border-radius: 5px;
  border: solid 5px var(--gray2);
  height: var(--cardHeight);
  width: var(--rn-width4);
  margin: 0 var(--um);
  box-sizing: border-box;
}
.row_3i {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 40px 0;
  flex-wrap: wrap;
}
.card_s3 {
  box-shadow: 0px 0px 4px 0px var(--black);
  border-radius: 5px;
  border: solid 5px var(--gray3);
  height: var(--cardHeight);
  width: var(--rn-width3);
  margin: 0 var(--um);
  box-sizing: border-box;
}
.row_2i {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 40px 0;
}
.card_s2 {
  box-shadow: 0px 0px 4px 0px var(--black);
  border-radius: 5px;
  border: solid 5px var(--gray2);
  height: var(--cardHeight);
  width: var(--rn-width2);
  margin: 0 var(--um);
  box-sizing: border-box;
}
.row_2-5i {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 40px 0;
}
.card_s2-5 {
  box-shadow: 0px 0px 4px 0px var(--black);
  border-radius: 5px;
  border: solid 5px var(--gray2);
  height: var(--cardHeight);
  width: var(--rn-width2);
  margin: 0 var(--um);
  box-sizing: border-box;
}
.row_1-2i {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 40px 0;
}
.card_s1-2 {
  box-shadow: 0px 0px 4px 0px var(--black);
  border-radius: 5px;
  border: solid 5px var(--black);
  height: var(--cardHeight);
  width: var(--rn-width1);
  margin: 0 var(--um);
  box-sizing: border-box;
}
.row_1i {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 40px 0;
}
.card_s1 {
  box-shadow: 0px 0px 4px 0px var(--black);
  border-radius: 5px;
  border: solid 5px var(--black);
  height: var(--cardHeight);
  width: var(--rn-width1);
  margin: 0 var(--um);
  box-sizing: border-box;
}
.row_1-5i {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 40px 0;
}
.card_s1-5 {
  box-shadow: 0px 0px 4px 0px var(--black);
  border-radius: 5px;
  border: solid 5px var(--black);
  height: var(--cardHeight);
  width: var(--rn-width1-5);
  margin: 0 var(--um);
  box-sizing: border-box;
}

.guide_path {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: center;
  position: relative;
  background-color: transparent;
  min-height: 200vh;
}

.unit1 {
  height: 100%;
  background-color: rgba(129, 230, 255, 0.233);
  margin: 0 var(--um);
  width: var(--unit);
  min-height: 1200vh;
}


  

/*---------------- technologies -------------------*/
.card-body svg{
  width: 24px;
  height: 14px;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
  color: var(--yellow);
  margin-top: 5px;
}
.technologies{
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 40px 0;
}
.technologies_card_hide{
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 40px 0;
  /*flex-wrap: wrap;*/
}
.technologies_card{
    width: var(--rn-width3);
    margin: 0 var(--um);
    box-sizing: border-box;
    font-family: NouvelRBold;
}
.technologies_card .card3 .card-img-top {
  width: 100%;
}
.card-body{
  margin-top: 23px;
}
.technologies_card .card3 .card-body .card-title {
  font-size: 18px;
  font-weight: 600;
  font-family: NouvelRBold;
}    
.technologies_card .card3 .card-body .card-text {
  font-size: 17px;
  font-family: NouvelRRegular;
  margin: 12px 0;
}
.technologies_card .card3 .card-body .btn {
  color: var(--black);
  font-weight: 600;
  font-family: NouvelRBold;
}
.technologies_card .card3 hr {
  margin: 0;
  width: 70px;
  background-color: var(--yellow);
  border: none;
  height: 2px; 
}
.card3 .card-body > div {
  margin-top: auto; 
  display: flex;
}
.card3 .card-body > div a {
  margin-right: 15px; 
}
.card3 {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card3 .card-body {
  flex-grow: 1; 
  display: flex;
  flex-direction: column;
}

/*------------ page titles -----------------*/
.mainTitle{
  width: var(--rn-width1);
  margin: 0 var(--um);
  box-sizing: border-box; 
  text-align: center;
  font-family: NouvelRBold;
}
.mainTitle button{
  background-color: var(--black);
  color: var(--white);
  padding: 0px 22px;
  font-weight: bold;
  font-size: 16px;
  height: 46px;
  font-family: NouvelRBold;
  border: none;
  transition: background-color 0.5s;
  cursor: pointer;
}
.mainTitle button:hover{
  background-color: var(--yellow);
}
.carousel_title .logo_in_carousel {
  width: 22% !important;
}

/*/------------- mainTitle ----------/*/
.mainTitle{
  margin: 0 var(--um);
  box-sizing: border-box; 
  text-align: center;
  font-family: NouvelRBold;
}
.mainTitle .reverstitle {
  font-size: 40px;
  font-weight: bold;
  font-family: NouvelRBold;
  margin-top: 14px;
}
.mainTitle .title {
  font-size: 40px;
  font-weight: bold;
  font-family: NouvelRBold;
  margin-bottom: 14px;
}
.mainTitle .title.exeption {
  margin-top: 0px;
}
.mainTitle .semititle {
  font-family: 'RenaultGroupSemibold';
  margin-bottom: 20px;
  color: var(--gray3);
}

/*---------------- services -------------------*/
.sevices_card_hide{
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 40px 0;
  /*flex-wrap: wrap;*/
}
.sevices_card{
  width: var(--rn-width4);
  margin: 0 var(--um);
  box-sizing: border-box;
  font-family: NouvelRBold;
}
.card2 {
    position: relative;
    overflow: hidden; /* Ensure overflow is hidden to contain the zoom effect */
}
.sevices_card .card2 .card2-img.services {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.sevices_card .card2:hover .card2-img.services {
    transform: scale(1.1); /* Adjust the scale factor for the zoom effect */
}
.sevices_card .card2 .card2-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  text-align: left;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
  width: 89%;
}
.sevices_card .card2 .card2-img-overlay h3 {
    color: #ffffff;
    margin: 0;
}

/*------------ queRecherchez_vous -----------------*/
.queRecherchez_vous{
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  border: solid 1px var(--gray1);
  width: var(--rn-width6);
  margin: 0 var(--um);
  box-sizing: border-box;
  justify-content: center;
  font-family: NouvelRBold;
  color: var(--black) !important;
}
.queRecherchez_vous {
  width: var(--rn-width6);
  margin: 0 var(--um);
  cursor: pointer;
}
.queRecherchez_vous:hover{
  border: solid 2px var(--yellow);
}
.queRecherchez_vous .icone{
  width: 30px;
  margin: 14px
}
.queRecherchez_vous .card_s6_title {
  text-align: left;
  font-family: NouvelRBold;
  font-size: 14px;
}

/*---------------Gamme renault-------------------*/
.gamme_Renault{
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 4px 0;
}
.vehicule_type_container{
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 40px 0;
}
.vehicule_type{
  width: var(--rn-width4);
  margin: 0 var(--um);
  box-sizing: border-box; 
  text-align: center;
  align-items: center;
  font-family: NouvelRBold;
}
.vehicule_type .type_button1, .vehicule_type .type_button2 {
  background: transparent;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-family: 'NouvelRRegular';
}
.vehicule_type .type_button1:hover, .vehicule_type .type_button2:hover {
  font-family: 'NouvelRBold';
}
.vehicule_type .type_button1.active, .vehicule_type .type_button2.active {
  border-bottom: 2px solid var(--yellow);
  font-family: 'NouvelRBold';
  color: var(--black);
}

/*---------------cars_card-------------------*/
.all_cars{
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0;
  flex-wrap: wrap;
  gap: 45px 0;
}
.todispear{
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 40px 0;
}
.cars-section1, .cars-section2{
  width: var(--rn-width1);
  margin: 0 var(--um);
  box-sizing: border-box;
}
.card-title {
  font-family: 'NouvelRBold';
  margin: 13px 0;
}
.cars_card {
  width: 30%;
  margin: 0 var(--um);
  box-sizing: border-box;
  font-family: NouvelRBold;
}
.showMorecarsBTN{
  display: none;
}
.cars_card .card-img-top{
  width: 100%;
}
.cars_card .card-text {
  font-family: NouvelRRegular;
  margin-top: -2px;
  margin-bottom: 10px;
}
.cars_card .cardButton {
  color: var(--black);
  border-bottom: 2px solid var(--yellow);
  font-weight: 600;
}
.cars_card .cardButton:hover {
  color: var(--black);
  border-bottom: 2px solid var(--black);
  font-weight: 600;
}
.hybrid {
  margin-top: -52px;
}
.cars_card .hybrid .hybrid_text {
  color: #828282;
  font-family: 'NouvelRRegular';
  margin-bottom: 1px;
  font-size: 14px;
}
.cars_card .hybrid .hybrid_full {
  border: 2px solid #0086cf;
  color: #0086cf;
  text-align: left;
  display: inline;
  padding: 5px 6px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 12px;
}

.cars-section1, .cars-section2 {
  display: none;
}

.cars-section1.active, .cars-section2.active {
  display: block;
}
/*---------------carousel-------------------*/
.owl-carousel {
  display: flex;
  position: relative;
}

.owl-item {
  width: 100%;
}

.item img {
  width: 100%;
  height: auto;
}

.owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #ffffff;
}
.owl-dots .owl-dot span {
  width: 86px;
  height: 4px;
  margin: 5px 7px;
  background: #d6d6d688;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px;
}
.owl-dots{
  position: absolute;
  bottom: 50px;
  width: 100%;
  z-index: 1;
}

.owl-carousel.owl-loaded {
  display: block;
  text-align: center;
  align-items: center;
}

.owl-carousel .owl-nav {
  position: absolute;
  top: 37%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 0;
  font-size: 70px;
  color: #fff;
  height: 5px;
}
.owl-nav button.owl-prev span {
  position: absolute;
  bottom: 37px;
  left: 14px;
}
.owl-nav button.owl-next span {
  position: absolute;
  bottom: 29px;
  right: 14px;
}

.owl-nav button.owl-prev, .owl-nav button.owl-next {
  background: #000000 !important;
  width: 40px;
  height: 100px;
  font-family: 'NouvelRRegular' !important;
  font-size: 36px !important;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0!important;
  font: inherit;
  margin-bottom: 0px !important; 
  position: sticky;
}

.owl-carousel .owl-nav button {
  background: 0 0;
  color: #fff; /* Set the color for the navigation arrows */
  border: none;
  padding: 0!important;
  font: inherit;
}

.owl-carousel .owl-nav button::before {
  vertical-align: middle;
}

.carousel_title {
  position: fixed;
  top: 13%;
  left: 8%;
  /* transform: translateX(-50%); */
  text-align: center;
  color: #fff;
  z-index: 100;
  text-align: left;
}
.carousel_title h1{
  font-weight: 600px !important;
  font-family: NouvelRBold;
  font-size: 45px;
  margin: 0px;
  text-transform: uppercase;
}
.carousel_title h3 {
  font-family: NouvelRBold;
  margin: 0px 0 10px 0px;
  font-size: 23px;
  width: 77%;
}
.carousel_title .btn1 {
  height: 46px;
  background-color: var(--white);
  color: var(--black);
  font-weight: 600;
  border: none;
  padding: 0 39px;
  font-family: NouvelRBold;
  transition: background-color 0.5s, color 0.5s;
  cursor: pointer;
}
.carousel_title .btn2 {
  height: 46px;
  background-color: rgba(255, 255, 255, 0);
  color: var(--white);
  font-weight: 600;
  border: 1px solid rgb(233, 233, 233);
  padding: 0 20px;
  font-family: NouvelRBold;
  transition: background-color 0.5s, color 0.5s;
  cursor: pointer;

}
.carousel_title .btn2:hover{
  color: var(--black);
  background-color: var(--white);
}
.carousel_title .btn1:hover{
  background-color: var(--yellow);
}

/*---------------backToTop-------------------*/
.backToTop_container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 10px 0;
}
.backToTop{
  width: var(--rn-width1);
  margin: 0 var(--um);
  box-sizing: border-box; 
  text-align: center;
  align-items: center;
  font-family: RenaultGroupSemibold;
}
.backToTop a{
  color: var(--black);
  font-family: RenaultGroupSemibold;
  text-decoration: underline;
}
.backToTop svg{
  margin: auto;
  margin-bottom: -2px;
  margin-left: 10px;
}


/*-----------------------------------------------------------------------------------*/
/*---------------------------------- Responsive -------------------------------------*/
/*-----------------------------------------------------------------------------------*/


@media (max-width: 1024px) {
  .gamme_Renault {
      margin-bottom: -40px;
  }
  .carousel_title h1 {
    font-size: 44px;
  }
  .carousel_title h3 {
    font-size: 21px;
  }
}

@media (max-width: 1136px) {
  .carousel_title h1 {
    font-size: 44px;
  }
  .carousel_title h3 {
    font-size: 21px;
  }
}


@media (min-width: 801px) {
  .cars-section-tablet{
    display: none;
  }
  #carousel2{
    display: none;
  }
  .owl-carousel3-container{
    display: none;
  }
}
/*------------------------------------*/
/*--------------- tablet -------------*/
/*------------------------------------*/
@media (max-width: 800px) {

  .gamme_Renault {
      margin-bottom: -40px;
  }

/*/------------- main carousel ----------/*/
  .owl-carousel .owl-item img {
    display: block !important;
  }
  .carousel_title .logo_in_carousel {
    width: 22% !important;
  }
  .carousel_title h1 {
    font-size: 36px;
    width: 70%;
  }
  .carousel_title {
    top: 15%;
    width: 100%;
  }
  .carousel_title .btn1 {
    margin-right: 30px;
  }

  .carousel_title h3 {
    font-family: 'RenaultGroupSemibold';
    margin: 9px 0px;
    font-size: 20.3px;
    margin-bottom: 18px;
  }
/*/------------- mainTitle ----------/*/
  .mainTitle{
    margin: 0 var(--um);
    box-sizing: border-box; 
    text-align: center;
    font-family: NouvelRBold;
  }
  .mainTitle .title {
    font-size: 29px;
    font-family: NouvelRBold;
    margin-top: 14px;
  }
  .mainTitle .reverstitle {
    font-size: 29px;
    font-family: NouvelRBold;
    margin-top: 0px;
    margin-bottom: -15px;
  }
  .mainTitle .title.exeption {
    margin-top: 0px;
  }
  .mainTitle .semititle {
    font-family: RenaultGroupSemibold;
    margin-bottom: 7px;
    color: var(--gray3);
  }

/*--------------- cars cards -------------*/
  .cars-section1, .cars-section2 {
    width: auto !important;
    margin: 0;
    box-sizing: border-box;
  }
  .cars_card {
    width: 45%;
    margin: 0 var(--um);
  }
  .cars-section-tablet{
    width: var(--rn-width1);
    margin: 0 var(--um);
    box-sizing: border-box;
  }
  .vehicule_type_container, .todispear{
    display: none;
  }
  .cars-section1, .cars-section2 {
    display: block;
  }
  .collapsing {
    transition: height 0.2s ease;
  }
  
  .collapse {
    display: none;
    transition: display 0s ease-out, height 0.2s ease;
  }
  
  .collapse.show{
    display: block;
  }
  .btn.btn-link.collapsed, .btn.btn-link {
    background: transparent;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 1px solid var(--gray2);
    border-top: 1px solid var(--gray2);
    cursor: pointer;
    width: 100%;
    font-weight: 100;
    text-align: left;
    display: flex;
    align-items: center;
    padding: 10px 0;
  }
  .btn.btn-link {
    border-bottom: 2px solid var(--yellow);
    font-family: 'NouvelRBold' !important;
    font-weight: 600;
    border-top: 0px;
  }

    .btn.btn-link.collapsed .rotate-icon{
      transform: rotate(0deg);
    }
    .rotate-icon {
      transition: transform 0.5s ease-in-out; 
      margin-left: auto; 
      display: flex; 
      transform: rotate(180deg);
    }

  .row_3i {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 40px 0;
    flex-direction: row;
  }
  .mainTitle button {
    padding: 0px 46px;
  }

/*---------------- services -------------------*/
  .sevices_card_hide {
    display: none;
  }

  #carousel2, #carousel3 {
    width: 100%;
    margin-left: 0;
  }
  #carousel2 .owl-nav button.owl-prev,
  #carousel2 .owl-nav button.owl-next,
  #carousel3 .owl-nav button.owl-prev,
  #carousel3 .owl-nav button.owl-next {
    background-color: transparent !important;
  }

  #carousel2.owl-carousel .owl-nav,
  #carousel3.owl-carousel .owl-nav {
    position: absolute;
    top: 70% !important;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 0 !important;
    font-size: 39px !important;
    color: #000 !important;
    height: 20px !important;
    align-items: center;
  }

  #carousel2 .owl-dots,
  #carousel3 .owl-dots {
    display: none !important;
  }

  #carousel2 .owl-nav button.owl-prev span,
  #carousel3 .owl-nav button.owl-prev span {
    left: -15px !important;
    font-family: RenaultGroupSemibold;
  }

  #carousel3 .owl-nav button.owl-prev span,
  #carousel3 .owl-nav button.owl-next span {
    font-family: RenaultGroupSemibold;
    bottom: 204px;
  }

  #carousel2 .owl-nav button.owl-next span,
  #carousel3 .owl-nav button.owl-next span {
    right: -15px !important;
  }

  .sevices_card .card2 .card2-img.services {
    height: inherit;
  }

  .owl-carousel2-container,
  .owl-carousel3-container {
    max-width: var(--rn-width1);
    margin: 0 var(--um);
    box-sizing: border-box;
    overflow: hidden;
   
  }

  #carousel2 .owl-stage,
  #carousel3 .owl-stage {
    display: flex;
    justify-content: center;
    overflow: hidden; /* Ensure content is hidden when it overflows */
  }

  #carousel2.owl-item,
  #carousel3.owl-item {
    width: auto; /* Set the width to auto to allow responsiveness */
    margin-right: 10px; /* Adjust margin as needed */
  }

  #carousel2 .owl-item.active,
  #carousel3 .owl-item.active,
  #carousel2 .owl-item.cloned,
  #carousel3 .owl-item.cloned {
    width: auto !important;
    margin-right: 10px; /* Adjust margin as needed */
  }

  .sevices_card,
  .technologies_card {
    width: 100% !important; /* Use percentage-based width */
    max-width: var(--rn-width2) !important; /* Set a max-width if needed */
    box-sizing: border-box !important;
  }


  #carousel2 .owl-item, #carousel2 .owl-item, #carousel3 .owl-item {
    width: auto !important;
    margin-right: 40px !important;
    margin-left: -14px !important;
  }

/*---------------- tecnologie -------------------*/
  .technologies_card_hide{
    display: none;
  }
  .technologies_card .card3 .card-img-top {
    width: 100%;
    height: inherit;
  }

  .technologies_card .card3 .card-body .card-text {
    font-size: 15px;
    text-align: left;
  }

  .technologies_card .card3 .card-body .card-title {
    font-size: 16px;
    text-align: left;
    margin-bottom: 18px;
  }

}


/*------------------------------------*/
/*--------------- phone1 -------------*/
/*------------------------------------*/

@media (max-width: 659px) {
  .carousel_title h1 {
    font-size: 32px;
  }
  .carousel_title h3 {
    font-size: 14.3px;
  }
  .row_6i {
    flex-wrap: wrap;
    margin-top: 0px;
    gap: 25px;
  }
  .queRecherchez_vous {
    margin: 0;
  }
}

@media (max-width: 425px) {
  .owl-carousel2-container{
    display: none;
  }
  .owl-carousel3-container{
    display: none;
  }
  #carousel2{
    display: none;
  }
  .technologies{
    display: none;
  }
  .technologies_card_hide{
    display: block;
  }

/*/------------- main carousel ----------/*/
  .owl-dots {
    bottom: 15px;
  }
  .carousel_title {
    top: 52%;
    width: 90%;
}
  .owl-dots .owl-dot span {
    width: 74px;
    height: 3px;
  }
  .carousel_title h1 {
    font-size: 31px;
    width: 100%;
}
.carousel_title .logo_in_carousel {
  width: 57% !important;
}
  .carousel_title h3 {
    font-size: 14.3px;
    margin: 0px 0px;
    margin-bottom: 8px;
    width: 90%;
  }
  .carousel_title .btn1 {
    padding: 0px 6px;
    margin-right: 10px;
  }
  .carousel_title .btn2 {
    padding: 0px 10px;
  }
  .owl-carousel .owl-nav {
    display: none;
  }

/*-----------.mainTitle .title -------------*/
  .mainTitle .title {
    font-size: 20px;
    margin-top: 0px;
  }
  .row_1i {
    margin-bottom: 0px;
    margin-top: 15px;
  }
/*-------queRecherchez_vous---------*/
  .row_6i {
    flex-wrap: wrap;
    margin-top: 0px;
    gap: 25px;
  }
  .queRecherchez_vous {
    width: 40%;
  }

/*-------cars cards---------*/  
  .cars_card {
    width: 100%;
    margin: 10px 0px;
  }
  .cars_card .hybrid .hybrid_full {
    padding: 5px 11px;
    font-size: 12px;
    font-family: 'NouvelRBold';
  }
  .cars_card .hybrid .hybrid_text {
    font-size: 15px;
    margin-top: 22px;
    margin-bottom: 7px;
    font-family: 'NouvelRRegular';
  }
  .cars_card .card-title {
    font-family: 'NouvelRBold';
    font-size: 18px;
    margin: 15px 0px 0px 0px;
  }
  .cars_card .card-text {
    font-family: NouvelRRegular;
    margin: 10px 0px 10px 0px;
  }
  .cars_card .cardButton {
    font-size: 13px;
  }
  .technologies_card .card3 .card-body .card-title {
    margin-top: 14px;
  }
  /*--- to show just 3 cars ---*/
  .cars-section1 .cars_card, .cars-section2 .cars_card {
    display: none;
  }
  .cars-section2 .cars_card:nth-child(-n+3) {
    display: block;
  }
  .cars-section1 .cars_card:nth-child(-n+3) {
    display: block;
  }
  .showMorecarsBTN{
    display: block;
    background-color: transparent;
    border: 1px solid var(--black);
    color: var(--black);
    font-weight: bold;
    font-size: 16px;
    height: 46px;
    font-family: NouvelRBold;
    padding: 0px;
    width: -webkit-fill-available;
  }
  .row_3i {
    margin: 10px 0;
  }
  .mb-0{
      margin: 0px 0px;
  }
  .gamme_Renault {
    margin-bottom: 0px;
  }


/*------services and technologie---------*/
  .sevices_card{
    width: auto !important;
    margin-bottom: 12px;
  }
  .technologies_card {
    width: auto !important;
    margin-bottom: 25px !important;
  }
  .mainTitle .reverstitle {
    font-size: 19px !important;
    width: 215px;
    margin: auto;
  }
  .mainTitle .semititle {
    font-size: 12px;
  }
  .sevices_card_hide, .technologies_card_hide {
    display: block;
    margin-top: 20px;
  }
  .technologies_card .card3 .card-body .card-text {
    font-size: 14px;
    text-align: left;
  }
  .technologies_card .card3 .card-body .btn {
    color: var(--black);
    font-family: 'RenaultGroupSemibold';
  }

/*------buttons---------*/
  .mainTitle button {
    padding: 0px;
    width: -webkit-fill-available;
  } 

/*------back to top---------*/
  .backToTop a {
    color: var(--black);
    font-size: small;
  }

}



@media (max-width: 375px) {
  .carousel_title {
    top: 44%;
    width: 90%;
}
  .owl-dots {
    bottom: 2px;
}
}

@media (max-width: 320px) {
.owl-dots {
  /* bottom: 4px; */
  display: none;
}

  .carousel_title h1 {
    font-size: 26px;
}
.carousel_title h3 {
  font-size: 13.3px;
}
  .queRecherchez_vous .card_s6_title {
    text-align: left;
    font-family: NouvelRBold;
    font-size: 10px;
  }
  
}


@media (max-width: 425px) {
  :root {
    --unit: 94px;
    --um: 16px;

    --cardHeight: 70px;


    --rn-width3: var(--unit);
    --rn-width1-5: calc(2 * var(--unit) + 2 * var(--um));
    --rn-width1: calc(3 * var(--unit) + 44 * var(--um));
  }
  .tablet {
    display: none !important;
  }

  .desktop {
    display: none !important;
  }

  .mobile {
    display: flex !important;
  }
}






/*.container-dark-Light {
  display: flex;
  justify-content: flex-end;
  padding: 20px;
  position: fixed;
  top: 835px;
  right: 5px;
  z-index: 1000;
}

.toggle {
  background-color: rgb(0, 1, 41);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 0 50px 20px rgba(0, 0, 0, 0.1);
  line-height: 1;
}

.input {
  display: none;
}

.icon {
  grid-column: 1 / 1;
  grid-row: 1 / 1;
  transition: transform 500ms;
}

.icon--moon {
  transition-delay: 200ms;
  color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon--sun {
  transform: scale(0);
  color: #ede04a;
  display: flex;
  justify-content: center;
  align-items: center;
}

#switch:checked + .icon--moon {
  transform: rotate(360deg) scale(0);
}

#switch:checked ~ .icon--sun {
  transition-delay: 200ms;
  transform: scale(1) rotate(360deg);
}*/

