.elementor-widget-image-gallery .gallery-item .gallery-caption{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-131690 .elementor-element.elementor-element-92a9436{width:100%;max-width:100%;}.elementor-131690 .elementor-element.elementor-element-92a9436 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-131690 .elementor-element.elementor-element-92a9436 .gallery-item .gallery-caption{display:none;}.elementor-131690 .elementor-element.elementor-element-92a9436 .gallery-item img{border-style:solid;border-width:5px 5px 5px 5px;}.elementor-131690 .elementor-element.elementor-element-21c93b9{--display:flex;--min-height:60px;--justify-content:center;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );text-decoration:var( --e-global-typography-primary-text-decoration );}.elementor-131690 .elementor-element.elementor-element-7881387 .elementor-heading-title{font-family:"PP Neue Montreal", Sans-serif;font-size:12px;font-weight:400;text-transform:uppercase;letter-spacing:1.5px;word-spacing:2px;mix-blend-mode:exclusion;}:root{--page-title-display:none;}/* Start custom CSS for image-gallery, class: .elementor-element-92a9436 *//* MAIN 100VH SECTION */
.sm-gallery-section {
  height: 100vh !important;
  min-height: 100vh !important;
  width: 100% !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
}

/* WIDGET WRAPPERS */
.sm-gallery-section .sm-horizontal-gallery,
.sm-gallery-section .sm-horizontal-gallery > .elementor-widget-container,
.sm-gallery-section .sm-horizontal-gallery .elementor-image-gallery {
  height: 100% !important;
  width: 100% !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ACTUAL HORIZONTAL SCROLL TRACK */
.sm-gallery-section .sm-horizontal-gallery .gallery {
  height: 100% !important;
  width: 100% !important;

  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;

  align-items: center !important;
  justify-content: flex-start !important;

  gap: 25px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;

  padding: 0 6vw !important;
  margin: 0 !important;
  box-sizing: border-box !important;

  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* REMOVE WORDPRESS GALLERY DEFAULT WEIRDNESS */
.sm-gallery-section .sm-horizontal-gallery .gallery br {
  display: none !important;
}

.sm-gallery-section .sm-horizontal-gallery .gallery::after {
  display: none !important;
}

/* EACH IMAGE ITEM */
.sm-gallery-section .sm-horizontal-gallery .gallery-item {
  float: none !important;
  flex: 0 0 auto !important;

  width: auto !important;
  max-width: none !important;

  margin: 0 !important;
  padding: 0 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* INNER IMAGE WRAPPERS */
.sm-gallery-section .sm-horizontal-gallery .gallery-icon,
.sm-gallery-section .sm-horizontal-gallery .gallery-icon a {
  display: block !important;
  height: auto !important;
  width: auto !important;
  line-height: 0 !important;
}

/* IMAGE ITSELF */
.sm-gallery-section .sm-horizontal-gallery .gallery-item img {
  height: 75vh !important;
  width: auto !important;

  max-height: 75vh !important;
  max-width: none !important;

  object-fit: contain !important;
  display: block !important;

  box-sizing: border-box !important;
}

/* HIDE SCROLLBAR */
.sm-gallery-section .sm-horizontal-gallery .gallery::-webkit-scrollbar {
  display: none;
}

.sm-gallery-section .sm-horizontal-gallery .gallery {
  scrollbar-width: none;
}

.sm-gallery-section .sm-horizontal-gallery .gallery {
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.sm-gallery-section .sm-horizontal-gallery .gallery-item {
  scroll-snap-align: center;
}

/* Make the first and last image able to center */
.sm-gallery-section .sm-horizontal-gallery .gallery {
  padding-left: var(--gallery-edge-padding, 6vw) !important;
  padding-right: var(--gallery-edge-padding, 6vw) !important;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

/* Each image snaps to center */
.sm-gallery-section .sm-horizontal-gallery .gallery-item {
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

/* Default: all non-active images stay blurred + grayscale */
.sm-gallery-section .sm-horizontal-gallery .gallery-item img {
  filter: grayscale(100%) blur(5px);
  opacity: 0.15;
  transition: filter 0.65s ease, opacity 0.65s ease, transform 0.65s ease;
}

/* Active centered image: sharp, visible, but still grayscale */
.sm-gallery-section .sm-horizontal-gallery .gallery-item.is-active img {
  filter: grayscale(100%) blur(0px);
  opacity: 1;
  transform: scale(1);
}

/* Active image on hover: full color */
.sm-gallery-section .sm-horizontal-gallery .gallery-item.is-active:hover img {
  filter: grayscale(0%) blur(0px);
  opacity: 1;
  transform: scale(1);
}

/* MOBILE GALLERY OVERRIDE */
@media (max-width: 767px) {

  /* Keep the section full screen on mobile */
  .sm-gallery-section {
    height: 100svh !important;
    min-height: 100svh !important;
    overflow: hidden !important;
  }

  /* Horizontal scroll track */
  .sm-gallery-section .sm-horizontal-gallery .gallery {
    height: 100% !important;
    width: 100% !important;

    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;

    gap: 16px !important;

    overflow-x: auto !important;
    overflow-y: hidden !important;

    /* 85vw image/item needs 7.5vw side padding to center first/last */
    padding-left: 7.5vw !important;
    padding-right: 7.5vw !important;

    scroll-padding-left: 7.5vw;
    scroll-padding-right: 7.5vw;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;

    box-sizing: border-box !important;
  }

  /* Each gallery item takes 85vw so it snaps centered */
  .sm-gallery-section .sm-horizontal-gallery .gallery-item {
    flex: 0 0 85vw !important;
    width: 85vw !important;
    max-width: 85vw !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  /* Center the image inside the 85vw item */
  .sm-gallery-section .sm-horizontal-gallery .gallery-icon,
  .sm-gallery-section .sm-horizontal-gallery .gallery-icon a {
    width: 100% !important;
    height: auto !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    line-height: 0 !important;
  }

  /* Mobile image sizing */
  .sm-gallery-section .sm-horizontal-gallery .gallery-item img {
    width: auto !important;
    height: auto !important;

    max-width: 85vw !important;
    max-height: 85svh !important;

    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;

    box-sizing: border-box !important;
  }

  /* Landscape images can fill the same 85vw width */
  .sm-gallery-section .sm-horizontal-gallery .gallery-icon.landscape img {
    width: 85vw !important;
    height: auto !important;
    max-width: 85vw !important;
    max-height: auto !important;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-97d1a02 */.slp-preloader-logo-wrap {
  position: relative;
  z-index: 2;
  width: 45vw !important;
  max-width: 700px !important;
  min-width: 120px !important;
  line-height: 0;
  opacity: 1;
  filter: blur(0px);
  mix-blend-mode: screen;
  animation: slpPreloaderLogoOut 1.2s ease forwards;
  animation-delay: 4.5s;
}

#slp-preloader-video {
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
  display: block !important;
  object-fit: contain !important;
  mix-blend-mode: screen;
}

#slp-preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  overflow: hidden;
  background: transparent;
  isolation: auto;
}

#slp-preloader {
  isolation: auto;
}/* End custom CSS */