*{
    margin: 0;
    padding: 0;
}
.head{
    min-height: 54px;
    width: 100%;
    background-color: #3C3C3C;
    color: #A0A0A0;
    font-family: 'Lucida Sans Unicode';
    padding-top: 10px;
    
}
.heading1{
    font-size: 29px;
    margin-left: 30px;
}
.links{
    height: 20px;
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #007AC9;
    padding-right: 170px;
    border: 1px solid #007AC9;
    
}
.links a{
    text-decoration: none;
    margin-right: 10px;
    color: white;
    padding-top: 8px;
    padding-bottom: 10px;
    padding-right: 2px;
    padding-left: 2px;

    font-family: Arial;
    font-weight: bold;
    font-size: 15px;
    
}
.links a:hover{
    background-color: #3C3C3C;
    color: #007AC9;
}


.dropbtn {
    background-color: #007AC9;
    color: white;
    font-size: 10px;
    border: none;
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #3C3C3C;
    min-width: 180px;
    z-index: 1;
  }
  
  .dropdown-content a {
    color: white;
    text-decoration: none;
    display: block;
    font-size: 12px;
    font-weight: 500;
  }
  .dropdown-content a:hover {background-color: #007AC9 ;color: white;}
  
  .dropdown:hover .dropdown-content {display: block;}
  
  .dropdown:hover .dropbtn {background-color: #3C3C3C;color: #007AC9;}
.active{
    background-color: #3C3C3C;
    color: #007AC9;
}
.container1{
    margin-top: 50px;
    margin-left: 50px;
    margin-bottom: 100px;
    margin-right: 20px;
}
  /* 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;
    background-color: #111; /* Black*/
    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;
    text-decoration: none;
    font-size: 18px;
    color: #818181;
    display: block;
    transition: 0.3s
}
.dropdown-container a{
    font-size: 12x;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover, .offcanvas a:focus{
    color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 200px;
    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;
}
.hamburger{
    margin-left: 15px;
    display: none;
}
/* 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;}
}

@media screen and (max-width: 900px){
   .links{
       display: none;
   }
   .heading1{
    font-size: 20px;
    padding-top: 0;
   }
   .hamburger{
       display: inline;
   }
}