.NavbarHeader {
    background-color: #333;
    overflow: hidden;
    
}
.Navigation {
  background-color: #333;
  overflow: hidden;
  
}
/* Style the links inside the navigation bar */
.NavbarHeader a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

/* Change the color of links on hover */
.NavbarHeader a:hover {
    background-color: #ddd;
    color: black;
}

/* Add an active class to highlight the current page */
.NavbarHeader a.active {
    background-color: #4CAF50;
    color: white;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
/* Dropdown Button */
.dropbtn {
    padding: 16px;
    font-size: 16px;
    border: none;
    background-color: black;
    color: white;
    text-decoration: underline;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ddd;}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {background-color: skyblue;}

  body {
		padding-top: 5px;
		padding-bottom: 5px;
  }
  header, main {
    background-color: silver;
  }
  .navA {
    text-align: center;
    padding: 16px 15px;
    color: white;
    justify-content: end;
    display: block;
  }

  .navA:hover {
    background-color: skyblue;
  }
  .navA a {
    color: white;
    background-size: cover;
    background-position: center;
    border: none;
    font-size: 16px;
  }
/* The sidebar menu */
.sidebar {
  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 sidebar */
}

/* The sidebar links */
.sidebar a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidebar a:hover {
  color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidebar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* The button used to open the sidebar */
.openbtn {
  font-size: 20px;
  cursor: pointer;
  background-color: #111;
  color: white;
  padding: 10px 15px;
  border: none;
  display: block;
}

.openbtn:hover {
  background-color: #444;
}

.sideButtonDiv {
  display:block;
  float:left;
}

.iconColumn {

  justify-content: center;
  text-align: center;
  align-items: center;
  height: 100%;

}

.iconImage {
  width: 100%;
  height: auto;

}
.iconCard {
  justify-content: center;
  text-align: center;
  align-items: center;
  
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
/* Responsive layout - when the screen is less than 600px wide, make the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .iconColumn {
    width: 100%;
  }
}
.mlColumn {
  float: left;
  width: 50%;
  justify-content: center;
  text-align: center;
  align-items: center;
  height: 100%;
  margin-top: 30px;
  padding: 5px;
}
/* Responsive layout - when the screen is less than 600px wide, make the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .mlColumn {
    width: 100%;
  }
}
/* Applications section - front page*/
.appSection {
  width: 100vw;

}

/* 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; /* If you want a transition effect */
  padding: 20px;
}

/* 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) {
  .sidebar {padding-top: 15px;}
  .sidebar a {font-size: 18px;}
}
.twoColTextImg {
  align-items: center;
  justify-items: center;
}
.footerLinks {
  display: block;
}
.footLinks {
  width: 33.33%;
  display:block;
  overflow:auto;
  float:left;
}
  /* Footer Styles*/
  footer {
    position: static;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color:black;
    text-align: center;
  }
  .footerColor {
    background: black;
  }