/** Shopify CDN: Minification failed

Line 130:6 Expected identifier but found "\"type\""
Line 134:5 Unexpected ","
Line 136:6 Expected identifier but found "\"type\""
Line 138:5 Unexpected ","
Line 140:6 Expected identifier but found "\"type\""
Line 144:5 Unexpected ","
Line 146:6 Expected identifier but found "\"type\""

**/


/* CSS from section stylesheet tags */
.overlap-cards-section {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
}

.overlap-card {
  width: 100%;
  max-width: 600px;
  flex: 1 1 48%;
  position: relative;
}

.overlap-card-image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  height: 0;
  overflow: visible;
  z-index: 2;
  pointer-events: none;
}

.overlap-card-image-wrapper picture {
  position: relative;
  display: block;
  width: auto;
  height: auto;
}

.overlap-card-image-wrapper img {
  display: block;
  width: auto;
  height: auto;
  position: relative;
  right: var(--desktop-offset-x, 0px);
  top: var(--desktop-offset-y, 0px);
  transform: scale(var(--desktop-scale, 1));
}

@media screen and (max-width: 749px) {
  .overlap-card-image-wrapper img {
    right: var(--mobile-offset-x, 0px);
    top: 75px;
    transform: scale(var(--mobile-scale, 1));
  }

  .overlap-card-content .headline {
    font-size: var(--mobile-headline-size, 13px);
  }

  .overlap-card-content .subtext {
    font-size: var(--mobile-subtext-size, 10px);
    width: var(--mobile-subtext-width, 100%);
    max-width: var(--mobile-subtext-width, 100%);
  }

  .overlap-card-content .button {
    font-size: var(--mobile-button-size, 11.5px);
  }
}

.overlap-card-content {
  background: linear-gradient(-45deg, #3A5157 0%, #5F7980 50%, #3A5157 100%);
  border-radius: 16px;
  padding: 60px 28px 50px;
  overflow: hidden;
  position: relative;
  min-height: 275px;
  z-index: 1;
  color: #fff;
  text-align: left;
}

.overlap-card-content .headline {
  font-size: var(--desktop-headline-size, 13px);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 10px;
}

.overlap-card-content .subtext {
  font-size: var(--desktop-subtext-size, 10px);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  width: var(--desktop-subtext-width, 100%);
  max-width: var(--desktop-subtext-width, 100%);
}

.overlap-card-content .button {
  background: #ffffff;
  color: #000;
  padding: 6px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: var(--desktop-button-size, 11.5px);
  display: inline-block;
}
.hero-split-custom {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: 120px;
}

.hero-split-custom .hero-left,
.hero-split-c    {
      "type": "textarea",
      "id": "subheading",
      "label": "Subheading",
      "default": "This is just placeholder text. Don't be alarmed, this is just here to fill up space since your finalized copy isn't ready yet."
    },
    {
      "type": "header",
      "content": "Call to Action Button"
    },
    {
      "type": "text",
      "id": "button_text",
      "label": "Button Text",
      "default": "LEARN MORE"
    },
    {
      "type": "url",
      "id": "button_url",
      "label": "Button URL"
    }.hero-center,
.hero-split-custom .hero-right {
  display: flex;
}

.hero-left {
  width: 45%;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

.hero-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-center {
  width: 45%;
  background-color: #ffffff;
  padding: 20px 30px;
  flex-direction: column;
  justify-content: center;
}

.hero-center h1 {
  color: #3A5157;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-center p {
  color: #221E1F;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  margin: 0 0 14px 0;
}

.hero-center .hero-button {
  background-color: #3A5157;
  color: #fff;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
  align-self: flex-start;
  margin-top: 10px;
}

.hero-right {
  width: 10%;
  background-color: #3A5157;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 10px;
}

.hero-right img {
  max-width: 60%;
  height: auto;
}

@media screen and (max-width: 749px) {
  .hero-split-custom {
    flex-direction: column;
  }

  .hero-left,
  .hero-center,
  .hero-right {
    width: 100%;
  }

  .hero-left {
    order: 1;
  }

  .hero-center {
    order: 2;
    padding: 20px 16px;
    align-items: flex-start;
    text-align: left;
  }

  .hero-center h1 {
    font-size: 20px;
  }

  .hero-center p {
    font-size: 13px;
  }

  .hero-center .hero-button {
    font-size: 12px;
  }

  .hero-right {
    order: 3;
    align-items: flex-end; /* Right align */
    justify-content: center;
    padding: 10px 16px;
  }

  .hero-right img {
    max-width: 10%; /* Smaller logo */
  }
}