/** Shopify CDN: Minification failed

Line 207:0 Expected "}" to go with "{"

**/
.transparent-video {
  border: none !important;
  outline: none !important;
  background-color: transparent !important; /* Ensure no background */
}

/* General container for buttons */
.button-container {
  position: relative;
  width: 100vw; /* Use viewport width */
  height: 100%; /* Adjust height as needed for your layout */
  box-sizing: border-box; /* Include padding and border in element's total width and height */
}

/* Desktop Invisible Buttons styles */
.main_banner_youtube_button button {
  background: none;
  width: 550px;
  height: 600px;
  padding: 0;
  cursor: pointer;
  color: #ffffff;
  border-radius: 5px;
}
.main_staff_orb_button button {
  background: none;
  border: 1px solid white;
  width: 300px;
  height: 300px;
  padding: 0;
  cursor: pointer;
  color: #ffffff;
  border-radius: 5px;
}

/* Position the buttons */
.main_staff_orb_button {
   position: absolute;
    top: 16%;
    left: 210px;
    transform: translateY(-50%);
}

.main_banner_youtube_button {
position: absolute;
  top: 48%; /* Position the top edge at the vertical center */
  right: 0px;
  transform: translateY(-50%); /* Shift the button up by half its height */
}


/* 1280x800 Resolution */
@media screen and (width: 1280px) and (height: 800px) {
  .main_banner_youtube_button button {
    width: 350px; /* Or whatever size you want for this resolution */
    height: 350px;
  }
  .main_staff_orb_button {
    position: absolute;
    top: 17%;
    left: 150px;
    transform: translateY(-50%);
  }
  .main_staff_orb_button button {
    width: 175px; /* Or whatever size you want */
    height: 175px;
  }
}

/* Tablet (screen width between 481px and 1024px) */
@media screen and (max-width: 1024px) {
  .main_banner_youtube_button button {
    width: 250px;
    height: 250px;
  }
  .main_staff_orb_button {
    position: absolute;
    top: 16%;
    left: 120px;
    transform: translateY(-50%);
  }
  .main_staff_orb_button button {
    width: 130px;
    height: 130px;
  }
}

/* Mobile Portrait (screen width up to 480px) */
@media screen and (max-width: 480px) and (orientation: portrait) {
  .main_banner_youtube_button button {
    width: 110px;
    height: 110px;
  }
  .main_staff_orb_button {
    position: absolute;
    top: 15%;
    left: 45px;
    transform: translateY(-50%);
  }
  .main_staff_orb_button button {
    width: 50px;
    height: 50px;
  }
}

/* Mobile Landscape (screen width up to 1024px and height up to 480px) */
@media screen and (max-width: 1024px) and (max-height: 480px) and (orientation: landscape) {
  .main_banner_youtube_button button {
    width: 200px;
    height: 200px;
  }
  .main_staff_orb_button {
    position: absolute;
    top: 16%;
    left: 95px;
    transform: translateY(-50%);
  }
  .main_staff_orb_button button {
    width: 80px;
    height: 80px;
  }
}


/* Root banner container */
.shopify-section .banner.video-background {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  z-index: 0; /* Ensure banner stays below footer */
  clear: both; /* Prevent overlap with subsequent sections */
}

/* Video container */
.shopify-section .banner.video-background .banner__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* Match video's 16:9 aspect ratio */
  z-index: -1; /* Keep video behind content */
  overflow: hidden;
}

/* Video element itself */
.shopify-section .banner.video-background .banner__media video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fill container without letterboxing */
  display: block;
}

/* Content styling */
.shopify-section .banner.video-background .banner__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Ensure content stays above video */
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

/* Ensure footer stays below banner */
footer {
  position: relative;
  z-index: 1; /* Ensure footer is above banner */
  clear: both; /* Prevent overlap */
}

/* Fallback for browsers that don't support aspect-ratio */
@supports not (aspect-ratio: 16 / 9) {
  .shopify-section .banner.video-background .banner__media {
    padding-bottom: 56.25%; /* For 16:9 (9/16 = 0.5625) */
  }
}

/* Mobile adjustments */
@media screen and (max-width: 749px) {
  .shopify-section .banner.video-background .banner__media {
    aspect-ratio: 16 / 9; /* Maintain aspect ratio on mobile */
  }

  .shopify-section .banner.video-background .banner__content {
    text-align: center;
    align-items: center;
    padding: 1rem;
  }

  @supports not (aspect-ratio: 16 / 9) {
    .shopify-section .banner.video-background .banner__media {
      padding-bottom: 56.25%; /* Fallback for mobile */
    }
