/** Shopify CDN: Minification failed

Line 65:10 Unexpected "{"
Line 65:19 Expected ":"
Line 66:14 Expected identifier but found whitespace
Line 66:16 Unexpected "{"
Line 66:25 Expected ":"
Line 66:51 Expected ":"
Line 67:17 Expected identifier but found whitespace
Line 67:19 Unexpected "{"
Line 67:28 Expected ":"
Line 67:57 Expected ":"

**/
.image-text-split__heading {
  text-align: center;
  font-size: 42px;
  margin-bottom: 10px;
}

.image-text-split__divider {
  width: 120px;
  height: 4px;
  background: #c7c3b4;
  margin: 0 auto 40px;
}

.image-text-split__top {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 30px;
}

.image-text-split__image img {
  width: 100%;
  height: auto;
}

.image-text-split__content {
  font-size: 18px;
  line-height: 1.7;
}

.image-text-split__bottom {
  font-size: 18px;
  line-height: 1.8;
  margin-top: 20px;
}

/* Mobile */
@media screen and (max-width: 749px) {
  .image-text-split__top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .image-text-split__heading {
    font-size: 28px;
  }
}

/* Dynamic padding */
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}