#masthead {
  background-color: #eee;
  padding: 1rem;
}
.masthead-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-title {
  margin: 0;
}
.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.main-nav ul li {
  margin-left: 1rem;
}
.menu-link {
  display: none;
}

.menu-trigger {
  font-size: 1.5rem;
}

.hide {
  display: none;
}
.menu {
  background-color: #fff;
  width: 92vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-100vw);
  transition: all 600ms ease;
  z-index: 9999;
  padding: 0 15px;
}

.slide-in {
  transform: translateX(0);
}
.menu-close {
  right: -318px;
  top: 8px;
  background: no-repeat url(../img/close-btn.png) center center;
  background-size: contain;
  display: inline-block;
  height: 24px;
  width: 24px;
  position: relative;
  background-color: #eee;
  border-radius: 50%;
	margin-bottom: 0px;
}
.menu-pages {
  list-style: none;
  padding: 0 1rem;
}
.menu-pages li {
  font-size: 16px;
  line-height: 1.7;
  font-weight: normal;
  background-color: #f7f7f7;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 10px 15px 10px 15px;
}
.menu-pages li:first-child {
  background-color: #fff !important;
  padding-left: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
}
.menu-pages li a {
  color: #818181;
  text-decoration: none;
}
.menu-pages li a:hover {
  text-decoration: underline;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 50;
  display: block;
}
/************************************/
@media (min-width: 550px) {
  .menu-link {
    display: block;
  }
	.menu-trigger {
    display: none;
  }
	.menu {
    display: none;
  }
}
@media (min-width: 400px) and (max-width: 420px) {
.menu-close {
	right: -366px;}
}
@media (min-width: 370px) and (max-width: 375px) {
.menu-close {
	right: -333px;}
}
@media only screen and (max-width: 320px) {
.menu-close {
    right: -280px;

	}













