/** Shopify CDN: Minification failed

Line 23:16 Unexpected "{"
Line 23:25 Expected ":"
Line 23:32 Unexpected "{"
Line 24:21 Expected identifier but found whitespace
Line 24:23 Unexpected "{"
Line 24:32 Expected ":"
Line 25:16 Expected identifier but found whitespace
Line 25:18 Unexpected "{"
Line 25:27 Expected ":"
Line 25:53 Expected ":"
... and 29 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:image-text-blog (INDEX:31) */
@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:wght@300;400;500;600;700&display=swap');

  .its-section-{{ section.id }} {
    background-color: {{ section.settings.background_color }};
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
    position: relative;
    overflow: hidden;
    font-family: 'Host Grotesk', sans-serif;
  }

  .its-container {
    max-width: 2000px;
    margin: 0 auto;
    position: relative;
    height: auto;
    min-height: 500px;
  }

  .its-slider {
    position: relative;
    width: 100%;
    height: auto;
  }

  .its-slide {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }

  .its-slide.active {
    display: block;
    position: relative;
    opacity: 1;
    z-index: 2;
  }

  .its-content-wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
    flex-wrap: wrap;
  }

  /* --- Layout Logic for Right Image --- */
  .its-layout-right .its-content-wrapper {
    flex-direction: row-reverse;
  }

  /* --- Left: Image (52%) --- */
  .its-image-col {
    flex: 0 0 52%;
    width: 52%;
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
  }

  .its-image-col img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  /* --- Right: Text (48%) --- */
  .its-text-col {
    flex: 0 0 48%;
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background-color: {{ section.settings.text_background_color }};
  }

  .its-subheading {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: {{ section.settings.subheading_color }};
    margin-bottom: 20px;
    font-family: 'Host Grotesk', sans-serif;
  }

  .its-heading-rte {
    color: {{ section.settings.heading_color }};
    margin-bottom: 35px;
    max-width: 550px;
    font-family: 'Host Grotesk', sans-serif;
  }

  .its-heading-rte p {
    margin: 0;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 500;
    font-family: 'Host Grotesk', sans-serif;
    color: {{ section.settings.heading_color }};
  }

  .its-heading-rte strong {
    font-weight: 700;
  }

  .its-btn {
    display: inline-block;
    padding: 10px 52px;
    background-color: transparent;
    border: 1px solid {{ section.settings.button_color }};
    color: {{ section.settings.button_color }};
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: fit-content;
    border-radius: 2px;
    font-family: 'Host Grotesk', sans-serif;
    cursor: pointer;
  }

  .its-btn:hover {
    background-color: {{ section.settings.button_color }};
    color: #ffffff;
  }

  /* Navigation Dots */
  .its-dots {
    position: absolute;
    bottom: 30px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    transition: left 0.3s ease;
  }

  /* Dots Position: Image Left (Default) */
  .its-layout-left .its-dots {
    left: 76%;
  }

  /* Dots Position: Image Right */
  .its-layout-right .its-dots {
    left: 24%;
  }

  .its-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s;
    border: none;
    padding: 0;
  }

  .its-dot.active {
    background-color: {{ section.settings.heading_color }};
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
    .its-content-wrapper {
      flex-direction: column !important;
    }

    .its-image-col {
      width: 100%;
      flex: none;
    }

    .its-text-col {
      width: 100%;
      flex: none;
      padding: 40px 25px;
    }

    .its-heading-rte p {
      font-size: 28px;
    }

    .its-dots {
      position: relative;
      bottom: auto;
      left: 50% !important;
      transform: translateX(-50%);
      margin-top: 0;
      padding-bottom: 30px;
    }
  }
/* END_SECTION:image-text-blog */