/* BREAKPOINT */
/* BLOC FULL IMG */
.full-image {
    position: relative;
}

.full-image::after {
    content: '';
    background: linear-gradient(0deg, rgba(27, 27, 27, 0.1) 0%, rgba(27, 27, 27, 0.1) 100%);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
}

.full-image img {
    height: 360px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (min-width: 1025px) {
    .full-image img {
        height: 570px;
    }
}

/* // BLOC FULL IMG */