/**************************************************************REGLES GLOBALES***********************************************************************/
h1 {
  font-size       : 24px;
  line-height     : 1.2;
  font-weight     : 700;
  letter-spacing  : 0;
}

h2 { font-size: 20px; }

p { font-size: 12px; }

[class*="kicker"] { font-size: 10px; }

/**************************************************************EN TETE DU SITE***********************************************************************/
#entete { height: 60px; }

.ent_gen {
  padding         : 10px 15px;
  justify-content : space-between;
}

.ent_soc { width: 80px; }

.ent_men, .ent_cli { display: none; }

.ent_mob { 
  display       : block;
  width         : 40px;
  height        : 40px;
  cursor        : pointer;
}

#entete-savoirfaire .ent_mob img { filter: brightness(0) invert(1); }

.ent_mob img
{
  width       : 100%;
  object-fit  : contain;
}

/**************************************************************MENU MOBILE***********************************************************************/
#menu_mob_back {
  position                : fixed;
  top                     : 0;
  left                    : 0;
  right                   : 0;
  bottom                  : 0;
  background              : rgba(17, 26, 46, 0.45);
  backdrop-filter         : blur(5px);
  -webkit-backdrop-filter : blur(5px);
  z-index                 : 998;
  opacity                 : 0;
  pointer-events          : none;
  transition              : opacity 0.3s ease;
}

#menu_mob_back.is-open {
  opacity         : 1;
  pointer-events  : auto;
}

#menu_mob_list {
  width             : 78vw;
  max-width         : 300px;
  position          : fixed;
  top               : 0;
  right             : 0;
  bottom            : 0;
  left              : auto;
  background-color  : #FFFFFF;
  overflow-y        : auto;
  z-index           : 999;
  transform         : translateX(100%);
  transition        : transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow        : -8px 0 30px rgba(0, 0, 0, 0.15);
}

#menu_mob_list.is-open {
  transform : translateX(0);
  display   : block;
}

#menu_mob_list > div:nth-child(1) {
  display         : flex;
  align-items     : center;
  justify-content : space-between;
  padding         : 18px 20px;
  border-bottom   : 1px solid rgba(23, 33, 58, 0.07);
}

#menu_mob_list > div:nth-child(1) img {
  height  : 30px;
  width   : auto;
}

#menu_mob_list > div:nth-child(1) > div:nth-child(2) {
  background      : none;
  border          : none;
  cursor          : pointer;
  width           : 36px;
  height          : 36px;
  border-radius   : 50%;
  color           : #17213A;
  font-size       : 18px;
  padding         : 0;
  flex-shrink     : 0;
  transition      : background-color 0.2s ease;
  display         : flex;
  justify-content : center;
  align-items     : center;
}

#menu_mob_list > div:nth-child(1) > div:nth-child(2):hover { background-color: rgba(23, 33, 58, 0.08); }


#menu_mob_list > div:nth-child(2) {
  display         : flex;
  flex-direction  : column;
}

#menu_mob_list > div:nth-child(2) > div { 
  padding         : 16px 24px;
  transition      : background-color 0.15s ease;
}

#menu_mob_list > div:nth-child(2) > div:active { background-color: rgba(23, 33, 58, 0.06); }

#menu_mob_list > div:nth-child(2) a {
  color             : #17213A;
  text-decoration   : none;
  font-weight       : 500;
  display           : block;
  font-size         : 15px;
  letter-spacing    : 0.1px;
}

#menu_mob_list > div:nth-child(2) .men_sel { 
  background-color  : rgba(23, 33, 58, 0.08);
  border-left       : 3px solid #17213A;
  padding-left      : 29px;
}

#menu_mob_list > div:nth-child(2) .men_sel a { 
  color       : #17213A;
  font-weight: 700;
}

/**********************************************************PIED DU SITE***********************************************************************/
.pie_gen {
  min-height  : auto;
  overflow    : hidden;
}

/*1ere partie du pied*/
.pie_gen > div:nth-child(1) {
  padding         : 30px 20px 15px 20px;
  max-width       : 100%;
  display         : flex ;
  flex-direction  : column ;
  align-items     : flex-start ;
  text-align      : left;
}

/*Affichage du logo*/
.pie_gen > div:nth-child(1) > div:nth-child(1) {
  width           : 100%;
  display         : flex;
  justify-content : flex-start;
  margin-bottom   : 25px;
}

.pie_gen > div:nth-child(1) > div:nth-child(1) > img { max-width: 110px; }

/*Menu de navigation*/
.pie_gen > div:nth-child(1) > div:nth-child(2) {
  display               : grid ;
  grid-template-columns : 1fr 1fr;
  gap                   : 15px 10px;
  width                 : 100%;
  margin-bottom         : 20px;
  align-items           : center;
}

.pie_gen > div:nth-child(1) > div:nth-child(2) > div.pie_lien a { font-size: 13px; }

/*Informations des sites*/
.pie_gen > div:nth-child(1) > div:nth-child(3), .pie_gen > div:nth-child(1) > div:nth-child(4) { display: none ; }

/*Made in France et contactez-nous*/
.pie_gen > div:nth-child(1) > div:nth-child(5) {
  flex-direction  : column-reverse ;
  gap             : 30px ;
  width           : 100%;
}

/*MAde In France*/
.pie_gen > div:nth-child(1) > div:nth-child(5) > div:nth-child(1) { gap : 10px; }

.pie_gen > div:nth-child(1) > div:nth-child(5) > div:nth-child(1) img {
  max-width : 60px;
  height    : auto;
}

.pie_gen > div:nth-child(1) > div:nth-child(5) > div:nth-child(1) span { font-size: 9px; }

/*Contact*/
.pie_gen > div:nth-child(1) > div:nth-child(5) > div:nth-child(2) { gap : 10px; }

.pie_gen > div:nth-child(1) > div:nth-child(5) > div:nth-child(2) > a:nth-child(1) {
  padding     : 10px 20px;
  font-size   : 13px;
}

/*2nde partie du pied*/
.pie_gen > div:nth-child(2) {
  flex-direction    : column ;
  gap               : 20px;
  padding           : 20px 30px;
  text-align        : left;
}

/*Copyright*/
.pie_gen > div:nth-child(2) > div:nth-child(1) { font-size : 10px; }

/*Menu navigation : mentions légales....*/
.pie_gen > div:nth-child(2) > div:nth-child(2) {
  justify-content : space-between ;
  flex-wrap       : wrap;
  gap             : 10px;
  padding         : 0;
  width           : 100%;
}

.pie_gen > div:nth-child(2) > div:nth-child(2) a { font-size: 10px; }

/******************************************************CONTACT MOBILE***********************************************************************/
.floating_contact
{
  right     : 14px;
  bottom    : 14px;
  min-width : auto;
  padding   : 0;
}

.floating_contact img { width: 72px; }

/**********************************************************PAGE D'ACCUEIL***********************************************************************/
.acc_hero { padding: 40px 0 20px 0; }

/*1ere section*/
.acc_hero > div:nth-child(1) {
  padding         : 0 15px;
  display         : flex;
  flex-direction  : column;
  align-items     : center;
}

/*Texte Votre partenaire....*/
.acc_hero > div:nth-child(1) > h1 {
  margin-bottom   : 15px;
  text-align      : center;
}

.acc_hero > div:nth-child(1) > h1 > span {
  padding     : 8px 20px;
  margin-top  : 10px;
  font-size   : 16px;
}

/*Texte SGC maitrise + contact*/
.acc_hero > div:nth-child(1) > div:nth-child(2) { 
  margin-bottom   : 25px;
  width           : 100%;
}

.acc_hero > div:nth-child(1) > div:nth-child(2) > p { 
  font-size   : 12px;
  text-align  : center;
  line-height : 1.6;
}

.acc_hero > div:nth-child(1) > div:nth-child(2) > div:nth-child(2) { display: none; }

/*Made In France*/
.acc_hero > div:nth-child(1) > div:nth-child(3) { 
  margin-bottom : 30px;
  gap           : 8px;
}

.acc_hero > div:nth-child(1) > div:nth-child(3) span {
  font-size     : 11px;
  margin-bottom : 8px;
}

.acc_hero > div:nth-child(1) > div:nth-child(3) img { max-width: 100px; }

/*Texte Il nous confient....*/
.acc_hero > div:nth-child(1) > p:nth-child(4) { 
  font-size     : 13px;
  padding       : 0 15px;
  margin-bottom : 20px;
}

/*2nde section : Partenaires qui défilent*/
.acc_partenaires { 
  width      : 90%;
  margin     : -25px auto 0 auto;
}

.acc_partenaires > div {
  margin        : 0 auto;
  padding       : 15px 0px;
}
 
.acc_partenaires > div > div > div {
  gap           : 30px;
  padding-right : 30px;
}

.acc_partenaires > div > div > div > img { 
  height  : 18px;
  margin  : 0 25px;
}

/*3eme section*/
.acc_solutions { padding: 40px 0; }

.acc_solution > div:nth-child(1) { padding: 80px 14px 14px 14px; }

.acc_solutions h2 { 
  margin-bottom : 5px; 
  text-align    : center;
}

.acc_solutions h3 {
  margin-bottom : 15px;
  margin-top    : 0px;
  text-align    : center;
}

.acc_solutions > div:nth-child(1) > div:nth-child(3) {
  display           : flex;
  flex-direction    : row;
  flex-wrap         : nowrap;
  overflow-x        : auto;
  overflow-y        : hidden;
  gap               : 15px;
  padding           : 0 15px 20px 15px;
  scroll-snap-type  : x mandatory;
  touch-action      : pan-x;
}

.acc_solutions > div:nth-child(1) > div:nth-child(3)::-webkit-scrollbar { display: none; }

.acc_solutions > div:nth-child(1) > div:nth-child(3) > div {
  flex              : 0 0 85%;
  scroll-snap-align : center;
  min-height        : 260px;
  padding           : 20px;
}

/*4ème section*/
.acc_process h2 {
  text-align  : center ;
  padding-top : 50px;
  line-height : 1.5;
}

.acc_process > div:nth-child(2) {
  display         : flex;
  flex-direction  : column;
  gap             : 25px;
}

.acc_process > div:nth-child(2) > div:nth-child(1) {
  order   : 2;
  height  : auto;
  width   : 100%;
}

.acc_process video { border-radius: 0; }

.acc_process > div:nth-child(2) > div:nth-child(2) { padding: 0 20px; }

.acc_process p {
  margin-bottom : 10px;
  text-align    : center;
}








.acc_adaptees_subtitle
{
  margin-bottom: 10px;
}


.acc_btn_decouvrir
{
  gap: 8px;
  margin: 15px auto 0 auto;
  justify-content: center;
}

.acc_btn_decouvrir::after
{
  width: 30px;
  height: 30px;
  font-size: 15px;
  margin-left: 8px;
}

.acc_emballages_btn
{
  gap: 8px;
}

.acc_emballages_btn::after
{
  width: 30px;
  height: 30px;
  margin-left: 0;
}

.acc_adaptees
{
  padding: 50px 0;
}

.acc_adaptees_content
{
  display: grid;
  grid-template-columns: 62% 38%;
  gap: 20px 0;
  padding: 0;
  align-items: center;
}

.acc_adaptees_text,
.acc_adaptees_images
{
  display: contents ;
}

.acc_adaptees h2
{
  grid-column: 1 / -1;
  grid-row: 1;
  font-size: 26px;
  text-align: left;
  margin: 0;
  padding: 0 20px;
  line-height: 1.3;
}

.acc_adaptees_desc
{
  grid-column: 1 / 2;
  grid-row: 2;
  padding-left: 20px;
  padding-right: 15px;
  margin: 0;
}

.acc_adaptees_desc p:not(.acc_adaptees_subtitle)
{
  padding-right: 0 ;
  margin-bottom: 15px;
}

.acc_img_back
{
  grid-column: 2 / 3;
  grid-row: 2;
  position: static ;
  width: 100% ;
  height: 220px;
  object-fit: cover;
  border-radius: 20px 0 0 20px;
  margin: 0;
}

.acc_img_front
{
  grid-column: 1 / -1;
  grid-row: 3;
  position: static ;
  width: 85% ;
  height: 240px;
  object-fit: cover;
  border-radius: 0 20px 20px 0;
  margin: 0;
}

.acc_emballages
{
  padding: 50px 0 0 0;
}

.acc_emballages_content
{
  display: flex;
  flex-direction: column;
}

.acc_emballages_text
{
  order: 1;
  padding: 0 20px 30px 20px;
  text-align: center;
}

.acc_emballages h2
{
  font-size: 24px;
  margin-bottom: 15px;
  text-align: center;
}

.acc_emballages_subtitle
{
  font-size: 14px;
  text-align: center;
}

.acc_emballages p
{
  text-align: center;
}

.acc_emballages_engagement
{
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 25px;
}

.acc_emballages_badge
{
  margin-top: 15px;
}

.acc_emballages_badge img
{
  height: 50px;
}

.acc_emballages_image
{
  order: 2;
  width: 100%;
  min-height: auto;
  margin-bottom: 0;
}

.acc_emballages_image img
{
  width: 100%;
  height: auto;
  border-radius: 0;
  display: block;
}

/***************************************A VERIFIER ------ A VERIFIER ***********************************************************************/
/**********************************************************PAGE SAVOIR-FAIRE***********************************************************************/

.sf_sites
{
  padding: 50px 0;
  min-height: auto;
  background-attachment: scroll;
}

.sf_sites_content
{
  padding: 0 20px;
}

.sf_sites h2
{
  font-size: 26px;
  margin-bottom: 10px;
}

.sf_sites_subtitle
{
  font-size: 14px;
  margin-bottom: 30px;
}

.sf_stats_grid
{
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.sf_stats_row
{
  display: contents;
}

.sf_stat_item
{
  padding: 18px 16px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  gap: 8px;
  border-radius: 12px;
  border-right: none;
}

.sf_stat_number
{
  font-size: 42px;
}

.sf_stat_unit
{
  font-size: 20px;
}

.sf_stat_suffix
{
  font-size: 20px;
}

.sf_stat_label
{
  font-size: 13px;
}

.sf_stat_icon
{
  width: 54px;
  height: 54px;
}

.sf_sites_details
{
  padding: 40px 0;
}

.sf_sites_details_content
{
  padding: 0 20px;
}

.sf_sites_details_intro
{
  font-size: 14px;
  text-align: left;
  margin-bottom: 30px;
}

.sf_sites_details_kicker
{
  font-size: 12px;
  margin-bottom: 10px;
  padding-left: 34px;
}

.sf_sites_details_kicker::before
{
  width: 18px;
  height: 2px;
  top: 50%;
}

.sf_sites_details_title
{
  font-size: 28px;
  line-height: 1.28;
  margin-bottom: 14px;
}

.sf_sites_cards
{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sf_site_card
{
  width: 100%;
  border-radius: 15px;
  aspect-ratio: auto;
  height: 220px;
}

.sf_site_card_overlay
{
  padding: 20px;
}

.sf_site_badge
{
  font-size: 10px;
  padding: 6px 12px;
  margin-bottom: 10px;
}

.sf_site_card_overlay h3
{
  font-size: 18px;
}

.sf_site_card_overlay p
{
  font-size: 13px;
}

.sf_sites_map_section
{
  padding: 40px 0;
}

.sf_sites_map_content
{
  grid-template-columns: 1fr;
  gap: 22px;
  padding: 0 20px;
}

.sf_sites_map_visual img
{
  max-width: 100%;
}

.sf_sites_map_text h2
{
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.sf_sites_map_intro
{
  font-size: 14px;
  margin-bottom: 8px;
}

.sf_sites_map_points
{
  margin: 0 0 18px 16px;
}

.sf_sites_map_points li
{
  font-size: 13px;
  line-height: 1.4;
}

.sf_sites_map_cards
{
  gap: 14px;
}

.sf_sites_map_card
{
  border-radius: 14px;
  padding: 14px 14px 12px 30px;
}

.sf_sites_map_card::before
{
  width: 8px;
  height: 8px;
  left: 13px;
  top: 20px;
}

.sf_sites_map_card h3
{
  font-size: 16px;
  margin-bottom: 6px;
}

.sf_sites_map_card p
{
  font-size: 13px;
}

.sf_histoire
{
  padding: 50px 0 0 0;
}

.sf_histoire_header
{
  padding: 0 20px;
}

.sf_histoire h2
{
  font-size: 24px;
  text-align: left;
  margin-bottom: 30px;
}

.sf_histoire_container
{
  padding: 40px 20px;
  border-radius: 0;
}

.sf_histoire_line_bg
{
  left: 4px;
  top: 10px;
  bottom: 0;
  width: 2px;
}

.sf_histoire_line_progress
{
  left: 4px;
  top: 10px;
  width: 2px;
  height: 0%;
}

.sf_histoire_bloc
{
  padding-left: 25px;
  margin-bottom: 50px;
}

.sf_histoire_dot
{
  left: -2px;
  top: 5px;
  width: 14px;
  height: 14px;
}

.sf_histoire_container .gs_dot
{
  transform: scale(1);
  opacity: 1;
}

.sf_histoire_container .gs_content
{
  opacity: 1;
  transform: none;
}

.sf_histoire_txt_content
{
  margin-bottom: 25px;
}

.sf_histoire_content h3
{
  font-size: 16px;
  margin-bottom: 15px;
}

.sf_histoire_content p
{
  font-size: 13px;
  max-width: 100%;
}

.sf_histoire_images_wrapper
{
  margin-top: 20px;
}

.sf_histoire_images
{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.sf_img_main
{
  width: 62%;
  height: 200px;
  border-radius: 12px;
}

.sf_img_side
{
  width: 34%;
  height: 150px;
  border-radius: 12px;
}

.sf_histoire_legende
{
  margin-top: 10px;
  text-align: left;
}

.sf_equipes
{
  padding: 50px 0;
}

.sf_equipes h2
{
  font-size: 26px;
  margin-bottom: 30px;
}

.sf_equipes_main
{
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.sf_equipes_images
{
  position: relative;
  height: 320px;
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

.sf_img_back
{
  position: absolute;
  left: 0;
  top: 60px;
  width: 35%;
  height: 220px;
  border-radius: 0 15px 15px 0;
  object-fit: cover;
  margin: 0;
  z-index: 1;
}

.sf_img_front
{
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 250px;
  border-radius: 15px 0 0 15px;
  object-fit: cover;
  margin: 0;
  z-index: 2;
}

.sf_equipes_text
{
  padding: 0 20px;
  text-align: center;
}

.sf_equipes_text h3
{
  font-size: 16px;
  text-align: center;
  margin-bottom: 15px;
}

.sf_equipes_text p
{
  font-size: 13px;
  text-align: center;
}

.sf_equipes_link
{
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

/**********************************************************PAGE QUALITE DURABILITE RESPONSABILITE***********************************************************************/

.qdr_hero
{
  padding: 40px 0 20px 0;
}

.qdr_hero_content
{
  padding: 0 20px;
}

.qdr_hero h1
{
  font-size: 26px;
  line-height: 1.4;
  text-align: left;
}

.qdr_savoirfaire
{
  padding: 40px 0;
}

.qdr_savoirfaire_content
{
  padding: 0 20px;
}

.qdr_savoirfaire_kicker
{
  font-size: 10px;
  padding-left: 30px;
  margin: 0 0 10px 0;
}

.qdr_savoirfaire_kicker::before
{
  width: 20px;
  height: 2px;
  top: 50%;
}

.qdr_savoirfaire h2
{
  font-size: 24px;
  text-align: left;
  margin-bottom: 12px;
}

.qdr_savoirfaire_intro
{
  font-size: 12px;
  text-align: left;
  margin-bottom: 24px;
}

.qdr_secteurs_grid
{
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: auto;
}

.qdr_secteur_card
{
  min-height: 240px;
  border-radius: 12px;
  scroll-snap-align: none;
}

.qdr_secteur_overlay
{
  padding: 16px 16px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.qdr_iso_badge
{
  width: 50px;
  height: 50px;
  font-size: 9px;
  margin-bottom: 8px;
  line-height: 1.04;
}

.qdr_secteur_tag
{
  font-size: 12px;
  padding: 4px 12px;
}

.qdr_secteur_overlay p
{
  font-size: 12px;
}

.qdr_qualite
{
  padding: 50px 0;
}

.qdr_qualite h2
{
  font-size: 22px;
  padding: 0 20px;
  line-height: 1.3;
  text-align: left ;
  margin-bottom: 16px;
}

.qdr_qualite_main
{
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0;
}

.qdr_qualite_list
{
  order: 1;
  padding: 0 20px;
}

.qdr_qualite_kicker
{
  font-size: 10px;
  margin-bottom: 10px;
}

.qdr_qualite_checks
{
  gap: 8px;
  margin-bottom: 18px;
}

.qdr_check_item
{
  font-size: 13px;
  padding: 12px 14px;
  gap: 12px;
}

.qdr_check_icon
{
  width: 28px;
  height: 28px;
  font-size: 13px;
}

.qdr_certif_logos
{
  gap: 8px;
  flex-wrap: wrap;
}

.qdr_certif_badge
{
  padding: 0;
  font-size: 12px;
}

.qdr_certif_badge img
{
  max-height: 42px;
}

.qdr_qualite_images
{
  order: 2;
  display: flex;
  align-items: flex-end;
  height: 280px;
  width: 100%;
  gap: 15px;
  padding-right: 20px;
}

.qdr_img_back
{
  width: 25%;
  height: 300px;
  border-radius: 0 15px 15px 0;
  margin: 0;
}

.qdr_img_front
{
  width: 70%;
  height: 260px;
  border-radius: 15px;
  margin: 0;
}

.qdr_durabilite
{
  padding: 50px 0;
}

.qdr_durabilite h2
{
  font-size: 22px;
  text-align: left;
  margin-bottom: 10px;
}

.qdr_durabilite h3
{
  font-size: 16px;
  text-align: left;
}

.qdr_durabilite_content
{
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0 20px;
}

.qdr_durabilite_text
{
  order: 1;
  text-align: left;
}

.qdr_durabilite_text p
{
  font-size: 13px;
  margin-bottom: 15px;
}

.qdr_durabilite_image
{
  order: 2;
  width: 100%;
}

.qdr_durabilite_image img
{
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
}

.qdr_durabilite_intro_bold
{
  font-size: 15px ;
}

.qdr_engagements
{
  flex-direction: column;
  padding: 32px 20px;
  margin-top: 30px;
  gap: 20px;
}

.qdr_engagements_titre
{
  font-size: 18px;
  margin-bottom: 0;
}

.qdr_engagements_items
{
  flex-direction: column;
  gap: 0;
}

.qdr_engagement_item
{
  flex: none;
  border-right: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
}

.qdr_engagement_item:last-child
{
  border-bottom: none;
  padding-bottom: 0;
}

.qdr_engagement_item:first-child
{
  padding-top: 0;
}

.qdr_eng_num
{
  width: 32px;
  height: 32px;
  font-size: 13px;
  margin-bottom: 10px;
}

.qdr_eng_title
{
  font-size: 13px;
}

.qdr_eng_desc
{
  font-size: 12px;
}

.qdr_rse_cta
{
  flex-direction: column;
}

.qdr_rse_cta_image
{
  width: 100%;
  height: 220px;
}

.qdr_rse_cta_text
{
  padding: 36px 20px;
}

.qdr_rse_cta_kicker
{
  font-size: 10px;
}

.qdr_rse_cta_text h2
{
  font-size: 22px;
  margin-bottom: 14px;
}

.qdr_rse_cta_text p
{
  font-size: 13px;
  margin-bottom: 24px;
}

.qdr_rse_cta_actions
{
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.qdr_rse_cta_btn
{
  font-size: 13px;
  padding: 12px 18px;
}

.qdr_rse_made
{
  height: 36px;
}

/**********************************************************PAGE CONTACT***********************************************************************/

.contact_section
{
  padding-bottom: 50px;
  background: #DBE9FA;
}

.contact_layout
{
  display: flex ;
  flex-direction: column ;
  padding: 30px 20px 0 20px ;
  gap: 0 ;
  align-items: stretch ;
}

.contact_form_card,
.contact_infos
{
  display: contents ;
}

.ctc_kicker
{
  display: none ;
}

.contact_form_card h1
{
  order: 1;
  font-size: 26px;
  font-weight: 900 ;
  color: #17213A;
  margin: 0 0 10px 0 ;
}

.ctc_intro
{
  order: 2;
  font-size: 12px ;
  text-align: left;
  color: #2F567D;
  margin: 0 0 20px 0 ;
  line-height: 1.5;
}

.ctc_image
{
  order: 3;
  width: 100% ;
  margin: 0 ;
  padding: 0 ;
  display: block ;
  line-height: 0 ;
}

.ctc_image img
{
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  display: block;
  margin: 0;
  padding: 0;
}

.contact_form
{
  order: 4;
  width: 100% ;
  margin: 0 0 30px 0 ;
  background: #FFFFFF ;
  border-radius: 0 0 20px 20px ;
  padding: 30px 20px ;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box ;
}

.ctc_row
{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ctc_field
{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ctc_field label
{
  font-size: 11px;
  font-weight: 600;
  color: #17213A;
}

.contact_form input:not([type="checkbox"]),
.contact_form textarea
{
  width: 100% ;
  background: #F8F9FA;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #17213A;
  box-sizing: border-box ;
}

.contact_form input::placeholder,
.contact_form textarea::placeholder
{
  color: #A0AEC0;
}

.contact_form textarea
{
  min-height: 120px;
}

.ctc_check
{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.ctc_check input
{
  width: 16px ;
  height: 16px ;
  margin: 0 ;
  flex-shrink: 0;
  padding: 0 ;
}

.ctc_check span
{
  font-size: 10px;
  font-weight: 500;
  color: #17213A;
}

.ctc_submit
{
  background: linear-gradient(90deg, #17213A 0%, #254494 50%, #17213A 100%);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 14px;
  padding: 14px;
  border-radius: 22px;
  border: none;
  width: 100%;
  margin-top: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.ctc_submit:hover
{
  background: #2E4A9E;
}

.ctc_infos_card
{
  order: 5;
  width: 100% ;
  margin: 0 ;
  background: #FFFFFF ;
  border-radius: 20px ;
  padding: 20px ;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-sizing: border-box ;
}

.ctc_info_item
{
  background: #F9FAFC;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.ctc_icon
{
  background: transparent;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.ctc_label
{
  font-size: 13px;
  color: #5A7BA0;
  margin-bottom: 5px;
  font-weight: 600;
}

.ctc_value
{
  font-size: 18px;
  font-weight: 700;
  color: #17213A;
}

.ctc_info_item.ctc_sites
{
  background: transparent;
  padding: 0;
  flex-direction: column;
  align-items: stretch;
}

.ctc_info_item.ctc_sites > .ctc_icon
{
  display: none;
}

.ctc_sites_grid
{
  display: flex;
  gap: 15px;
}

.ctc_sites_grid > div
{
  flex: 1;
  background: #F9FAFC;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  flex-direction: column;
}

.ctc_sites_grid > div .ctc_label
{
  font-size: 11px;
  font-weight: 700;
  color: #121C30;
  margin-bottom: 5px;
}

.ctc_sites_grid > div .ctc_value
{
  font-size: 11px;
  font-weight: 500;
  color: #121C30;
  line-height: 1.4;
}

.ctc_row,
.ctc_sites_row
{
  grid-template-columns: 1fr;
  gap: 12px;
}

/**********************************************************PAGE D'ACCUEIL — COMPLÉMENTS***********************************************************************/

.sf_equipes_link a
{
  gap: 8px;
  font-size: 13px;
}

.sf_equipes_link a:after
{
  width: 28px;
  height: 28px;
  font-size: 14px;
  flex-shrink: 0;
}

/**********************************************************PAGE SAVOIR-FAIRE — COMPLÉMENTS***********************************************************************/

.sf_equipes_image
{
  flex: none;
  width: 100%;
}

/**********************************************************PAGE QDR — COMPLÉMENTS***********************************************************************/

.qdr_savoirfaire_image img
{
  margin-top: 0;
  width: 100%;
  height: auto;
}

.qdr_qualite_content
{
  gap: 30px;
}

.qdr_qualite h3
{
  font-size: 16px;
  margin-bottom: 10px;
}

.qdr_qualite p
{
  font-size: 13px;
}

.qdr_qualite_right h2:nth-of-type(2)
{
  font-size: 20px;
}

.qdr_materiaux h2
{
  font-size: 20px;
  padding: 0 20px;
}

.qdr_materiaux p
{
  font-size: 13px;
  padding: 0 20px;
}

.qdr_materiau_diagram img
{
  max-width: 100%;
  width: 100%;
}

.acc_solutions h2,
.acc_solutions h3,
.acc_process h2,
.acc_adaptees h2,
.acc_emballages h2,
.sf_sites h2,
.sf_sites_details_title,
.sf_sites_map_text h2,
.sf_histoire h2,
.sf_equipes h2,
.qdr_hero h1,
.qdr_savoirfaire h2,
.qdr_qualite h2,
.qdr_durabilite h2,
.qdr_rse_cta_text h2,
.contact_form_card h1
{
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

