@charset 'UTF-8';

button{
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.menu-trigger {
  display: inline-block;
  width: 30px;
  height: 20px;
  vertical-align: middle;
  cursor: pointer;
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 200;
/*transform: translateX(0);
  transition: transform .5s;
*/}

@media screen and (max-width: 568px) {
.menu-trigger {
  top: 20px;
  right: 15px;
}
}

/* 
.menu-trigger.active {
  transform: translateX(-250px);
}*/

.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  transition: all .5s;
}

.menu-trigger.active span {
  background-color: #000;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}

.menu-trigger span:nth-of-type(2) {
  top: 9px;
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}

nav {
  width: 400px;
  height: 100%;
  background-color: rgb(255, 255, 255, 1);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  transform: translate(400px);
  transition: all .5s;
  box-sizing: border-box;
  padding:100px 2% 0;
}

@media screen and (max-width: 568px) {
nav {width: 100%;transform: translate(100%);padding:5%;}
}

nav.open {
  transform: translateZ(0);
}

nav li {
  color: #000;
  padding: 10px;
  border-bottom:1px dotted #DDDDDD;
  margin-bottom:3px;
}

@media screen and (max-width: 568px) {
nav li {font-size:0.95em;}
}

nav li a{color:#1F7A7F;text-decoration:none}
nav li a:hover{color:#61BECA;text-decoration:none;}

nav #nav_logo{
  width:240px;
  margin:0 0 40px;
}

@media screen and (max-width: 568px) {
nav #nav_logo{width:200px;margin:0 0 15px;}
}

nav #nav_logo img{
  width:100%;
  height:auto;
}

nav #nav_logo a:hover img { opacity: 0.8; }