.video-content-section h2{
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    color: #023049;
}
.video-content-section .video-block{
          position: relative;
    overflow: hidden;
    padding-bottom: 55.9%;
    min-height: 200px;
}
.video-content-section .video-block iframe {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.video-content-section .btn-info-wrapper{
        position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.video-content-section .btn-info-wrapper span{
    background-color: #000;
    color: #fff;
    padding: 8px 11px 11px;
    line-height: 1.1;
    transition: all 0.5s;
    margin-bottom: 6px;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1;
    opacity: 0;
    visibility: hidden;
    border-radius: 5px;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}
.video-content-section .btn-info-wrapper #custom-play-button{
    min-width: 200px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    position: relative;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 5px 5px 5px 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.video-content-section #custom-play-button.hidden {
    opacity: 0;
    pointer-events: none;
}
 .video-content-section .btn-info-wrapper:has(#custom-play-button:hover) span,
 .dbx_banno_section .btn-info-wrapper:has(#custom-play-button:hover) span
 {
        opacity: 1;
    visibility: visible;
 }