body {
    font-size: var(--fontsize-txt);
    font-family: "nort", sans-serif;
    line-height: 1.3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.grecaptcha-badge {
    visibility: hidden;
    opacity: 0;
}

/* div:not(.crea_act):not(.crea_act > .flex) > .m_bloc_droit,
div:not(.crea_act):not(.crea_act > .flex) > .m_bloc_gauche,
div:not(.crea_act):not(.crea_act > .flex) > article .tiers {
    border: 0 !important;
    border-top-width: 0px !important;
    border-right-width: 0px !important;
    border-bottom-width: 0px !important;
    border-left-width: 0px !important;
    border-top-style: initial !important;
    border-right-style: initial !important;
    border-bottom-style: initial !important;
    border-left-style: initial !important;
    border-top-color: initial !important;
    border-right-color: initial !important;
    border-bottom-color: initial !important;
    border-left-color: initial !important;
    border-image-source: initial !important;
    border-image-slice: initial !important;
    border-image-width: initial !important;
    border-image-outset: initial !important;
    border-image-repeat: initial !important;
    padding: 0 !important;
    margin: auto !important;
} */

:root {
    --red: #e00718;  /* Rouge vif */
    --gris-tresclair: #e3e7e4;  /* Gris olive */
    --gris-clair: #89928C;  /* Gris olive */
    --gris-fonce: #747c76;  /* Gris olive (identique à la couleur secondaire) */
    --blanc: #fff;  /* Blanc */
    --noir: #000;  /* Noir */

    --fontsize-h1: clamp(40px, 4vw, 50px);
    --fontsize-h2: clamp(32px, 4vw, 40px);
    --fontsize-h3: clamp(25px, 4vw, 30px);
    --fontsize-h4: clamp(20px, 4vw, 24px);
    --fontsize-h5: clamp(18px, 4vw, 20px);
    --fontsize-h6: 18px;
    --fontsize-txt: 17px;
    --fontsize-small: 15px;
    --fontsize-xsmall: 14px;

    --container-width: 1300px;
    --container-reduced: 1100px;

    --clip-offset: 36px;
}

@font-face {
    font-family: 'EnjinIcon';
    src: url('../fonts/enjinicon.otf') format('opentype');
}

#load_load {
    background: rgba(0, 0, 0, 0) url(/images/site_load3.gif) no-repeat scroll center center;
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10001
}
  
#load_f {
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    background-color: #fff;
    background-position: center 40%;
    background-repeat: no-repeat;
    filter: contrast(0.4) brightness(1.5) grayscale(1);
    background-size: 200px;  
}

#menu_social {
    display: none;
}

#conteneur .btn, #prefooter .btn {
    border: 1px solid var(--blanc); 
    padding: 18px 36px;
    font-size: var(--fontsize-txt);
    border-radius: 0;
    display: inline-block;
    text-align: center;
    transition: all 0.1s ease-out;
    width: fit-content;
    text-decoration: none;
    font-weight: 700;
}
#conteneur .btn-blanc {
    background-color: var(--blanc); 
    color: var(--red);
}
#conteneur .btn-rouge, #prefooter .btn-rouge {
    color: var(--blanc); 
    border-color: var(--red);
    background-color: var(--red);
}
#conteneur p + .btn, #conteneur ul + .btn {
    margin-top: 30px;
}

#conteneur :is(h1,h2,h3,h4,h5,h6) {
    font-family: "scarlet", sans-serif;
    font-weight: 700;
    line-height: 1.15;
}

#conteneur h1, #conteneur .h1 {
    font-size: clamp(40px, 4vw, 50px);
}
#conteneur h2, #conteneur .h2 {
    font-size: clamp(32px, 4vw, 40px);
}
#conteneur h3, #conteneur .h3 {
    font-size: clamp(25px, 4vw, 30px);
}
#conteneur h4, #conteneur .h4 {
    font-size: clamp(20px, 4vw, 24px);
}
#conteneur h5, #conteneur .h5 {
    font-size: clamp(18px, 4vw, 20px);
}
#conteneur h6, #conteneur .h6 {
    font-size: 18px;
}

#conteneur strong {
    font-weight: 700;
}

#conteneur .txt-red {
    color: var(--red);
}

#conteneur a {
    text-decoration: none;
    color: var(--noir);
}

#conteneur .content_in_grid {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
}


#conteneur #main ul {
    list-style: none;
}
#conteneur #main ul li {
    padding: 10px 0 0 10px;
    position: relative;
}
#conteneur #main ul li::before {
    content: "";
    width: 4px;
    height: 4px;
    background-color: var(--red);
    border-radius: 50%;
    margin-right: 5px;
    position: absolute;
    top: 19px;
    left: 0;
    display: block;
}

#conteneur #main a:not(.btn) {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: var(--red);
}



/* ------------------------- CKEDITOR TEMPLATES : CSS FRONT -------------------------------------------*/

body img {
    max-width: 100%;
}
body p a {
    text-decoration: underline;
    font-weight: 700;
}
body p {
    margin-top: 10px;
}

body .flex {
	display: flex;
    flex-wrap: wrap;
}
body .flex:not(.left_right_full):not(.nogap) {
    gap: 10px;
}

body .text-center {
	text-align: center;
}

body .tiers {
	width: 33.3%;
}
body .flex:not(.left_right_full) .tiers {
    width: calc(33.3% - 7px);
}
body .deuxtiers {
	width: 66.6%;
}
body .deuxtiers:not(.nogap) {
    width: calc(66.6% - 3px);
}
body .half {
	width: 50%;
}
body .half:not(.nogap) {
    width: calc(50% - 5px);
}
body .quart {
	width: 25%;
}
body .quart:not(.nogap) {
    width: calc(25% - 7.5px);
}
body .troisquart {
	width: 75%;
}
body .troisquart:not(.nogap) {
    width: calc(75% - 2.5px);
}
body .m_bloc_full {
	width: 100%;
}

.left_right_full .col_txt {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left_right_full .col_img {
    line-height: 0;
}
body .col_img {
    overflow: hidden;
    position: relative;
}
body .col_img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    object-position: center;
    position: absolute;
}

.blocfullcolored {
    text-align: center;
    background-color: var(--red);
    color: white;
    padding: 40px;
}

.blocstiersrond {
    display: flex;
}
.blocstiersrond .tiers {
    padding: 20px;
    text-align: center;
}
.blocstiersrond .tiers img {
    max-width: 80%;
    margin: 0px auto 30px;
}
.blocstiersrond .tiers .titre {
    text-align: center;
    max-width: 300px;
    margin: auto;
}
.blocstiersrond .tiers .titre a {
    text-decoration: none;
}
.blocstiersrond img {
	border-radius: 400px;
}

.anim_chiffre_bloc {
    text-align: center;
}
.anim_chiffre_bloc .anim_chiffre {
    font-size: var(--fontsize-h3);
    font-weight: 700;
    color: var(--red);
}


/* ------------------------- VARIABLES ESPACEMENTS -------------------------------------------*/


.huge-padding {
    padding: 80px;
}
.big-padding {
    padding: 60px;
}
.normal-padding {
    padding: 40px;
}
.xs-padding {
    padding: 20px;
}
.xxs-padding {
    padding: 10px;
}

.topbtm-huge-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}
.topbtm-big-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}
.topbtm-normal-padding {
    padding-top: 40px;
    padding-bottom: 40px;
}
.topbtm-xs-padding {
    padding-top: 20px;
    padding-bottom: 20px;
}
.topbtm-xxs-padding {
    padding-top: 10px;
    padding-bottom: 10px;
}

.top-huge-padding {
    padding-top: 80px;
}
.top-big-padding {
    padding-top: 60px;
}
.top-normal-padding {
    padding-top: 40px;
}
.top-xs-padding {
    padding-top: 20px;
}
.top-xxs-padding {
    padding-top: 10px;
}

.btm-huge-padding {
    padding-bottom: 80px;
}
.btm-big-padding {
    padding-bottom: 60px;
}
.btm-normal-padding {
    padding-bottom: 40px;
}
.btm-xs-padding {
    padding-bottom: 20px;
}
.btm-xxs-padding {
    padding-bottom: 10px;
}

.noleft-padding {
    padding-left: 0px;
}
.notop-padding {
    padding-top: 0px;
}
.nobtm-padding {
    padding-bottom: 0px;
}
.noright-padding {
    padding-right: 0px;
}

.vertical-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.col_img_bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.col_img_bg > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
}



/* ------------------------- GENERAL -------------------------------------------*/




/* ------------------------- MENU -------------------------------------------*/


/* MENU NORMAL */

#conteneur_nav {
    display: flex;
    justify-content: space-between;  
    align-items: center;  
    padding: 15px 20px;
    background-color: var(--noir); 
    color: #fff;  
    position: fixed; 
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

#logo {
    flex: 0 0 auto; 
    margin-right: 1rem;  
}

#logo img {
    height: 100px;
    transition: all .3s ease-in-out;
}

#conteneur_nav .ul_first {
    display: flex;
    list-style: none; 
    margin: 0;
    padding: 0;
    justify-self: flex-end;
}

#conteneur_nav .ul_first > li {
    margin-left: 2rem; 
    position: relative;
}

#conteneur_nav .ul_first li a {
    text-decoration: none;
    color: #fff;  
    font-size: 16px;  
    display: block;
    transition: background-color 0.3s; 
    /* position: relative; */
    padding-block: 1rem;
}

#conteneur_nav .ul_first li a span {
    position: relative;
}

#conteneur_nav .ul_first > li > a > span::before {
    content: '';
    width: 0;
    position: absolute;
    bottom: -5px;
    height: 2px;
    background-color: var(--blanc);
    transition: all .2s ease-out;
}

#conteneur_nav .ul_first > li > a:hover > span::before {
    width: 100%;
}

#conteneur_nav .ul_first li ul {
    display: none;  
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    padding: 0;
    list-style: none;
    margin: 0;
    min-width: 200px; 
}

@media (min-width: 901px) {
    #conteneur_nav .ul_first li:hover > ul {
        display: block;  
    }
}

#conteneur_nav .ul_first li ul li {
    margin-left: 0;
}

#conteneur_nav .ul_first li ul li a {
    padding: 15px 20px;
    font-size: 14px;
    color: var(--noir);
    transition: all .1s ease-in-out;
    border-left: 0px solid var(--red);
}

#conteneur_nav .ul_first li ul li a:hover {
    background-color: #f5f5f5;
    border-left: 3px solid var(--red);
    transition: all .1s ease-in-out;
}

#conteneur_nav .top-menu {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--red);
    padding: 5px;
    font-size: 13px;
    display: flex;
    gap: 20px;
    transition: all .3s ease-in-out;
}
#conteneur_nav .top-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    width: 10px;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 100' preserveAspectRatio='none'%3E%3Cpolygon points='300,0 300,100 0,0' fill='%23e00718'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right top;
    z-index: 0;
}
#conteneur_nav .top-menu p {
    margin: 0;
}
#conteneur_nav .top-menu a {
    text-decoration: none;
    color: white;
}
#conteneur_nav .top-menu i {
    margin-right: 5px;
}
#super_cont.scrolled .top-menu {
    opacity: 0;
    top: -30px;
    transition: all .3s ease-in-out;
}


/* BLOCK MENU RESPONSIVE */

#conteneur_nav .burger-menu {
    display: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
}
#conteneur_nav .burger-menu div {
    width: 100%;
    height: 2px;
    border-radius: 1px;
    background-color: white;
    transition: all 0.3s ease;
}
#conteneur_nav .burger-menu.active div:nth-child(1) {
    transform: rotate(45deg) translate(11px, 11px);
}
#conteneur_nav .burger-menu.active div:nth-child(2) {
    opacity: 0;
}
#conteneur_nav .burger-menu.active div:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}


/* ------------------------- PRÉFOOTER -------------------------------------------*/

#prefooter-wrap::after {
    content: "";
    position: relative;
    display: block;
    margin: 35px 0;
    bottom: 0;
    left: -70px;
    width: calc(100% + 70px);
    height: 45px; /* Hauteur des éléments */
    background-image: repeating-linear-gradient(
        to right,
        #ddd 0,         /* Début du 1er bloc */
        #ddd 180px,     /* Fin du 1er bloc */
        transparent 180px, /* Début de l'espace */
        transparent 250px, /* Fin de l'espace */
        
        #ddd 250px, 
        #ddd 430px, 
        transparent 430px, 
        transparent 500px, 
        
        #ddd 500px, 
        #ddd 680px, 
        transparent 680px, 
        transparent 750px, 
        
        #e00718 750px,   /* Début du bloc rouge (tous les 4) */
        #e00718 930px,   /* Fin du bloc rouge */
        transparent 930px, 
        transparent 1000px
    );
}
#prefooter {
    display: flex;
    max-width: var(--container-reduced);
    margin: 0px auto;
    overflow: hidden;
}
#prefooter a {
    text-decoration: none;
    color: var(--noir);
}
#prefooter .col-left {
    background-color: var(--red);
    font-size: var(--fontsize-h4);
    width: 45%;
    padding: 40px 80px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
#prefooter .col-left::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 100' preserveAspectRatio='none'%3E%3Cpolygon points='300,0 300,100 0,0' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right top;
    z-index: 0;
}
#prefooter .col-left .titre {
    color: white;
    margin-bottom: 30px;
}
#prefooter .col-left .bg-blanc {
    padding: 10px 40px 10px 0;
    font-weight: 700;
    background-color: white;
    position: relative;
}
#prefooter .col-left .bg-blanc::before {
    content: "";
    position: absolute;
    top: 0;
    left: -40px;
    width: 40px;
    height: 100%;
    background-color: white;
    z-index: 0;
}
#prefooter .col-left .bg-blanc::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 14px;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 100' preserveAspectRatio='none'%3E%3Cpolygon points='300,0 300,100 0,0' fill='%23e00718'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right top;
    z-index: 0;
}
#prefooter .col-right {
    width: 55%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
#prefooter .col-right .btn {
    margin-top: 20px;
}
#prefooter .col-right i {
    color: var(--red);
    margin-right: 8px;
}



/* ------------------------- FOOTER -------------------------------------------*/



#footer {
    background-color: var(--red); /* Rouge */
    color: var(--blanc);
    padding: 40px 0 10px;
}

#foot_cont {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
}

#footer .wrap .footer_bloc{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#footer .footer_bottom {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
}

/* #footer .wrap .footer_bloc h3{
    font-size: var(--font-size-large);
} */

#footer .wrap .footer_bloc li {
    list-style: none;
    padding-bottom: .5rem;
}

#footer .wrap .footer_bloc a {
    text-decoration: none;
    color: var(--blanc);
}

#footer .wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

#footer .wrap .footer_bottom p {
    font-size: var(--fontsize-xsmall);
}

#footer .wrap .footer_bottom a {
    color: var(--blanc);
    text-decoration: none;
}

#footer .wrap  .footer_bloc .logo_footer {
    background-image: none !important;
}

#footer .rs-list a {
    display: flex;
    align-items: center;
    line-height: 0.8;
}
#footer .rs-list i {
    background-color: white;
    color: var(--red);
    width: 30px;
    height: 30px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
}




/* --------------------------------------------
-------------------- PAGES --------------------
---------------------------------------------*/


/* ------------------------- HOME -------------------------------------------*/

#conteneur #intro-home {
    flex-wrap: wrap;
    overflow: hidden;
    padding-bottom: 80px;
    position: relative;
}
#conteneur #intro-home .m_bloc_gauche {
    width: 300px;
    background-color: var(--red);
    padding: 40px 40px 40px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
}
#conteneur #intro-home .m_bloc_gauche::before {
    content: "";
    position: absolute;
    right: -100px;
    bottom: 0;
    width: 200px;
    height: 100%;
    background-color: var(--red);
    z-index: 1;
    transform: skewX(15deg);
}
#conteneur #intro-home .m_bloc_gauche::after {
    content: "";
    position: absolute;
    right: -140px;
    top: -40px;
    width: 90px;
    height: 450px;
    background-image: url('data:image/svg+xml,<svg id="traits-act-creation" xmlns="http://www.w3.org/2000/svg" width="30" height="150" viewBox="0 0 30 150"><rect id="rect-droite" width="10" height="110" transform="translate(20 0)" fill="%238a928c"/><rect id="rect-gauche" width="10" height="150" transform="translate(0 0)" fill="%238a928c"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
    transform: rotate(-15deg);
}
#conteneur #intro-home .m_bloc_gauche p {
    font-size: var(--fontsize-h3);
    font-weight: 700;
    font-family: "scarlet-wood", sans-serif;
    color: #88918b;
    background: #fff;
    padding: 18px 25px 18px 40px;
    line-height: 1;
    margin: 0;
}
#conteneur #intro-home .m_bloc_gauche p::first-letter {
    color: var(--red);
}
#conteneur #intro-home .m_bloc_droit {
    width: calc(100% - 300px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 700px;
    position: relative;
    z-index: -1;
}
#conteneur #intro-home .infos-intro {
    background-color: rgba(224, 7, 24, 0.8);
    color: white;
    padding: 40px;
    text-align: right;
    width: 600px;
    max-width: calc(100% - 40px);
    position: absolute;
    right: 0;
    bottom: 0;
}
#conteneur #intro-home .infos-intro h1 {
    margin-bottom: 30px;
    font-weight: 400;
}
#conteneur #intro-home .infos-intro h1 strong {
    font-size: var(--fontsize-h2);
    display: block;
}
#conteneur #intro-home::after {
    content: "";
    position: absolute;
    display: block;
    margin: 35px 0 0;
    bottom: 0;
    left: -40px;
    width: calc(100% + 40px);
    height: 45px; /* Hauteur des éléments */
    background-image: repeating-linear-gradient(
        to right,
        #ddd 0,         /* Début du 1er bloc */
        #ddd 180px,     /* Fin du 1er bloc */
        transparent 180px, /* Début de l'espace */
        transparent 250px, /* Fin de l'espace */
        
        #e00718 250px, 
        #e00718 430px, 
        transparent 430px, 
        transparent 500px, 
        
        #ddd 500px, 
        #ddd 680px, 
        transparent 680px, 
        transparent 750px, 
        
        #ddd 750px,   /* Début du bloc rouge (tous les 4) */
        #ddd 930px,   /* Fin du bloc rouge */
        transparent 930px, 
        transparent 1000px
    );
}

#conteneur #services-home,
#conteneur #avantages-home {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 0px;
}
#conteneur #services-home h2,
#conteneur #avantages-home h2 {
    margin: auto;
    width: 100%;
}
#conteneur #services-home h2 + p,
#conteneur #avantages-home h2 + p {
    margin-bottom: 20px;
    width: 100%;
}
#conteneur #services-home .tiers,
#conteneur #avantages-home .tiers {
    display: inline-block;
    vertical-align: top;
    padding: 30px 15px;
}
#conteneur #services-home .tiers img {
    max-width: 100%;
    border-radius: 6px;
    margin-bottom: 15px;
}
#conteneur #services-home .tiers h3 {
    padding-bottom: 30px;
}
#conteneur #services-home .tiers h3,
#conteneur #avantages-home .tiers h3 {
    position: relative;
}
#conteneur #services-home .tiers h3::after {
    content: "";
    height: 2px;
    width: 30px;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 15px;
    background-color: var(--red);
    display: block;
    position: absolute;
}

#conteneur #reals-home h2 {
    margin-bottom: 20px;
    text-align: center;
}
#conteneur #reals-home .tiers h3 {
    color: var(--red);
}
#conteneur #reals-home .m_bloc_gauche {
    background-color: var(--red);
    padding: 40px 80px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
#conteneur #reals-home .m_bloc_gauche::after {
    content: "";
    position: absolute;
    right: -200px;
    bottom: 0;
    width: 450px;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="272.902" height="300" viewBox="0 0 272.902 300" preserveAspectRatio="none"><g id="Groupe_1" data-name="Groupe 1" transform="translate(-626.098 -297)"><path id="Tracé_1" data-name="Tracé 1" d="M236,0l85.833,300H168L83.1,0Z" transform="translate(543 297)" fill="%23e00718"/><path id="Tracé_2" data-name="Tracé 2" d="M236,0l85.833,300H356L270.735,0Z" transform="translate(543 297)" fill="%23fff"/></g></svg>');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: left bottom;
    z-index: 1;
}
#conteneur #reals-home .m_bloc_gauche p {
    font-size: var(--fontsize-h4);
    margin-bottom: 30px;
    color: white;
    z-index: 2;
    margin-top: 0;
}
#conteneur #reals-home .m_bloc_gauche a {
    z-index: 3;
}
#conteneur #reals-home .m_bloc_droit {
    position: relative;
    z-index: -1;
    line-height: 0;
}
#conteneur #reals-home .m_bloc_droit img {
    width: 50%;
    height: 100%;
    object-fit: cover;
}
#conteneur #reals-home .temoignage {
    position: absolute;
    bottom: 10px;
    line-height: initial;
    right: 10px;
    background: white;
    padding: 25px;
    max-width: 70%;
    width: 480px;
    border-left: 4px solid var(--red);
    font-size: 20px;
    font-style: italic;
}
#conteneur #reals-home .temoignage p {
    margin: 0;
}

#conteneur #avantages-home .tiers h3 {
    padding-bottom: 15px;
}



/* ------------------------- PAGE INTERNE -------------------------------------------*/

#conteneur #hero-page {
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    margin-bottom: 160px;
    position: relative;
}
#conteneur #hero-page::after {
    content: "";
    position: absolute;
    display: block;
    margin: 0;
    bottom: -80px;
    left: -40px;
    width: calc(100% + 40px);
    height: 45px; /* Hauteur des éléments */
    background-image: repeating-linear-gradient(
        to right,
        #ddd 0,         /* Début du 1er bloc */
        #ddd 180px,     /* Fin du 1er bloc */
        transparent 180px, /* Début de l'espace */
        transparent 250px, /* Fin de l'espace */
        
        #e00718 250px, 
        #e00718 430px, 
        transparent 430px, 
        transparent 500px, 
        
        #ddd 500px, 
        #ddd 680px, 
        transparent 680px, 
        transparent 750px, 
        
        #ddd 750px,   /* Début du bloc rouge (tous les 4) */
        #ddd 930px,   /* Fin du bloc rouge */
        transparent 930px, 
        transparent 1000px
    );
}
#conteneur #hero-page h1 {
    color: white;
    padding: 20px 40px;
    background: var(--red);
    position: relative;
    max-width: calc(100% - 30px);
}
#conteneur #hero-page h1::after {
    content: "";
    position: absolute;
    top: 0;
    right: -30px;
    width: 30px;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 100' preserveAspectRatio='none'%3E%3Cpolygon points='0,0 0,100 300,100' fill='%23e00718'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right top;
    z-index: 0;
}

.cat_103 #conteneur .grid {
    margin: 80px 0;
}


#conteneur .form_contact * {
    font-family: "nort", sans-serif;
}
#conteneur .form_contact #main_cont {
    margin: 80px auto 0;
    max-width: var(--container-width);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
#conteneur .form_contact #main_cont_foot {
    margin: 20px auto 80px;
    max-width: var(--container-width);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#conteneur .form_contact .obligatoire {
    width: 100%;
    font-size: var(--fontsize-small);
}
#conteneur .form_contact .obligatoire span {
    margin-right: 5px;
}
#conteneur .form_contact .bloc {
    line-height: 1;
}
#conteneur .form_contact .bloc_nom,
#conteneur .form_contact .bloc_prenom,
#conteneur .form_contact .bloc_tel,
#conteneur .form_contact .bloc_email {
    width: calc(50% - 10px);
}
#conteneur .form_contact .bloc_adresse,
#conteneur .form_contact .bloc_message {
    width: 100% !important;
}
#conteneur .form_contact .bloc_cp {
    width: 33% !important;
}
#conteneur .form_contact .bloc_ville {
    width: calc(67% - 20px) !important;
}

#conteneur .form_contact input:not([type="checkbox"]):not([type="submit"]) {
    height: 37px;
    padding: 5px;
    width: 100%;
    font-size: var(--fontsize-small);
}
#conteneur .form_contact textarea {
    width: 100%;
    padding: 8px;
    font-size: var(--fontsize-small);
}
#conteneur .form_contact label {
    font-size: var(--fontsize-small);
    font-weight: 700;
    margin-bottom: 2px;
    display: block;
}
#conteneur .form_contact input, #conteneur .form_contact textarea {
    border: 1px solid var(--noir);
    border-radius: 3px;
}
#conteneur .form_contact input:focus-visible, #conteneur .form_contact textarea:focus-visible {
    outline: none;
    border-color: var(--red);
}
#conteneur .form_contact .rgpd_notice {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
#conteneur .form_contact .rgpd_notice input {
    width: 18px;
    height: 18px;
}
#conteneur .form_contact .rgpd_notice label {
    font-weight: 400;
    width: calc(100% - 28px);
}
#conteneur .form_contact .info_rgpd_retrait {
    font-size: var(--fontsize-small);
}
#conteneur .form_contact .bloco {
    display: block;
    width: 100%;
    text-align: center;
}
#conteneur .form_contact .bloco input[type="submit"] {
    background: var(--red);
    border-color: var(--red);
    color: white;
    cursor: pointer;
    padding: 18px 36px;
    font-weight: 700;
    font-size: 17px;
    border-radius: 0;
}

#map {
    height: 450px; 
    width: 100%;
    margin-bottom: 50px;
    outline: none;
}
#super_cont .leaflet-popup-content-wrapper {
    border-radius: 5px;
    box-shadow: none;
    background-color: var(--noir);
}
#super_cont .leaflet-popup-content {
    margin: 10px;
    font-family: "nort", sans-serif;
    color: white;
    text-align: center;
    font-size: var(--fontsize-xsmall);
}
#super_cont .leaflet-popup-content strong {
    font-size: var(--fontsize-txt);
}
#super_cont .leaflet-popup-tip {
    box-shadow: none;
    background-color: var(--noir);
}
#super_cont .leaflet-popup-close-button {
    color: #bbb;
}

#conteneur .legal h2:not(:first-child) {
    margin-top: 40px;
}


/* --------------------------------------------------------------
   ------------------------- RESPONSIVE -------------------------
   -------------------------------------------------------------- */

@media (max-width: 1300px) {
    :root {
        --container-width: calc(100% - 30px);
    }
    #conteneur #intro-home .m_bloc_gauche {
        width: 230px;
        padding-right: 0px;
        gap: 30px;
    }
    #conteneur #intro-home .m_bloc_droit {
        width: calc(100% - 230px);
        min-height: 600px;
    }
    #conteneur #intro-home .m_bloc_gauche::before {
        right: -80px;
        width: 160px;
    }
    #conteneur #intro-home .m_bloc_gauche::after {
        right: -130px;
    }
    #conteneur #intro-home .m_bloc_gauche p {
        padding-left: 20px;
    }
}

@media (max-width: 1024px) {
    #conteneur #intro-home {
        display: flex;
        flex-direction: column-reverse;
        padding-bottom: 50px;
    }
    #conteneur #intro-home .m_bloc_droit {
        width: 100%;
    }
    #conteneur #intro-home .m_bloc_gauche {
        width: 100%;
        flex-direction: row;
        gap: 0;
        background: #fff;
        padding: 10px 0;
    }
    #conteneur #intro-home .m_bloc_gauche::before, #conteneur #intro-home .m_bloc_gauche::after {
        display: none;
    }
    #conteneur #intro-home::after {
        margin: 0;
    }
    #conteneur #intro-home .infos-intro {
        max-width: 100%;
        padding: 20px 20px 25px;
        text-align: left;
    }
    #conteneur #reals-home .m_bloc_gauche {
        padding: 20px;
    }
    #conteneur #reals-home .m_bloc_gauche p {
        margin-bottom: 0;
    }
    #conteneur #reals-home .m_bloc_gauche::after {
        right: -120px;
        width: 300px;
    }
    #conteneur #reals-home .temoignage {
        padding: 18px;
    }
    #foot_cont {
        gap: 20px;
    }
}

@media (min-width: 901px) {
    #super_cont.scrolled #conteneur_nav #logo img {
        height: 60px;
        transition: all .3s ease-in-out;
    }
    #super_cont.scrolled #conteneur_nav {
        padding: 0.5rem 2rem;
    }
    #super_cont:not(.scrolled) #conteneur_nav .ul_first {
        top: 13px;
        position: relative;
    }
    #conteneur_nav .icons-small {
        display: none;
    }
}

@media (max-width: 900px) {
    #conteneur_nav {
        padding: 10px 20px 10px 10px;
    }
    #logo img {
        height: 80px;
    }
    #conteneur_nav .burger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
    #conteneur_nav .all-menu-container {
        display: block;
        background: white;
        text-align: left;
        position: fixed;
        padding: 25px;
        right: -100%;
        width: calc(100% - 80px);
        transition: all .3s ease-in-out;
    }
    #conteneur_nav .all-menu-container::before {
        content: "";
        height: 100%;
        width: 80px;
        background-color: rgba(0, 0, 0, 0.7);
        left: -80px;
        top: 0;
        display: block;
        position: absolute;
        opacity: 0;
    }
    #conteneur_nav .all-menu-container.active {
        right: 0;
        transition: all .3s ease-in-out;
    }
    #conteneur_nav .all-menu-container.active::before {
        opacity: 1;
        transition: all .1s ease-in-out .3s;
    }
    #conteneur_nav .ul_first {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    #conteneur_nav .ul_first li a {
        color: var(--noir);
    }
    #conteneur_nav .ul_first li a span::before {
        background-color: var(--noir);
    }
    #conteneur_nav .top-menu {
        display: none;
    }
    #conteneur_nav .icons-small {
        display: flex;
        gap: 20px;
        margin-left: auto;
        margin-right: 40px;
    }
    #conteneur_nav .icons-small a {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background-color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
    }
    #conteneur_nav .icons-small i {
        color: var(--red);
        font-size: 20px;
    }
    #conteneur_nav .ul_first > li {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
    #conteneur_nav .ul_first > li table + i {
        color: var(--noir);
        display: inline-block;
        font-size: 21px;
        margin-left: 12px;
    }
    #conteneur_nav .ul_first li ul {
        position: relative;
        width: 100%;
        background-color: #f5f5f5;
        box-shadow: none;
    }
    #conteneur_nav .ul_first li ul.active {
        display: block;
    }
}

@media (max-width: 768px) {
    :root {
        --fontsize-txt: 16px;
    }
    /* Réaffectation des valeurs prédéfinies au responsive */
    .huge-padding {
        padding: 40px;
    }
    .big-padding {
        padding: 30px;
    }
    .normal-padding {
        padding: 20px;
    }
    .xs-padding {
        padding: 10px;
    }
    .xxs-padding {
        padding: 8px;
    }
    .topbtm-huge-padding {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .topbtm-big-padding {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .topbtm-normal-padding {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .topbtm-xs-padding {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .topbtm-xxs-padding {
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .top-huge-padding {
        padding-top: 40px;
    }
    .top-big-padding {
        padding-top: 30px;
    }
    .top-normal-padding {
        padding-top: 20px;
    }
    .top-xs-padding {
        padding-top: 10px;
    }
    .top-xxs-padding {
        padding-top: 8px;
    }
    .btm-huge-padding {
        padding-bottom: 40px;
    }
    .btm-big-padding {
        padding-bottom: 30px;
    }
    .btm-normal-padding {
        padding-bottom: 20px;
    }
    .btm-xs-padding {
        padding-bottom: 10px;
    }
    .btm-xxs-padding {
        padding-bottom: 8px;
    }
    /* Reste du responsive */
    body .tiers, body .flex:not(.left_right_full) .tiers, body .deuxtiers, body .deuxtiers:not(.nogap), body .half, body .half:not(.nogap) {
        width: 100%;
    }
    body .col_img_bg {
        height: 400px;
    }
    body .quart, body .troisquart {
        width: 50%;
    }
    body .quart:not(.nogap), body .troisquart:not(.nogap) {
        width: calc(50% - 5px);
    }
    body .blocdeuxcolsimggauche.flex {
        flex-direction: column-reverse;
    }
    body .col_img img {
        position: relative;
        max-height: 500px;
    }
    body .responsive-reverse {
        flex-direction: column-reverse;
    }
    #conteneur #hero-page {
        margin-bottom: 100px;
    }
    #conteneur #hero-page::after {
        height: 30px;
        bottom: -60px;
        background-image: repeating-linear-gradient(
            to right,
            #ddd 0,         /* Début du 1er bloc */
            #ddd 125px,     /* Fin du 1er bloc */
            transparent 125px, /* Début de l'espace */
            transparent 175px, /* Fin de l'espace */
            
            #e00718 175px, 
            #e00718 300px, 
            transparent 300px, 
            transparent 350px, 
            
            #ddd 350px, 
            #ddd 475px, 
            transparent 475px, 
            transparent 525px, 
            
            #ddd 525px,   /* Début du bloc rouge (tous les 4) */
            #ddd 650px,   /* Fin du bloc rouge */
            transparent 650px, 
            transparent 700px
        );
    }
    #conteneur #avantages-home .tiers h3 {
        padding-bottom: 0;
    }
    .left_right_full .col_txt {
        padding: 30px 15px;
    }
    #conteneur #intro-home .m_bloc_droit {
        min-height: 450px;
    }
    #conteneur #reals-home .flex {
        flex-direction: column-reverse;
    }
    #conteneur #reals-home .m_bloc_gauche::after {
        display: none;
    }
    #conteneur #services-home .tiers, #conteneur #avantages-home .tiers {
        padding-bottom: 0;
    }
    #conteneur #services-home .tiers h3 {
        padding-bottom: 10px;
    }
    #conteneur #services-home .tiers h3::after {
        bottom: 0px;
    }
    #conteneur #reals-home .temoignage {
        max-width: calc(100% - 20px);
        width: auto;
    }
    #foot_cont {
        flex-wrap: wrap;
    }
    #prefooter {
        flex-wrap: wrap;
    }
    #prefooter .col-left {
        width: 90%;
        padding: 20px 80px 20px 20px;
    }
    #prefooter .col-left::before {
        width: 55px;
    }
    #prefooter .col-left .titre {
        margin-bottom: 10px;
    }
    #prefooter .col-right {
        width: 100%;
        padding: 20px 20px 0;
    }
    #prefooter-wrap::after {
        background-image: repeating-linear-gradient(
            to right,
            #ddd 0,         /* Début du 1er bloc */
            #ddd 125px,     /* Fin du 1er bloc */
            transparent 125px, /* Début de l'espace */
            transparent 175px, /* Fin de l'espace */
            
            #ddd 175px, 
            #ddd 300px, 
            transparent 300px, 
            transparent 350px, 
            
            #ddd 350px, 
            #ddd 475px, 
            transparent 475px, 
            transparent 525px, 
            
            #e00718 525px,   /* Début du bloc rouge (tous les 4) */
            #e00718 650px,   /* Fin du bloc rouge */
            transparent 650px, 
            transparent 700px
        );
        margin: 25px 0;
        height: 30px;
    }
    #footer .wrap .footer_bloc {
        width: calc(50% - 10px);
        flex: auto;
    }
}

@media (max-width: 500px) {
    body .quart, body .troisquart, body .quart:not(.nogap), body .troisquart:not(.nogap) {
        width: 100%;
    }
    #footer .wrap .footer_bloc {
        width: 100%;
    }
    #footer .wrap .footer_bloc:first-child {
        display: none;
    }
    body .col_img_bg {
        height: 300px;
    }
}


.tarteaucitronPartnersList *{
    color: #fff !important;
}