.hero-who-block{
    display: flex;
    position: relative;
    width: 100%;
    overflow: hidden;
    background: radial-gradient(50% 50% at 50% 50%, #1F2946 0%, #121730 100%);
}
.hero-who-block::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(../../../assets/svg/vagues-bkg.svg) repeat center;
    width: 100%;
    display: flex;
    height: 400px;
    z-index: 0;
}
.hero-who-inner{
    display: flex;
    width: 100%;
    height: 100%;
    padding: 0 var(--gutters);
    position: relative;
    flex-direction: column;
    align-items: center;
}
.hero-who-inner::before {
    content: "";
    display: flex;
    width: calc(100% - calc(var(--gutters) * 2));
    position: absolute;
    background-color: var(--wp--preset--color--bleu-inpool);
    height: 6px;
    border-radius: 50% 50%;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}
.hero-who-wrapper{
    display: flex;
    width: 100%;
    height: 100%;
}
.hero-who-content{
    display: flex;
    flex-direction: column;
    width: 60%;
}
.hero-who-video{
    display: flex;
    width: 60%;
    min-height: 560px;
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    z-index: 1;
}
.hero-who-video video{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-who-links{
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
}
.inpool-underline-link{
    display: flex;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--wp--preset--color--beige);
    transition: color 0.3s ease, border-color 0.3s ease;
    font-size: var(--wp--preset--font-size--size-14);
    font-weight: 600;
}
.inpool-underline-link:hover{
    color: var(--wp--preset--color--bleu-inpool);
    border-bottom: 1px solid var(--wp--preset--color--bleu-inpool);
}
.hero-who-icons{
    display: flex;
    padding: 4rem 0;
    width: 90%;
    justify-content: space-around;
    position: relative;
    z-index: 1;
}
.hero-who-icon{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-who-icon img{
    width: 50px;
    height: 50px;
    object-fit: contain;
}
@media (max-width: 850px) {
    .hero-who-block{
        min-height: auto;
    }
    .hero-who-video{
        display: none;
    }
    .hero-who-content{
        width: 100%;
    }
    .hero-who-links{
        flex-direction: column;
        align-items: flex-start;
    }
    .inpool-underline-link{
        width: fit-content;
    }
    .hero-who-icons{
        width: 100%;
        flex-wrap: wrap;
    }
    .hero-who-icon{
        width: 33%;
        margin-bottom: 1rem;
    }
}