/** Shopify CDN: Minification failed

Line 34:10 Expected identifier but found whitespace
Line 34:12 Expected identifier but found "%"
Line 34:55 Unexpected "1"
Line 34:57 Expected identifier but found "%"
Line 34:66 Unexpected "2"
Line 34:68 Expected identifier but found "%"
Line 41:10 Expected identifier but found whitespace
Line 41:12 Expected identifier but found "%"
Line 41:55 Unexpected "2"
Line 41:57 Expected identifier but found "%"
... and 2 more hidden warnings

**/
  .two-column-section {
    background-color: #fff;
    padding: 0 48px;
  }

  .two-column-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: center;
  }

  .column-title-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    order: {% if layout_order == 'title-button-left' %}1{% else %}2{% endif %};
  }

  .column-title-text {
    display: flex;
    flex-direction: column;
    gap: 18px;
    order: {% if layout_order == 'title-button-left' %}2{% else %}1{% endif %};
  }

  .section-title {
    color: #003a63;
    font-family: Playfair Display, Helvetica, Arial, sans-serif;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
    font-size: 5rem;
  }
   .section-title2 {
    color: #003a63;
    font-family: Playfair Display, Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: .35px;
    text-transform: none;
    line-height: 1.3;
    margin: 0;
  }

  .section-text p {
    color: #003a63;
    font-family: Playfair Display, Helvetica, Arial, sans-serif;
    font-size: 24px;
    line-height: normal;
    margin: 0;
  }

  .section-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border: 2px solid #003a63;
    background-color: transparent;
    color: #003a63;
    letter-spacing: 1.07px;
    line-height: 2;
    font-family: Lato, Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: fit-content;
    min-width: 200px;
  }

  .section-button:hover {
    background-color: #000;
    color: #fff;
  }

  /* Mobile Styles */
  @media (max-width: 768px) {
    .index-section{
      padding-bottom: 0;
    }
    .two-column-container {
      grid-template-columns: 1fr;
      gap: 65px;
      min-height: auto;
      padding: 24px;
      max-width: 100vw;
    }

    .column-title-button,
    .column-title-text {
      order: unset !important;
      justify-content: start;
    }

    .section-title {
      font-size: 4rem;
      text-align: left;
    }

    .section-text {
    }

    .section-button {
      min-width: 180px;
      padding: 0.8rem 1.5rem;
      font-size: 12px;
    }

    .two-column-section {
      padding: var(--spacing-lg) 0;
    }
  }

