: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.233);
    margin: 0 var(--um);
    width: var(--unit);
    min-height: 1200vh;
  }
    
  
  
/*/------------------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/Concessionnaires.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    align-items: center;
    text-align: center;
    display: flex;
}

/*/------------------ 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;
}
.breadcrumb svg{
  width: 26px;
  height: 10px;
  fill: currentcolor;
  color: var(--yellow);
  font-family: 'NouvelRBold';
}
  
/*/------------- mainTitle ----------/*/
  .mainTitle{
      margin: 0 var(--um);
      box-sizing: border-box; 
      text-align: center;
      font-family: NouvelRBold;
    }
    .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;
    }
  
/*---------------- 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;
    gap: 45px;
}
  .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: 18px 0;
  }
  .technologies_card .card3 .card-body .card-text {
    font-size: 17px;
    font-family: NouvelRRegular;
    margin: 13px 0;
  }
  .technologies_card .card3 .card-body .btn {
    color: black;
    font-weight: 600;
    font-family: NouvelRBold;
  }    
  .card-local svg{
    margin-right: 8px;
  }
  .card-tele svg{
    margin-right: 8px;
  }
  .card-local{
    font-size: 17px;
    font-family: NouvelRRegular;
    margin: 3px 0;
  }
  .card-tele {
    font-size: 17px;
    font-family: NouvelRRegular;
    margin: 3px 0;
    margin-bottom: 30px;
  }
  .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;
  }
  
  /*---------------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: 1798px) {
  .technologies_card_hide{
    display: flex;
    justify-content: center;
    width: 1482px;
    margin: auto;
    flex-wrap: wrap;
    gap: 45px;
  }
}

/*------------------------------------*/
/*--------------- tablet -------------*/
/*------------------------------------*/
@media (max-width: 800px) {

/*---------------breadcrumb---------------------*/
.breadcrumb svg {
  width: 29px;
  height: 11px;
}
.breadcrumb a{
  font-size: 12px;
}
   

/*-----------headerTitle -------------*/
  .page_headerTitle .title .title_text {
    font-size: 40px;
  }
  .page_headerTitle .title .subtitle_text {
    font-size: 21px;
  }
  
/*/------------- 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);
    }

    
  .gamme_Renault {
      margin-bottom: -40px;
  }
  .technologies_card_hide {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 40px 0;
    flex-wrap: wrap; 
  }
  .technologies_card {
    width: 42%;
    margin: 0 var(--um);
    box-sizing: border-box;
    font-family: NouvelRBold;
  } 
}
  
  
  
/*------------------------------------*/
/*--------------- phone1 -------------*/
/*------------------------------------*/
@media (max-width: 425px) {
/*---------------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/concessionnaire.jpg");
}

/*-----------headerTitle -------------*/
.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;
}
/*-----------.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';
  }

  .separate_cards_inMobile {
    display: block !important;
    width: 91%;
}
  /*------back to top---------*/
    .backToTop a {
      color: black;
      font-size: small;
    }
  
  }
  
@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;
    }
}
  
  
  
  @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;
    }
  }