@charset "utf-8";
* {
  box-sizing: border-box;
}
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;
  right: 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: #978177;
  transition: all .5s;
}
.menu-trigger.active span {
  background-color: #fff;
}
.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: 250px;
  height: 100%;
  padding-top: 100px;
  background-color: rgb(151, 129, 119,0.8);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 20;
  transform: translate(250px);
  transition: all .5s;
}
.d_nav.open {
  transform: translateZ(0);
}
.d_nav li {
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
.d_nav li a {
  color:#fff;
  text-decoration: none;
    font-weight: 100;
}
.d_nav li a:hover {
  color: #0A6646;
  font-weight: bold;
}
@media (max-width: 768px) {
  .menu-trigger {
    display: inline-block;
    width: 30px;
    height: 25px;
    vertical-align: middle;
    cursor: pointer;
    position: fixed;
    top: 25px;
    right: 30px;
    z-index: 100;
  }
}

@media (min-width: 769px){

.menu-trigger{
        
 display: none;
}
}