.block-who-container{
    display: flex;
    overflow: hidden;
    padding: 0 calc(var(--container-space)/2);
    & .block-who-wrapper{
        display: flex;
        flex-direction: column;
        width: 50%;
        color: var(--wp--preset--color--blanc);
        align-items: center;
        & .block-who-title{
            display: flex;
            max-width: 500px;
        }
        & .block-who-image{
            display: flex;
            width: 100%;
            justify-content: center;
            align-items: center;
            position: relative;
            min-height: 720px;

            & img{
                display: flex;
                max-width: 520px;
                aspect-ratio: 1/1;
                border-radius: 100%;
            }

            & .block-who-svg-wrapper{
                display: flex;
                position: absolute;
                opacity: 0.5;
                z-index: -1;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                & .block-who-svg-1, & .block-who-svg-2, & .block-who-svg-3{
                    display: flex;
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                }
                & .block-who-svg-1{
                    background: url(../../../assets/svg/light1.svg), no-repeat;
                    height: 714px;
                    width: 668px;
                    filter: blur(74.00749969482422px);
                }
                & .block-who-svg-2{
                    background: url(../../../assets/svg/light2.svg), no-repeat;
                    height: 583px;
                    width: 543px;
                    filter: blur(49.33833312988281px);
                }
                & .block-who-svg-3{
                    width: 269px;
                    height: 231px;
                    border-radius: 269.707px;
                    background: #00FFE0;
                    filter: blur(49.33833312988281px);
                }
        
            }
        
        }
        & .block-infos-text{
            max-width: 500px;
            padding-bottom: 2rem;
        }
    }
    & .block-who-wrapper:nth-child(1){
        /* justify-content: space-between; */
        gap: 0vh;
    }
    & .block-who-wrapper:nth-child(2){
        align-items: flex-start;
    }
}
body.single-logiciels .block-who-container{
    & .block-who-wrapper{
        color: var(--wp--preset--color--noir);
    }
}
body.single-logiciels .block-who-container{
    & .block-who-wrapper{
        & .wp-block-buttons{
            & .is-style-arrow-link-white{
                & a{
                    background-color: var(--wp--preset--color--noir);
                    color: var(--wp--preset--color--blanc);
                    transition: all 0.3s ease-in-out;
                }
                & a:nth-child(2){
                    background-color: var(--wp--preset--color--blanc);
                }
            }
            & .is-style-arrow-link-white:hover{
                & a{
                    background-color: var(--wp--preset--color--blanc);
                    color: var(--wp--preset--color--noir);
                    border: solid 1px var(--wp--preset--color--noir);
                }
            }
        }
    }
}
.block-who-container.is-blue{
    & .block-who-wrapper{
        & .block-who-svg-wrapper {
            .block-who-svg-1{
                background: url(../../../assets/svg/light1-blue.svg), no-repeat;
            }
            & .block-who-svg-2{
                background: url(../../../assets/svg/light2-blue.svg), no-repeat;
            }
            & .block-who-svg-3{
                width: 269px;
                height: 231px;
                border-radius: 269.707px;
                background: #C2DEFF;
                filter: blur(85.20944213867188px);
            }
        }
        & .wp-block-buttons{
            & .is-blue{
                & a{
                    background-color: var(--wp--preset--color--bleu)!important;
                    color: var(--wp--preset--color--blanc);
                }
                & a:nth-child(2){
                    background-color: var(--wp--preset--color--blanc)!important;
                }
            }
        }
    }
}
.block-who-container.is-reverse{
    flex-direction: row-reverse;
    & .block-who-wrapper:nth-child(2){
        align-items: flex-end;
    }
}

@media (max-width: 1024px) {
    .block-who-container{
        & .block-who-wrapper{
            & .block-who-image{
                & img{
                    max-width: 350px;
                }
            }
        }
    }
}
@media (max-width: 768px) {
    .block-who-container{
        & .block-who-wrapper{
            & .block-who-image{
                & img{
                    max-width: 250px;
                }
                & .block-who-svg-wrapper {
                    left: 25%;
                }
            }
        }
    }
}
@media (max-width: 576px) {
    .block-who-container{
        flex-direction: column!important;
        & .block-who-wrapper{
            width: 100%;
             & .block-who-image{
                min-height: 300px;
                & .block-who-svg-wrapper{
                width: 100%;
                height: 100%;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                background: rgb(25,62,118);
                background: radial-gradient(circle, rgba(25, 62, 118, 1) 10%, rgba(255, 255, 255, 1) 70%);
                border-radius: 100%;
                    & .block-who-svg-1{
                        display: none;
                    }
                    & .block-who-svg-2{
                        display: none;
                    }
                    & .block-who-svg-3{
                        display: none;
                    }
                    &.no-svg{
                        background : transparent;
                    }
        
                }
        
            }
        }
        & .block-who-wrapper:nth-child(1){
            gap: 0;
        }
    }
}