.pole-seo-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 var(--container-space);
    & .pole-seo-wrapper{
        display: flex;
        width: 100%;
        &:nth-child(1){
            & h2{
                display: flex;
                flex-direction: column;
                margin: 0;
                font-size: 262px;
                font-style: normal;
                font-weight: 700;
                text-transform: uppercase;
                position: relative;
                & span{
                    color: var(--color-primary);
                    &:nth-child(1){
                        position: absolute;
                        background: url(../../../assets/svg/pole.svg) no-repeat;
                        opacity: 0.2;
                        top: 50%;
                        left: 50%;
                        width: 649px;
                        height: 221px;
                    }
                    &:nth-child(2){
                        transform: translate(-20%, -50%);
                        z-index: 1;
                        color: var(--wp--preset--color--violet);
                        opacity: 0.8;
                    }
                }
            }

        }
        &:nth-child(2){
            & .pole-seo-image{
                display: flex;
                width: 50%;
                position: relative;
                height: 700px;
                & img{
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    transition: all .6s ease-in-out;
                    object-fit: cover;
                    width: 267px;
                }
                & video{
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    z-index: 2;
                    width: 230px;
                    height: 640px;
                    outline: none;
                    clip-path: inset(5px 5px);
                }
            }
            & .pole-seo-group{
                display: flex;
                flex-direction: column;
                width: 50%;
                color: var(--wp--preset--color--blanc);
                gap: 2rem;
                & .wp-block-button{
                    width: fit-content;
                }
                & .pole-seo-faq{
                    display: flex;
                    flex-direction: column;
                    width: 100%;
                    color: var(--wp--preset--color--blanc);
                    gap: 2rem;
                    & .pole-seo-questions{
                        display: flex;
                        flex-direction: column;
                        color: var(--wp--preset--color--noir);
                        gap: 1rem;
                        & .pole-seo-question{
                            background-color: var(--wp--preset--color--blanc);
                            border-radius: 20px;
                            & h3 {
                                display: flex;
                                padding: 1rem;
                                margin: 0;
                                align-items: center;
                                gap: 1rem;
                                justify-content: space-between;
                                position: relative;
                                cursor: pointer;
                                font-weight: 500;
                                & span{
                                    display: flex;
                                    width: 40px;
                                    height: 40px;
                                    background: url(../../../assets/svg/arrow-faq.svg) no-repeat;
                                    transition: transform .6s ease-in-out;
                                    position: absolute;
                                    right: 1rem;
                                    top: 50%;
                                    transform: translateY(-50%);
                                }
                            }
                            & .pole-seo-question-text{
                                display: grid;
                                grid-template-rows: 0fr;
                                transition: grid-template-rows .6s ease-in-out;
                                color: var(--wp--preset--color--noir);
                                & div{
                                    overflow: hidden;
                                    & div{
                                        padding: 1rem;
                                    }
                                }
                            }
                            &.active{
                                & h3{
                                    & span{
                                        transform: translateY(-50%) rotate(-180deg);
                                    }
                                }
                                & .pole-seo-question-text{
                                    grid-template-rows: 1fr;
                                    & div{
                                        padding: 0 1rem;
                                    }
                                }
                            }
                        }
                    }
                    & .wp-block-button{
                        width: fit-content;
                    }
                }
            }

        }
    }
}
@media (max-width: 768px) {
    .pole-seo-container {
        width: 100vw;
        padding-top: 8rem;
        overflow: hidden;
        & .pole-seo-wrapper {
            &:nth-child(1) {
                & h2 {
                    font-size: 200px;
                    & span {
                        &:nth-child(1) {
                            left: 80%;
                        }
                    }
                }
            }
            &:nth-child(2) {
                flex-direction: column;
                align-items: center;
                & .pole-seo-group {
                    width: 100%;
                }
            }
        }
    }
}
@media (max-width: 576px) {
    .pole-seo-container {
        & .pole-seo-wrapper {
            &:nth-child(1) {
                & h2 {
                    font-size: 100px;
                    & span {
                        &:nth-child(1) {
                            /* left: 80%; */
                            width: 301px;
                            height: 103px;
                            background: url(../../../assets/svg/pole-mobile.svg) no-repeat;
                        }
                    }
                }
            }
            &:nth-child(2) {
                & .pole-seo-image {
                    width: 100%;
                    scale: 0.8;
                }
                & .pole-seo-group{
                    align-items: center;
                    & .pole-seo-infos{
                        & h2{
                            & span{
                                font-size: 35px!important;
                            }
                        }
                    }
                }
            }
        }
    }
}