@charset "utf-8";
/* CSS Document */

#homepage .toggleNav { display:block }
#homepage nav {box-shadow:none; }

.toggleNav {
  
  display:none;
  width: 80px;;
  height: 80px;
  text-align: center;
  line-height: 80px;
  cursor: pointer;
  color: white;
  font-size: 30px;
  position:absolute;
  
}



nav {
  width: 100%;
  min-height: 130px;
  box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
}

.toggleNavButton {
  transition-duration: 0.5s;
  width: 40px;
  height: 2px;
  background-color:#c62e0a;
  position: absolute;
  left: 0%;
  top: 25px;
  margin-left: 20px;
  border-radius: 2px;
}

.toggleNavButton:before,
.toggleNavButton:after {
  border-radius: 2px;
  transition-duration: 0.5s;
  content: "";
  position: absolute;
  top: 1 ; background-color: #c62e0a;
  top: 10px;
  left: 0;
  
  width: 40px;
  height: 2px;
}

.toggleNavButton:after { top: 20px; }

.toggleNavButton.active { width: 0; }

.toggleNavButton.active:after {
  top: 10px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.toggleNavButton.active:before {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

#subnav {
  width: 100%;
  
  
  transition-duration: 1s;
  overflow: hidden;
  height: 0px;
}

#subnav.active {
  
  height: 120px;
  background-color:#fff;
  
}

#subnav ul {
  width: 615px;
  margin: 0 auto;
}

#subnav ul li {
  transition-duration: 0.3s;
  display: inline-block;
  text-align: center;
  width: 150px;
  padding: 10px 0;
  height: 50px;
}

#subnav ul li a { color: white; }

#subnav ul li:hover { background-color: #e60b3e; }