:root {
    /* var(--dom-vert) */
    --dom-vert: rgb(203, 207, 58);
    --dom-vert-p: rgb(195, 215, 0);
    /* Utilisé */
    --dom-rouge-f: rgb(156, 8, 50);
    /* Utilisé */
    --dom-rouge-c: rgb(166, 37, 55);
    --dom-rouge-p: rgb(197, 0, 33);
    --dom-orange-f: rgb(171, 74, 41);
    /* Utilisé */
    --dom-orange-c: rgb(180, 91, 46);
    --dom-orange-p: rgb(216, 65, 27);

    --header-logo-size: 100px;
    --header-logo-size-tel: 75px;

    --transition-3s: all .3s ease-out;
}

/* --- --- --- */





/* --- Global --- */

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
p {
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

.boutonContainer,
.boutonContainerBaseline {
    display: flex;
    align-items: center;
    justify-content: center;
}

.boutonContainerBaseline {
    justify-content: start;
}

.backTitle {
    padding: 1px 5px;
    border-radius: 5px;
    color: white;
}

.btGreen {
    background-color: var(--dom-vert-p);
}

.btRed {
    background-color: var(--dom-rouge-p);
}

.btOrange {
    background-color: var(--dom-orange-p);
}

.boutonJoin {
    background: var(--dom-orange-p);
    color: white;
    border: none;
    padding: 10px 20px;
    display: inline-block;
    font-size: clamp(12px, 1.4vw, 32px);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transform: skew(-21deg);
}

.boutonJoin span {
    display: inline-block;
    transform: skew(21deg);
}

.boutonJoin::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    left: 0;
    background: var(--dom-vert-p);
    opacity: 0;
    z-index: -1;
    transition: all 0.5s;
}

.boutonJoin:hover::before {
    left: 0;
    right: 0;
    opacity: 1;
}

.baseLineElelement {
    display: flex;
    align-items: center;
    justify-content: baseline;
}

.centerElelement {
    display: flex;
    align-items: center;
    justify-content: center;
}

.endElelement {
    display: flex;
    align-items: center;
    justify-content: end;
}

.marginTitle {
    margin: 0 20px;
}

.icon {
    display: flex;
}

.imgRounded {
    border-radius: 10px;
}

.separator {
    height: 1px;
    width: 85%;
    border-radius: 50px;
    background-color: var(--dom-orange-p);
}

#colorBanner {
    width: 100%;
    min-height: 100%;
    position: absolute;
    opacity: 0.92;
}

.bc-vert {
    background-color: var(--dom-vert-p);
}

.bc-orange {
    background-color: var(--dom-orange-p);
}

.bc-rouge {
    background-color: var(--dom-rouge-p);
}

.vertTxt {
    color: var(--dom-vert-p);
}

.orangeTxt {
    color: var(--dom-orange-p);
}

.rougeTxt {
    color: var(--dom-rouge-p);
}

.descrRisque {
    text-align: center;
    color: rgba(200, 200, 200, 0.7);
    font-size: 0.75rem;
    line-height: normal;
}

.lienTxt,
.lienTxtNoir {
    text-decoration: none;
    position: relative;
}

.lienTxt::after,
.lienTxtNoir::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0px;
    left: 0;
    border-radius: 50px;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.lienTxt::after {
    background-color: var(--dom-orange-p);
}

.lienTxtNoir::after {
    background-color: black;
}

.lienTxt:hover::after,
.lienTxtNoir:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.roundedBouton {
    position: relative;
    /* Necessary for positioning the ::before element */
    cursor: pointer;
    text-decoration: none;
    background-color: var(--dom-orange-p);
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    overflow: hidden;
}

.roundedBouton span {
    z-index: 2;
}

.roundedBouton::before {
    content: '';
    position: absolute;
    top: 100%;
    /* Start from bottom */
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dom-vert-p);
    transition: top 0.5s;
}

.roundedBouton:hover::before {
    top: 0;
    /* Animate to top */
}

.input-group {
    position: relative;
}

.input-group-2 {
    width: 100%;
    display: flex;
}

.input {
    border: solid 1.5px white;
    border-radius: 5px;
    background: none;
    padding: 1rem;
    font-size: 1rem;
    color: white;
    transition: border .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.input2 {
    display: flex;
    width: 100%;
}

.inputGroupAutreSecond {
    display: flex;
    width: 100%;
}

.inputAutreSecond,
.inputAutre3 {
    width: inherit;
    box-sizing: border-box;
}

.user-label {
    position: absolute;
    left: 15px;
    top: 50%;
    color: white;
    pointer-events: none;
    transform: translateY(-50%);
    transition: .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.input:focus,
.input:not(:placeholder-shown):valid {
    outline: none;
    border: 1.5px solid var(--dom-orange-p);
}

.input:focus~label,
.input:not(:placeholder-shown):valid~label {
    transform: translateY(-50%) scale(0.8);
    top: 0;
    background-color: rgb(28, 32, 41);
    padding: 0 .2em;
    border-radius: 5px;
    color: var(--dom-orange-p);
}

/* --- --- --- */






/* -- TOP HEAD COLOR PAGE -- */

#bottomHeaderColor {
    user-select: none;
    height: 60vh;
    display: flex;
    flex-direction: column;
}

#bottomHeaderColorContainer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    padding-top: 145px;
    flex-grow: 1;
}

.bottomHeaderColorElement {
    display: flex;
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 15px;
    height: 100%;
}

.bottomHeaderColorTxtContainer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /*max-width: 50vw;*/
    z-index: 2;
    margin: 0px 20px;
    color: white;
    /*background-color: #000000a3;
    box-shadow: 0px 0px 7px 14px #000000a3;*/
}

.title3 {
    font-size: 3.5rem;
    font-weight: 800;
}

.textDescriptif {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.712);
}

.longRoundedBouton {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Necessary for positioning the ::before element */
    cursor: pointer;
    text-decoration: none;
    background-color: var(--dom-orange-p);
    padding: 5px 20px;
    border-radius: 50px;
    border: none;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    width: 100%;
    overflow: hidden;
    text-align: center;

    flex: 1;
    /* Permet aux boutons de prendre toute la largeur disponible */
    box-sizing: border-box;
}

.longRoundedBouton span {
    position: relative;
    z-index: 2;
}

.longRoundedBouton::before {
    content: '';
    position: absolute;
    top: 100%;
    /* Start from bottom */
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dom-vert-p);
    transition: top 0.5s;
}

.longRoundedBouton:hover::before {
    top: 0;
    /* Animate to top */
}

/* -- -- -- */





/* --- Header --- */

/* -- TOP HEAD -- */

#bottomHeader {
    user-select: none;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

#topBarContainer {
    user-select: none;
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: column;
    padding: 20px 30px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(3.5px);
    border-bottom: 1px solid var(--dom-rouge-p);
    transition: var(--transition-3s);
    z-index: 10;

    width: -webkit-fill-available;
}

#topBar {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#headerLogo {
    width: var(--header-logo-size);
    transition: var(--transition-3s);
}

#headerMenu ul,
#headerSousMenuRSE ul,
#headerSousMenuClub ul,
#headerMenuBurger ul,
#headerSousMenuBurger ul {
    display: flex;
    list-style-type: none;
    align-items: center;
    margin: 0;
    gap: 20px;
    transition: var(--transition-3s);
}

#headerMenuBurger {
    display: none;
    /* Masquer le menu par défaut */
    position: absolute;
    top: 130px;
    right: 10px;
    transition: top 0.3s ease;
}

#headerMenuBurger.active {
    display: flex;
}


#headerMenuBurger ul {
    flex-direction: column;
    background-color: rgb(250, 250, 250);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 8px 2px rgba(200, 200, 200, 0.9);
    transition: var(--transition-3s);
}

#headerMenu ul li,
#headerSousMenuRSE ul li,
#headerSousMenuClub ul li,
#headerMenuBurger ul li,
#headerSousMenuBurger ul li {
    position: relative;
    transition: var(--transition-3s);
}

#headerMenu ul .boutonSouligne,
#headerMenu ul .ouvertureMenu,
#headerMenuBurger ul .boutonSouligne,
#headerMenuBurger ul .ouvertureMenuBurger {
    text-decoration: none;
    font-weight: bolder;
    font-size: clamp(12px, 1.3vw, 32px);
    transition: var(--transition-3s);
}


#headerSousMenuRSE ul .boutonSouligne,
#headerSousMenuRSE ul .ouvertureMenu,
#headerSousMenuBurger ul .boutonSouligne,
#headerSousMenuBurger ul .ouvertureMenu,
#headerSousMenuClub ul .boutonSouligne,
#headerSousMenuClub ul .ouvertureMenu {
    text-decoration: none;
    font-weight: bolder;
    font-size: clamp(12px, 1.1vw, 32px);
    transition: var(--transition-3s);
}

#headerMenu ul ul a,
#headerSousMenuRSE ul ul a,
#headerSousMenuClub ul ul a,
#headerMenuBurger ul ul a,
#headerSousMenuBurger ul ul a {
    font-size: 1rem;
}

#headerMenu ul li .boutonSouligne::after,
#headerSousMenuRSE ul li .boutonSouligne::after,
#headerSousMenuClub ul li .boutonSouligne::after,
#headerMenuBurger ul li .boutonSouligne::after,
#headerSousMenuBurger ul li .boutonSouligne::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    transition: width 0.3s ease;
}


#headerMenu ul li .boutonV::after,
#headerSousMenuRSE ul li .boutonV::after,
#headerSousMenuClub ul li .boutonV::after,
#headerMenuBurger ul li .boutonV::after,
#headerSousMenuBurger ul li .boutonV::after {
    background-color: var(--dom-vert);
}

#headerMenu ul li .boutonO::after,
#headerSousMenuRSE ul li .boutonO::after,
#headerSousMenuClub ul li .boutonO::after,
#headerMenuBurger ul li .boutonO::after,
#headerSousMenuBurger ul li .boutonO::after {
    background-color: var(--dom-orange-p);
}

#headerMenu ul li .boutonR::after,
#headerSousMenuRSE ul li .boutonR::after,
#headerSousMenuClub ul li .boutonR::after,
#headerMenuBurger ul li .boutonR::after,
#headerSousMenuBurger ul li .boutonR::after {
    background-color: var(--dom-rouge-p);
}

#headerMenu ul li .boutonSouligne:hover::after,
#headerSousMenuRSE ul li .boutonSouligne:hover::after,
#headerSousMenuClub ul li .boutonSouligne:hover::after,
#headerMenuBurger ul li .boutonSouligne:hover::after,
#headerSousMenuBurger ul li .boutonSouligne:hover::after {
    width: 100%;
}

#headerMenu ul ul,
#headerSousMenuRSE ul ul,
#headerSousMenuClub ul ul,
#headerMenuBurger ul ul {
    display: none;
    position: absolute;
    flex-direction: column;
    justify-content: baseline;
    align-items: baseline;
    gap: 10px;
    top: 100%;
    right: 0;
    width: 100%;
    background-color: rgb(250, 250, 250);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 0px 8px 2px rgba(200, 200, 200, 0.9);
    transition: var(--transition-3s);
}

#headerSousMenuBurger ul ul {
    display: none;

}

#headerMenuBurger ul ul {
    top: -75px;
    left: -210px;
    width: 150%;
}

#headerMenu ul li:hover>ul,
#headerSousMenuRSE ul li:hover>ul,
#headerMenuBurger ul li:hover>ul,
#headerSousMenuBurger ul li:hover>ul {
    display: flex;
}

.boutonV,
.boutonO,
.boutonR {
    color: black;
}


.boutonV:hover {
    color: var(--dom-vert);
}

.boutonO:hover {
    color: var(--dom-orange-p);
}

.boutonR:hover {
    color: var(--dom-rouge-p);
}

/* - Bouton Humburger - */

#boutonHumburger {
    display: none;
    flex-direction: column;
    width: 50px;
    cursor: pointer;
    align-items: end;
}

#boutonHumburger span {
    background: var(--dom-rouge-p);
    border-radius: 10px;
    height: 6px;
    margin: 5px 0;
    transition: .4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

#ligne1 {
    width: 50%;
}

#ligne2 {
    width: 100%;
}

#ligne3 {
    width: 75%;
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]:checked~#ligne1 {
    transform-origin: bottom;
    transform: rotatez(-45deg) translate(-7px, 1px);
}

input[type="checkbox"]:checked~#ligne2 {
    transform-origin: top;
    transform: rotatez(45deg)
}

input[type="checkbox"]:checked~#ligne3 {
    transform-origin: bottom;
    width: 50%;
    transform: translate(-22px, -9px) rotatez(-45deg);
}

/* - - - */

/* -- -- -- */




/* -- BOTTOM HEAD -- */

#bottomHeaderContainer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    padding-top: 145px;
    flex-grow: 1;
}

.bottomHeaderElement {
    display: flex;
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 15px;
    height: 100%;
}

.textContainerElement {
    transform: skew(-20deg);
    position: absolute;
    left: -100px;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 50vw;
    z-index: 2;
    padding: 20px;
    padding-left: 150px;
    color: white;
    background-color: #b70f31;
    /*box-shadow: 0px 0px 7px 14px #000000a3;*/
}

.textContainerElement2 {
    transform: skew(-17deg);
    position: absolute;
    left: -100px;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 50vw;
    z-index: 1;
    padding: 20px 10px;
    padding-left: 152px;
    background-color: rgb(195, 55, 21);
}

.title1 {
    font-size: clamp(12px, 3.5rem, 1000px);
    transform: skew(20deg);
}

.textDescriptif {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.712);
    transform: skew(20deg);
}

#banniereAccueil {
    background-image: url('./../documents/images/bannerClub.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 100%;
    position: absolute;
    opacity: 0.9;
}

/* Animation keyframes */
@keyframes scrollBackground {
    0% {
        background-position: top 0 left 0;
    }

    100% {
        background-position: top 0 left -5000vw;
    }
}

/* Apply animation for screens less than 700px wide */
@media (max-width: 1450px) {

    #banniereAccueil {
        background-repeat: repeat-x;
        animation: scrollBackground 4000s linear infinite;
    }
}

/* Apply animation for screens less than 700px wide */
@media (max-width: 620px) {
    #banniereAccueil {
        background-repeat: repeat-x;
        animation: scrollBackground 1200s linear infinite;
    }
}



/* -- -- -- */

/* --- --- --- */











/* --- Footer --- */

footer {
    display: flex;
    flex-direction: column;
    background-color: rgb(28, 32, 41);
    color: white;
    gap: 20px;
}

#footerInfosContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 50px 20px;
    gap: 15px;
    font-size: 0.85rem;
    line-height: 1.3rem;
}

#footerInfosBox {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

#logoFooter {
    width: 70px;
}

#hyperLienMaps,
.hyperLienFooter {
    color: var(--dom-orange-p);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

#hyperLienMaps::after,
.hyperLienFooter::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--dom-orange-p);
    bottom: 0;
    left: 0;
    border-radius: 50px;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

#hyperLienMaps:hover::after,
.hyperLienFooter:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

#footerCopyContainer {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    margin: 40px 30px;
}

#footerCopyTxt {
    display: inline;
    text-align: center;
    transition: var(--transition-3s);
}

#logoKContainer {
    position: relative;
    display: inline-flex;
    align-items: center;
    background-color: white;
    padding: 2px;
    background-color: white;
    border-radius: 50px;
}

#logoKContainer::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: rgb(255, 255, 255);
    bottom: -5px;
    left: 0;
    border-radius: 50px;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

#logoKContainer:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}


#logoK {
    width: 20px;
}

.footerMentionTxt {
    position: relative;
    display: inline-flex;
    color: var(--dom-orange-p);
    text-decoration: none;
}

#footerMentionTxt {
    transition: var(--transition-3s);
    text-align: center;
}

.footerMentionTxt::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--dom-orange-p);
    bottom: 0;
    left: 0;
    border-radius: 50px;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.footerMentionTxt:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* --- --- --- */














/* --- Accueil --- */

#accueilContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px 0px 0px 0px;
}

#presentationContainer {
    display: flex;
    flex-direction: column;
    gap: 100px;
    width: 100%;
}

/* -- Président -- */

#presidentsClub {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0px 20px;
}

.title2 {
    font-size: 2.5rem;
    font-weight: 600;
}

#presidentsContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5vw;
}

.presidentBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.presidentNom {
    font-size: 1.2rem;
}

.imgPresident {
    width: 30vw;
    max-width: 425px;
    border-radius: 50%;
    border: 1px solid;
}

#imgPresident1 {
    border-color: var(--dom-rouge-p);
}

#imgPresident2 {
    border-color: var(--dom-vert-p);
}

.shape {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--dom-rouge-p) 0%, var(--dom-vert-p) 100%);
    animation: morph 10s ease-in-out infinite;
    /* J'ai changé l'easing à linear pour une transition linéaire */
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    height: 32.5vw;
    width: 32.5vw;
    max-width: 440px;
    max-height: 440px;
    z-index: 5;
}

.shape2 {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(0deg, var(--dom-vert-p) 0%, var(--dom-orange-p) 100%);
    animation: morph2 10s ease-in-out infinite;
    /* J'ai changé l'easing à ease-in-out pour une transition plus lisse */
    border-radius: 50% 50% 40% 60% / 50% 40% 60% 50%;
    height: 32.5vw;
    width: 32.5vw;
    max-width: 440px;
    max-height: 440px;
    z-index: 5;
}

@keyframes morph2 {
    0% {
        border-radius: 50% 50% 40% 60% / 50% 40% 60% 50%;
    }

    25% {
        border-radius: 40% 60% 50% 50% / 40% 50% 60% 50%;
    }

    50% {
        border-radius: 50% 50% 40% 60% / 50% 40% 60% 50%;
    }

    75% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    100% {
        border-radius: 50% 50% 40% 60% / 50% 40% 60% 50%;
    }
}


@keyframes morph {
    0% {

        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    25% {

        border-radius: 50% 50% 40% 60% / 50% 40% 60% 50%;
    }

    50% {

        border-radius: 40% 60% 50% 50% / 40% 50% 60% 50%;
    }

    75% {

        border-radius: 50% 50% 40% 60% / 50% 40% 60% 50%;
    }

    100% {

        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* -- -- -- */


#infosClubContainer {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    width: 100%;
}


/* -- Engagement -- */

#engagementContainer {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    background-color: rgba(247, 247, 247, 0.639);
    border-radius: 10px;
}

#engagementArticle {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.engagementBox {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    max-width: 250px;
    align-items: center;

}

.charteEntreprise {
    height: 100px;
}

/* -- -- -- */

/* -- RSE Def -- */

#rseDefContainer {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: start;
    justify-content: center;
    overflow: hidden;
    padding: 60px;
    background-color: var(--dom-rouge-p);
    color: white;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    max-width: 60vw;
    font-size: 1.2rem;
    line-height: 1.6;
}

#rseBackPic {
    position: absolute;
    top: -300px;
    right: -300px;
    height: 600px;
    opacity: 0.3;
}

#rseBackPic2 {
    position: absolute;
    bottom: -250px;
    left: 100px;
    height: 400px;
    opacity: 0.35;
}

/* -- -- -- */

/* -- RSE Poste Article -- */

#RSEArticleContainer {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    width: 100%;
}

#RSEArticleBox {
    display: flex;
    flex-direction: row;
    max-width: 100%;
}

.RSEArticleBoxIntern {
    display: flex;
    flex-direction: row;
    width: 50%;
}

.RSEArticle {
    display: flex;
    position: relative;
}

.imgRSEArticle {
    width: 100%;
}

.imageContainer {
    position: relative;
    display: inline-block;
    transition: var(--transition-3s);
}

.imageContainer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    /* Vous pouvez ajuster cette valeur selon vos besoins */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}


.articleTitle {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 27px 0px;
    width: 100%;
    text-align: center;
    color: white;
    transition: var(--transition-3s);
}

.RSEArticle:hover .atGreen {
    background-color: var(--dom-vert-p);
    padding-bottom: 30px;
}

.RSEArticle:hover .atOrange {
    background-color: var(--dom-orange-p);
    padding-bottom: 30px;
}

.RSEArticle:hover .atRed {
    background-color: var(--dom-rouge-p);
    padding-bottom: 30px;
}

.RSEArticle:hover .imageContainer {
    filter: brightness(75%);
}

/* -- -- -- */

/* -- Adhérer -- */

#adhererContainer {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    flex-wrap: wrap;
}

.joinTxtBox {
    display: flex;
    flex-direction: column;
    align-items: end;
    text-align: end;
}

/* -- -- -- */


/* -- News -- */

#newsContainer {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 30px;
    background-color: rgba(234, 234, 234, 0.8);
    margin-bottom: -100px;
}

.imgNewsCard {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-3s);
}

.flecheCard {
    transition: var(--transition-3s);
    font-size: 1.1rem;
}

.flecheSmallCard {
    transition: var(--transition-3s);
}

.numberNewsCard {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    font-size: 1.1rem;
    background-color: white;
    color: #000000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
    text-decoration: none;
    overflow: hidden;
    transition: var(--transition-3s);
}

.voirNewsCard {
    font-size: 1.1rem;
}

.numberNewsCard:hover,
.voirNewsCard:hover,
.flecheCard:hover {
    font-size: 1.2rem;
}

.smallNumberCard:hover,
.voirNewsSmallCard:hover,
.flecheSmallCard:hover {
    font-size: 0.75rem;
}

.dateNewsCard {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    font-size: 1.1rem;
    background-color: white;
    color: #000000;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
    text-decoration: none;
    overflow: hidden;
    transition: var(--transition-3s);
}

.smallNumberCard,
.smallDateCard,
.voirNewsSmallCard,
.flecheSmallCard {
    font-size: 0.65rem;
    line-height: normal;
}

.card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.cardSmall-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.card {
    width: 400px;
    height: 400px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
    perspective: 1000px;
}

.cardSmall {
    width: 190px;
    height: 190px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
    perspective: 1000px;
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-front {
    background-color: #fff;
    z-index: 1;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.flip-button,
.flip-back-button {
    position: absolute;
    bottom: 10px;
    padding: 5px 10px;
    background-color: white;
    color: #000000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.flip-button {
    right: 10px;
}

.flip-back-button {
    left: 10px;
}

.boutonVoirCard {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 5px 10px;
    background-color: white;
    color: #000000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: var(--transition-3s);
}

.card-back {
    color: white;
    transform: rotateY(180deg);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cardOrange {
    background-color: var(--dom-orange-p);
}

.cardRed {
    background-color: var(--dom-rouge-p);
}

.cardGreen {
    background-color: var(--dom-vert);
}

.card-back-content {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: auto;
    max-height: 40%;
}

/* Personnalisation barre de navigation */

/* Personnaliser la barre de défilement Horizontale */
.card-back-content::-webkit-scrollbar {
    width: 6px;
    /* Largeur de la barre de défilement */
    height: 8px;
}

/* Personnaliser le fond de la barre de défilement */
.card-back-content::-webkit-scrollbar-track {
    background: transparent;
    /* Couleur du fond */
}

/* Personnaliser le curseur de la barre de défilement */
.card-back-content::-webkit-scrollbar-thumb {
    background: #888;
    /* Couleur du curseur */
    border-radius: 5px;
    /* Bords arrondis pour le curseur */
}

.card-back-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}




.flipped {
    transform: rotateY(180deg);
}

.titleNewsCard {
    font-size: 1.5rem;
}

.smallTitleNewsCard {
    font-size: 1rem;
}









/* -- -- -- */


/* -- Réseaux -- */

#reseauxContainer {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: end;
    width: 100%;
}

#logoClubReseaux {
    background-color: rgba(255, 255, 255, 0.92);
    border-radius: 10px;
    width: 150px;
    z-index: 2;
}

#reseauxBox {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    gap: 30px;
    overflow: hidden;
    padding: 60px;
    background-color: var(--dom-orange-p);
    color: white;
    font-size: 1.2rem;
    width: 100%;
    box-sizing: border-box;
}

#reseauxIconBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.92);
    padding: 20px;
    border-radius: 50px;
    transition: var(--transition-3s);
}

#reseauxIconBox:hover {
    background-color: white;
}

.boutonReseaux {
    text-decoration: none;
    font-size: 2.3rem;
    transition: var(--transition-3s);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
        /* Vous pouvez ajuster la valeur pour contrôler la distance de déplacement */
    }
}

.boutonReseaux:hover {
    animation: bounce 1s infinite;
}

.boutonReseaux:not(:hover) {
    animation: none;
    /* Stop animation */
}

/* -- -- -- */

/* -- Partenaires -- */

#partenairesContainer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: start;
    width: 100%;
}

#partenairesBox {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(225, 225, 225, 0.85);
    width: 100%;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* Hide any overflowing content */
}

#partenairesBoxIntern {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin: 15px 30px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.partenairesArticle {
    background-color: white;
    min-width: 200px;
    max-width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.partenaireImg {
    background-color: white;
    width: 90%;
    max-height: 90%;
}

#partenaireError {
    background-color: white;
    border-radius: 8px;
    padding: 10px;
    margin: 20px 10px;
}

.nav-button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.3rem;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: var(--transition-3s);
}

.nav-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.nav-button.left {
    left: 10px;
}

.nav-button.right {
    right: 10px;
}

/* Media Queries */
@media (min-width: 1200px) {
    #partenairesBoxIntern {
        width: calc(200px * 5 + 15px * 4);
        /* Show 5 articles */
    }
}

@media (max-width: 1200px) {
    #partenairesBoxIntern {
        width: calc(200px * 4 + 15px * 3);
        /* Show 4 articles */
    }
}

@media (max-width: 992px) {
    #partenairesBoxIntern {
        width: calc(200px * 3 + 15px * 2);
        /* Show 3 articles */
    }
}

@media (max-width: 768px) {
    #partenairesBoxIntern {
        width: calc(200px * 2 + 15px * 1);
        /* Show 2 articles */
    }
}

@media (max-width: 576px) {
    #partenairesBoxIntern {
        width: 200px;
        /* Show 1 article */
    }
}



/* -- -- -- */

/* --- --- --- */








/* --- Mentions Légales - CGU - PDC --- */

#globalPageContainer {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 80px 50px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    /*padding: 30px;*/
    line-height: 1.6rem;
    overflow: hidden;
}

.paragContainer {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.titreParag {
    font-size: 2.5rem;
    line-height: 1;
    text-align: start;
}

.telColor {
    color: black;
    transition: var(--transition-3s);
}

.telColor:hover {
    color: var(--dom-orange-p);
}

.imgBannerContainer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bannerImg {
    max-width: 100%;
}

/* --- --- --- */









/* --- Club des 1000 --- */

.paddingContainer {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.duoElementContainer {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    justify-content: space-around;
}

.imgDuoElement {
    width: 60%;
    border-radius: 5px;
}

#sloganContainer {
    line-height: 1.4;
}

.sloganCD1000 {
    font-weight: 700;
    font-size: 2.2rem;
}

#signatureCharte {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

#signatureCharteBox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-around;
}

#charteRSEContainer {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.charteContainer {
    display: flex;
    flex-direction: column;
    max-width: 250px;
    gap: 25px;
    text-align: justify;
}

.titleCharteType {
    font-size: 2rem;
}

#charteEngagementContainer {
    display: flex;
    align-items: center;
    justify-content: center;
}

#charteEngagementBox {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: start;
    justify-content: center;
    overflow: hidden;
    padding: 50px;
    background-color: var(--dom-rouge-p);
    color: white;
    border-top-right-radius: 10px;
    border-radius: 10px;
    max-width: 60vw;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 500px;
}


#charteBackPic,
#charteBackPic2 {
    position: absolute;
    opacity: 0.3;
}

#charteBackPic {
    top: -150px;
    right: -150px;
    height: 300px;
}

#charteBackPic2 {
    bottom: -110px;
    left: 100px;
    height: 200px;
}

#rseClubContainer {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
}

.rseClubBox {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1 1 200px;
}

.rseClubImg {
    height: 100px;
}

/* --- --- --- */








/* --- RSE --- */

#topParticiperTerContainer {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: space-around;
}

.imgParticiperTer {
    width: 200px;
    border-radius: 10px;
}

.img4Container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.img4 {
    width: 200px;
    border-radius: 10px;
}

.infoSuppCVContainer {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
}

.charRestant {
    font-size: smaller;
    color: #777;
}

#cvContainer {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

#cvInfoContainer {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.illustrationCV {
    max-height: 300px;
    background-color: #eeeeee;
    padding: 10px;
    border-radius: 10px;
}

.cvFormContainer {
    padding: 25px;
    background-color: rgb(28, 32, 41);
    border-radius: 10px;
    min-width: 35%;
}

.formulaireCV {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    color: white;
}

.validateButton {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 15px;
    user-select: none;
    background-color: rgba(110, 110, 110, 0.55);
    color: white;
    font-size: 1rem;
    padding: 10px 15px;
    border-radius: 50px;
    border: 0px;
    outline: none;
    text-decoration: none;
    transition: all 0.3s ease-out;
    align-items: center;
    text-align: center;
}

.buttonImgInput {
    user-select: none;
    cursor: pointer;
}

.inputImg {
    display: none;
}

/* --- --- --- */













/* --- Accompagner le changement --- */

#trioContainer {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: space-around;
}

#internBox {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
}

/* --- --- --- */



/* --- 1000 actus --- */

.actus-cardSmall-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

#actuImgContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.actuImg {
    cursor: pointer;
    border-radius: 10px;
    width: 100%;
}

.actuImgBox {
    cursor: pointer;
    max-width: 200px;
    border-radius: 10px;
    background-color: var(--dom-orange-p);
    color: white;
}

.txtActuImg {
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    text-align: center;
}

.boutonMenuG,
.boutonMenuMiddle,
.boutonMenuD {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--dom-orange-p);
    position: relative;
    cursor: pointer;
    text-decoration: none;
    padding: 10px 20px;
    border: none;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    overflow: hidden;
}

.boutonMenuG {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.boutonMenuMiddle {
    border-left: 1px solid rgb(255, 255, 255);
    border-right: 1px solid rgb(255, 255, 255);
}


.boutonMenuD {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* -- Modal Image -- */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 10;
}

/* Style de la modal-content (l'image en grand) */
.modal-content {
    margin: auto;
    display: block;
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 80%;
}

/* Pour maintenir le ratio de l'image */
.modal-content img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

/* Style de la close button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* -- -- -- */

.eventContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.eventBox {
    box-shadow: 0px 0px 5px 0px #c1c1c1;
    border-radius: 10px;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    max-width: 300px;
}

.eventBoxA {
    text-decoration: none;
    color: black;
}

.dwnldAgendaContainer {
    display: flex;
    text-decoration: none;
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0px 0px 5px 0px #c1c1c1;
}

.logoBrand {
    width: 20px;
    transition: var(--transition-3s);
}

.dwnldAgendaContainer:hover .logoBrand {
    width: 23px;
}


/* --- --- --- */








/* --- Contact -- */

.contactFormContainer {
    padding: 20px;
    background-color: rgb(28, 32, 41);
    border-radius: 10px;
}

.formulaireContact {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.contactFormTitle {
    color: white;
    font-size: 2.5rem;
    line-height: normal;
    text-align: center;
}

.inputInfoContainer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.firstInputBox {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 30px;
}

.secondInputBox {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.textAdressContact {
    font-size: 1.2rem;
}

.googleMapsContainer {
    display: flex;
    text-decoration: none;
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0px 0px 5px 0px #c1c1c1;
    transition: var(--transition-3s);
}

.googleMapsContainer:hover {
    font-size: 1.05rem;
}

/* --- --- --- */







/* --- Partenaires/adhéerants --- */

.articlePresentationContainer {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.articlePresentationBox {
    display: flex;
    flex-direction: column;
    min-width: 250px;
    max-width: 250px;
    padding: 15px 15px 15px;
    gap: 15px;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #f0f0f0;
    border-radius: 10px;
}

.txtLeger {
    font-size: 0.85rem;
    color: rgb(71, 71, 71);
    font-weight: 600;
}

.imgArticlePresentationBox {
    background-color: rgb(255, 255, 255);
    min-width: 225px;
    max-width: 225px;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}

.imgArticlePresentation {
    background-color: white;
    max-width: 90%;
    max-height: 90%;
}

/* --- --- --- */








/* --- Bouton retour au top --- */

#buttonTop {
    opacity: 0;
    position: fixed;
    cursor: default;
    bottom: 50px;
    right: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--dom-orange-p);
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 0px 4px rgb(197, 0, 33, 0.25);
    transition-duration: 0.3s;
    overflow: hidden;
    transition: var(--transition-3s);
    z-index: 10;
}

.svgIcon {
    width: 12px;
    transition-duration: 0.3s;
}

.svgIcon path {
    fill: white;
}

#buttonTop:hover {
    width: 140px;
    border-radius: 50px;
    transition-duration: 0.3s;
    box-shadow: 0px 0px 0px 4px rgb(195, 215, 0, 0.25);
    background-color: var(--dom-vert-p);
    align-items: center;
}

#buttonTop:hover .svgIcon {
    /* width: 20px; */
    transition-duration: 0.3s;
    transform: translateY(-200%);
}

#buttonTop::before {
    position: absolute;
    bottom: -20px;
    content: "Retour en haut";
    color: white;
    /* transition-duration: .3s; */
    font-size: 0px;
}

#buttonTop:hover::before {
    font-size: 13px;
    opacity: 1;
    bottom: unset;
    /* transform: translateY(-30px); */
    transition-duration: 0.3s;
}

/* --- --- --- */

.parallax {
    position: fixed;
    top: 0;
    left: -250px;
    width: 500px;
    height: 500px;
    background-image: url('./../documents/images/logoR1.svg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.45;
    /* Ajoute une légère transparence */
}

.parallaxInverse {
    position: fixed;
    bottom: 0;
    right: -175px;
    width: 350px;
    height: 350px;
    background-image: url('./../documents/images/logoR2.svg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.5;
    /* Ajoute une légère transparence */
}


@media only screen and (max-width: 1067px) {
    #headerMenu {
        display: none;
    }

    #sousMenuRSE,
    #sousMenuClub {
        display: none;
    }

    #boutonHumburger {
        display: flex;
    }

    .RSEArticle {
        max-width: 50%;
    }

    #RSEArticleBox {
        flex-direction: column;
    }

    .RSEArticleBoxIntern {
        width: auto;
    }
}

@media only screen and (max-width: 750px) {
    .bannerImg {
        max-width: none;
        max-height: 200px;
    }
}

@media only screen and (max-width: 640px) {
    .textContainerElement {
        max-width: 60vw;
    }

    .title1 {
        font-size: 1.8rem;
    }

    .textDescriptif {
        font-size: 1rem;
    }

    #footerInfosContainer {
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }

    #footerInfosBox {
        flex-direction: column;
    }

    #footerCopyTxt {
        font-size: 0.6rem;
    }

    #footerMentionTxt {
        font-size: 0.5rem;
    }

    #bottomHeaderColor {
        height: 45vh;
    }

    #bottomHeaderContainer {
        padding-top: 120px;
    }

    #bottomHeaderColorContainer {
        padding-top: 120px;
    }

    #topbarContainer {
        padding: 15px 25px;
    }

    #headerLogo {
        width: var(--header-logo-size-tel);
    }

    #engagementContainer {
        border-radius: 0;
    }

    .imgPresident {
        width: 50vw;
    }

    .shape,
    .shape2 {
        width: 52vw;
        height: 52vw;
    }

    #rseDefContainer {
        max-width: none;
        border-radius: 0;
        padding: 40px;
        margin-top: -50px;
    }

    .RSEArticle {
        max-width: none;
    }

    .RSEArticleBoxIntern {
        flex-direction: column;
    }

    .imgRSEAGreenBorder {
        border-bottom: 1px solid var(--dom-vert-p);
    }

    .imgRSEAOrangeBorder {
        border-bottom: 1px solid var(--dom-orange-p);
    }

    .imgRSEARedBorder {
        border-bottom: 1px solid var(--dom-rouge-p);
    }

    #reseauxBox {
        flex-direction: column;
        max-width: none;
        border-radius: 0;
        padding: 50px 25px;
        margin-top: -50px;
    }

    #reseauxIconBox {
        flex-direction: row;
    }

    .title3 {
        font-size: 2rem;
    }

    .titreParag {
        font-size: 1.7rem;
    }

    #globalPageContainer {
        margin: 0px;
        border-radius: 0px;
    }

    .duoElementContainer {
        flex-direction: column-reverse;
        gap: 35px;
    }

    .imgDuoElement {
        width: 85%;
    }

    #charteEngagementBox {
        border-radius: 0;
        max-width: none;
        width: 100vw;
    }

    #rseClubContainer {
        flex-direction: column;
    }

    #newsContainer {
        margin-bottom: -50px;
    }

    .card-container {
        flex-direction: column;
        align-items: center;
    }

    .cardSmall-container {
        flex-direction: row;
    }

    .card {
        width: 80vw;
        height: 80vw;
    }

    .cardSmall {
        width: 40vw;
        height: 40vw;
    }

    .smallNumberCard,
    .smallDateCard {
        font-size: 0.45rem;
    }

    .titleNewsCard {
        font-size: 1.3rem;
    }

    .smallTitleNewsCard {
        font-size: 0.85rem;
    }

    #topParticiperTerContainer {
        flex-direction: column;
        align-items: center;
    }

    .img4Container {
        flex-direction: column;
        gap: 20px;
    }

    .img4 {
        width: 80%;
    }

    #trioContainer {
        flex-direction: column;
    }

    .boutonMenuG,
    .boutonMenuMiddle,
    .boutonMenuD {
        font-size: 0.85rem;
    }

    .textAdressContact {
        font-size: 1rem;
    }

    #cvContainer {
        flex-direction: column;
    }
}




