.testimonials .slick {
    width: 100%;
    overflow: hidden;
}

@media (min-width: 1200px) {
    .testimonials .slick {
        padding-right: 20% !important;
    }
    .testimonials .slick::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 20%;
        height: 100%;
        background-image: linear-gradient(to right, transparent, white);
    }
}

.testimonials .slick-list {
    overflow: visible;
}

.testimonials .embed {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    aspect-ratio: 16 / 9;
}
.testimonials .embed iframe {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
}

.testimonials .mascotte {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 200px;
    height: 200px;
    background-color: white;
    box-shadow: 0 .25rem .5625rem rgba(0, 0, 0, 0.25);
    border-radius: 50% 50% 0;
    transform: translate(-33%, -33%);
}
@media (min-width: 1400px) {
    .testimonials .mascotte {
        display: block;
    }
}
@media (min-width: 1600px) {
    .testimonials .mascotte {
        transform: translate(-55%, -33%);
    }
}
.testimonials .mascotte img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}