.pushy {
  position: fixed;
  width: 100vw;
  height: 100%;
  top: 0;
  z-index: 9999;
  background: #404040;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.pushy .pushy-content {
  visibility: hidden;
  text-align: center;
  width: 90%;
  margin: 0 auto;
}
.pushy .pushy-content .pushy-logo {
  width: 180px;
  margin: 27px 0 0 0;
}
@media screen and (min-width: 768px) {
  .pushy .pushy-content .pushy-logo {
    width: 227px;
    margin: 47px 0 0 0;
  }
}
.pushy .pushy-content .pushy-logo a {
  display: block;
  width: 100%;
  aspect-ratio: 1/0.2376;
  background: url("../../images/kcip-logo-w.svg") no-repeat center center;
  background-size: cover;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.pushy .pushy-content .pushy-nav {
  margin: 85px 0 0 0;
}
.pushy .pushy-content .pushy-nav li a {
  display: block;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: clamp(1.125rem, 0.462vw + 1.005rem, 1.375rem);
  line-height: 1;
  position: relative;
  margin-bottom: 20px;
  transition: 0.2s;
  color: #FFFFFF;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .pushy .pushy-content .pushy-nav li a {
    margin-bottom: 30px;
  }
}
.pushy .pushy-content .pushy-nav li a:hover {
  text-decoration: none;
  opacity: 0.75;
}

@media screen and (min-width: 768px) {
  .pushy-nav-left {
    width: 40%;
  }
}

@media screen and (min-width: 768px) {
  .pushy-nav-right {
    margin-top: 80px;
    width: 55%;
  }
}

.pushy-banner {
  margin-top: 4em;
}
.pushy-banner .banner-contact {
  width: 60%;
  min-width: 280px;
  margin: 0 auto;
}
.pushy-banner .banner-contact a {
  display: block;
  width: 100%;
  height: 37px;
  background-color: #FEA628;
  font-family: "Crimson Pro", serif;
  font-weight: 500;
  font-size: clamp(1rem, 0.88rem + 0.4vw, 1.125rem);
  line-height: 37px;
  text-align: center;
  color: #FFFFFF !important;
  padding: 0;
  border-radius: 1.5em;
  transition: 0.2s;
}
.pushy-banner .banner-contact a:hover {
  text-decoration: none;
  color: #FFFFFF;
  opacity: 0.75;
}

/* 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(0, -100vh, 0);
}

.pushy-open-right #container,
.pushy-open-right .push {
  transform: translate3d(0, 100vh, 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.65s cubic-bezier(0.85, 0, 0.15, 1);
}

.pushy-content {
  transition: visibility 0.65s cubic-bezier(0.85, 0, 0.15, 1);
}

/* 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);
  animation: fade 500ms;
}

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