:root {
    --color-main: #bd1934;
    --color-main-light: #ce3d3d;
    --color-white:#FFFF;
    --color-grey:#e3e2e2;
    --color-grey2:#8c8c8c;
    --color-black:#323030;
    --color-black-light:#403e3e;
    --nav-height: 140px;
    --nav-mob-height: 60px;
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28231, 156, 63, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

html {
    scroll-behavior: smooth;
    transition: all .5s ease;
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    color: #8c8c8c;
    overflow-x: hidden;
}

a:hover {
    color:inherit;
}

.overflow-hidden-x {
    overflow-x: hidden;
}
.overflow-hidden-y {
    overflow-y: hidden;
}


h1 {
    font-size: 50px;
    font-weight:400;
    margin-bottom:50px;
    color:var(--color-main);
}

h2 {
    font-size:39px;
    font-weight:400;
}


h3 {
    color: var(--color-black);
    font-size: 23px;
    font-weight:500;
    margin-bottom: 30px;
}

.fixed-top {
    background-color: var(--color-white);
}

a:active, a:visited, a:hover {text-decoration: inherit;}

ul.list-reset {
    list-style: none;
    margin: 0;
    padding: 0;
}

.color-main {
    color:var(--color-main);
}

/***** SIDEBAR ******/

.picto-wrapper {
    background-color: var(--color-main); /* rouge */
    border-radius: 50%;
    width: 44px;   /* taille du fond */
    height: 44px;  /* taille du fond */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    margin-left: 10px;
    transition: 300ms ease;
    transform: scale(1.0);
}

.picto-wrapper:hover {
    transition: 300ms ease;
    transform: scale(1.1);
}


.picto-wrapper svg {
    width: 30px; /* taille de l’icône */
    height: 30px;
}


.bloc-sidebar svg {
    width:40px;
    height:40px;
}

.picto-lien {
    display: flex;
    align-items: center;
}

.picto-lien svg {
    color: #bd1934;
    background-color: var(--color-main);
    border-radius: 25px;
    margin-right: 10px;
    margin-left: 10px;
}

.sidebar-popup a span img {
    display: none;
    vertical-align: middle;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.sidebar-popup a:hover span img {
    display: inline-block;
    opacity: 1;
}

.sidebar-popup img {
    width:20px;
    height:18px;
    padding-right: 25px;
    padding-left: 15px;
}

.sidebar-popup-reseaux {
    padding-left:5px;
    padding-right:5px;
}

.sidebar-popup-reseaux img {
    padding-right: 0px;
}


.sidebar-popup a:hover {
    color:var(--color-main);
}

.bloc-sidebar {
    color: white;
    background-color: var(--color-black);
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    width: 265px;
    height: 460px;
    position: fixed;
    right: 0;
    top: 95px;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(205px) !important;
    transition: 300ms ease;
}

.bloc-sidebar:hover {
    transform: translateX(0px) !important;
    transition: 300ms ease;
}

.sidebar-popup {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    width: 100%;
    /* margin-left: 40px; */ 
} 

 .sidebar-popup a {
    padding: 10px 0px;
    border-bottom: solid 2px #00000078;
    width: 100%;
}

.sidebar-popup .footer__social_2 {
    border-bottom: inherit !important;
}

.sidebar-popup-reseaux a {
    border-bottom: none;
}

.presentation-ul {
    max-width:500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.presentation-liste {
    color:var(--color-black);
    padding-top:50px;
    max-width:500px;
    margin:auto;
}

.presentation-liste img {
    padding-right:2%;
}

.presentation-liste ul li {
    padding:10px 0px;
}

#scrollTop {
    display: none;
    position: fixed;
    bottom: 5%;
    right: 5%;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 30px;
    z-index: 999;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
#scrollTop.show{display: flex;}
#scrollTop:hover {background-color: rgba(155, 6, 15, 0.84);}

.html-content img {max-width: 100%; height: auto;}
.html-content iframe {max-width: 100%;} 

a {
    text-decoration: none;
    color:inherit;
}

.color-main {
    color: var(--color-main);
}

.color-black {
    color:var(--color-black);
}

.color-white {
    color:var(--color-white);
}

button {
    border-color: inherit;
}

.bouton-cta-noir:hover, .bouton-cta:hover {
    color:white;
}

.bouton-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px; /* espace entre texte et image */
    padding: 15px 30px;
    border-radius: 25px;
    background-color: var(--color-main);
    color: var(--color-white);
    text-decoration: none;
    transition: background-color 300ms ease, color 300ms ease;
    border-style: hidden;
}

.bouton-cta img {
    transition: transform 300ms ease;
}

.bouton-cta:hover img {
    transform: translateX(8px);
}


.bouton-cta-noir {
    display: inline-flex;
    align-items: center;
    gap: 35px;
    padding: 14px 40px;
    border-radius: 25px;
    background-color: var(--color-black);
    color: var(--color-white);
    transition: background-color 300ms ease, color 300ms ease;
    border: none;
    text-decoration: none;
    cursor: pointer;
}

.bouton-cta-noir img {
    transition: transform 300ms ease;
}

.bouton-cta-noir:hover img {
    transform: translateX(8px);
}

.btn-type-gamme {
    width: fit-content;
    /* margin: auto; */
}

.vignette-type-gamme {
    /* box-shadow: 5px 2px 5px  rgba(0,0,0,0.45); */
    /* padding:0px; */
    margin-top:4%;
}

.vignette-type-gamme .card {
    border: 0;
    box-shadow: 5px 2px 5px rgba(0,0,0,0.45);
}

.vignette-type-gamme img.card-img-top {
    width: 100%;
    /* height: auto; */
    height:255px;
    object-fit: cover;
    display: block;
}

.vignette-type-gamme .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.card-text {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.type-gamme {
    margin-bottom:4%;
}

.type-gamme-presentation {
    margin-top:2%;
    margin-bottom:2%;
}

.type-gamme-presentation p {
    padding:0px;
    text-align: center;
}

.retour-sommaire-gamme {
    margin:6% 0;
}

.retour-sommaire-gamme .row {
    justify-content: center;
}

/* NAV */

.navbar-toggler {
    border:0;
}

#nav {
    height:95px;
    border-bottom: 1px solid #80808024;
}

#navbarNav {
    color: var(--color-black);
    /* display: flex; */
    flex-direction: row;
    /* justify-content: center; */
    justify-content: space-between !important;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin: auto;
    gap :70px;
}

.nav-principale {
    max-width: 1280px;
    width: 100%;
}

.list-reset-contact {
    cursor: pointer;
    color:var(--color-white);
    transition: background-color 300ms ease, color 300ms ease;
}

#nav #navbarNav .list-reset-contact a:hover {
    color:inherit;
}

.list-reset-contact img {
    padding-left:25px;
    transition: transform 300ms ease;
}

.list-reset-contact:hover img {
    transform: translateX(8px);
}


#nav .list-reset {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 60px;
    width: 100%;
}

.list-reset-contact {
    padding:13px 40px;
    border-radius: 25px;
    background-color:var(--color-main) ;
}

#nav #menu-btn {
    display: none;
    color: #2a2d2e;
    font-weight: 300;
    text-transform: uppercase;
    border: 0;
    font-size: 1.1rem;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(143, 57, 62, 1)' stroke-width='4' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") no-repeat top right;
    padding: 0;
    outline: none;
    width: 40px;
    height: 30px;
    overflow: hidden;
}

#nav .navbar-nav {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap:28px;
    height:100%;
}

.nav-principale-logo {
    /* padding-right: 30px; */
    margin-left:15px;
}

.nav-principale-logo img {
    transition: 300ms ease;
    transform: scale(1.0);
}

.nav-principale-logo img:hover {
    transition: 300ms ease;
    transform: scale(1.1);
}

.nav-link {
    font-weight:500;
    color:black;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link:focus {
    color: var(--color-main);
}

.nav-link:hover, .nav-category a:hover {
    color:var(--color-main);
    text-shadow: 0 0 0.3px currentColor;
}

.nav-category {
    /* margin-top:8px; */
    margin-bottom:16px;
}

.nav-item {
    height:100%;
}

.dropdown-menu {

    position: absolute;
    min-width: 200px;
    /* width: max-content; */
    padding-top: 26px;
    border: 0px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    background-color: #eeeeee;
    border-radius: inherit;
}

/* .dropdown {
    height:100%;
} */

.dropdown-toggle::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url('/media/img/icone-sous-menu.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: .5em;
    vertical-align: middle;
    border: none;
    margin-top: 5px;
}


/* STYLE NAV HEADER */

#nav {
    padding:0px;
}

#navbarNav {
    padding:8px 0px;
}

.dropdown-menu-2 .row {
    width: 100%;
    max-width: 100%;
}

.nav-menu-category {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
/*     padding-left: 3rem;
    padding-right: 3rem; */
    /* gap: 2rem; */
}

.type-gamme-col {
    min-width: 180px;
    flex: 1 1 auto;
}

.type-gamme-title {
    /* color: var(--color-main); */
    font-weight: 600;
    margin-bottom: 30px !important;
}

/* .type-gamme-title:hover {
    color:var(--color-main);
} */

.nav-menu-wrapper {
    background-color: #eeeeee;
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.dropdown-menu-1 {
    margin-top: 0px !important;
    padding:16px 0px;
    margin-top:0px;
    box-shadow: 5px 2px 5px  rgba(0,0,0,0.45);
}

.dropdown-menu-2 {
    position: absolute !important;
    width: 1260px !important;
    left: 50% !important;
    top: 100px;
    transform: translateX(-43.5%) translateY(-4%);
    background-color: #eeeeee;
    padding: 1rem 0;
    /* border: 1px solid rgba(0,0,0,.15); */
    /* border-radius: 0.25rem; */
    box-shadow: 5px 2px 5px  rgba(0,0,0,0.45);
    z-index: 1050;
}

.dropdown-menu-3 {
    margin-top: 0px !important;
    min-width:400px;
    padding:16px 0px;
    margin-top:0px;
    box-shadow: 5px 2px 5px  rgba(0,0,0,0.45);
}

.dropdown-menu-4 {
    margin-top: 0px !important;
    padding: 16px 0px;
    margin-top: 0px;
    box-shadow: 5px 2px 5px  rgba(0,0,0,0.45);
}

.nav-menu-wrapper {
    width: 100%;
    padding: 0 2rem;
}

/*  FIN STYLE NAV HEADER  */


/* FIN NAV */

/* ACCUEIL */

#header {
    margin-top:95px;
}

.swiper {
    height: calc(100vh - 94px);
}

.titre-slider-accueil {
    font-weight: 700;
    font-size: 56px;
    /* color: var(--color-black); */
    line-height: 60px;
    display: inline-block;
    padding:15px;
}

.slider-content {
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start; /* aligne en haut */
    align-content: center;
    height: 100%; /* assure-toi que le conteneur a une hauteur */
    padding-top: 140px; /* optionnel pour l'espacement */
}

.slider-savoir-plus img {
    padding-left:25px;
}

.slider-savoir-plus {
    font-weight: 500;
    font-size:16px;
}

.swiper-button-next, .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: var(--color-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease-in-out;
}

.swiper-button-next::after {
    content: '';
    display: block;
    width: 8px;
    height: 14px;
    background-image: url('/media/img/angle-right-solid.svg'); /* par défaut flèche rouge */
    background-size: contain;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease-in-out;
}

.swiper-button-prev::after {
    content: '';
    display: block;
    width: 8px;
    height: 14px;
    background-image: url('/media/img/angle-left-solid.svg'); /* par défaut flèche rouge */
    background-size: contain;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease-in-out;
}

/* Hover = on garde le fond rouge, mais on remplace la flèche */

.swiper-button-prev:hover::after {
    background-image: url('/media/img/angle-left-red-solid.svg'); /* flèche blanche au hover */
}

.swiper-button-next:hover::after {
    background-image: url('/media/img/angle-right-red-solid.svg'); /* flèche blanche au hover */
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--color-white); 
}

.swiper-button-prev {
    left:100px;
    top:50%;
}

.swiper-button-next {
    right:100px;
    top:50%;
}


#presentation, #informations {
    margin-top:100px;
}

#presentation h1 {
    text-align: center;
}

#informations {
    background-image: url('/media/img/background-image-informations.png');
    background-size: cover;
    padding:50px 0px 70px 0px;
}

#informations h2 {
    color: var(--color-white);
}

#informations h3 {
    color:var(--color-white);
}

.informations-content-savoir-plus {
    color:var(--color-white)
}

.informations-content-savoir-plus i {
    margin-left:20px;
}

.informations-content-savoir-plus img {
    padding-left:20px;
}


.informations-content-savoir-plus a {
    display: inline-flex;          
    align-items: center;          
    gap: 4px;                      
    text-decoration: none;         
}

.informations-content-savoir-plus a:hover {
    /* color:var(--color-main); */
}

.informations-content-savoir-plus a i {
    transition: transform .3s ease;
}

.informations-content-savoir-plus a:hover i {
    /* color:var(--color-main) !important; */
    transform: translateX(10px);
}


.informations-content {
    display: flex;
    gap:90px;
    justify-content: center;
    flex-wrap: wrap;
}

.informations-content-bloc {
    max-width: 300px;
    position: relative;
}

.informations-content-bloc-text {
    position: relative;
    padding-right:70px
}

.informations-content-bloc-text::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: var(--color-white);
}

.informations-content-bloc:last-child .informations-content-bloc-text::after {
    display: none;
}

.informations-content-bloc-text p {
    margin-bottom: 30px;
}

#masonry-images {
    margin-bottom: 60px;
}

#masonry-images h2 {
    margin-bottom:50px;
    margin-top:50px;
    color:var(--color-black);
}

.masonry span {
    font-size:42px;
    font-weight: 400;
    max-width:280px;
}

.masonry .masonry-specific {
    font-size:31px;
}

.masonry a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.swiper-clients-content {
    max-width: 1280px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 20px; /* espace entre le texte et la ligne */
}

.swiper-clients-content span {
    white-space: nowrap;
    padding-right: 40px;
}

.swiper-clients-content::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: #28272720; /* ou .color-main si tu préfères la ligne rouge */
}

.swiper-clients-line {
    max-width: 1280px;
    margin: auto;
}

.swiper2-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    height:70px;
    gap: 12px;
}

.swiper2-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background-image: url('/media/img/Ellipse.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper2-pagination .swiper-pagination-bullet-active {
    width: 31px;
    height: 31px;
    background-image: url('/media/img/Ellipse-active.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

hr {
    margin-bottom: 0px;
}


/***** TPL PAGE *****/

.tpl-h1-standard {
    font-size: 50px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--color-black);
    font-weight: bold;
    text-transform: uppercase;
}

#tpl-page h1 {
    color: var(--color-main);
}

#tpl-page {
    color:black;
}

#tpl-page h1 span {
    color: var(--color-black);
    font-weight: bold;
    text-transform: uppercase;

}

#header-tpl-page {
    margin-top:120px;
}

.content-default-page {
    max-width:1280px;
    margin: auto;
}

.h2-page-maj {
    font-size:39px;
    text-transform: uppercase;
    color: #b3001b;
    margin-bottom: 1rem;
}

.h2-page-min {
    font-size:24px;
    color: #b3001b;
    margin-bottom: 1rem;
    font-weight: 700;
}

/***** TPL GAMME *****/

#header-tpl-gamme {
    margin-top:120px;
}

#tpl-gamme {
    color:black;
}

#tpl-gamme h1 {
    color: var(--color-main);
/*     font-weight: bold;
    text-transform: uppercase; */
}

#tpl-gamme h1 span  {
    color: var(--color-black);
    font-weight: bold;
    text-transform: uppercase;
}

#tpl-gamme h2 {
    color: var(--color-main);
    margin-bottom: 50px;
}

.tpl-gamme-type {
    color:var(--color-main);
    font-weight: 400;
    text-transform: capitalize;
}

.tpl-gamme-bloc1 {
    text-align: center;
}

.tpl-gamme-caracteristiques {
    margin-top:95px;
}

.tpl-gamme-thumbnails img {
    cursor: pointer;
    border: 1px solid transparent;
    box-sizing: border-box; 
    transition: border 0.2s ease-in-out;
}

.tpl-gamme-thumbnails img.thumbnail-active {
    border: 4px solid var(--color-main);
}

.tpl-gamme-caracteristiques .container {
    max-width:1500px !important;
}

.tpl-gamme-caracteristiques-colonne2 {
    text-align: left;
    padding-left:40px;
    color:black;
}

.tpl-gamme-caracteristiques-colonne2 ul {
    padding-left:1rem
}

.tpl-gamme-visuels {
    display: flex;
    align-items: normal;
    justify-content: flex-end;
    gap: 20px;
    /* flex-wrap: wrap; */
}

.tpl-gamme-thumbnails {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    /* justify-content: flex-start; */
    gap: 12px;
}

.tpl-gamme-thumbnails img {
    /* width: 135px; */
    /* max-height: 127px; */
    height:127px;
    object-fit: cover;
    border: 1px solid #ccc;
}

.tpl-gamme-main-image img {
    width: 100%;
    height: 500px !important;
    object-fit: cover;
    border: 1px solid #ccc;
}

.tpl-gamme-caracteristiques-colonne2 ul li {
    line-height: normal;
    padding-bottom:1em;
}

.tpl-gamme-caracteristiques-row {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CSS VENANT DE GAMMES */

/* Container général */
.tpl-gamme-visuels {
    display: flex;
    gap: 16px;
    /* align-items: flex-start; */
}

/* ---------- Boîtes images ---------- */
/* Boîte principale (contrôle la taille finale de la grande image) */
.img-box {
    overflow: hidden;
    display: block;
    position: relative;
}

/* Taille de la grande image (remplace ta règle précédente) */
.main-img-box {
    width: 500px;           /* prend la largeur du parent (.col-md-6) */
    height: 500px;          /* hauteur fixée */
    /* border: 1px solid #ccc; */
}

/* .main-img-box-rea {
    width: 700px;
    height: 500px;
} */


.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* découpe sans déformer */
    object-position: center;
    display: block;
}

.tpl-gamme-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* limite la largeur de la colonne de vignettes */
    width: 110px;           /* ajustable selon ton design */
    flex-shrink: 0;
}

.tpl-gamme-thumbnails.thumbnails-start {
    justify-content: flex-start;
}

.tpl-gamme-thumbnails.thumbnails-between {
    justify-content: space-between;
}

.thumb-img-box {
    width: 110px;           /* largeur fixe de la vignette */
    height: 110px;          /* hauteur fixe de la vignette */
    /* border: 1px solid #ccc; */
    box-sizing: border-box;
    flex-shrink: 0;
}

/* petit style pour l'image active */
.thumb-img-box img.thumbnail-active {
    outline: 2px solid #007bff;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.08);
}

/* FIN CSS VENANT DE GAMMES */

/* CSS VENANT DEs REALISATIONS */

.tpl-realisation-thumbnails img.thumbnail-active {
    border: 4px solid var(--color-main);
}

.tpl-realisation-thumbnails .thumb-img-box {
    width: 110px;           /* largeur fixe de la vignette */
    height: 90px;          /* hauteur fixe de la vignette */
    /* border: 1px solid #ccc; */
    box-sizing: border-box;
    flex-shrink: 0;
}

/* petit style pour l'image active */
.tpl-realisation-thumbnails .thumb-img-box img.thumbnail-active {
    outline: 2px solid #007bff;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.08);
}

.tpl-realisation-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* limite la largeur de la colonne de vignettes */
    width: 110px;           /* ajustable selon ton design */
    flex-shrink: 0;
}


.tpl-realisation-thumbnails.thumbnails-start {
    justify-content: flex-start;
}

.tpl-realisation-thumbnails.thumbnails-between {
    justify-content: space-between;
}


/* FIN CSS VENANT DEs REALISATIONS */

.btn-outline {
    text-transform: uppercase;
    background-color: transparent;
    border: 1px solid var(--color-grey2);
    color: var(--color-black-light);
    text-transform: uppercase;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .btn-outline-doc {
    display: flex;
    justify-content: space-around;
}
  
  .btn-outline:hover {
    background-color: var(--color-main);
    color: #fff;
  }

.descriptif-section {
    width: 100%;
    margin-top: 60px;
    background-color: #fff;
    padding: 0;
    
  }

.descriptif-section .col-md-6.position-relative {
    z-index: 2;
    position: relative;
  }
  
.descriptif-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;    
    height: 750px;
    box-sizing: border-box;
  }
  
.descriptif-wrapper .position-relative {
    padding-left:0px;
    padding-right:0px;
  }

.descriptif-texte {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

.descriptif-texte-wrapper {
    position: relative;
    /* width: 990px; */
    /* min-height: 620px; */
    border: 1px solid #f0e4e4;
    border-left: none;
    box-sizing: border-box;
    margin-left: 0;
    /* padding-left: 30px; */
    /* padding-left: 130px; */
}


.descriptif-texte-wrapper-2 {
    position: relative;
    /*  width: 990px; */
     /* height: 620px; */
     border: solid 1px #f0e4e4;
     box-sizing: border-box;
     margin-left: 0;
     padding-right: 30px; 
}

.descriptif-texte {
    height: 100%;
    padding: 20px 30px 20px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    z-index: 2;
    box-sizing: border-box;
    /* padding-left: 12px; */
    transform: translateX(calc((100vw - min(1270px, 100vw)) / 2));
  }
  

  .descriptif-texte-2 {
    height: 100%;
    padding: 20px 0px 20px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    z-index: 2;
    box-sizing: border-box;
    max-width: 698px;
}
  
  
.descriptif-texte h2 {
    color: #b3001b;
    margin-bottom: 20px !important;
}

.descriptif-texte-2 p span {
    font-size:0.9rem !important;
}
  
.descriptif-texte ul, .descriptif-texte-2 ul {
    list-style-type: disc;
    padding-left: 20px;
    /* margin-bottom: 30px; */
    margin-bottom: 0px !important;
}
  
  .descriptif-texte ul li, .descriptif-texte-2 ul li {
    margin-bottom: 10px;
  }
  
  .descriptif-boutons {
    font-family: "OpenSans" sans-serif !important;
    font-weight:600;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .descriptif-image {
    flex-grow: 1;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    position: relative;
    max-height:750px;
  }
  
  .descriptif-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-height:750px;
  }
  
  .bouton-cta-pdf {
    margin-top: 2%;
  }

  /***** TPL PRODUIT ******/

  .produits-gamme h3 {
    padding-top:2%;
  }

  .produits-gamme {
    margin-top:5%;
    margin-bottom:5%;
  }

  .produits-gamme h2 {
    text-align: center;
  }

  /* Responsive : stack en colonne */
  @media (max-width: 1230px) {
    .descriptif-wrapper {
      flex-direction: column;
      height: auto;
    }
  
    .descriptif-texte {
      width: 100%;
      max-height: none;
      padding: 30px 20px;
    }
  
    .descriptif-image {
      height: auto;
    }
  
    .descriptif-image img {
      height: auto;
    }
}


/***** FOOTER *****/

.contact-btn-footer {
    margin-top: 4%;
    margin-bottom: 4%;
}

.footer {
    background: #2b2b2b;
    font-size: 0.9375rem; /* 15 px */
    line-height: 1.5;
    padding-top:60px
    }
    
.footer a {
text-decoration: none;
transition: opacity 0.2s;
}

.footer__address,.footer-tel,.footer__title {
    color:var(--color-grey);
}

.footer__link {
color:var(--color-grey2);
}

.footer__link:hover,
.footer__link:focus {
opacity: 0.8;
color: #ffffff;
}

.footer li {
    max-width: 195px;
    padding-bottom: 18px;
    font-size: 15px;
    
}

.footer__brand { 
    font-size: 1.25rem; 
    font-weight: 600; 
    margin-bottom: 34px !important;
}

.footer__title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 35px !important;
}

.footer-colonne2 {
    padding-left:32px;
}

.footer__divider { 
    border-color: rgba(255, 255, 255, 0.56); 
}

.footer-tel {
    margin-top:20px;
}

.footer-logos {
    margin-top:50px;
}

.footer-logos a{
    transition: 300ms ease;
    transform: scale(1.0);
}

.footer-logos a:hover {
    transition: 300ms ease;
    transform: scale(1.1);
}

.color-main { color: #c20f24; 
}

.footer__social img {
    /* display: block; */
    margin-left: 10px;
    margin-right: 8px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-main);
    object-fit: none;
    object-position: center;
    padding-right: 0px;
    padding-left:0px;
}

.footer__social img {
    transform: scale(1.0);
    transition:300ms ease;
}

.footer__social img:hover {
    transform: scale(1.1);
    transition:300ms ease;
}

.footer2 {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    gap: 82px;
    font-size: 14px;
    color:var(--color-grey2);
}
    
.footer2 span:hover {
    color: var(--color-white);
}

.last-ul-footer-column {
    list-style: none;
    padding-left:45px;
}


/* TARTE AU CITRON */

#tarteaucitronRoot #tarteaucitronAlertBig{background-color: #8f393e;}
#tarteaucitronAlertBig #tarteaucitronCloseAlert:hover, #tarteaucitronAlertBig #tarteaucitronPersonalize2:hover, #tarteaucitronPrivacyUrlDialog:hover, .tarteaucitronDeny:hover{background-color: #423e3c !important;}
#tarteaucitronPrivacyUrl:hover{color: #c4c2c1 !important;}

/* FIN TARTE AU CITRON */

/* ARIANE */

#ariane {
    /* padding: 15px 12px; */
    padding : 15px 0px;
    list-style: none;
    margin: 0;
}

.header-realisations #ariane {
    padding:15px 15px;
}

#ariane .fa-home {
    position: absolute;
    left: 10px;
    top: 5px;
    z-index: 10;
}

#ariane>li {
    display: inline-block;
    color: inherit;
    font-size: 15px;
    margin-right: 5px;
    position: relative;
}

#ariane > li.item + li.item {
  padding-left: 12px;
}

#ariane>li.item+li.item::before {
    content: '>';
    position: absolute;
    left: 0;
    top: 0;
}

#ariane>li a {
    color: inherit;
    font-size: 15px;
}

#ariane .item:last-child {
    color: var(--color-main);
    font-weight: 700;
}

#ariane>li:first-child {
    margin-right:0px;
}

#ariane>li:last-child a {font-weight: 600;}

#ariane>li a:hover{text-decoration: underline;}

/* FIN ARIANE */

.text-epart{color: #ff0000;}

/* PAGE CONTACT */


.page-contact-ariane {
    max-width:1270px !important;
}

#header-contact {
    margin-top:120px;
}

.content-contact h1 {
    text-align: center;
/*     color: var(--color-black); */
/*     font-weight: bold;
    text-transform: uppercase; */
}

.content-contact h1 span {
    font-weight: bold;
    text-transform: uppercase; 
}


/* CSS TARTE AU CITRON */

#tarteaucitronRoot #tarteaucitronAlertBig {
    background: #2b2b2b !important;
}

#tarteaucitronDisclaimerAlert, #tarteaucitronPrivacyUrl {
    color:white !important;
}

#tarteaucitronRoot .tarteaucitronAllow {
    background-color:var(--color-main) !important;
    color:white !important;
}

#tarteaucitronAlertBig #tarteaucitronCloseAlert:hover, #tarteaucitron #tarteaucitronPrivacyUrl:hover, #tarteaucitron #tarteaucitronPrivacyUrlDialog:hover {
    color:white !important;
}

#tarteaucitron #tarteaucitronPrivacyUrlDialog:hover {
    color:white !important;
}

/***** MEDIA QUERIES *****/

@media screen and (max-width: 1600px) {

    .dropdown-menu-2 {
        position: absolute !important;
        width: 1260px !important;
        left: 50% !important;
        top: 100px;
        transform: translateX(-43.5%) translateY(-4%);
        background-color: #eeeeee;
        padding: 1rem 0;
        /* border: 1px solid rgba(0,0,0,.15); */
        /* border-radius: 0.25rem; */
        box-shadow: 5px 2px 5px  rgba(0,0,0,0.45);
        z-index: 1050;
    }

    .swiper-button-prev  {
        left: 100px;
        top: 70%;
    }

    .swiper-button-next {
        right: 100px;
        top: 70%;
    }

    .swiper-button-next, .swiper-button-prev {
        width: 50px;
        height: 50px;
    }

}

@media screen and (min-width: 1300px) {

    .descriptif-texte {
        max-width: 627px;
    }
    
}


@media screen and (max-width: 1500px) {
    #navbarNav {
        justify-content: flex-start !important;
        gap: 115px;
    }
}



@media screen and (max-width: 1400px) {

    .list-reset-contact {
        padding: 10px 35px;
    }

    .nav-link {
        font-size: 14px;
    }

    .descriptif-texte {
        /* width: 870px; */
        height: 100%;
        padding: 30px 20px 30px 12px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: #fff;
        /* transform: translateX(200px); */
        z-index: 2;
        box-sizing: border-box;
    }

    .tpl-gamme-visuels {
        display: flex;
        align-items: normal;
        /* flex-direction: column; */
        justify-content: center;
        gap: 20px;
        /* flex-wrap: wrap; */
    }

    .tpl-gamme-thumbnails {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 25px;
    }

    .tpl-gamme-caracteristiques-colonne1, .tpl-gamme-caracteristiques-colonne2 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .tpl-rea .tpl-gamme-caracteristiques-colonne1, .tpl-rea  .tpl-gamme-caracteristiques-colonne2 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

}

@media screen and (min-width: 1301px) {

    .descriptif-texte-2 {
        width: 87%;
    }

    .container {
        max-width: 1280px;
    }
}

@media screen and (max-width: 1300px) and (min-width: 1200px) {

    .descriptif-texte-2 {
        height: 100%; 
        padding: 20px 0px 20px 20px;
        max-width: 565px;
        /* max-width:87%; */
    }
}


@media screen and (min-width: 1200px) {

    .tpl-gamme-caracteristiques-colonne2 h2 {
        max-width: 90%;
    }

    .tpl-gamme-caracteristiques-colonne2 ul {
        max-width:75%;
    }

    .nav-principale-logo-mobile {
        display: none;
    }

    #navbarNav {
        display: flex;
        height:100%;
    }
}

@media screen and (max-width: 1230px) {
    .descriptif-wrapper-2 {
        flex-direction: column-reverse;
    }

    .descriptif-wrapper .position-relative {
        width: 100%;
    }

}

@media screen and (max-width: 1200px) {

    .dropdown-menu-3 {
        min-width: inherit;
    }

    .navbar-nav .dropdown-menu {
        width:100% !important;
        margin: auto;
    }

    .type-gamme-col {
        text-align: center;
    }

/*     .descriptif-wrapper-2 {
        flex-direction: column-reverse;
    } */

    .descriptif-texte-wrapper-2 {
        border :0px;
    }

    .position-relative-2 {
        order:1;
    }

    .descriptif-texte, .descriptif-texte-2 {
        transform: inherit;
        padding:0 1.5em;
    }

    .descriptif-texte-wrapper-2 {
        padding-right: 0px;
    }

    .tpl-gamme-caracteristiques-row {
        flex-direction: column;
    }

    .descriptif-texte-2 ul {
        padding-left:1rem;
    }

    .tpl-gamme-caracteristiques-row > .col-md-6 {
        width: 100%;
        max-width: 100%;
    }

    .nav-item {
        padding: 10px 0px 5px 0px;
        height: auto;
        width: 100%;
    }

    .nav-menu-wrapper {
        width: auto;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .dropdown-menu-2 {
        position: relative !important;
        width: auto !important;
        transform: inherit;
        background-color: #eeeeee;
        padding: 1rem 0;
        box-shadow: 5px 2px 5px  rgba(0,0,0,0.45);
        z-index: 1050;
    }

    .nav-menu-category {
        flex-direction: column;
        padding-left: 0px;
        padding-right: 0px;
    }

    #nav .navbar-nav {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        background-color: white;
        gap: 0px;
        height:inherit;
        /* padding: 50px 0; */
    }

    .nav-principale-logo-desktop {
        display: none;
    }

    .navbar-toggler:focus {
        box-shadow:inherit;
    }

    #navbarNav {
        position: fixed;
        top: 95px;
        left: 0;
        right: 0;
        height: calc(100vh - 95px); /* Hauteur de l'écran moins la hauteur de la navbar */
        overflow-y: auto;
        background-color: white;
        z-index: 999; /* S'assurer qu'il passe devant tout */
    }
    

    #nav {
        /* height:100%; */
        height: 95px; 
        justify-content: space-evently !important;
        display: flex !important;
    }

    .nav-link {
        font-size:20px;
        justify-content: center;
        height:auto;
        border-color: inherit;
    }

    #nav-category {
        font-size: 15px;
        text-align: center;
        flex-direction: column;
    }

    .navbar-toggler-icon {
        width: 2em;
        height: 2em;
    }

    .dropdown-menu {
        position: static !important;
        padding-top: 0;
    }

    .list-reset-contact {
        margin-bottom: 4%;
        margin-top: 4%;
    }

    .nav-category {
        margin-top: 8px;
        margin-bottom: 8px;
    }

    .dropdown-menu {
        margin-top:0px;
        padding-bottom:0px;
    }

}

@media screen and (max-width: 991px) {
    .descriptif-texte {
        transform: inherit; 
    }

    .descriptif-texte-wrapper {
        width: inherit;
        border:0px;
        padding-left:0px;
    }

    .position-relative {
        margin-bottom:5%;
    }
}

@media screen and (max-width:767px) {

    .main-img-box-rea {
        width: 100% !important;
    }

    .tpl-realisation-thumbnails {
        display: flex;
        flex-direction: row;
        gap: 12px;
        flex-wrap: wrap;
        width: 100%;
        flex-shrink: 0;
    }

    .tpl-realisation-thumbnails.thumbnails-between {
        justify-content: flex-start;
    }

    .tpl-gamme-caracteristiques {
        margin-top:50px;
    }

    .tpl-h1-standard {
        font-size:35px;
    }

    .descriptif-texte, .descriptif-texte-2 {
        margin-left:0px !important;
        margin-right: 0px !important;
    }

    .descriptif-texte-wrapper {
        min-height:inherit;
    }

    #tpl-gamme .tpl-gamme-thumbnails {
        flex-direction: row !important;
        justify-content: flex-start !important;
        width: 100%;
        
    }

    #ariane {
        padding-left:12px;
        padding-right:12px;
    }

    .contact-btn-footer {
        margin-top: 7%;
        margin-bottom: 7%;
    }

    .swiper-button-prev {
        left:100px;
        top:50%;
    }
    
    .swiper-button-next {
        right:100px;
        top:50%;
    }

    .content-default-page {
        padding:0px 12px;
    }

    .descriptif-texte-wrapper, .descriptif-texte-wrapper-2 {
        height:inherit;
    }
    
    .btn-outline {
        padding:10px 20px;
    }

    .descriptif-boutons {
        font-size:15px;
    }

    .tpl-gamme-thumbnails {
        gap : 10px;
        flex-wrap: nowrap !important;
    }

    .tpl-gamme-thumbnails img {
        max-width: 70px;
    }

    .tpl-gamme-caracteristiques-colonne1 {
        order:2;
    }


    .footer2 {
        flex-direction: column;
        gap: 10px;
    }

    .footer {
        text-align: center;
      }

    .footer__address { margin: 0 auto 1rem; }
    .footer__social  { margin: 0 auto; }
    .footer .row-cols-2 > * { flex: 0 0 100%; max-width: 100%; }
    

    .footer li {
        max-width: inherit;
    }

    .last-ul-footer-column {
        padding-left:0px;
    }
    
    .footer-logos {
        flex-direction: column;

    }

    .footer-colonne2 {
        padding-left: 12px !important;
    }

    h1 {
        font-size: 40px;
        margin-bottom: 30px;
    }

    h2 {
        font-size: 30px;
    }

/*     .informations-content-bloc {
        max-width: inherit;
    } */

    #presentation, #informations {
        margin-top:50px;
    }

    .swiper-button-prev {
        left: 15px;
    }

    .swiper-button-next {
        right: 15px;
    }

    .bloc-sidebar {
        display: none;
    }

    .slider-savoir-plus {
        font-size: 13px;
        margin-top: 60px;
    }

    .slider-content {
        padding-top: 40px;
    }

    .titre-slider-accueil {
        font-size: 25px;
        line-height: 30px;
    }

    .swiper {
        height: 350px;
    }

    #cont-header-home {
        height: 500px;
    }

    #masonry-images span {
        font-size:31px;
    }

    .informations-content {
        flex-wrap: wrap;
        gap:0px;
    }

    .informations-content-bloc-text::after {
        display: none;
    }

    .informations-content-bloc-text {
        padding-right:0px; 
    }

    .informations-content-bloc1, .informations-content-bloc2 {
        border-bottom: 1px solid white;
        padding-bottom:80px;
    }

    .informations-content-bloc-img {
        text-align: center;
    }
    
    .swiper-clients-content::after {
        display: none;
    }

    .swiper-clients-content span {
        padding-right: 0px;
    }

    .swiper-clients-content {
        justify-content: center;
    }
}

/* CSS MOBILE VENANT DE GAMMES */


@media screen and (max-width:1500px) {
    .main-img-box {
        width:500px;
    }

    .main-img-box-rea {
        width:700px;
    }
}

@media screen and (max-width:1400px) {
    .main-img-box {
        width:400px;
    }

    .main-img-box-rea {
        width:700px;
    }

    .tpl-gamme-visuels {
        justify-content: flex-end;
        gap:10px;
    }
    .descriptif-texte-wrapper {
        padding-left:0px;
    }
}

@media screen and (max-width:1200px) {

    .tpl-gamme-visuels {
        justify-content: flex-start;
    }
}

@media screen and (max-width:767px) {

    #tpl-gamme .tpl-gamme-thumbnails {
        flex-direction: row !important;
        width:100%;
        gap:6px;
    }

    .tpl-gamme-visuels {
        flex-direction: column;
    }
    
    .thumb-img-box {
        width:65px;
        height:80px;
    }

    .main-img-box {
        width: 100%;
        height: 400px;
    }

    .tpl-gamme-main-image img {
        height:400px !important;
    }
}