/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.ku-embed {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 4%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

/* Then style the iframe to fit in the container div with full height and width */
.ku-embed {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 84%;
  margin-top: 120px;
}

@media only screen and (max-width: 600px) {
.ku-embed {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 83%;
  margin-top: 150px;
  z-index:1;
  }

  
.header-wrapper{
  position: relative;
  z-index:99;
}
  
  header, footer, main, nav, article, section, aside {
    width: 100%;
    margin: auto;
}

.header{  
  position:relative;
  height: 100px;
  z-index: 99;
}
  
.wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}
.wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}