.hero-container-v2{
    display: flex;
    position: relative;
    height: 100svh;
    color: var(--wp--preset--color--white);
    justify-content: center;
    & .hero-video{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        & video{
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        &::after{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }
    }
    & .hero-wrapper{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 650px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        & .hero-exp{
            display: flex;
            padding: 16px 20px;
            justify-content: center;
            align-items: center;
            border-radius: 50px;
            border: 1px solid var(--wp--preset--color--blanc);
            background: rgba(255, 255, 255, 0.20);
            backdrop-filter: blur(5px);
            font-size: var(--wp--preset--font-size--s-text);
            width: fit-content;
        }
        & .hero-text{
            padding-top: 1rem;
        }
        & .hero-btn{
            display: flex;
            padding: 8px 8px 8px 15px;
            align-items: center;
            border-radius: 60px;
            background-color: var(--wp--preset--color--vert);
            color: var(--wp--preset--color--noir);
            width: fit-content;
            font-size: var(--wp--preset--font-size--s-text);
            font-weight: 600;
            & .green-btn{
                display: flex;
                align-items: center;
                gap: 0.5rem;
                transition: gap 0.3s ease;
                & span{
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 40px;
                    height: 40px;
                    border-radius: 100%;
                    border: solid 1px var(--wp--preset--color--blanc);
                    background: rgba(255, 255, 255, 0.20);
                    backdrop-filter: blur(5px);
                    &::after{
                        content: '';
                        width: 40px;
                        height: 40px;
                        background: url(../../../assets/svg/btn_arrow_2.svg) no-repeat center center;
                    }
                }
            }
            &:hover{
                & .green-btn{
                    gap: 1.5rem;
                }
            }
            
        }
    }
}
@media (max-width: 576px) { 
    .hero-container-v2{
        & .hero-wrapper{
            width: calc(100% - calc(var(--container-space)*2));
            top: 60%;
            & .hero-exp{
                display: flex;
                padding: 16px 20px;
                justify-content: center;
                align-items: center;
                border-radius: 50px;
                border: 1px solid var(--wp--preset--color--blanc);
                background: rgba(255, 255, 255, 0.20);
                backdrop-filter: blur(5px);
                font-size: var(--wp--preset--font-size--s-text);
                width: fit-content;
            }
            & .hero-text{
                padding-top: 0;
                & h1{
                    & span{
                        font-size: var(--wp--preset--font-size--l-title) !important;
                    }
                }
            }
        }
    }
}