/* Styles for above the fold content on the home page */
@font-face {
  font-family: ohMaria01;
  src: url(/assets/fonts/Ohmaria01-Regular.otf);
}
@font-face {
  font-family: ohMaria02;
  src: url(/assets/fonts/Ohmaria02-Regular.otf);
}
body {
  margin: 0;
  padding: 0;
}
.main-grid {
  display: grid;
}
.sub-grid {
  display: grid;
  row-gap: 5rem;
}
.sub-grid-content {
  display: grid;
}
.sub-grid-content-home-page {
  grid-template-columns: 50% 50%;
  row-gap: 5rem;
}
.sub-grid-content p,
.sub-grid-content h1,
.sub-grid-content h2,
.sub-grid-content a {
  text-align: center;
  font-family: ohMaria01, ohMaria02;
  font-size: 18px;
  color: inherit;
}
.sub-grid-content-home-page h2,
.sub-grid-content-home-page a {
  font-size: 28px;
}
/* For desktop displays */
@media only screen and (min-width: 1024px) {
  .sub-grid-content p {
    font-size: 32px;
  }
  .sub-grid-content h2,
  .sub-grid-content h2 a {
    font-size: 52px;
  }
  .sub-grid-content h1 {
    font-size: 64px;
  }
}
.sidebar {
  background-repeat: repeat;
  background-image: image-set(url("/assets/images/banners/avif/verticalBanner_Full_Doubled.avif") type("image/avif"), url("/assets/images/banners/webp/verticalBanner_Full_Doubled.webp") type("image/webp"), url("/assets/images/banners/png/verticalBanner_Full_Doubled.png") type("image/png"));
}
.main-grid-image {
  display: block;
  height: 40vh;
  width: 100%;
  object-fit: contain;
}
.main-grid-image:hover {
  transform: scale(1.1);
}
/* For tablet displays and other bigger displays */
@media only screen and (min-width: 415px) and (max-width: 1023px) {
  .sidebar {
    background-size: 25vw;
  }
}
/* For desktop displays */
@media only screen and (min-width: 1024px) {
  .main-grid {
    grid-template-columns: 10% 80% 10%;
  }
}
/* For tablet displays and other bigger displays */
@media only screen and (min-width: 415px) and (max-width: 1023px) {
  .main-grid {
    grid-template-columns: 10% 80% 10%;
  }
}
/* For mobile displays */
@media only screen and (min-width: 360px) and (max-width: 414px) {
  .main-grid {
    grid-template-columns: 0% 100% 0%;
  }
}
/* For any weirdly small displays */
@media only screen and (max-width: 359px) {
  .main-grid {
    grid-template-columns: 0% 100% 0%;
  }
}
.skip {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1111111;
}
.hero {
  height: 100vh;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: ohMaria01, ohMaria02;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80%;
}
.hero-content h1 {
  font-size: 10vw;
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio - adjust as needed */
  height: 0;
  overflow: hidden;
  width: 100%;
}
.video-container lite-youtube {
  margin: auto;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sub-content {
  flex-grow: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}
/*For desktop displays*/
@media only screen and (min-width: 1024px) {
  .hero-content h1 {
    font-size: 10vh;
  }
}
.scroll-graphic {
  font-size: 20px;
  flex-grow: 2;
  display: flex;
  align-items: center;
  padding-top: 20px;
}
.scroll-graphic img {
  width: 3vw;
}
.anchor-button {
  background-color: white;
  border: 3px solid black;
  border-radius: 10px;
  color: black;
  font-family: OhMaria01, OhMaria02;
  font-size: 36px;
  padding: 10px 25px;
  cursor: pointer;
}
.anchor-button:link {
  text-decoration: inherit;
  color: inherit;
}
.anchor-button:visited {
  text-decoration: inherit;
  color: inherit;
}
.anchor-button:hover {
  text-decoration: inherit;
  color: inherit;
  background-color: grey;
}
.anchor-button:active {
  text-decoration: inherit;
  color: inherit;
}
/* For tablet displays and other bigger displays */
@media only screen and (min-width: 415px) and (max-width: 1023px) {
  .anchor-button {
    font-size: 5vw;
    padding: 2vw 3vw;
  }
}
/* For mobile displays */
@media only screen and (min-width: 360px) and (max-width: 414px) {
  .anchor-button {
    font-size: 5vw;
    padding: 3vw 6vw;
  }
}
/* For any weirdly small displays */
@media only screen and (max-width: 359px) {
  .anchor-button {
    font-size: 5vw;
    padding: 3vw 6vw;
  }
}
/* For desktop displays */
@media only screen and (min-width: 1024px) {
  .scroll-graphic {
    font-size: 2vw;
  }
  .scroll-graphic img {
    width: 2vw;
  }
}
.youtube-video-wrap {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
}
/* For mobile displays and any weirdly small displays*/
@media only screen and (max-width: 1023px) {
  .youtube-video-wrap {
    max-width: 60%;
  }
}
