/* --------------------------------------
              GENERALE

Violet :
#821fa0


Violet hover : 
#821fa0cc
#88449ccc


Blanc :
#f3f4f6


Border color :
#7777774d
#f3f4f6

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

html {
    margin-top: 0 !important;
}

body {
    font-family: "Ubuntu Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    font-weight: 800;
    line-height: initial;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 45px;
}

h3 {
    font-size: 40px;
}

h4 {
    font-size: 35px;
    }

h5 {
    font-size: 30px;
}

h6 {
    font-size: 25px;
}

a {
    cursor: pointer;
}

p {
    font-weight: 400;
    font-size: 25px;
    margin: 0;
    text-align: justify;
}

ul, li {
    text-align: justify;
}

/* Ligne "marge" entre les sections page d'accueil */
div.inter_section_line {
    margin: -200px 0 -200px 0;
    width: 100%;
    height: 5px;
}

@media only screen and (max-width: 1440px) {
    div.inter_section_line {
        margin: -160px 0 -160px 0;
    }
}

@media only screen and (max-width: 1200px) {
    div.inter_section_line {
        margin: -120px 0 -120px 0;
    }
}

@media only screen and (max-width: 992px) {
    div.inter_section_line {
        margin: -100px 0 -100px 0;
    }
}

@media only screen and (max-width: 768px) {
    div.inter_section_line {
        margin: -60px 0 -60px 0;
    }
}

@media only screen and (max-width: 468px) {
    div.inter_section_line {
        margin: -20px 0 -20px 0;
    }
}

/* GRID BOOTSTRAP */
.row {
    margin-top: calc(-0* var(--bs-gutter-y));
    margin-right: calc(-0* var(--bs-gutter-x));
    margin-left: calc(-0* var(--bs-gutter-x));
}

.row> /* for col */ {
    padding-right: calc(var(--bs-gutter-x)* 0);
    padding-left: calc(var(--bs-gutter-x)* 0);
}

/* MENU - FOOTER - SOCIAL OTHERS_PAGES BLOCK IMPORTANT !!!!! */
body.others_pages div.display_menu_nav,
body.others_pages ul#menu_social,
body.others_pages footer.footer {
    display: block;
}

body.others_pages footer.footer div.ancre_up,
body.others_pages footer.footer div.logo_up {
    display: none;
}

body.others_pages footer.footer div.ancre_up_others_pages div.ancre_up {
    display: block;
    text-align: center;
}

/* CONTAINER POUR LES AUTRES PAGES PARENTES DE LIGNES CODES */
section.container_lignes_codes {
    margin-top: 200px;
}

@media only screen and (max-width: 992px) {
    section.container_lignes_codes {
        margin-top: 150px;
    }
}

@media only screen and (max-width: 768px) {
    section.container_lignes_codes {
        margin-top: 100px;
    }
}

@media only screen and (max-width: 468px) {
    
}
/* --------------------------------------
            END GENERALE
-------------------------------------- */


/* --------------------------------------------------------------- */


/* --------------------------------------
    START ANIMATION BACkGROUND BLACK
-------------------------------------- */
div.background_index,
div.parallax_fadeIn {
    display: none;
}

div.background_index {
    width: 100%;
    height: auto;
}

div.background_index .background_section_un {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
    left: -100%; /* Position de départ hors écran vers la gauche */
    animation: translateBackground_black 2.0s forwards;
}

@keyframes translateBackground_black {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%); /* Se déplacer à l'intérieur de l'écran */
    }
}
/* --------------------------------------
    END ANIMATION BACKGROUND BLACK
-------------------------------------- */


/* --------------------------------------------------------------- */


/* --------------------------------------
        START CONTAINER ANCRE DOWN
-------------------------------------- */
div.logo_down {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}

div.logo_down img{
    width: 40px;
    transform: rotate(90deg);
}

div.container_ancre_down {
    position: fixed;
    z-index: 990;
    top: 30px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    height: auto;
    margin-top: 100px;
    border: 1px solid #7777774d;
    border-radius: 10px;
    background-color: #fff;
    display: none;
}

div.ancre_down {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

div.ancre_down div {
    padding: 20px;
}

div.ancre_down a.link_ancre {
    font-size: 20px;
    color: #000;
    text-decoration: none;
    transition: transform .3s ease-in;
    position: relative;
}

div.ancre_down a.link_ancre::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0%;
    height: 5px;
    background-color: #821fa0;
    transition: width 0.3s ease-in;
}

div.ancre_down a.link_ancre:hover::before {
    width: 100%;
}

@media only screen and (max-width: 992px) {
    div.container_ancre_down {
        max-width: 500px;
        top: -70px;
    }

    div.logo_down img{
        width: 25px;
    }

    div.ancre_down a.link_ancre {
        font-size: 16px;
    }
}

@media only screen and (max-width: 768px) {
    div.container_ancre_down {
        display: none !important;
    }
}
/* --------------------------------------
        END CONTAINER ANCRE DOWN
-------------------------------------- */


/* --------------------------------------------------------------- */


/* --------------------------------------
        START SECTION_UN
-------------------------------------- */
div.contenu_section_un {
    width: 100%;
    height: 1000px;
}

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

}

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

}

@media only screen and (max-width: 468px) {
    div.contenu_section_un {
        margin-bottom: 100px;
    }
}

        /* -------------------------------------- 
                START ANIMATION LOGO
        -------------------------------------- */
        div.row_logo {
            width: 100%;
            position: absolute;
            top: 0%;
            left: -100%; /* Position de départ hors écran vers la gauche */
            animation: translateRow_logo 3s forwards;
        }
        
        @keyframes translateRow_logo {
            0% {
            transform: translateX(0);
            }
            100% {
            transform: translateX(100%); /* Se déplacer à l'intérieur de l'écran */
            }
        }

        div.logo {
            padding: 30px 0 0 60px;
        }

        div.logo img {
            width: 60px;
        }

        @media only screen and (max-width: 992px) {
            div.logo {
                padding: 30px 0 0 40px;
            }
        }

        @media only screen and (max-width: 768px) {
            div.logo {
                padding: 30px 0 0 30px;
            }
        }

        @media only screen and (max-width: 468px) {
            div.logo {
                padding: 15px 0 0 10px;
            }

            div.logo img {
                width: 40px;
            }
        }


        /* --------------------------------------------------------------- */


        /* --------------------------------------
                START ANIMATION TITLE
        -------------------------------------- */
        div.row_title {
            width: 100%;
            position: absolute;
            z-index: 9990;
            top: 20%;
            left: -100%; /* Position de départ hors écran vers la gauche */
            animation: translateRow_title_index 4s forwards;
        }
                
        @keyframes translateRow_title_index {
            0% {
            transform: translateX(0);
            }
            100% {
            transform: translateX(100%); /* Se déplacer à l'intérieur de l'écran */
            }
        }

        div.title_index h1 {
            color: #821fa0;
            font-size: 100px;
        }

        div.title_index h1.title_one {
            margin-left: 200px;
        }

        div.title_index h1.title_two {
            margin-left: 250px;
        }

        @media only screen and (max-width: 1024px) {
            div.title_index h1 {
                font-size: 60px;
            }

            div.title_index h1.title_one {
                margin-left: 50px;
            }
    
            div.title_index h1.title_two {
                margin-left: 100px;
            }
        }

        @media only screen and (max-width: 768px) {
            div.title_index h1 {
                font-size: 40px;
            }

            div.title_index h1.title_one {
                margin-left: 20px;
            }
    
            div.title_index h1.title_two {
                margin-left: 40px;
            }
        }
        /* --------------------------------------
                END ANIMATION TITLE
        -------------------------------------- */


        /* --------------------------------------------------------------- */


        /* --------------------------------------
                START TEXTE IMAGE PROFIL
        -------------------------------------- */
        div.profil_index {
            width: 100%;
            position: absolute;
            top: 45%;
            left: -100%;
            animation: translateRow_profil_index 5s forwards;
        }
                
        @keyframes translateRow_profil_index {
            0% {
            transform: translateX(0);
            }
            100% {
            transform: translateX(100%); /* Se déplacer à l'intérieur de l'écran */
            }
        }

        div.profil_index div.row_profil_index {
            position: relative;
        }

        div.row_profil_index div.texte_index {
            position: absolute;
            z-index: 10;
            top: 0;
            right: 0;
            width: 50%;
            margin-right: 300px;
        }

        div.row_profil_index div.image_index {
            position: absolute;
            top: 50px;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            opacity: 0.4;
        }

        div.image_index img.image_profil {
            margin-right: 150px;
            border-radius: 10px;
        }

        @media only screen and (max-width: 1024px) {
            div.profil_index {
                top: 40%;
            }
            div.row_profil_index div.texte_index {
                width: 75%;
                margin-right: 150px;
            }

            div.image_index img.image_profil {
                margin-right: 50px;
            }
        }

        @media only screen and (max-width: 768px) {
            div.row_profil_index div.texte_index {
                width: 100%;
                margin-right: 0;
            }

            div.texte_index p {
                font-size: 20px;
            }

            div.row_profil_index div.image_index {
                top: 100px;
            }

            div.image_index img.image_profil {
                width: 80%;
                margin-right: 0;
            }
        }

        @media only screen and (max-width: 468px) {
            div.row_profil_index div.image_index {
                top: 300px;
            }

            div.image_index img.image_profil {
                width: 100%;
                height: 400px;
                /*height: 460px;*/
                object-fit: cover;
            }
        }
        /* --------------------------------------
                END TEXTE IMAGE PROFIL
        -------------------------------------- */


        /* --------------------------------------------------------------- */


/* --------------------------------------
        END SECTION_UN
-------------------------------------- */


/* --------------------------------------------------------------- */


/* --------------------------------------
        START CONTENU SECTION INDEX
-------------------------------------- */

/* --------------------------------------
        END CONTENU SECTION INDEX
-------------------------------------- */


/* --------------------------------------------------------------- */


/* --------------------------------------
        START SECTION_DEUX
-------------------------------------- */
section.section_deux {
    display: none;
}

section.section_deux h3 {
    color: #000;
    margin-bottom: 30px;
}

div.contenu_section_deux {
    background-color: #821fa0;
    margin: -1px 0 -1px 0;
}

div.row.mon_parcours {
    display: flex;
    justify-content: center;
    align-items: center;
}

div.mon_parcours_inside,
div.mon_experiences_inside,
div.today_inside,
div.demain_inside {
    width: 100%;
    height: auto;
    background-color: #88449ccc;
    padding: 100px;
    border-radius: 10px;
    color: #fff;
}

div.row.mon_experiences {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: -50px;
}

div.row.today {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: -50px;
}

div.texte_today ul {
    margin-top: 20px;
}

div.texte_today ul li {
    font-size: 25px;
}

div.row.demain {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -50px;
}

div.wave_parcours_rotate {
    transform: rotate(-180deg);
}

@media only screen and (max-width: 1200px) {
    section.section_deux h3 {
        font-size: 35px;
    }

    section.section_deux p {
        font-size: 20px;
    }

    div.texte_today ul li {
        font-size: 20px;
    }

    div.mon_parcours_inside,
    div.mon_experiences_inside,
    div.today_inside,
    div.demain_inside {
        padding: 60px;
    }
}

@media only screen and (max-width: 992px) {
    section.section_deux h3 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 768px) {
    section.section_deux h3 {
        font-size: 25px;
    }

    section.section_deux p {
        font-size: 18px;
    }

    div.texte_today ul li {
        font-size: 18px;
    }

    div.row.mon_experiences,
    div.row.today,
    div.row.demain {
        margin-top: 10px;
    }

    div.mon_parcours_inside,
    div.mon_experiences_inside,
    div.today_inside,
    div.demain_inside {
        padding: 20px;
    }
}

/* --------------------------------------
        END SECTION_DEUX
-------------------------------------- */


/* --------------------------------------------------------------- */









@media only screen and (max-width: 1440px) {
    
}

@media only screen and (max-width: 1200px) {
    
}

@media only screen and (max-width: 1024px) {
    
}

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

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

}

@media only screen and (max-width: 468px) {
    
}










/* --------------------------------------
        START SECTION_TROIS
-------------------------------------- */
section.section_trois {
    display: none;
}

div.contenu_section_trois {
    background-color: #f3f4f6;
    margin: -1px 0 -1px 0;
}

    /* --------------------------------------
            START TITRE TEXTE COMPETENCES
    -------------------------------------- */
    div.titre_competences {
        margin-bottom: 30px;
    }

    div.row_texte_competences {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    @media only screen and (max-width: 1200px) {
        div.titre_competences h3 {
            font-size: 35px;
        }

        div.row_texte_competences p {
            font-size: 20px;
        }
    }

    @media only screen and (max-width: 992px) {
        div.titre_competences h3 {
            font-size: 30px;
        }
    }

    @media only screen and (max-width: 768px) {
        div.titre_competences h3 {
            font-size: 25px;
        }

        div.row_texte_competences p {
            font-size: 18px;
        }
    }
    /* --------------------------------------
            END TITRE TEXTE COMPETENCES
    -------------------------------------- */


    /* --------------------------------------------------------------- */


    /* --------------------------------------
            START TEXTE APPRENTISSAGES
    -------------------------------------- */
    div.row_apprentissage_texte_daccroche {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
    }

    div.row_apprentissage_texte {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    @media only screen and (max-width: 1200px) {
        div.apprentissage_texte_daccroche p {
            font-size: 20px;
        }

        div.row_apprentissage_texte p {
            font-size: 20px;
        }
    }

    @media only screen and (max-width: 768px) {
        div.apprentissage_texte_daccroche p {
            font-size: 18px;
        }

        div.row_apprentissage_texte p {
            font-size: 18px;
        }
    }
    /* --------------------------------------
            END TEXTE APPRENTISSAGES
    -------------------------------------- */







div.wave_competences_rotate {
    transform: rotate(-180deg);
}


/* --------------------------------------
        END SECTION_TROIS
-------------------------------------- */


/* --------------------------------------------------------------- */









@media only screen and (max-width: 1440px) {
    
}

@media only screen and (max-width: 1200px) {
    
}

@media only screen and (max-width: 1024px) {
    
}

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

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

}

@media only screen and (max-width: 468px) {
    
}















/* --------------------------------------
        START SECTION_QUATRE
-------------------------------------- */
section.section_quatre {
    display: none;
}



/* --------------------------------------
        END SECTION_QUATRE
-------------------------------------- */


/* --------------------------------------------------------------- */









@media only screen and (max-width: 1440px) {
    
}

@media only screen and (max-width: 1200px) {
    
}

@media only screen and (max-width: 1024px) {
    
}

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

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

}

@media only screen and (max-width: 468px) {
    
}














/* --------------------------------------
        START SECTION_cinq
-------------------------------------- */
section.section_cinq {
    display: none;
}



/* --------------------------------------
        END SECTION_cinq
-------------------------------------- */


/* --------------------------------------------------------------- */









@media only screen and (max-width: 1440px) {
    
}

@media only screen and (max-width: 1200px) {
    
}

@media only screen and (max-width: 1024px) {
    
}

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

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

}

@media only screen and (max-width: 468px) {
    
}