/** Shopify CDN: Minification failed

Line 255:20 Unexpected "{"
Line 255:29 Expected ":"

**/
.image-with-text {
  position: relative;
}

.image-with-text__grid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.image-with-text__media-item {
  position: relative;
}

.image-with-text__media {
  min-height: 100%;
}

.image-with-text__media--small {
  height: 34rem;
}

.image-with-text__media--medium {
  height: 44rem;
}

.image-with-text__media--large {
  height: 65rem;
}

.image-with-text__media.media {
  position: relative;
  display: block;
}

.image-with-text__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.image-with-text__text-item {
  display: flex;
  align-items: center;
}

.image-with-text__content {
  padding: 2rem;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  height: -webkit-fill-available;
  border-radius: 10px;
}

/* Overlay effect for text readability */
.image-with-text__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Text content stays above overlay */
.image-with-text__content > * {
  position: relative;
  z-index: 2;
}

.image-with-text__content--left {
  text-align: left;
}

.image-with-text__content--center {
  text-align: center;
}

.image-with-text__content--right {
  text-align: right;
}

@media screen and (max-width: 749px) {
  .image-with-text__content--mobile-left {
    text-align: left;
  }

  .image-with-text__content--mobile-center {
    text-align: center;
  }

  .image-with-text__content--mobile-right {
    text-align: right;
  }
  .image-with-text__caption {
    font-size: 2.4rem !important;
  }
}

.image-with-text__caption {
  margin: 0 0 1rem;
  font-size: 4.2rem;
  letter-spacing: .13rem;
  line-height: 1.4;
  text-align: center;
  font-weight: 600;
  color: #000;
}

.image-with-text__caption--uppercase {
  text-transform: uppercase;
}

.image-with-text__heading {
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
}

.image-with-text__subheading {
  margin: 0;
  line-height: 1.4;
  font-weight: 400;
}

.image-with-text__text {
  margin: 0;
  line-height: 1.6;
  font-size: 14px;
}

.image-with-text__button {
  margin-top: 0;
}

/* Feature List Styles */
.feature-list {
  margin: 1rem 0;
}

.feature-list__items {
  padding: 0;
  margin: 0;
}

.feature-list__item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  line-height: 1.4;
      text-align: left;
}

.feature-list__icon {
  margin-right: 1rem;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.feature-list__text {
  flex: 1;
}

/* Grid Layout */
.grid--gapless {
  margin-left: 0;
}

.grid--gapless > .grid__item {
  padding-left: 0;
}

.grid--2-col-tablet .grid__item {
  width: 50%;
  height: -webkit-fill-available;
}

.grid--3-col-tablet .image-with-text__media-item--small {
  width: 33.33%;
}

.grid--3-col-tablet .image-with-text__media-item--medium {
  width: 50%;
}

.grid--3-col-tablet .image-with-text__media-item--large {
  width: 66.66%;
}

.grid--3-col-tablet .image-with-text__text-item {
  flex: 1;
}

/* Responsive */
@media screen and (max-width: 749px) {
  .image-with-text__content {
    padding: 2rem 1.5rem;
  }

  .image-with-text__grid {
    flex-direction: column;
  }

  .image-with-text__grid--reverse {
    flex-direction: column-reverse;
  }

  .grid--2-col-tablet .grid__item,
  .grid--3-col-tablet .grid__item {
    width: 100%;
  }

  .image-with-text__media--small {
    height: 25rem;
  }

  .image-with-text__media--medium {
    height: 30rem;
  }

  .image-with-text__media--large {
    height: 40rem;
  }

  .image-with-text__heading {
    margin-bottom: 0;
  }

  .feature-list__item {
    font-size: 1.3rem;
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
  }
  .feature-list__items {
    display: flex;
  }
  .image-with-text-{{ section.id }} .image-with-text__heading-text {
    display: none;
  }
}

@media screen and (min-width: 750px) {
  .image-with-text__content--bottom {
    align-self: flex-end;
  }

  .image-with-text__content--top {
    align-self: flex-start;
  }

  .image-with-text__content--center {
    align-self: center;
  }
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
  .animate--ambient img {
    animation: ambient 20s linear infinite alternate;
  }
}

@keyframes ambient {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

/* Button Styles */
.image-with-text__button .button--primary {
  display: flex;
  padding: 0;
  text-decoration: none;
  border-radius: .5rem;
  font-weight: 600;
  transition: all .3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  box-sizing: unset;
  box-shadow: none;
  outline: none;
  --border-opacity: none;
  text-align: left;
  justify-content: flex-start;
}

.image-with-text__button .button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Image content overlay on the image side */
.image-content {
  position: absolute;
  top: 0;
  left: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}