body,
.content-wrap {
  overflow-x: hidden;
}
.menu-wrap a {
  color: #b8b7ad;
}
.menu-wrap a:hover {
  color: #c94e50;
}
.content-wrap {
  transition: transform 0.3s;
  float: left;
  width: 100%;
}
.content {
  position: relative;
  background: #b4bad2;
}
.content::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  content: "";
  opacity: 0;
  transition: opacity 0.3s, transform 0s 0.3s;
  transform: translate3d(100%, 0, 0);
}

/* Menu Button */
.menu-button {
  position: fixed;
  z-index: 1000;
  margin: 1em;
  padding: 0;
  width: 2.5em;
  height: 2.25em;
  border: none;
  text-indent: 2.5em;
  font-size: 1.5em;
  color: transparent;
  background: transparent;
}
.menu-button::before {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  bottom: 0.5em;
  left: 0.5em;
  background: linear-gradient(
    #373a47 20%,
    transparent 20%,
    transparent 40%,
    #373a47 40%,
    #373a47 60%,
    transparent 60%,
    transparent 80%,
    #373a47 80%
  );
  content: "";
}
.menu-button:hover {
  opacity: 0.6;
}

/* Close Button */
.close-button {
  width: 16px;
  height: 16px;
  position: absolute;
  right: 1em;
  top: 1em;
  overflow: hidden;
  text-indent: 16px;
  border: none;
  z-index: 1001;
  background: transparent;
  color: transparent;
}
.close-button::before,
.close-button::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  top: 0;
  left: 50%;
  background: #fff;
}
.close-button::before {
  transform: rotate(45deg);
}
.close-button::after {
  transform: rotate(-45deg);
}
.close-button:focus {
  outline: none;
}

/* Menu */
.menu-wrap {
  position: fixed;
  z-index: 1001;
  width: 0px;
  height: 100%;
  font-size: 1.15em;
  transition: transform 0.3s;
}
.menu {
  background: #373a47;
  width: calc(100% - 120px);
  height: 100%;
  padding: 2em 1em;
}
.icon-list {
  width: 280px;
}
.icon-list a {
  display: block;
  padding: 0.8em;
}
.icon-list a i {
  opacity: 0.5;
}
.icon-list a span {
  margin-left: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.75em;
}

/* Morph Shape */
.morph-shape {
  position: absolute;
  width: 0px;
  height: 100%;
  top: 0;
  right: 0;
  fill: #373a47;
  z-index: 1000;
}

/* Shown menu */
.show-menu .menu-wrap {
  transform: translate3d(0, 0, 0);
  width: 300px;
}
.show-menu .content-wrap {
  transition-delay: 0.1s;
  transform: translate3d(100px, 0, 0);
}
.show-menu .content::before {
  opacity: 1;
  transition: opacity 0.3s;
  transform: translate3d(0, 0, 0);
}
