:root {
  --viewport: 100vw;
  --viewport-mult: 1;
}

@media screen and (max-width: 1279px) {
  :root {
    --viewport-mult: 1.7786458333;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --viewport-mult: 3.6426666667;
  }
}
/* overlay*/
body.overlay-on {
  position: absolute;
}
body.overlay-on-scrollable {
  position: relative;
}
body.overlay-on-scrollable > main {
  position: absolute;
  overflow: hidden;
  height: 0;
}
body.overlay-on-scrollable footer {
  position: absolute;
  overflow: hidden;
  height: 0;
}
body.overlay-on-scrollable .overlay {
  position: relative;
}

.overlay {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 101;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  left: 0;
  height: 100vh;
  visibility: visible;
}

.overlay[aria-hidden=true] {
  z-index: 101;
  pointer-events: none;
  visibility: hidden;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.overlay__shadow {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
}

.overlay__close {
  position: fixed;
  top: 3vw;
  right: 3vw;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
  outline: 0;
  z-index: 300;
  width: calc(0.0256222548 * var(--viewport) * var(--viewport-mult));
  height: calc(0.0256222548 * var(--viewport) * var(--viewport-mult));
  background-size: 100%;
  font-size: calc(0.0366032211 * var(--viewport) * var(--viewport-mult));
}

.overlay__close:hover {
  opacity: 0.75;
}

.overlay__content {
  position: relative;
  width: 100%;
  z-index: 1;
}

.overlay__inner {
  width: 100%;
  position: relative;
  z-index: 1;
  background: #FAF8F8;
  min-height: 100%;
}

.overlay__width {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: calc(0.0732064422 * var(--viewport) * var(--viewport-mult));
}

.overlay .entry-content {
  padding: 0;
}

.overlay__iframe {
  width: 100%;
  height: 80vh;
}

.overlay-iframe-youtube .overlay__close {
  top: 3vw;
  right: 3vw;
}

.overlayinline[aria-hidden=true] {
  display: none;
}

/* end overlay *//*# sourceMappingURL=main.css.map */