
.video-banner-container {
    width: 100%;
    height: 40vh;
    overflow: hidden;
    position: relative;
}

.video-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-control-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    z-index: 20; /* Le bouton reste au-dessus de la vidéo */
    border-radius: 5px;
}

.video-control-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.banner-content {
    text-align: center;
    color: white;
    padding: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

