@charset "UTF-8";
/* CSS Document */


ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-trigger {
  display: inline-block;
  width: 30px;
  height: 25px;
  vertical-align: middle;
  cursor: pointer;
  position: fixed;
  top: 48px;
  left: 30px;
  z-index: 100;
}
.menu-trigger.active {
  transform: translateX(-0px);
}
.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color:#a24f27;
	border-radius: 3px;
  transition: all .5s;
}
.menu-trigger.active span {
  background-color: #F07375;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(14px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
  top: 12px;
}
.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);
}
.d_nav {
  width: 100%;
  height: 100%;
  padding-top: 100px;
  background-color: rgba(255,255,255,0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
	font-size: 1.3em;
  transform: translate(-100%);
  transition: all .5s;
}
.d_nav.open {
  transform: translateZ(0);
}
.d_nav li {
  color: #a24f27;
  text-align: right;
  padding: 10px 30px 10px 0;
}
.d_nav li a {
  color:  #a24f27 ;
  text-decoration: none;
}
.d_nav li a:hover {
  color: #F07375;
  font-weight: bold;
}
@media (min-width: 769px) {
	.menu-trigger {
		display: none;
	}
}
@media only screen and (max-width: 768px) 
{
  .menu-trigger {
    display: inline-block;
    width: 30px;
    height: 25px;
    vertical-align: middle;
    cursor: pointer;
    position: fixed;
    top: 25px;
    left: 30px;
    z-index: 100;
  }
}