/* section hero */
    .caroussel_container{
        position: relative;
        width: 100%;
        height: 400px;
        background: var(--light-gray);
    }

    .caroussel_container:before{
        content: '';
        width: 100%;
        height: 400px;
        position: absolute;
        top: 0; left: 0;
        background: var(--degrade-blue);
        opacity: .6;
        z-index: 1;
    }

    .caroussel_container .image{
        width: 100%;
        height: 100%;
        display: none;
    }

    .caroussel_container .image.active {
        display: block;
    }

    .caroussel_container .img_bg_caroussel{
        position: absolute;
        top: 0; left: 0;
        overflow: hidden;
    }

    .caroussel_container .button{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        z-index: 100;
    }

    .caroussel_container .button div{
        width: 40px;
        height: 40px;
        text-align: center;
        line-height: 40px;
        vertical-align: middle;
        align-items: center;
        cursor: pointer;
        color: white;
        background: var(--blue);
        user-select: none;
    }

    .caroussel_container .button div:hover{
        background: var(--white);
    }

    .caroussel_container .button .prev{
        border-radius: 0 5px 5px 0;
    }

    .caroussel_container .button .next{
        border-radius: 5px 0 0 5px;
    }

    .dots{
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        padding: 5px;
    }

    .dot{
        cursor: pointer;
        padding: .3rem;
        border-radius: 50%;
        background: #bbb;
        display: inline-block;
        margin: 0 2px;
    }

    .caroussel_container .active, .dot:hover{
        background: var(--blue);
    }

    /* titre et texte */
        .container_text{
            position: relative;
            z-index: 10;
            width: 100%; height: 100%;
            padding: 64px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .container_text h1, .container_text p{
            width: 80%;
        }                

        .container_text strong{
            color: var(--white);
            font-size: 22px;
            text-transform: uppercase;
        }

        .container_text h1{
            font-size: 50px;
            text-transform: uppercase;
            font-weight: 900;
            color: var(--white);
            margin: 16px 0;
        }

        .container_text p{
            color: var(--white);
            font-size: 18px;
        }   
        
        .container_text .flexBtn{
            margin-top: 16px;
        }

        /* center */
            .container_text.center{
                align-items: center;
            }

            .container_text.center h1, .container_text.center p{
                text-align: center;
            }
            
            .container_text.center .flexBtn{
                justify-content: center;
            }
        /* center */

        /* left */
            .container_text.left{
                align-items: flex-start;
            }

            .container_text.left h1, .container_text.left p{
                text-align: left;
            }

            .container_text.left .flexBtn{
                justify-content: flex-start;
            }
        /* left */

        /* right */
            .container_text.right{
                align-items: flex-end;
            }

            .container_text.right h1, .container_text.right p{
                text-align: right;
            }

            .container_text.right .flexBtn{
                justify-content: flex-end;
            }
        /* right */
    /* titre et texte */
/* section hero */

/* section why choose us */
    .container_why_choose{
        max-width: 1000px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        gap: 32px;
    }

    .content_why_choose:first-child{
        position: relative;
        flex: 0 0 450px;
        display: grid;
        grid-template-columns: repeat(2,1fr);
        /*grid-template-rows: repeat(2,1fr);*/
        gap: 8px;
    }

    .content_why_choose:first-child .box_img{
        background: var(--degrade-blue);
    }

    .content_why_choose:first-child img{
        width: 100%; height: 100%;
        object-fit: cover;
    }

    .content_why_choose:first-child .logowhy_choose{
        position: absolute;
        left: 50%; top: 50%;
        transform: translate(-50%,-50%);
        width: 70px; height: 70px;
        background: var(--white);
        border-radius: 50%;
        padding: 8px;
    }

    .content_why_choose:first-child .logowhy_choose img{
        width: 100%; height: 100%;
        object-fit: contain;
        scale: 1.5;
    }

    .text_why_choose{
        text-align: justify;
        margin: 16px 0;
    }

    /* liste */
        .list_why_choose{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
            justify-content: center;
            gap: 8px;
            list-style: none;
            margin: 0 auto;
        }

        .list_why_choose li{
            display: flex;
            align-items: flex-start;
            gap: 5px;
        }

        .list_why_choose li i{
            color: var(--fourth);
            font-size: 20px;
        }
    /* liste */

    /* social media */
        .suivez_nous{
            display: flex;
            align-items: center;
            gap: 20px;
            margin-top: 32px;
        }

        .suivez_nous p{
            font-weight: 700;
        }

        .suivez_nous a{
            background: var(--degrade-blue);
            width: 40px; height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .suivez_nous a i{
            color: var(--white);
        }

        .suivez_nous a:hover{
            transform: translatey(-3px);
        }
    /* social media */
/* section why choose us */

/* section categories programme */
    .container_categories_programme{
        margin: 0px auto;
        margin-bottom: -8px;
    }
/* section categories programme */

/* section parcours */
    .parcours{
        position: relative;
        width: 100%;
        padding: 32px 64px;
    }

    /* bg parcours */
        .bg_parcours{
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
        }

        .bg_parcours img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .bg_parcours:before{
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: var(--degrade-blue);
            opacity: .6;
        }
    /* bg parcours */

    .container_parcours{
        position: relative;
        z-index: 10;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .content_parcours{
        width: 230px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-bottom: 15px solid var(--second);
        padding: 15px;
        background-color: var(--white);
        border-radius: 16px;
    }

    .content_parcours svg{
        fill: var(--first);
        width: 40px; height: 40px;
    }

    .count{
        font-weight: 600;
        margin: 8px 0;
    }

    .count, .count span{
        font-size: 40px;
    }

    .count span{
        font-weight: 500;
        color: var(--first);
        text-align: center;
    }
    
    .name_count{
        text-align: center;
    }
/* section parcours */

/* Section faq */
    .faq-container {
        max-width: 900px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .faq-item {
        background: var(--light-first);
        overflow: hidden;
        border: 1px solid var(--first);
        border-radius: 25px;
    }
    
    .faq-question {
        padding: 20px 25px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }
    
    .faq-question:hover, .faq-question.active {
        background: var(--first);
        h3{
            color: var(--white);
        }
    }
    
    .faq-question:hover i, .faq-question.active i {
        font-weight: bold;
    }
    
    .faq-question h3 {
        margin: 0;
        font-weight: 600;
    }
    
    .faq-toggle i{
        color: var(--second);
        font-size: 20px;
        transition: transform 0.3s ease;
    }
    
    .faq-answer {
        padding: 0 25px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .faq-answer.active {
        padding: 0 25px 25px;
        max-height: 500px;
    }
    
    .faq-answer p {
        padding-top: 16px;
        line-height: 1.6;
        margin: 0;
    }
/* Section faq */

/* section partenaire */
    .partenaire{
        display: flex;
        overflow-x: auto;
        max-width: max-content;
    }

    .partenaire::-webkit-scrollbar{
        display: none;
    }

    .groupePartenaire{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        padding-right: 16px;
        animation: scrollAnimate 15s infinite linear;
    }

    .partenaireLogo{
        height: 70px;
        flex: 0 0 150px;
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 32px rgba(0,0,0,.05);
        border: 1px solid var(--light-first);
        padding: 8px;
    }
    
    .partenaireLogo img{
        width: 100%; height: 100%;
        object-fit: contain;
    }

    @keyframes scrollAnimate {
        from {translate : 0;}
        to {translate : -100%;}
    }
/* section partenaire */

/* responsive */
    /* section hero */
        @media screen and (max-width: 1000px){
            .container_text h1{
                font-size: 40px;
            }
        }
        
        @media screen and (max-width: 800px){
            .container_text{
                padding: 32px 48px;
            }
            
            .container_text h1, .container_text p{
                width: 90%;
            }
            
            .container_text strong{
                font-size: 20px;    
            }
            
            .container_text h1{
                font-size: 35px;
            }
            
            .container_text p{
                font-size: 17px;
            }
        }
        
        @media screen and (max-width: 650px) {
            .container_text{
                padding: 16px 32px;
            }
            
            .container_text h1, .container_text p{
                width: 95%;
            }
            
            .container_text strong{
                font-size: 18px;    
            }
            
            .container_text h1{
                font-size: 30px;
            }
            
            .container_text p{
                font-size: 16px;
            }
        }
        
        @media screen and (max-width: 430px) {
            .container_text strong{
                font-size: 16px;    
            }
            
            .container_text h1{
                font-size: 25px;
            }
        }
        
        @media screen and (max-width: 370px) {
            .container_text strong{
                font-size: 15px;    
            }
            
            .container_text h1{
                font-size: 20px;
            }
            
            .container_text p{
                font-size: 14px;
            }
        }
    /* section hero */
    
    /* section why choose us */
        @media screen and (max-width: 1100px) {
            .container_why_choose{
                flex-direction: column;
            }
        }
    /* section why choose us */
/* responsive */