@font-face {
    font-family: "Paris2024";
    src: url('/assets/fonts/Paris2024/Paris2024VariableRegular.ttf') format("woff2"),url('/assets/fonts/Paris2024/Paris2024VariableRegular.woff') format("woff"),url('webfont.ttf') format('truetype');
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    /* cursor: url(/assets/img/Icones/Curseur\ blanc.svg), auto; */
}

body {
    font-family: "Paris2024";
    font-weight: 400;
    font-size: 22px;
    line-height: 2.5rem;
    background-color: #080808;
    color: #BFA65A;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
} 

h2,h3 {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: semi-bold;
    color: #eeeeee;
    margin : 4rem 0 3rem 0;
    letter-spacing: 1px;
}

h3 {
    font-size: 30px;
}
.container {
    margin: auto 2rem;
}
p {
    padding: 1rem auto;
}

/* ============================================================================
===============   BOUTONS   ====================================================
==============================================================================  */

a,a:link { color: #BFA65A; }    
a:visited,a:active { color: #BFA65A; text-decoration: overline #BFA65A;} 
a:hover {text-decoration:none; }

button {
    font-size: 20px;
    letter-spacing: 1px;
    border: 2px solid #eeeeee;
    border-radius: 3rem;
    padding-inline: 20px;
    background-color: #9D1437;
    box-shadow: 5px 5px 0px #1e1e1e;
    margin: 4.2rem 0rem 2.3rem 0.5rem;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    /* line-height: 3rem; */
}
button:hover,button:focus {    
    margin: 4.5rem 0rem 2rem 1.2rem;
    box-shadow: 0px 0px 0px black;
    transition: all 0.2s ease-in-out;
}
button a,button a:visited,button a:active,button a:hover {
    color: #eeeeee;
    text-decoration:none;
}

/* FOOTER */ 

.footer {
    margin: 0;
    margin-top: 3rem;
    padding: 0;
    color: #080808;
    width: 100%;
    font-size: 17px;
    background-image: url(/assets/img/footer.png);
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
}
.footer p {
    margin-top: 3rem;
    margin-bottom: 0rem;
}
.logoFooter img {
    width: 50px;
    margin: 2rem;
    margin-top: 5rem;
}
.footer div {
    display: flex;
    align-items: center;
}
.mentionsLegales a {
    color: #080808;
    text-decoration: underline;
}
.copyright {
    margin: 0rem 1.5rem;
}
.AG {
    height: 40px;
    margin: 3rem 0 0 0.2rem;
}


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------
        TABLETTE
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media screen and (max-width: 992px) {

.button {
    padding: 8px;
}
}

/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------
MOBILE
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

@media screen and (max-width: 768px) {

    body {
        width: 95vw;
        font-size: 20px;
        line-height: 2rem;
        margin: 0;
        padding: 0;
        align-items: center;
    }
    h1 {
        letter-spacing: 0px;
        font-size: 3rem;
        line-height: 3rem;
        margin: 0rem;
    }
    .cta {
        font-size: 1.8rem;
    }
    #CONTACT .txt  {
        color: #eeeeee;
    }
    .container {
        width: 88vw;
        margin-left: 3rem;
    }
    button {
        margin: 3rem 0.3rem 0.5rem -0.2rem;
    }
    button:hover,button:focus {
        margin: 3.3rem 0.3rem 0.2rem 0.5rem;
    }
    


    /* FOOTER  */


    .footer {
        display: flex;
        flex-direction: column;
        font-size: 20px;
        background-image: url(/assets/img/footer_mobile.png);

    }
    .footer p {
        margin-top: 0;
    }
    .footerGauche {
        width: 90vw;
        margin-top: 90px !important; 
        text-align: center;
    }
    .logoFooter img {
        margin: 1.5rem;
    }
    .footer div {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
    }
    .AG {
        width: 85px;
        margin: 0 0 2rem 0;
        align-self: center;
    }
    p.copyright {
        margin: 2rem;
    }

}