.hamburgler-icon-wrapper {
  position: absolute;
  top: .5em;
  right: 1em;
  height: 26px;
  width: 26px;
  cursor: pointer;
  z-index: 3 }

.hamburgler-icon, .hamburgler-icon:before, .hamburgler-icon:after {
  content: '';
  position: absolute;
  border-radius: 1em;
  height: 2px;
  width: 26px;
  background: black;
  transition: all 0.2s ease; }
.hamburgler-icon        { top: 0.75em;  }
.hamburgler-icon:before { top: -0.55em; }
.hamburgler-icon:after  { top: 0.55em;  }
.hamburgler-active .hamburgler-icon { background: transparent; transform: rotate(-135deg); }
.hamburgler-active .hamburgler-icon:before, .hamburgler-active .hamburgler-icon:after { top: 0; }
.hamburgler-active .hamburgler-icon:before { transform: rotate(90deg); }
.hamburgler-active .hamburgler-icon, .hamburgler-active .hamburgler-icon:before, .hamburgler-active .hamburgler-icon:after {
  background: black; }

.hamburgler-menu {
  transition: all 0.4s ease; 
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: /*rgba(0,0,0,0.9); rgba(153, 213, 216, 0.9);*/ RGBA(225, 233, 234, 0.90);
  color: white;
  text-align: center;
  z-index: 2; }
.hamburgler-active .hamburgler-menu {
  opacity: 1;
  pointer-events: initial; }
.hamburgler-menu-list {
  display: block;
  transition: all 0.4s ease; 
  padding: 0;
  list-style-type: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2); }
.hamburgler-active .hamburgler-menu-list {
  transform: translate(-50%, -50%) scale(1); }
.hamburgler-menu-list a{
  font-family: 'Cormorant SC';
  font-size: 1.75em;
  color:/*white;*/black;
}
@media (min-width: 400px) {
    .hamburgler-icon-wrapper{
        top:.5em;
        right:0em;
    }
}    
@media (min-width: 670px) {
    .hamburgler-icon-wrapper{
        top:4em;
        right:1em;
    }
}    