: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 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 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 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 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 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 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 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 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.144);

    margin: 0 var(--um);

    width: var(--unit);

    min-height: 1200vh;

  }



  

/*/------------------ breadcrumb ------------/*/

.breadcrumb_Container{

  display: flex;

  justify-content: center;

  width: 100%;

  margin: 0;

}

.breadcrumb {

  display: flex;

  height: 60px;

  width: 100%;

  margin: 0 var(--um);

  box-sizing: border-box;

  background-color: white !important;

  margin-bottom: 0 !important;

  font-family: NouvelRRegular;

  flex-direction: row;

  align-items: center;

}

.breadcrumb a {

  font-family: 'NouvelRRegular';

  font-size: 13px;

  color: var(--black);

}

.breadcrumb svg{

  width: 26px;

  height: 10px;

  fill: currentcolor;

  color: var(--yellow);

  font-family: 'NouvelRBold';

}

/*/------------------header_image------------/*/

.page_headerTitle{

    width: var(--rn-width1);

    margin: 0 var(--um);

    box-sizing: border-box; 

    text-align: left;

  }

  .page_headerTitle .title {

    margin: 50px 0px 10px 0px;

    padding: 0px;

    text-align: center;

  }

  .page_headerTitle .title .title_text {

    font-size: 55px;

    font-family: NouvelRBold;

    margin: 0px;

    text-transform: uppercase;

    color: white;

    margin-top: -20px;

    line-height: 1;

    letter-spacing: 2px;

  }

  .page_headerTitle .title .subtitle_text{

    color: white;

    font-family: NouvelRRegular;

    font-size: 25px;

    letter-spacing: 1px;

  }

  .header_image {

    height: 530px;

    width: 100%;

    box-sizing: border-box;

    background-image: url(../img/header_images/ServiceApresvente.jpg);

    background-size: cover;

    background-repeat: no-repeat;

    background-position: center center;

    align-items: center;

    text-align: center;

    display: flex;

}



/*/------------- mainTitle ----------/*/

.page_headerTitle_container{

  display: flex;

    justify-content: center;

    width: 100%;

    margin: 40px 0;

}

.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: NouvelRRegular;

  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; /* Add a smooth transition for the zoom effect */

      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%;

    cursor: pointer;

  }

  .sevices_card .card2 .card2-img-overlay h3 {

      color: #ffffff;

      margin: 0;

  }



/*---------------black  and white buttons----------------*/
.rendez-vous-container{
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 30px 0px 40px 0;
  gap: 40px;
}
.rendez-vous{
    border: solid 1px var(--gray2);
    width: var(--rn-width4);
    padding: 20px;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.3s;
    background-color: var(--white);
    position: relative;
    color: var(--black);
    border: 1px solid var(--gray2);
} 
.rendez-vous p{
  font-size: 21px;
  font-family: 'RenaultGroupSemibold';
} 

.rendez-vous::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--black);
  z-index: 1;
  transition: width 0.5s;
}

.rendez-vous:hover::before {
  width: 100%;
}

.rendez-vous:hover p {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.rendez-vous:hover img {
  content: url(../img/icons/flecheWhite.svg);
  z-index: 1;
  position: relative;
}

.flesh-icone img {
  width: 20px;
  float: right;
  transition: content 0.3s;
}


/*---------------conduiser_en_toute_serenite-section3----------------*/

.conduiser_en_toute_serenite-section3 {

  width: var(--rn-width1);

  margin: 0 var(--um);

  box-sizing: border-box;

  display: flex;

  justify-content: space-between;

  align-items: center;

  background-color: #f7f7f7;

}

.conduiser_en_toute_serenite-section3-image{

  width: 48.5%;

  box-sizing: border-box;

}

.conduiser_en_toute_serenite-section3-image img{

    width: 100%;

}

.conduiser_en_toute_serenite-section3-text {

  width: 46%;

  box-sizing: border-box;

  margin-left: 5.5%;

}

.conduiser_en_toute_serenite-section3-text .title{

  font-family: 'NouvelRBold';

  font-size: 31px;

}

.conduiser_en_toute_serenite-section3-text .descr {

  font-family: 'NouvelRRegular';

  font-size: 14px;

  margin-bottom: 20px;

  margin-top: 5px;

}

.conduiser_en_toute_serenite-section3-btn {

  border: none;
  height: 46px;
  width: var(--rn-width4);
  box-sizing: border-box;
  background: black;
  color: white;
  font-family: 'RenaultGroupSemibold';
  font-size: 16px;
  transition: background-color 0.5s, color 0.5s;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;

}

.conduiser_en_toute_serenite-section3-btn:hover {

  background-color: var(--white);

  color: var(--black);

  border: 1px solid var(--black);

}



/*---------------- technologies -------------------*/

.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%;

}

.technologies_card .card3 .card-body .card-title {

  font-size: 18px;

  font-weight: 600;

  font-family: NouvelRBold;

  margin: 20px 0;

  color: black;

}  

.card-body svg{
  width: 24px;
  height: 14px;
  /* fill: var(--yellow); */
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
  color: var(--yellow);
  margin-top: 5px;
}

.technologies_card .card3 .card-body .card-text {

  font-size: 17px;

  font-family: NouvelRRegular;

  margin: 20px 0;

  color: black;

}

.technologies_card .card3 .card-body .btn {

  color: black;

  font-weight: 600;

  font-family: NouvelRBold;

}

.technologies_card .card3 hr {

  margin: 0;

  width: 70px;

  background-color: var(--yellow);

  border: none;

  height: 3px; 

}

.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;

}



 /*---------------backToTop-------------------*/

 .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: black;

  font-family: RenaultGroupSemibold;

  text-decoration: underline;

}

.backToTop svg{

  margin: auto;

  margin-bottom: -2px;

  margin-left: 10px;

}

















/*-----------------------------------------------------------------------------------*/

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

/*-----------------------------------------------------------------------------------*/

@media (min-width: 1440px) {

  .header_image {

    height: 500px !important;

  }

}

@media (min-width: 1024px) {

  .header_image {

    height: 345px;

  }

}



@media (min-width: 801px) {

  .cars-section-tablet{

    display: none;

  }

  #carousel2{

    display: none;

  }

  .owl-carousel3-container{

    display: none;

  }

}

/*------------------------------------*/

/*--------------- tablet -------------*/

/*------------------------------------*/
@media (max-width: 1120px) {
  /*---------------black  and white buttons----------------*/
  .rendez-vous {
    width: 40%;
  } 
}
@media (max-width: 800px) {

/*---------------breadcrumb---------------------*/

  .breadcrumb svg {

    width: 29px;

    height: 11px;

  }

  .breadcrumb a{

    font-size: 13px;

  }

/*---------------change the image of the header (tablet)---------------------*/

.header_image {

  height: auto;

}



/*-----------headerTitle -------------*/

.page_headerTitle .title .title_text {

  font-size: 34px;

}

.page_headerTitle .title .subtitle_text {

  font-size: 19px;

}

/*/------------- 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);

  }



/*---------------- conduiser_en_toute_serenite -------------------*/

  .conduiser_en_toute_serenite-section3-text .title {

    font-size: 22px;

    margin: 0;

  }

  .conduiser_en_toute_serenite-section3-text .descr {

    font-size: 11px;

  }

  .conduiser_en_toute_serenite-section3-btn {

    width: var(--rn-width6);

    font-size: 14px;

  }





/*---------------- services -------------------*/

  .gamme_Renault {

    margin-bottom: -40px;

  }

  .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;
    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-carousel .owl-nav {
    top: 50% !important;
  } 
  #carousel3.owl-carousel .owl-nav {
    top: 23% !important;
  } 



  #carousel2 .owl-dots,

  #carousel3 .owl-dots {

    display: none !important;

  }



  #carousel2 .owl-nav button.owl-prev span,

  #carousel3 .owl-nav button.owl-prev span {

    left: 2px !important;

    position: absolute;

    top: -18px;

    color: white;

    font-family: 'NouvelRRegular';


  }



  #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: 2px !important;

    position: absolute;

    top: -18px;

    color: white;

    font-family: 'NouvelRRegular';

  }



  .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;

  }



  #carousel2.owl-item,

  #carousel3.owl-item {

    width: auto; 

    margin-right: 10px; 

  }



  #carousel2 .owl-item.active,

  #carousel3 .owl-item.active,

  #carousel2 .owl-item.cloned,

  #carousel3 .owl-item.cloned {

    width: auto !important;

    margin-right: 10px; 

  }



  .sevices_card,

  .technologies_card {

    width: 100% !important; 

    /*max-width: var(--rn-width2) !important;*/

    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 (blog) -------------------*/

  .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;

    color: black;

  }



  .technologies_card .card3 .card-body .card-title {

    font-size: 16px;

    text-align: left;

    margin-bottom: 18px;

    color: black;

  }



}





/*------------------------------------*/

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

/*------------------------------------*/

@media (max-width: 600px) {

/*---------------change the image of the header (phone)---------------------*/

.breadcrumb svg {

  width: 24px;

  height: 9px;

}

.breadcrumb a{

  font-size: 11px;

}



/*---------------change the image of the header (phone)---------------------*/

  .header_image {

    background-image: url(../img/header_images/mobile/serviceVente.jpg);

  }



/*---------------show and hide elements---------------------*/

  .owl-carousel2-container{

    display: none;

  }

  .owl-carousel3-container{

    display: none;

  }

  #carousel2{

    display: none;

  }

  .technologies{

    display: none;

  }

  .technologies_card_hide{

    display: block;

  }



/*---------------black and white buttons----------------*/

  .rendez-vous-container {

    display: flex;

    flex-direction: column;

  }

  .appele p {

    font-size: 17px;

  }

  .rendez-vous p {

    font-size: 17px;

  }

  .flesh-icone {

    width: auto;

  }

  .rendez-vous{

    height: 102px;

    margin: 5px var(--um);

    width: 93%;

}



/*----------- headerTitle -------------*/

.page_headerTitle_container{

  display: flex;

  width: 100%;

  margin: 40px 0;

  justify-content: flex-start;

}

  .page_headerTitle {

    width: auto;

    margin-top: 250px;

  }

  .page_headerTitle .title .title_text {

    font-size: 27px;

    text-align: left;

}

  .page_headerTitle .title .subtitle_text {

    font-size: 13px;

    text-align: left;

    width: 279px;

  }



/*-----------conduiser_en_toute_serenite-------------*/

  .conduiser_en_toute_serenite-section3-text {

    width: 100%;

    margin-left: 0;

  }

  .conduiser_en_toute_serenite-section3-image {

    width: 100%;

  }

  .conduiser_en_toute_serenite-section3 {

    flex-direction: column-reverse;

  }

  .conduiser_en_toute_serenite-section3-btn {

    width: 100%;

    margin-bottom: 20px;

  }

  .conduiser_en_toute_serenite-section3-text .title {

    font-size: 22px;

    margin: 10px 0;

  }



/*-----------.mainTitle .title -------------*/

  .mainTitle .title {

    font-size: 20px;

    margin-top: 0px;

  }

  .row_1i {

    margin-bottom: 0px;

    margin-top: 15px;

  }





/*------services and technologie---------*/

  .sevices_card{

    width: auto !important;

    margin-bottom: 12px;

  }

  .technologies_card {

    width: auto !important;

    margin-bottom: 25px;

  }

  .mainTitle .reverstitle {

    font-size: 19px;

    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: black;

    font-family: 'RenaultGroupSemibold';

  }







/*------back to top---------*/

  .backToTop a {

    color: black;

    font-size: small;

  }



}



@media (max-width: 375px) {

  .rendez-vous, .appele {

    height: 102px;

    margin: 5px var(--um);

    width: 343px;

  }

}



@media (max-width: 320px) {



  /*-----------headerTitle -------------*/

  .page_headerTitle {

    width: auto;

    margin-top: 250px;

  }

  .page_headerTitle .title .title_text {

    font-size: 22px;

    text-align: left;

  }

  .page_headerTitle .title .subtitle_text {

    font-size: 12px;

    text-align: left;

    width: 279px;

  }

  /*-----------end -------------*/



  .rendez-vous, .appele {

    height: 94px;

    margin: 3px var(--um);

    width: 288px;

}

}







@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;

  }

}

