*,
*::after,
*::before {
  box-sizing: border-box;
}

body {
  margin: 0;
  --color-text: #111;
  --color-bg: #d8d2cd;
  --color-link: #b41717;
  --color-link-hover: #000;
  --color-bg-alt: #c3bcbc;
  --color-text-alt: #111;
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.demo-2 {
  --color-text: #b41717;
  --color-text-alt: #b41717;
  --color-bg: #000000;
  --color-bg-alt: #9c9191;
  --color-link-hover: #fff;
}

/* Page Loader */
.js .loading::before,
.js .loading::after {
  content: "";
  position: fixed;
  z-index: 1000;
}

.js .loading::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
}

.js .loading::after {
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  border-radius: 50%;
  opacity: 0.4;
  background: var(--color-link);
  animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
  to {
    opacity: 1;
    transform: scale3d(0.5, 0.5, 1);
  }
}
.unbutton {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
}

.unbutton:focus {
  outline: none;
}

.frame {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: grid;
  align-content: space-between;
  width: 100%;
  max-width: none;
  padding: 1rem;
  pointer-events: none;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, auto);
  grid-template-areas: "title" "prev" "sponsor" "demos";
}

.frame a,
.frame button {
  pointer-events: auto;
}

.frame__title {
  grid-area: title;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  margin-bottom: 0.5rem;
}

.frame__title-main {
  font-size: 1rem;
  margin: 0;
  font-weight: 400;
}

.frame__title-back {
  position: relative;
  display: flex;
  align-items: flex-end;
}

.frame__title-back span {
  display: none;
}

.frame__title-back svg {
  fill: var(--color-link);
}

.frame__title-back:hover svg,
.frame__title-back:focus svg {
  fill: var(--color-link-hover);
}

.frame__demos {
  grid-area: demos;
}

.frame__demos a {
  margin-left: 2rem;
  position: relative;
}

.frame__demo--current,
.frame__demo--current:hover {
  color: var(--color-text);
}

.frame__prev {
  grid-area: prev;
  justify-self: start;
}

.frame__demos-title {
  display: block;
}

.grid {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.grid__item {
  position: relative;
  will-change: transform;
  grid-column: var(--c);
  grid-row: var(--r);
}
.grid__item .has-link {
  transition: all 0.3s ease;
  display: block;
  cursor: url("/wp-content/themes/boon/images/read-cursor-black.png"), pointer;
}
.grid__item .has-link .grid__item-img {
  cursor: url("/wp-content/themes/boon/images/read-cursor-black.png"), pointer;
}
.grid__item .has-link:hover {
  transform: scale(1.2);
}

.grid__item-img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  background-size: cover;
  background-position: 50% 50%;
  will-change: transform, opacity;
}

.demo-1 .grid__item-img {
  filter: contrast(70%);
}

.cover {
  position: fixed;
  width: 100%;
  height: 100svh;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  gap: 0.3rem;
  flex-direction: column;
}

.cover__title {
  font-size: 8vw;
  font-weight: 500;
  margin: 0;
}

.cover__title sup {
  font-size: 4vw;
  font-weight: 500;
  vertical-align: 75%;
}

.cover__subtitle {
  font-size: 2.5vw;
  font-weight: 400;
  margin: 0;
  text-transform: capitalize;
}

.fw-light {
  font-weight: 300;
}

.footer p {
  max-width: 40ch;
}

@media screen and (min-width: 991px) {
  .page-template-page-scroll {
    background-color: var(--color-bg);
  }
  .grid {
    grid-template-columns: repeat(8, 1fr);
  }
  .frame {
    height: 100svh;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: "prev sponsor" "... ..." "title demos";
  }
  .frame__demos {
    justify-self: end;
    margin: 0 1rem;
    white-space: nowrap;
  }
  .frame__demo--current::after {
    content: "";
    position: absolute;
    top: 100%;
    height: 120%;
    width: 1px;
    left: 50%;
    background: currentColor;
  }
  .frame__demos-title {
    display: inline;
  }
  .cover {
    flex-direction: row;
    gap: 2rem;
  }
  .cover .cover__subtitle {
    max-width: 4ch;
  }
}
@media screen and (max-width: 991px) {
  #scroll_grid,
  .cover {
    display: none;
  }
  .page-template-page-scroll header {
    background-color: white !important;
    padding: 25px 0 !important;
  }
  .page-template-page-scroll .default-wrap.padded-large {
    padding-top: 0 !important;
  }
}
header {
  background-color: var(--color-bg);
}

.scroll-header {
  background-color: transparent !important;
}

#menu-main-menu-1,
.navToggle,
.search-toggle {
  background-color: white;
}

.page-template-page-scroll .header-logo {
  transition: opacity 0.3s ease;
}
.page-template-page-scroll #introduction {
  background-color: white;
  position: relative;
  z-index: 10;
}/*# sourceMappingURL=scroll_banner.css.map */