/* css pou tout paj */
    /* font */
        /* Futura LT */
            /* Regular / Medium */
            @font-face {
                font-family: 'Futura LT';
                src: url('../../fonts/FuturaLT.woff2') format('woff2');
                font-weight: 400;
                font-style: normal;
                font-display: swap;
            }

            /* Bold */
            @font-face {
                font-family: 'Futura LT';
                src: url('../../fonts/FuturaLT-Bold.woff2') format('woff2');
                font-weight: 700;
                font-style: normal;
                font-display: swap;
            }

            /* Heavy */
            @font-face {
                font-family: 'Futura LT';
                src: url('../../fonts/FuturaLT-Heavy.woff2') format('woff2');
                font-weight: 900;
                font-style: normal;
                font-display: swap;
            }
        /* Futura LT */

        /* Futura LT Condensed */
            /* @font-face {
                font-family: 'Futura LT Condensed';
                src: url('../../fonts/FuturaLT-Condensed.woff2') format('woff2');
                font-weight: 400;
                font-style: normal;
                font-display: swap;
            }

            @font-face {
                font-family: 'Futura LT Condensed';
                src: url('../../fonts/FuturaCondBold.woff2') format('woff2');
                font-weight: 700;
                font-style: normal;
                font-display: swap;
            } */
        /* Futura LT Condensed */

        /* ARRESS */
            @font-face {
                font-family: 'ARRESS';
                src: url('../../fonts/ARRESSRegular.woff2') format('woff2');
                font-weight: 400;
                font-style: normal;
                font-display: swap;
            }
        /* ARRESS */
    /* font */

    :root{
        --red: #A40000;
        --green: #689D71;
        --yellow: #FFDF43;
        --light-yellow: #fff2b4;
        --bg-color: #FCF9EB;

        --greenbg : #75ebb3;
        --greentxt : #0c5532;

        --yellowbg : #f8d796;
        --yellowtxt : #b1790b;

        --redbg : #f8a6a0;
        --redtxt : #550c06;

        --bluebg : #a5cffd;
        --bluetxt : #035dbe;

        --graybg : #b0b0b0;
        --graytxt : #242424;

        --white: #ffffff;
        --light-white: #ffffff25;

        --black: #000000;
        --light-black: #00000050;

        --gray: rgb(102, 101, 101);
        --light-gray: #00000025;
        
        --box-shadow: 0 8px 16px rgba(0,0,0,.1);
    }

    *{
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        text-decoration: none;
        transition: all .2s linear;
        font-family: 'Futura LT'; 
        font-weight: 400;
        font-size: 16px;
        color: var(--black);
    }

    body{
        overflow-x: hidden;
        background: var(--white);
    }

    ::-webkit-scrollbar{
        width: 5px;
        height: 5px;
    }

    body::-webkit-scrollbar{
        width: 8px;
        height: 8px;
    }

    ::-webkit-scrollbar-track{
        background-color: transparent;
    }

    ::-webkit-scrollbar-thumb{
        background-color: var(--light-gray);
        border-radius: 16px;
    }

    body::-webkit-scrollbar-thumb{
        background-color: var(--red);
        border-radius: 0;
    }
/* css pou tout paj */

/* svg icon */
    svg{
        width: 18px;
        height: 18px;
    }
/* svg icon */

/* section */
    section{
        width: 95%;
        padding: 8px 32px;
        margin: 32px auto;
    }

    .first_section{
        margin-top: 116px;
    }
/* section */

/* titre */
    .titre{    
        max-width: 800px;
        padding: 0 16px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        position: relative;
        margin-bottom: 20px;
    }

    .titre .soustitre{
        color: var(--red);
        text-align: center;
        position: relative;
        text-transform: uppercase;
        font-size: 16px;
    }

    .titre .soustitre::before, .titre .soustitre::after{
        content: '';
        width: 30px; height: 2px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: var(--red);
    }

    .titre .soustitre::before{
        right: 100%;
        margin-right: 8px;
    }
    
    .titre .soustitre::after{
        left: 100%;
        margin-left: 8px;
    }

    .titre h2{
        text-align: center;
        font-size: 35px;
        font-family: 'ARRESS';
        span{
            font-size: 35px;
            font-family: 'ARRESS';
            color: var(--red);
        }       
    }

    .titre p{
        text-align: center;
    }
/* titre */

/* responsive */
    /* font */
        @media screen and (max-width: 450px) {
            *{
                font-size: 15px;
            }
        }
    /* font */

    /* section */
        @media screen and (max-width: 650px) {
            section{
                padding: 8px 16px;
            }
        }

        @media screen and (max-width: 500px) {
            .first_section{
                margin-top: 100px;
            }
        }

        @media screen and (max-width: 450px) {
            section{
                width: 93%;
                padding: 8px 10px;
            }
        }
    /* section */

    /* titre */
        @media screen and (max-width: 650px) {
            .titre h2, .titre h2 span{
                font-size: 30px;
            }
        }

        @media screen and (max-width: 450px) {
            .titre h2, .titre h2 span{
                font-size: 25px;
            }
        }
    /* titre */
/* responsive */