@charset "UTF-8";
/* CSS Document */

.drop-down {
  max-height: 0;
  overflow: hidden;
}

.ie8 .drop-down-menu:hover .drop-down {
	max-height: 500px;
}


@media only screen and (min-width: 1024px) {

  .drop-down-menu:hover .drop-down {
    max-height: 500px;
  } 

}

@media only screen and (max-width: 1023px) {

  .activate:checked ~ .drop-down {
    max-height: 500px;
  } 

}

.drop-down, .menu a, .drop-down-menu {
  -webkit-transform: translateZ(0);  
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}