/** Shopify CDN: Minification failed

Line 21:14 Unexpected "{"
Line 21:23 Expected ":"
Line 21:30 Unexpected "{"
Line 22:21 Expected identifier but found whitespace
Line 22:23 Unexpected "{"
Line 22:32 Expected ":"
Line 23:16 Expected identifier but found whitespace
Line 23:18 Unexpected "{"
Line 23:27 Expected ":"
Line 23:53 Expected ":"
... and 149 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custom-hero (INDEX:20) */
.custom-hero-{{ section.id }} {
    background-color: {{ section.settings.background_color }};
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }

  .custom-hero-{{ section.id }} .custom-hero__inner {
    max-width: {{ section.settings.container_width }}px;
    margin: 0 auto;
    padding-left: {{ section.settings.padding_horizontal }}px;
    padding-right: {{ section.settings.padding_horizontal }}px;
  }

  .custom-hero-{{ section.id }} .custom-hero__header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: {{ section.settings.header_gap }}px;
    margin-bottom: {{ section.settings.header_margin_bottom }}px;
  }

  .custom-hero-{{ section.id }} .custom-hero__heading-wrap {
    flex: 0 1 auto;
    max-width: {{ section.settings.heading_max_width }}%;
  }

  .custom-hero-{{ section.id }} .custom-hero__heading {
    color: {{ section.settings.heading_color }};
    font-size: {{ section.settings.heading_size_mobile }}px;
    line-height: 0.95;
    font-weight: {{ section.settings.heading_weight }};
    text-transform: {{ section.settings.heading_text_transform }};
    letter-spacing: {{ section.settings.heading_letter_spacing }}px;
    margin: 0;
    word-break: break-word;
  }

  .custom-hero-{{ section.id }} .custom-hero__text-wrap {
    flex: 0 1 auto;
    max-width: {{ section.settings.text_max_width }}%;
  }

  .custom-hero-{{ section.id }} .custom-hero__body {
    color: {{ section.settings.body_text_color }};
    font-size: {{ section.settings.body_size_mobile }}px;
    line-height: 1.5;
    font-weight: {{ section.settings.body_weight }};
  }

  .custom-hero-{{ section.id }} .custom-hero__body p {
    margin: 0;
  }

  .custom-hero-{{ section.id }} .custom-hero__media {
    width: 100%;
    border-radius: {{ section.settings.media_border_radius }}px;
    overflow: hidden;
  }

  .custom-hero-{{ section.id }} .custom-hero__placeholder {
    width: 100%;
    aspect-ratio: {{ section.settings.media_aspect_ratio_mobile }};
    background-color: {{ section.settings.placeholder_background_color }};
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
  }

  .custom-hero-{{ section.id }} .custom-hero__placeholder span {
    color: {{ section.settings.placeholder_text_color }};
    font-size: {{ section.settings.placeholder_font_size }}px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .custom-hero-{{ section.id }} .custom-hero__video,
  .custom-hero-{{ section.id }} .custom-hero__image,
  .custom-hero-{{ section.id }} .custom-hero__video-embed iframe,
  .custom-hero-{{ section.id }} .custom-hero__video-embed video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: {{ section.settings.media_aspect_ratio_mobile }};
    border: 0;
  }

  /* ---------------------------------- */
  /* Tablet and up                      */
  /* ---------------------------------- */
  @media screen and (min-width: 750px) {
    .custom-hero-{{ section.id }} .custom-hero__heading {
      font-size: {{ section.settings.heading_size_tablet }}px;
    }

    .custom-hero-{{ section.id }} .custom-hero__body {
      font-size: {{ section.settings.body_size_tablet }}px;
    }

    .custom-hero-{{ section.id }} .custom-hero__placeholder,
    .custom-hero-{{ section.id }} .custom-hero__video,
    .custom-hero-{{ section.id }} .custom-hero__image,
    .custom-hero-{{ section.id }} .custom-hero__video-embed iframe,
    .custom-hero-{{ section.id }} .custom-hero__video-embed video {
      aspect-ratio: {{ section.settings.media_aspect_ratio_desktop }};
    }
  }

  /* ---------------------------------- */
  /* Desktop                            */
  /* ---------------------------------- */
  @media screen and (min-width: 990px) {
    .custom-hero-{{ section.id }} .custom-hero__header {
      flex-wrap: nowrap;
      align-items: {{ section.settings.header_align_items }};
    }

    .custom-hero-{{ section.id }} .custom-hero__heading {
      font-size: {{ section.settings.heading_size_desktop }}px;
    }

    .custom-hero-{{ section.id }} .custom-hero__body {
      font-size: {{ section.settings.body_size_desktop }}px;
    }
  }
/* END_SECTION:custom-hero */

/* START_SECTION:image-with-text (INDEX:43) */
.majortitle {
    letter-spacing: -2px;
  }

  /* Icon text pairing styles */
  .icon-text-pair {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
  }

  .icon-text-pair .large-light-icon {
    flex-shrink: 0;
  }

  .icon-text-pair .rte {
    margin: 0;
  }

  .feature-text-paired .icon-text-pair:last-child {
    margin-bottom: 0;
  }

  .icon-text-pair .large-light-icon img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* Image label styles */
  .image-overlap {
    position: relative;
  }

  .image-label {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    z-index: 10;
    border-radius: 2px;
  }

  /* Video styles */
  .media-container {
    position: relative;
    width: 100%;
  }

  .media-container video {
    display: block;
    width: 100%;
    height: auto;
  }

  .media-container video::-webkit-media-controls {
    display: none !important;
  }

  .media-container video::-webkit-media-controls-enclosure {
    display: none !important;
  }

  .media-container video::-webkit-media-controls-panel {
    display: none !important;
  }

  .media-container video::-webkit-media-controls-start-playback-button {
    display: none !important;
  }

  .media-container iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
  }

  /* Slider styles */
  .media-slider {
    position: relative;
  }

  .slider-track {
    position: relative;
    overflow: hidden;
  }

  .slider-slides {
    display: flex;
    transition: transform 0.4s ease-in-out;
  }

  .slider-slide {
    min-width: 100%;
    flex-shrink: 0;
  }

  .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  .slider-nav:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .slider-nav-prev {
    left: 10px;
  }

  .slider-nav-next {
    right: 10px;
  }

  .slider-nav svg {
    width: 20px;
    height: 20px;
    stroke: #333;
    stroke-width: 2;
    fill: none;
  }

  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
  }

  .slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
  }

  .slider-dot.active {
    background: #333;
    width: 24px;
    border-radius: 4px;
  }
/* END_SECTION:image-with-text */

/* START_SECTION:store-messages (INDEX:90) */
.store-messages {
    width: 100%;
    box-sizing: border-box;
    padding: 28px 40px;
  }

  .store-messages__inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 0;
  }

  .store-messages__item {
    flex: 1;
    text-align: center;
    padding: 0 32px;
  }

  .store-messages__divider {
    width: 1px;
    background-color: #d0d0d0;
    align-self: stretch;
    min-height: 60px;
    flex-shrink: 0;
  }

  .store-messages__link {
    text-decoration: none;
    display: block;
  }

  .store-messages__heading {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.4;
  }

  .store-messages__subheading {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
  }

  @media screen and (max-width: 768px) {
    .store-messages {
      padding: 24px 20px;
    }

    .store-messages__inner {
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }

    .store-messages__divider {
      width: 100%;
      height: 1px;
      min-height: unset;
      align-self: auto;
    }

    .store-messages__item {
      padding: 0 16px;
      width: 100%;
    }
  }
/* END_SECTION:store-messages */