/* section hero */
    .caroussel_container{
        position: relative;
        width: 100%;
        height: 400px;
        background: var(--light-black);
    }

    .caroussel_container:before{
        content: '';
        width: 100%;
        height: 400px;
        position: absolute;
        top: 0; left: 0;
        background: var(--first);
        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;
        bottom: 35px; right: 0;
        display: flex;
        gap: 8px;
        z-index: 100;
        padding: 16px;
    }

    .caroussel_container .button div{
        width: 25px;
        height: 25px;
        text-align: center;
        line-height: 25px;
        vertical-align: middle;
        align-items: center;
        cursor: pointer;
        color: white;
        background: var(--second);
        user-select: none;
        border-radius: 5px;
    }

    .caroussel_container .button div:hover{
        background: var(--first);
        border: 1px solid var(--light-white);
    }

    .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 */

/* 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 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 h1{
                font-size: 30px;
            }
            
            .container_text p{
                font-size: 16px;
            }
        }
        
        @media screen and (max-width: 500px) {
            .container_text{
                padding: 16px 0;
            }
            
            .caroussel_container .button{
                bottom: 8px;
            }
        }
        
        @media screen and (max-width: 430px) {
            .container_text h1{
                font-size: 25px;
            }
        }
        
        @media screen and (max-width: 400px) {
            .caroussel_container, .caroussel_container:before{
                height: 320px;
            }
            
            .caroussel_container .button{
                display: none;
            }
        }
        
        @media screen and (max-width: 370px) {
            .container_text h1{
                font-size: 20px;
            }
            
            .container_text p{
                font-size: 14px;
            }
        }
    /* section hero */
/* responsive */