.video-section {
    padding: 100px 0;

    .box__video {
        width: 760px;
        height: 460px;
        position: relative;
        iframe {
            z-index: 999;
        }
        .fluidMedia {
            position: relative;
            padding-bottom: 56.25%; /* proportion value to aspect ratio 16:9 (9 / 16 = 0.5625 or 56.25%) */
            height: 0;
            overflow: hidden;
        }
        .fluidMedia iframe {
            position: absolute;
            top: 0; 
            left: 0;
            width: 100%;
            height: 100%;
        }
        @media(max-width:900px) {
            width: 100%;
            height: auto;
        }
    }

    .info-section {
        width: 100%;
        max-width: 386px;
        
        @media(max-width:900px) {
            padding: 25px $padd-mob;
        }
    }
    @media(max-width:900px) {
        padding: 50px 0;
        
    }

}