#section-7 {
    margin-top: 100px;
}

#section-7 .promo-video {
    position: relative;
}

#section-7 .video-background {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
    background: #000;
}

#section-7 .video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;

}

/* Bouton Play */
#section-7 .play-button {
    position: absolute;
    top: 68%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 100px;
    height: 100px;
    cursor: pointer;
    background: transparent;
    border-radius: 50%;
    padding: 20px 30px;
    z-index: 2;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color-rent-car);
}

#section-7 .img-btn-play {
    width: 50px;
    height: 50px;
    filter: invert(1);
}

#section-7 .play-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

#section-7 .section-video {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;

}

#section-7 .text-white {
    color: var(--white) !important;
}