.exemple-block{
    width: 60vw;
    margin: auto;
    position: relative;
}

.exemple-block .SoSlider__frame{
    overflow: visible;
}

.exemple-slider img{
    padding: 5em;
}
.arrows{
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
}
.arrows > div{
    margin: 0 1em;
    position: absolute;
    cursor: pointer;
}
.arrows g{
    fill: var(--arrowsColor)
}
.arrows .right-arrow{
    right: 1%;
}
.arrows .left-arrow{
    left: 1%;
}
@media (max-width: 768px) {
    .exemple-block{
        width: 100vw;
    }
    .exemple-slider img{
        padding: 0.5em;
    }
    /* .arrows .left-arrow {
        left: -30%;
    }
    .arrows .right-arrow {
        right: -30%;
    } */
}