/** Shopify CDN: Minification failed

Line 52:9 Unexpected "{"
Line 52:18 Expected ":"
Line 52:25 Unexpected "{"
Line 76:9 Unexpected "{"
Line 76:18 Expected ":"
Line 84:9 Unexpected "{"
Line 84:18 Expected ":"
Line 85:9 Unexpected "{"
Line 85:18 Expected ":"
Line 92:9 Unexpected "{"
... and 75 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* SLIDESHOW STYLES */
.slideshow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.slide {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BANNER CONTAINER */
#Banner-{{ section.id }} {
  position: relative;
  overflow: hidden;
}

/* LOGO STYLING */
.block_image {
  width: 500px;
  height: auto;
  max-width: 100%;
  display: block !important;
  margin: 0 auto !important;
}

@media (max-width: 786px) {
  .block_image {
    width: 220px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* REMOVE BLACK BACKGROUND CONTAINER */
#Banner-{{ section.id }} .banner__box {
  background: transparent !important;
  background-color: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* FORCE REMOVE COLOR SCHEME BACKGROUNDS */
#Banner-{{ section.id }} .banner__box.gradient,
#Banner-{{ section.id }} .banner__box[class*="color-"] {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

/* HERO CONTENT - STACK LOGO, TEXT, BUTTONS VERTICALLY */
#Banner-{{ section.id }} .banner__box {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start;
  gap: 2rem !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* FIX MOBILE POSITIONING - Keep content inside banner */
#Banner-{{ section.id }} .banner__content {
  position: relative !important;
  width: 100% !important;
  z-index: 10;
}

@media (max-width: 786px) {
  #Banner-{{ section.id }}.banner--mobile-bottom .banner__content {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    bottom: auto !important;
    z-index: 20 !important;
  }
}

/* MOBILE GAP ADJUSTMENT */
@media (max-width: 786px) {
  #Banner-{{ section.id }} .banner__box {
    gap: 0.5rem !important;
    padding: 20px !important;
  }
}

/* HERO SHOP BUTTON CONTAINER FIX */
#Banner-{{ section.id }} .banner__buttons {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
}

/* HERO SHOP BUTTON - OPTIMIZED SIZE */
#Banner-{{ section.id }} .banner__buttons .button--primary,
#Banner-{{ section.id }} .banner__buttons a.button--primary,
#Banner-{{ section.id }} .banner__buttons .button,
#Banner-{{ section.id }} .banner__buttons a[href].button.button--primary,
#Banner-{{ section.id }} a.button.button--primary {
  display: inline-flex !important;
  width: auto !important;
  max-width: fit-content !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 2px solid #ffffff !important;
  color: #ffffff !important;
  box-shadow: none !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  padding: 12px 35px !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  border-radius: 4px !important;
}

/* Remove any ::before or ::after pseudo elements that might interfere */
#Banner-{{ section.id }} .banner__buttons .button--primary::before,
#Banner-{{ section.id }} .banner__buttons .button--primary::after,
#Banner-{{ section.id }} .banner__buttons a.button--primary::before,
#Banner-{{ section.id }} .banner__buttons a.button--primary::after,
#Banner-{{ section.id }} .banner__buttons .button::before,
#Banner-{{ section.id }} .banner__buttons .button::after {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* BUTTON HOVER EFFECT - TURNS WHITE ON HOVER */
#Banner-{{ section.id }} .banner__buttons .button--primary:hover,
#Banner-{{ section.id }} .banner__buttons .button--primary:focus,
#Banner-{{ section.id }} .banner__buttons .button--primary:active,
#Banner-{{ section.id }} .banner__buttons a.button--primary:hover,
#Banner-{{ section.id }} .banner__buttons a.button--primary:focus,
#Banner-{{ section.id }} .banner__buttons a.button--primary:active,
#Banner-{{ section.id }} .banner__buttons .button:hover,
#Banner-{{ section.id }} .banner__buttons .button:focus,
#Banner-{{ section.id }} .banner__buttons .button:active,
#Banner-{{ section.id }} .banner__buttons a[href].button.button--primary:hover,
#Banner-{{ section.id }} a.button.button--primary:hover,
a.button.button--primary:hover {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  color: #000000 !important;
  border-color: #ffffff !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Remove hover pseudo elements */
#Banner-{{ section.id }} .banner__buttons .button--primary:hover::before,
#Banner-{{ section.id }} .banner__buttons .button--primary:hover::after,
#Banner-{{ section.id }} .banner__buttons a.button--primary:hover::before,
#Banner-{{ section.id }} .banner__buttons a.button--primary:hover::after,
#Banner-{{ section.id }} .banner__buttons .button:hover::before,
#Banner-{{ section.id }} .banner__buttons .button:hover::after,
a.button.button--primary:hover::before,
a.button.button--primary:hover::after {
  display: none !important;
  content: none !important;
  background: transparent !important;
  opacity: 0 !important;
  visibility: hidden !important;
  box-shadow: none !important;
}

/* MOBILE BUTTON SCALING - FIXED */
@media (max-width: 786px) {
  #Banner-{{ section.id }} .banner__buttons .button--primary,
  #Banner-{{ section.id }} .banner__buttons a.button--primary,
  #Banner-{{ section.id }} .banner__buttons .button,
  #Banner-{{ section.id }} .banner__buttons a[href].button.button--primary,
  #Banner-{{ section.id }} a.button.button--primary,
  a.button.button--primary {
    padding: 8px 18px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    font-size: 12px !important;
    min-width: auto !important;
    width: auto !important;
    height: auto !important;
    min-height: auto !important;
    line-height: 1.2 !important;
  }
}
.richtext_social_links{
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0;
}