* {
  box-sizing: border-box;
}

html, body {
  margin: 0 auto;
  padding: 0;
  height: 100%;
  width: 100%;
}

ul, li {
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.drop-down {
     padding: 17px;
    position: absolute;
    right: 0;
    width: 37%;
    float: right;
    height: auto;  
    z-index: 99;
    background: #fff;
    top: -100%;
    transition: top 0.4s ease-in-out;
}
.drop-down li {
  height: 50px;
  line-height: 50px;
   text-align: center; border-bottom: 1px solid;
}
.drop-down li:nth-child(1) {
  border-top: 0 ;
}
.drop-down li:nth-child(4) {
  border-bottom: 0;
}
.drop-down li:hover {
  background: #fff;
}
.drop-down a {
     display: block;
    font-size: 14px;     font-family: sans-serif;
    color: #000;
    text-decoration: none;
}
.drop-down h1 {
   font-size: 22pt;
  text-align: center;
  color: #fff;
}

.down {
  top: 33px;
  transition: top 0.4s ease-in-out;
}

.menu {
  box-sizing: content-box !important;
    position: absolute;
    top: -6px;
    right: -6px;
    width: 39px;
    height: 64px;
    text-align: center;
      z-index: 999;
    color: #fff;
}

 @media (min-width: 760px){
.menu{ display: none;
}}


.menu:hover {
 }
.menu a {
 display: block;
    text-decoration: none;
    font-size: 36pt;
    font-weight: bold;
    color: #000;
    margin: 0 auto;
}
.menu .close {
  display: none;
}

 
@-webkit-keyframes menu-spin {
  50% {
    border-radius: 100%;
  }
  100% {
    border-radius: 100%;
    transform: rotate(180deg);
  }
}
@-webkit-keyframes menu-spin-back {
  50% {
    border-radius: 0;
  }
  100% {
    border-radius: 0;
    transform: rotate(-180deg);
  }
}
.white {
  border-color: #fff;
  color: #fff !important;
}