  /*----------------------Feature Video------------------*/
/*--------- Feature Video Home Page ----------*/
.video-wrap {
	background-image: url(/global/images/components/feature-video-web-bg.jpg); 
	background-repeat: no-repeat; 
    background-size:100%;
	background-position:top;
}
.video-header{
	margin-bottom: 5.625rem;
}
.video-header h1{
    color: #fff !important; 
	font-size: 3.25rem; 
	text-align: center; 
	margin:5.5rem 0rem .5rem 0rem;
	text-transform:uppercase;
	font-family:"myriad-pro",sans-serif;
}

/*--------Media Queries-------*/
/*XX large screens -- 2270px and up*/
@media only screen and (min-width: 141em){
    .video-wrap{
        background-size:100% 25%;
    }
    
}
/*Extra large screens -- 1200px to 2269*/
@media only screen and (max-width:140em) and (min-width:75em){
    .video-wrap{
        background-size:100%;
    }
    
}
/*Large screens -- 992 to 1199*/
@media only screen and (max-width:48em) and (min-width:64em){
    .video-wrap{
        background-size:79.5em 22.5em;
    }
}
/*Medium screens -- 768px to 991px*/
@media only screen and (max-width:63em) and (min-width:47em){
    .video-wrap{
        background-size: 61.9em 17em;
    }

}
/*Small screens -- 600px tp 767px*/
@media only screen and (min-width:37em) and (maxwidth:46em){
    .video-wrap{
        background-size: 25em;
    }
}
/*Extra small screens -- 600px and smaller*/
@media only screen and (max-width:36em){
 .video-wrap{
        background-size: 25em;
    }
    .video-header h1{
        font-size:2.25em;
        margin:0 auto;
        
    }
    
}

