/** Shopify CDN: Minification failed

Line 19:0 Unexpected "<"
Line 117:0 Unexpected "<"
Line 120:19 Expected identifier but found whitespace
Line 120:21 Unexpected "{"
Line 120:30 Expected ":"
Line 121:8 Expected identifier but found whitespace
Line 121:10 Unexpected "{"
Line 121:19 Expected ":"
Line 193:19 Expected identifier but found whitespace
Line 193:21 Unexpected "{"
... and 23 more hidden warnings

**/


/* CSS from section stylesheet tags */
<style>
.image-row {
  padding: 60px 0;
}

.image-row-inner {
  max-width: 1600px;
  padding: 0 40px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Headings top */
.image-row-headings-top {
  text-align: center;
  margin-bottom: 40px;
}

.image-row-headings-top p {
  margin: 0;
  font-size: 1.1rem;
}

.image-row-headings-top h2 {
  margin-top: 10px;
  font-size: 2.4rem;
  font-weight: 600;
}

/* Image container */
.image-row-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0;
}

.image-row-container .image-item {
  flex: 1 1 33.333%;
  text-align: center;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.image-item-image-wrapper {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.image-item-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-item-heading {
  margin-top: 12px;
  font-size: 1.3rem;
  font-weight: 600;
}

/* Bottom heading */
.image-row-bottom-heading {
  text-align: center;
  margin-top: 50px;
}

.image-row-bottom-heading h3 {
  font-size: 1.6rem;
  margin: 0;
}

/* Responsive */
@media screen and (max-width: 767px) {
  .image-row-inner {
    padding: 0 20px;
  }

  .image-row-container {
    flex-wrap: wrap;
  }

  .image-row-container .image-item {
    flex: 1 1 100%;
    margin-bottom: 30px;
  }

  .image-item-image-wrapper {
    height: 180px;
  }

  .image-item-heading {
    font-size: 1.2rem;
  }
}
</style>
<style>
.image-text-icons-section {
  background-color: {{ section.settings.background_color }};
  color: {{ section.settings.text_color }};
  padding: 60px 0;
}

.image-text-icons-inner {
  max-width: 1600px;
  padding: 0 40px; /* side padding like your slider */
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.image-text-icons-inner.image-left .image-wrapper {
  order: 0;
}

.image-text-icons-inner.image-left .text-wrapper {
  order: 1;
}

.image-text-icons-inner.image-right .image-wrapper {
  order: 1;
}

.image-text-icons-inner.image-right .text-wrapper {
  order: 0;
}

.image-wrapper {
  flex: 1 1 45%;
  min-width: 280px;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.text-wrapper {
  flex: 1 1 50%;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  font-size: 1.6rem; /* matches your slider font size */
  line-height: 1.6;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-align: center;
}

.text-wrapper h2 {
  font-weight: 600;
  margin-bottom: 0.5em;
}

.text-wrapper p {
  margin-bottom: 1.5em;
  max-width: 480px;
}

.text-wrapper .button-wrapper a {
  display: inline-block;
  padding: 12px 28px;
  background-color: {{ section.settings.text_color }};
  color: {{ section.settings.background_color }};
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.text-wrapper .button-wrapper a:hover {
  background-color: darken({{ section.settings.text_color }}, 10%);
  color: {{ section.settings.background_color }};
}

/* Icon row */

.icon-row {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: nowrap;
  margin-top: 20px;
}

.icon-item {
  flex: 1 1 0;
  min-width: 120px;
  max-width: 180px;
  border: 1px solid {{ section.settings.text_color }};
  border-radius: 8px;
  padding: 20px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: transparent;
  box-sizing: border-box;
  height: 150px;
  justify-content: center;
}

.icon-symbol {
  font-size: 48px;
  color: {{ section.settings.text_color }};
  line-height: 1;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.icon-item span {
  font-size: 1rem;
  color: {{ section.settings.text_color }};
  font-weight: 500;
  line-height: 1.2;
}

/* Responsive */
@media screen and (max-width: 767px) {
  .image-text-icons-inner {
    flex-direction: column;
    padding: 0 20px;
  }
  .image-wrapper,
  .text-wrapper {
    flex: 1 1 100%;
    min-width: auto;
  }
  .text-wrapper {
    font-size: 0.95rem;
  }
  .icon-row {
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .icon-item {
    max-width: 140px;
    min-width: auto;
    height: auto;
    padding: 15px 10px;
  }
}
</style>
<style>
.image-text-slider-section {
  padding: 60px 0;
  color: {{ section.settings.text_color }};
}

.image-text-slider-inner {
  max-width: 1600px;
  padding: 0 40px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.image-text-slider-inner.image-left .image-wrapper {
  order: 0;
}

.image-text-slider-inner.image-left .text-wrapper {
  order: 1;
}

.image-text-slider-inner.image-right .image-wrapper {
  order: 1;
}

.image-text-slider-inner.image-right .text-wrapper {
  order: 0;
}

.image-wrapper {
  flex: 1 1 45%;
  min-width: 280px;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.text-wrapper {
  flex: 1 1 50%;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem; /* Matches Dawn theme */
  line-height: 1.6;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  min-height: 100px;
  overflow: visible;
  position: relative;
  text-align: center;
}

.slides-container {
  position: relative;
  width: 100%;
  flex-grow: 1;
  min-height: 70px;
}

.text-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  will-change: opacity;
  padding: 0 10px;
}

.text-slide.active {
  opacity: 1;
  position: relative;
}

.slider-dots {
  margin-top: 15px;
  text-align: center;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  margin: 0 6px;
  background-color: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 0;
}

.slider-dots button.active {
  background-color: rgba(0,0,0,0.7);
}

@media screen and (max-width: 767px) {
  .image-text-slider-inner {
    flex-direction: column;
    padding: 0 20px;
  }

  .image-wrapper,
  .text-wrapper {
    flex: 1 1 100%;
    min-width: auto;
  }

  .text-wrapper {
    min-height: auto;
    font-size: 0.95rem;
  }
}
</style>
<style>
.two-image-section {
  padding: 60px 0;
}

.two-image-inner {
  width: 100%;
  max-width: 1600px;
  padding: 0 40px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.two-image-left,
.two-image-right {
  flex: 1 1 30%;
  text-align: center;
}

.two-image-left img,
.two-image-right img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.two-image-center {
  flex: 1 1 35%;
  text-align: center;
}

.two-image-center .rte {
  line-height: 1.6;
  margin-bottom: 20px;
}

.two-image-button a {
  display: inline-block;
  padding: 12px 24px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.two-image-button a:hover {
  background-color: #333;
}

/* Responsive */
@media screen and (max-width: 767px) {
  .two-image-inner {
    flex-direction: column;
    padding: 0 20px;
  }

  .two-image-left,
  .two-image-right,
  .two-image-center {
    flex: 1 1 100%;
  }

  .two-image-left img,
  .two-image-right img {
    height: 200px;
  }
}
</style>