/* youtube video */
.videoYoutube .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin-bottom: 20px;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
}

.videoYoutube .video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
}

.videoYoutube .video-thumbnail:hover {
    opacity: 0.9;
}

.videoYoutube .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.videoYoutube .play-button:hover {
    background-color: rgba(255, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.05);
}

.videoYoutube .play-button i {
    color: white;
    font-size: 30px;
    margin-left: 5px;
}

.videoYoutube .embed-responsive {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}