/*Make video iframe responsive*/

.video-wrapper {
    position: relative;
    padding-bottom:56.25%; /*maintains a 16:9 aspect ratio (9/16 = 0.5625) old brwoser hack. Othewise ratio-16/9*/
    overflow: hidden;
    max-width: 100%;
}

.video-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

@media (max-width:600px){
    .full-width-image img{
        display:block;
        width: 100%;
        height: auto;
        max-width: 100%;
    }
}