/** Shopify CDN: Minification failed

Line 17:12 Expected identifier but found whitespace
Line 17:14 Unexpected "{"
Line 17:23 Expected ":"
Line 17:50 Unexpected "0"
Line 17:53 Unexpected "{"
Line 17:62 Expected ":"
Line 17:91 Expected ":"
Line 18:21 Expected identifier but found whitespace
Line 18:23 Unexpected "{"
Line 18:32 Expected ":"
... and 7 more hidden warnings

**/
.split-text-section {
    padding: {{ section.settings.padding_top }}px 0 {{ section.settings.padding_bottom }}px;
    background-color: {{ section.settings.background_color }};
    color: {{ section.settings.text_color }};
  }
  
  .split-text-section__container {
    display: flex;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 3rem;
    gap: 20px;
  }
  
  .split-text-section__column {
    flex: 1;
  }
  
  .split-text-section__heading {
    font-family:'Roma';
    font-size: 30px;
    margin-bottom: 0px;
    font-weight: 700;
    color:#6F4049;
    line-height:45.01px;
max-width:610px;
    {% comment %} letter-spacing:-0.29px; {% endcomment %}
  }
  
  .split-text-section__content {
    font-family:'Karla';
    font-size:19px;
    color:#484848;
    line-height: 35.29px;
    letter-spacing:0.6px;
  }
  @media(max-width:1250px){
    .split-text-section__container {
    gap: 90px;
  }
  }
  @media (max-width: 768px) {
    .split-text-section{
    padding:5px 0;
    }
    .split-text-section__container {
      flex-direction: column;
      text-align:center;
      gap: 10px;
      padding:0 2rem;
    }
    .split-text-section__heading {
    font-size: 25px;
    line-height:30px;
    max-width:100%;
  }
  
  .split-text-section__content {
    font-size:17.5px;
    line-height: 30.37px;
  }

  }