.video-container {
    position: relative;
    width: 100%;
    /* prend toute la largeur du parent */
    padding-bottom: 56.25%;
    /* ratio 16:9 */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    display: block;
}

/*
nav {
    position: absolute;
    width: 100%;
    top: 50%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}
*/
input[name="slides"] {
    display: none;
}

.dots {
    position: absolute;
    bottom: 1%;
    display: flex;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dots label {
    width: 12px;
    height: 12px;
    margin: 5px;
    background: grey;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}