*{
    font-family: Raleway;
}

.header{
    background-color: #E6AA67;
    text-align:center;
    padding:10px 0 10px 0;

}

/* The side navigation menu */
.sidebar {
    margin: 0;
    padding: 0;
    width: 200px;
    background-color: #f1f1f1;
    position: fixed;
    height: 100%;
    overflow: auto;
  }
  
  /* Sidebar links */
  .sidebar a {
    display: block;
    color: black;
    padding: 16px;
    text-decoration: none;
  }
  
  /* Active/current link */
  .sidebar a.active {
    background-color: #D6D7DB;
    color: black;
  }
  
  /* Links on mouse-over */
  .sidebar a:hover:not(.active) {
    background-color: #555;
    color: white;
  }
  
  .sidebar-name{
    font-weight:bold;
    text-align:center;
    padding:8px;
  }

  .nav-close-button{
    display:none;
  }

  .nav-open-button{
    display:none;
  }

  .nav-open-button div{
    width: 35px;
    height: 5px;
    background-color: black;
    margin: 6px 0;
  }
  .content{
    padding-top:20px !important;
  }
  .cic-h5p-content{
    margin-left:200px;
    width:750px;
    max-width:900px !important;
  }

  iframe{
    width: 750px; 
    height: 650px;
    max-width:900px !important;
  }

  .button {
    background-color: #E6AA67;
    border: 1px solid;
    color: black;
    padding: 15px 32px;
    font-weight:bold;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    font-size: 16px;
    transition-duration: 0.4s;
  }

  .button:hover {
    background-color: white;
    color: #E6AA67;
  }
  
  /* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
  }


  /* Page content. The value of the margin-left property should match the value of the sidebar's width property */
  div.content {
    margin-left: 200px;
    padding: 1px 16px;
    height: 1000px;
  }

  video {
    /* override other styles to make responsive */
    width: 100%    !important;
    height: auto   !important;
  }
  
  /* On screens that are less than 700px wide, make the sidebar into a topbar */
  @media screen and (max-width: 700px) {

    #mySidenav{width: 0px;}
    #main{margin-left:0px;}

    .content img{
      width: 100% !important;
    margin: 0px 10px 0px 10px !important;
    }

    /* .sidebar {
      width: 100%;
      height: auto;
      position: relative;
    }
    .sidebar a {float: left;}
    div.content {margin-left: 0;} */

      /*THIS IS for collapsable nav */
  
    /* The side navigation menu */
    .sidenav {
        height: 100%; /* 100% Full-height */
        width: 0; /* 0 width - change this with JavaScript */
        position: fixed; /* Stay in place */
        z-index: 1; /* Stay on top */
        top: 0;
        left: 0;
        overflow-x: hidden; /* Disable horizontal scroll */
        padding-top: 60px; /* Place content 60px from the top */
        transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
    }
    
    /* The navigation menu links */
    .sidenav a {
        padding: 8px 8px 8px 32px;
        display: block;
        transition: 0.3s;
    }
    
    /* Position and style the close button (top right corner) */
    .sidenav .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
    }
    
    /* Style page content - use this if you want to push the page content to the right when you open the side navigation */
    #main {
        transition: margin-left .5s;
        padding: 20px;
    }

    .nav-close-button{
        display:block;
    }
    .nav-open-button{
        display:block;
    }

    .cic-h5p-content{
        margin-left:0px;
        width:100%;
    }
    iframe {
        width:100% !important;
        /* height:350px !important; */
    }

    .bottle-h5p{
      height: 350px !important;
    }

    .h5p-container{
        width:100%;
    }
  }
  
  /* On screens that are less than 400px, display the bar vertically, instead of horizontally */
  @media screen and (max-width: 400px) {
    .sidebar a {
      text-align: center;
      float: none;
    }
  }