.videos-page {
    margin-top : 10px;
    padding : 10px;
    
}
.videos-page .section-title {
    
    
    border-left : 5px solid var(--main-color);
    padding-left : 10px;
}

.videos-page .video-card {
    box-shadow : 0px 0px 5px black;
   
    margin-top : 20px;
}
.videos-page .video-card img {
    
    z-index : -10;
    width : 100%;
}

.videos-page .video-card .video-thumbnail {
    
    position : relative;
    
}

.video-card .video-thumbnail .play-icon {
    display : none;
    background : var(--main-color);
    position : absolute;
    padding : 20px;
    top : 35%;
    left : 40%;
    clip-path : circle();
    color : white;
    transition: all 1s;

}
.video-thumbnail:hover .play-icon {
    display : block;
    cursor : pointer;
}

.video-card .video-info {
    padding : 10px;
}

 .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

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

