.img-cercle-bordered{
    padding: 30px;
    border: 2px solid var(--color-red);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    box-sizing: border-box;
    margin: auto;
    position: relative;
}

.img-cercle-bordered .img-cercle{
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    box-sizing: border-box;
    z-index: 100;
    position: absolute;
}

.img-cercle-bordered .masque{
    position: absolute;
    top: calc(50% - 110px);
    width: 50px;
    height: 220px;
    z-index: 1;
    background-color: white;
}

.img-cercle-bordered .masque-left{
    left: -10px;
}

.img-cercle-bordered .masque-right{
    right: -10px;
}

@media screen and (max-width: 768px){
    .img-cercle-bordered{
        width: 360px;
        height: 360px;
    }

    .img-cercle-bordered .img-cercle{
        width: 300px;
        height: 300px;
    }
}