.pushy {
  position: fixed;
  width: 90vw;
  height: 100%;
  top: 0;
  z-index: 9999;
  background: #FCFDFD;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 768px) {
  .pushy {
    width: 500px;
  }
}
.pushy .pushy-content {
  visibility: hidden;
  text-align: left;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 360px;
}
.pushy .pushy-content .logo {
  width: 131.85px;
  margin: 19px 0 35px 0;
  transition: 0.2s;
}
.pushy .pushy-content .logo img {
  width: 131.85px;
  height: 33.41px;
}
.pushy .pushy-content .nav {
  margin: 45px 15px 15px 15px;
}
.pushy .pushy-content .nav ul {
  margin: 15px 0;
}
.pushy .pushy-content .nav ul li a {
  text-decoration: none;
  display: block;
  color: #161618;
  font-family: "Hind", sans-serif;
  font-weight: 700;
  font-size: 6vw;
  line-height: 1.5;
  position: relative;
  margin-bottom: 20px;
}
@media screen and (min-width: 480px) {
  .pushy .pushy-content .nav ul li a {
    font-size: 2.5rem;
  }
}
.pushy .pushy-content .nav ul li a::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -10px;
  left: 0;
  background-color: #BEBEBE;
}
.pushy .pushy-content .nav ul li a:hover {
  color: #14B928;
}
.pushy .pushy-content .nav ul li.banner a::before {
  display: none;
}
.pushy .pushy-content .nav ul li.banner a img {
  width: 80%;
  height: auto;
}
.pushy .pushy-content .nav ul li:nth-child(7) {
  padding-top: 30px;
}

.pushy.pushy-left {
  left: 0;
}

.pushy.pushy-right {
  right: 0;
}

/* Menu Movement */
.pushy-left {
  transform: translate3d(-100vw, 0, 0);
}

.pushy-open-left #container,
.pushy-open-left .push {
  transform: translate3d(100vw, 0, 0);
}

.pushy-right {
  transform: translate3d(100vw, 0, 0);
}

.pushy-open-right #container,
.pushy-open-right .push {
  transform: translate3d(-100vw, 0, 0);
}

.pushy-open-left .pushy,
.pushy-open-right .pushy {
  transform: translate3d(0, 0, 0);
}

.pushy-open-left .pushy-content,
.pushy-open-right .pushy-content {
  visibility: visible;
}

/* Menu Transitions */
#container,
.pushy,
.push {
  transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

.pushy-content {
  transition: visibility 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

/* Site Overlay */
.site-overlay {
  display: none;
}

.pushy-open-left .site-overlay,
.pushy-open-right .site-overlay {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9998;
  background-color: rgba(51, 51, 51, 0.8);
  -webkit-animation: fade 500ms;
  animation: fade 500ms;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}/*# sourceMappingURL=pushy.css.map */