#overlayBtn{
  display: inline;
  position: fixed;
  z-index: 100;
  font-size: 40px;
  /*line-height: 65px;*/
  right: 15px;
  top: 15px;
}

#overlayBtn a {
  text-decoration: none;
}

.btn-open::after {
  color: #5ac5e9;
  font-family: "FontAwesome";
  content: "\f0c9";
  transition-property: all 0.2s linear 0s;
  -moz-transition: all 0.2s linear 0s;
  -webkit-transition: all 0.2s linear 0s;
  -o-transition: all 0.2s linear 0s;
  background-color: rgba(255,255,255,.4);
  padding: 5px 10px;
  border-radius: 5px;
}

.btn-open:hover:after {
  color: #ff6551;
}

.btn-close::after {
  color: #ff6551;
  font-family: "FontAwesome";
  content: "\f00d";
  transition-property: all 0.2s linear 0s;
  -moz-transition: all 0.2s linear 0s;
  -webkit-transition: all 0.2s linear 0s;
  -o-transition: all 0.2s linear 0s;
}

.btn-close:hover:after {
  color: #5ac5e9;
}

/*overlay*/
.overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  min-width: 355px;
  background: rgba(0,0,0,.85);
  overflow: auto;
  z-index: 99;
}

.wrap {
  color: #e9e9e9;
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
}

.wrap ul.wrap-nav {
  text-transform: capitalize;
  padding: 50px 0px 0px;
}

.wrap ul.wrap-nav li {
  font-size: 14px;
  color: #ff6551;
  font-weight: bold;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  position: relative;
  text-transform: uppercase;
}

.wrap ul.wrap-nav li a {
  display: block;
  padding: 8px 0;
  text-decoration: none;
  transition-property: all 0.2s linear 0s;
  -moz-transition: all 0.2s linear 0s;
  -webkit-transition: all 0.2s linear 0s;
  -o-transition: all 0.2s linear 0s;
}

.wrap ul.wrap-nav li a:hover {
  color: #f0f0f0;
}

.wrap ul.wrap-nav >li > ul {
  padding: 20px 0;
}

.wrap ul.wrap-nav ul li {
  display: block;
  width: 100%;
  color: #e9e9e9;
}

.wrap ul.wrap-nav ul li a {
  font-size: 21px;
  font-weight: normal;
  text-transform: capitalize;
  color: #f0f0f0;
  color: #5ac5e9;
}

.wrap ul.wrap-nav ul li a:hover {
  color: #34B484;
  color: #ff6551;
}

@media screen and (max-width: 48em) {
  .wrap ul.wrap-nav > li {
    width: 100%;
    padding: 20px 0;
    /*border-bottom: 1px solid #575757;*/
  }
  .wrap ul.wrap-nav {
    padding: 30px 0px 0px;
  }
  nav ul {
    opacity: 0;
    visibility: hidden;
  }
}

.content {
  width: 100%;
  margin-top: 200px;
  font-size: 20px;
  color: #333;
  text-align: center;
}



@media (min-width: 600px) {
  .overlay {
    width: 25%;
  }
}

@media (min-width: 900px) {

}

@media (min-width: 1200px) {

}