/** Shopify CDN: Minification failed

Line 14:0 Unexpected "<"
Line 127:0 Unexpected "<"
Line 237:0 Unexpected "<"
Line 299:0 Unexpected "<"
Line 383:0 Unexpected "<"
Line 465:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .page-width {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-with-text-modular {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
    background-color: var(--bg-color);
    color: var(--text-color);
  }

  .image-with-text-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }

  .image-with-text-container.reverse {
    flex-direction: row-reverse;
  }

  .image-block,
  .content-block-m {
    flex: 1 1 50%;
  }

  .image-block img {
    width: 100%;
    height: auto;
    display: block;
  }

  .image-block.square img {
    border-radius: 0;
  }

  .image-block.rounded img {
    border-radius: 15px;
  }

  .image-block.circle img {
    border-radius: 50%;
  }

  .content-block-m {
    padding-left: 20px;
    padding-right: 20px;
  }

  .content-block-m h1,
  .content-block-m h2,
  .content-block-m h3 {
    margin-bottom: 0.5rem;
  }

  .content-block-m p {
    margin-bottom: 1rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.5rem;
  }
.btn.custom {
  font-weight:500;
  letter-spacing: 0.1rem;
  display: inline-block;
  padding: 1.5rem 4.0rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.custom:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}


  .btn.solid {
    background-color: var(--btn-color);
    color: #fff;
  }

  .btn.outline {
    border: 2px solid var(--btn-color);
    color: var(--btn-color);
    background: transparent;
  }

  .btn.link {
    background: none;
    color: var(--btn-color);
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .image-with-text-container {
      flex-direction: column;
    }

    .image-block,
    .content-block-m {
      flex: 1 1 100%;
    }
  }
</style>
<style>
  .image-with-text-modular {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
    background-color: var(--bg-color);
    color: var(--text-color);
  }

  .image-with-text-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-left: 0;
    padding-right: 0;
  }

  .image-with-text-container.reverse {
    flex-direction: row-reverse;
  }

  .image-block,
  .content-block {
    flex: 1 1 50%;

  }

  .image-block img {
    width: 100%;
    height: auto;
    display: block;
  }

  .image-block.square img {
    border-radius: 0;
  }

  .image-block.rounded img {
    border-radius: 15px;
  }

  .image-block.circle img {
    border-radius: 50%;
  }

  .content-block {
    padding-left: 150px !important;
    padding-right: 150px !important;
  }

  .content-block h1,
  .content-block h2,
  .content-block h3 {
    margin-bottom: 0.5rem;
  }

  .content-block p {
    margin-bottom: 1rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.5rem;
  }

  .btn.custom {
    font-weight: 500;
    letter-spacing: 0.1rem;
    display: inline-block;
    padding: 1.5rem 4.0rem;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .btn.custom:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
  }

  .btn.solid {
    background-color: var(--btn-color);
    color: #fff;
  }

  .btn.outline {
    border: 2px solid var(--btn-color);
    color: var(--btn-color);
    background: transparent;
  }

  .btn.link {
    background: none;
    color: var(--btn-color);
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .image-with-text-container {
      flex-direction: column;
    }

    .image-block,
    .content-block {
      flex: 1 1 100%;
    }
  }
</style>
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide .background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-slide .background.desktop {
  display: block;
}

.hero-slide .background.mobile {
  display: none;
}

.hero-heading {
  position: absolute;
  z-index: 2;
  font-weight: bold;
  text-align: left;
  transform: none;
}

@media (max-width: 768px) {
  .hero-slide .background.desktop {
    display: none;
  }

  .hero-slide .background.mobile {
    display: block;
  }

  .hero-heading {
    left: 50% !important;
    top: 60% !important;
    transform: translate(-50%, -50%);
    text-align: center;
  }
}
<style>
  .three-column-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
    background-color: var(--bg-color);
  }

  .column {
    flex: 1 1 36%;
   /* padding: 20px;*/
    box-sizing: border-box;
  }

  .middle-column {
    flex: 1 1 40%;
    text-align: center;
    padding-left:25px;
    padding-right: 25px;
    background-color: #dbf2ec;
  }

  .column img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--image-radius);
  }

  .heading {
    color: var(--heading-color);
    font-size: var(--heading-font-size);
    line-height: var(--heading-line-height);
    text-align: var(--heading-align);
    font-family: var(--heading-font);
  }

  .text-content {
    font-size: var(--text-size);
    color: var(--text-color);
    text-align: var(--text-align);
   /* font-weight: var(--text-weight);*/
  }

  .divider {
    width: var(--divider-width);
    height: var(--divider-thickness);
    background-color: var(--divider-color);
    margin: 20px auto;
  }

  .button-wrapper {
    text-align: var(--button-align);
    margin-top: var(--button-margin-top);
    margin-bottom: var(--button-margin-bottom);
  }

  .custom-button {
    font-size: var(--button-font-size);
    color: var(--button-text-color);
    background-color: var(--button-bg-color);
    border-radius: var(--button-radius);
    padding: 12px 24px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
  }

  .custom-button:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
  }

  @media (max-width: 768px) {
    .three-column-section {
      flex-direction: column;
    }
    .column,
    .middle-column {
      flex: 1 1 100%;
    }
  }
</style>
<style>
  .container-boxed {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container-full {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
  .image-with-text-modular {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
    background-color: var(--bg-color);
    color: var(--text-color);
  }
  .image-with-text-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }
  .image-with-text-container.reverse {
    flex-direction: row-reverse;
  }
  .image-block {
    flex: 1 1 40%;
  }
  .image-block img {
    width: 100%;
    height: auto;
    display: block;
  }
  .image-block.square img {
    border-radius: 0;
  }
  .image-block.rounded img {
    border-radius: 15px;
  }
  .image-block.circle img {
    border-radius: 50%;
  }
  .content-block {
    flex: 1 1 55%;
  }
  .content-block h1, .content-block h2, .content-block h3 {
    margin-bottom: 0.5rem;
  }
  .content-block p {
    margin-bottom: 1rem;
  }
  .btn {
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.5rem;
  }
  .btn.solid {
    background-color: var(--btn-color);
    color: #fff;
  }
  .btn.outline {
    border: 2px solid var(--btn-color);
    color: var(--btn-color);
    background: transparent;
  }
  .btn.link {
    background: none;
    color: var(--btn-color);
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .image-with-text-container {
      flex-direction: column;
    }
  }
</style>