/** Shopify CDN: Minification failed

Line 20:19 Expected identifier but found whitespace
Line 20:21 Unexpected "{"
Line 20:30 Expected ":"
Line 21:8 Expected identifier but found whitespace
Line 21:10 Unexpected "{"
Line 21:19 Expected ":"
Line 59:19 Expected identifier but found whitespace
Line 59:21 Unexpected "{"
Line 59:30 Expected ":"
Line 60:8 Expected identifier but found whitespace
... and 2 more hidden warnings

**/


/* CSS from section stylesheet tags */
.image-split-section {
  background-color: {{ section.settings.bg_color }};
  color: {{ section.settings.text_color }};
  padding: 60px 0;
}

.image-split-container {
  display: flex;
  /* max-width: 1440px; */
  margin: 0 auto;
}
.image-split-content {
    text-align: center;
}
.image-split-left {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image-split-right {
  flex: 1;
}

.image-split-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.image-split-content .rte {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.image-split-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: {{ section.settings.text_color }};
  color: {{ section.settings.bg_color }};
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.image-split-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.image-split-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
a.image-split-button {
    background-color: #7a9976;
    color: #fff;
    padding: 12px 30px;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    transition: background-color .3s ease;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
}
  div#shopify-section-template--16181181284559__text_with_image_DHMebp, #shopify-section-template--16181181284559__home_banner_qq8CYT {
    display: none;
}
  div#shopify-section-template--16181181284559__landing_banner_niJr7K {
    display: block;
}
/* Mobile styles */
@media screen and (max-width: 768px) {
  .image-split-container {
    flex-direction: column;
    padding: 0 20px;
  }
    div#shopify-section-template--16181181284559__text_with_image_DHMebp, #shopify-section-template--16181181284559__home_banner_qq8CYT {
    display: block;
}
  div#shopify-section-template--16181181284559__landing_banner_niJr7K {
    display: none;
}
  
  .image-split-left {
    padding-right: 0;
    order: 2;
    margin-top: 30px;
  }
  
  .image-split-right {
    order: 1;
  }
  
  .image-split-content h2 {
    font-size: 24px;
  }
  
  .image-split-content .rte {
    font-size: 16px;
  }
}