/** Shopify CDN: Minification failed

Line 30:32 Unexpected "{"
Line 30:41 Expected ":"
Line 30:51 Unexpected "{"

**/

.image-with-text__media {
  position: relative;
  height: 100%;
}

.image-with-text__media::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.4);
  z-index: 1;
}

.image-with-text__heading {
  margin-bottom: 8px;
}

/* Ensure text inside the image appears above the overlay */
.image-with-text__media .texts-{{ forloop.index }} {
  position: relative;
  z-index: 2;
}

.texts-1,
.texts-3,
.texts-5 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-end;
  z-index: 2;
  text-align: right;
  align-content: center;
  margin-right: 10px
}

.texts-2,
.texts-4,
.texts-6 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-end;
  z-index: 2;
  align-content: center;
  margin-left: 10px
}

.custom-width {
  width: 95%;
}

.texts-1 .custom-width,
.texts-3 .custom-width,
.texts-5 .custom-width {
  margin-left: auto;
  margin-right: 16px;
}

.custom-width p {
  margin-top: 0;
  font-size: 28px;
  color: #DAD9D8
}

.multirow .image-with-text .isolate {
  display: flex;
  align-items: stretch;
}

.multirow .image-with-text .grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  height: auto;
  min-height: 460px;
}

.multirow .image-with-text__media-item,
.multirow .image-with-text__text-item {
  display: flex;
  flex-direction: column;
  height: auto;
}

.multirow .image-with-text__media-item .media,
.multirow .image-with-text__media-item img {
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 992px) {
  .image-with-text__content {
    padding: 48px 32px 48px 32px !important;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .multirow__inner .image-with-text {
    display: flex;
    flex-direction: column;
  }

  .multirow__inner .image-with-text .isolate {
    flex: 1;
    display: flex;
    flex-direction: row;
  }

  .multirow__inner .image-with-text .isolate .grid {
    flex: 1;
    display: flex;
    min-height: 460px;
    max-height: none;
  }

  .multirow__inner .image-with-text__media-item,
  .multirow__inner .image-with-text__text-item {
    flex: 1;
    min-width: 0;
  }

  .multirow__inner .image-with-text__media {
    height: 100%;
    width: 100%;
    min-width: 448px;
  }

  .multirow__inner .image-with-text__media img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    min-height: 460px;
  }

  .multirow__inner .image-with-text__text {
    height: 100%;
    min-width: 448px;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 48px 32px;
  }

  .multirow__inner .image-with-text__text p {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.2px;
  }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  .multirow__inner .image-with-text .isolate .grid {
    min-height: 544px;
  }

  .multirow__inner {
    padding: 0;
  }

  .multirow__inner .image-with-text__media-item,
  .multirow__inner .image-with-text__text-item {
    flex: 1;
    min-width: 0;
    width: 460px;
  }

  .multirow__inner .image-with-text__media {
    height: 100%;
    width: 100%;
    min-width: 0;
  }

  .multirow__inner .image-with-text__text {
    height: 100%;
    min-width: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 48px 32px;
  }

  .image-with-text__content {
    padding: 32px 24px !important;
  }

  .multirow__inner .image-with-text__text p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.2px;
  }

  /* Progressive scaling using calc() with viewport width */

  .multirow__inner .image-with-text .isolate .grid {
    /* Scale height from 544px at 991px to 664px at 768px */
    min-height: calc(544px + (664 - 544) * ((100vw - 768px) / (991 - 768)));
  }

  .multirow__inner .image-with-text__media-item,
  .multirow__inner .image-with-text__text-item {
    /* Scale width from 460px at 991px to 348px at 768px */
    width: calc(348px + (460 - 348) * ((100vw - 768px) / (991 - 768)));
  }
}


/* Specific adjustments for exactly 768px */
@media screen and (width: 768px) {
  .multirow__inner .image-with-text .isolate .grid {
    min-height: 664px;
  }

  .multirow__inner .image-with-text__media-item,
  .multirow__inner .image-with-text__text-item {
    width: 348px;
  }
}

@media screen and (max-width: 767px) and (min-width: 480px) {
  .multirow .image-with-text__media-item {
    height: 400px!important;
  }

  .multirow .image-with-text__text-item {
    height: auto;
  }

  .multirow .image-with-text .grid {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .texts-1 .custom-width, .texts-2 .custom-width, .texts-3 .custom-width {
    margin: 0px 0px 48px 10px;
    text-align: left;
    bottom: 0;
    position: absolute;
    width: 100%;
    max-width: calc(600px - 50vw);
  }

  .text-mobile {
    padding: 56px 24px 24px 24px;
    width: 100%;
    max-width: calc(755px - 50vw);
  }
}

@media screen and (min-width: 1400px) {
  .multirow__inner .image-with-text__media-item {
    max-width: 60%;
  }

  .multirow__inner .image-with-text__text-item {
    max-width: 40%;
  }
}

@media screen and (max-width: 767px) {
  .multirow__inner .text-mobile .image-with-text__text {
    display: block;
    width: 100%;
    height: auto;
  }

  .multirow .image-with-text .grid {
    flex-wrap: wrap;
  }

  .multirow .image-with-text__media-item {
    height: 400px!important;
    width: 100%;
  }

  .multirow__inner .text-mobile .image-with-text__text {
    padding: 20px 24px;
  }

  .texts-1 .custom-width, .texts-2 .custom-width, .texts-3 .custom-width {
    margin: 0px 0px 48px 10px;
    text-align: left;
    bottom: 0;
    position: absolute;
    width: 100%;
    max-width: calc(680px - 50vw);
  }
}
