/** Shopify CDN: Minification failed

Line 174:15 Expected identifier but found whitespace
Line 174:17 Unexpected "{"
Line 174:27 Expected ":"
Line 206:8 Expected identifier but found whitespace
Line 206:10 Unexpected "{"
Line 206:20 Expected ":"
Line 510:13 Expected identifier but found whitespace
Line 510:15 Unexpected "{"
Line 510:25 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:section-banner-v2 (INDEX:50) */
.banner-v2-fit--contain .section-banner-v2 .box-img-banner,
.banner-v2-fit--cover .section-banner-v2 .box-img-banner {
  background-color: #faf7f4;
  overflow: hidden;
}
.banner-v2-fit--contain .section-banner-v2 .box-img-banner img,
.banner-v2-fit--cover .section-banner-v2 .box-img-banner img {
  width: 100%;
  display: block;
  object-fit: var(--banner-v2-image-fit, contain);
  object-position: center center;
}

@media (min-width: 768px) {
  .banner-v2-fit--contain .section-banner-v2 .box-img-banner img,
  .banner-v2-fit--cover .section-banner-v2 .box-img-banner img {
    min-height: 400px;
  }
}

/* Mobile: show full image, stack text below so nothing is cropped/covered */
@media (max-width: 767px) {
  .banner-v2-fit--contain .section-banner-v2 .banner-box,
  .banner-v2-fit--cover .section-banner-v2 .banner-box {
    display: flex;
    flex-direction: column;
  }

  .banner-v2-fit--contain .section-banner-v2 .box-img-banner img,
  .banner-v2-fit--cover .section-banner-v2 .box-img-banner img {
    min-height: 0;
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: var(--banner-v2-image-fit, contain);
  }

  .banner-v2-mobile-height--small .section-banner-v2 .box-img-banner img {
    height: 320px;
    max-height: none;
    object-fit: var(--banner-v2-image-fit, contain);
  }
  .banner-v2-mobile-height--medium .section-banner-v2 .box-img-banner img {
    height: 420px;
    max-height: none;
    object-fit: var(--banner-v2-image-fit, contain);
  }
  .banner-v2-mobile-height--large .section-banner-v2 .box-img-banner img {
    height: 520px;
    max-height: none;
    object-fit: var(--banner-v2-image-fit, contain);
  }
  .banner-v2-mobile-height--custom .section-banner-v2 .box-img-banner img {
    height: var(--banner-v2-mobile-height, 420px);
    max-height: none;
    object-fit: var(--banner-v2-image-fit, contain);
  }

  .banner-v2-fit--contain .section-banner-v2 .banner-box .banner-info,
  .banner-v2-fit--cover .section-banner-v2 .banner-box .banner-info,
  .banner-v2-fit--contain .section-banner-v2 .banner-box .banner-info.content-left,
  .banner-v2-fit--cover .section-banner-v2 .banner-box .banner-info.content-left,
  .banner-v2-fit--contain .section-banner-v2 .banner-box .banner-info.content-right,
  .banner-v2-fit--cover .section-banner-v2 .banner-box .banner-info.content-right,
  .banner-v2-fit--contain .section-banner-v2 .banner-box .banner-info.content-center,
  .banner-v2-fit--cover .section-banner-v2 .banner-box .banner-info.content-center {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 24px 20px;
    background: #fff;
  }

  .banner-v2-fit--contain .section-banner-v2 .banner-box .banner-info .title,
  .banner-v2-fit--cover .section-banner-v2 .banner-box .banner-info .title {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .banner-v2-fit--contain .section-banner-v2 .banner-box .banner-info .sub-title,
  .banner-v2-fit--cover .section-banner-v2 .banner-box .banner-info .sub-title {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
  }
}
/* END_SECTION:section-banner-v2 */

/* START_SECTION:section-features (INDEX:67) */
.section-features__header {
  margin-bottom: 48px;
}
.section-features__header--left {
  text-align: left;
}
.section-features__header--center {
  text-align: center;
}
.section-features__header--right {
  text-align: right;
}
.section-features__heading {
  margin-bottom: 0;
}
.section-features__description {
  max-width: 560px;
  margin: 12px auto 0;
  font-size: 15px;
  line-height: 1.6;
}
.section-features__header--left .section-features__description,
.section-features__header--right .section-features__description {
  margin-left: 0;
  margin-right: 0;
}
.section-features__grid {
  display: grid;
  gap: var(--features-gap, 24px);
  width: 100%;
  align-items: start;
}
.section-features__grid--cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.section-features__grid--cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.section-features__grid--cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.section-features__col {
  min-width: 0;
}
.section-features__card {
  height: 100%;
  padding: 8px 12px 12px;
  border-radius: var(--features-card-radius, 0);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border: 1px solid transparent;
  text-align: center;
}
.section-features__card--img-bottom {
  display: flex;
  flex-direction: column-reverse;
}
.section-features__card--lift:hover {
  transform: translateY(-4px);
}
.section-features__card--border:hover {
  border-color: {{ settings.color_main2 }};
}
.section-features__image {
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: var(--features-card-radius, 0);
}
.section-features__image--square {
  aspect-ratio: 1 / 1;
}
.section-features__image--landscape {
  aspect-ratio: 4 / 3;
}
.section-features__image--portrait {
  aspect-ratio: 3 / 4;
}
.section-features__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.section-features__card--zoom:hover .section-features__image img {
  transform: scale(1.06);
}
.section-features__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(var(--features-icon-size) + 28px);
  height: calc(var(--features-icon-size) + 28px);
  margin: 0 auto 20px;
  color: {{ settings.color_main2 }};
  background: rgba(60, 113, 115, 0.08);
  line-height: 1;
}
.section-features__icon i {
  display: inline-block;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
}
.section-features__icon--image {
  background: transparent;
  width: auto;
  height: auto;
}
.section-features__icon--image img {
  display: inline-block;
}
.section-features__info .title {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.02em;
}
.section-features__info .content {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}
.section-features__info .content p {
  margin: 0;
}
.section-features__info .content p + p {
  margin-top: 8px;
}
.section-features__button {
  display: inline-block;
  margin-top: 8px;
}
@media (max-width: 1199px) {
  .section-features__grid--cols-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .section-features__grid--cols-3,
  .section-features__grid--cols-4,
  .section-features__grid--cols-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section-features__card {
    padding: 16px 12px;
  }
  .section-features__info .title {
    font-size: 16px;
  }
  .section-features__info .content {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .section-features__header {
    margin-bottom: 32px;
  }
  .section-features__grid--cols-3,
  .section-features__grid--cols-4,
  .section-features__grid--cols-5 {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }
  .section-features__card {
    padding: 20px 8px;
  }
}
.section-features--animate .section-features__col {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.section-features--animate .section-features__col.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* END_SECTION:section-features */

/* START_SECTION:section-slideshow-v5 (INDEX:90) */
.slideshow-section-wrapper .section-slideshow-v5 .item-slide .img-slide {
  width: 100%;
  background-color: #faf7f4;
}
.slideshow-section-wrapper .section-slideshow-v5 .item-slide .img-slide img,
.slideshow-section-wrapper .section-slideshow-v5 .item-slide .img-slide .placeholder-svg {
  display: block;
  width: 100%;
  object-fit: var(--slideshow-image-fit, cover);
  object-position: center center;
}
@media (min-width: 768px) {
  .slideshow-section-wrapper.slideshow-height--small .section-slideshow-v5 .item-slide,
  .slideshow-section-wrapper.slideshow-height--small .section-slideshow-v5 .item-slide .img-slide img,
  .slideshow-section-wrapper.slideshow-height--small .section-slideshow-v5 .item-slide .img-slide .placeholder-svg {
    min-height: 450px;
    height: 450px;
  }
  .slideshow-section-wrapper.slideshow-height--medium .section-slideshow-v5 .item-slide,
  .slideshow-section-wrapper.slideshow-height--medium .section-slideshow-v5 .item-slide .img-slide img,
  .slideshow-section-wrapper.slideshow-height--medium .section-slideshow-v5 .item-slide .img-slide .placeholder-svg {
    min-height: 600px;
    height: 600px;
  }
  .slideshow-section-wrapper.slideshow-height--large .section-slideshow-v5 .item-slide,
  .slideshow-section-wrapper.slideshow-height--large .section-slideshow-v5 .item-slide .img-slide img,
  .slideshow-section-wrapper.slideshow-height--large .section-slideshow-v5 .item-slide .img-slide .placeholder-svg {
    min-height: 750px;
    height: 750px;
  }
  .slideshow-section-wrapper.slideshow-height--full .section-slideshow-v5 .item-slide,
  .slideshow-section-wrapper.slideshow-height--full .section-slideshow-v5 .item-slide .img-slide img,
  .slideshow-section-wrapper.slideshow-height--full .section-slideshow-v5 .item-slide .img-slide .placeholder-svg {
    min-height: 100vh;
    height: 100vh;
  }
  .slideshow-section-wrapper.slideshow-height--custom .section-slideshow-v5 .item-slide,
  .slideshow-section-wrapper.slideshow-height--custom .section-slideshow-v5 .item-slide .img-slide img,
  .slideshow-section-wrapper.slideshow-height--custom .section-slideshow-v5 .item-slide .img-slide .placeholder-svg {
    min-height: var(--slideshow-custom-height, 700px);
    height: var(--slideshow-custom-height, 700px);
  }
}
@media (max-width: 767px) {
  /* Responsive default: scale with viewport, keep full image visible when fit is contain */
  .slideshow-section-wrapper.slideshow-mobile-height--auto .section-slideshow-v5 .item-slide .img-slide img,
  .slideshow-section-wrapper.slideshow-mobile-height--auto .section-slideshow-v5 .item-slide .img-slide .placeholder-svg {
    width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: var(--slideshow-image-fit, contain);
  }
  .slideshow-section-wrapper.slideshow-mobile-height--small .section-slideshow-v5 .item-slide,
  .slideshow-section-wrapper.slideshow-mobile-height--small .section-slideshow-v5 .item-slide .img-slide {
    min-height: 400px;
    height: 400px;
  }
  .slideshow-section-wrapper.slideshow-mobile-height--small .section-slideshow-v5 .item-slide .img-slide img,
  .slideshow-section-wrapper.slideshow-mobile-height--small .section-slideshow-v5 .item-slide .img-slide .placeholder-svg {
    min-height: 400px;
    height: 400px;
  }
  .slideshow-section-wrapper.slideshow-mobile-height--medium .section-slideshow-v5 .item-slide,
  .slideshow-section-wrapper.slideshow-mobile-height--medium .section-slideshow-v5 .item-slide .img-slide {
    min-height: 500px;
    height: 500px;
  }
  .slideshow-section-wrapper.slideshow-mobile-height--medium .section-slideshow-v5 .item-slide .img-slide img,
  .slideshow-section-wrapper.slideshow-mobile-height--medium .section-slideshow-v5 .item-slide .img-slide .placeholder-svg {
    min-height: 500px;
    height: 500px;
  }
  .slideshow-section-wrapper.slideshow-mobile-height--large .section-slideshow-v5 .item-slide,
  .slideshow-section-wrapper.slideshow-mobile-height--large .section-slideshow-v5 .item-slide .img-slide {
    min-height: 600px;
    height: 600px;
  }
  .slideshow-section-wrapper.slideshow-mobile-height--large .section-slideshow-v5 .item-slide .img-slide img,
  .slideshow-section-wrapper.slideshow-mobile-height--large .section-slideshow-v5 .item-slide .img-slide .placeholder-svg {
    min-height: 600px;
    height: 600px;
  }
  .slideshow-section-wrapper.slideshow-mobile-height--custom .section-slideshow-v5 .item-slide,
  .slideshow-section-wrapper.slideshow-mobile-height--custom .section-slideshow-v5 .item-slide .img-slide {
    min-height: var(--slideshow-custom-mobile-height, 500px);
    height: var(--slideshow-custom-mobile-height, 500px);
  }
  .slideshow-section-wrapper.slideshow-mobile-height--custom .section-slideshow-v5 .item-slide .img-slide img,
  .slideshow-section-wrapper.slideshow-mobile-height--custom .section-slideshow-v5 .item-slide .img-slide .placeholder-svg {
    min-height: var(--slideshow-custom-mobile-height, 500px);
    height: var(--slideshow-custom-mobile-height, 500px);
  }
}
/* END_SECTION:section-slideshow-v5 */

/* START_SECTION:section-two-columns (INDEX:94) */
.section-two-columns__row {
  margin-left: -12px;
  margin-right: -12px;
}
.section-two-columns__col {
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 24px;
}
.section-two-columns__inner {
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: 0;
}
.section-two-columns__inner--valign-top {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.section-two-columns__inner--valign-center {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.section-two-columns__inner--valign-bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (min-width: 992px) {
  .section-two-columns__inner {
    height: 100%;
    min-height: 280px;
  }
  .section-two-columns__inner--valign-center {
    justify-content: center;
  }
  .section-two-columns__inner--valign-bottom {
    justify-content: flex-end;
  }
}
.section-two-columns__inner--bg-image {
  background-size: cover;
  background-position: center;
}
.section-two-columns__bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}
.section-two-columns__body {
  position: relative;
  z-index: 1;
}
.section-two-columns__body--align-left { text-align: left; }
.section-two-columns__body--align-center { text-align: center; }
.section-two-columns__body--align-right { text-align: right; }
.section-two-columns__body--width-medium { max-width: 560px; }
.section-two-columns__body--width-narrow { max-width: 420px; }
.section-two-columns__body--align-center.section-two-columns__body--width-medium,
.section-two-columns__body--align-center.section-two-columns__body--width-narrow {
  margin-left: auto;
  margin-right: auto;
}
.section-two-columns__subheading {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-two-columns__heading {
  font-family: SofiaPro, sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-two-columns__text { margin-bottom: 20px; }
.section-two-columns__media { margin-bottom: 20px; overflow: hidden; }
.section-two-columns__media img,
.section-two-columns__media .placeholder-svg { width: 100%; height: auto; display: block; }
.section-two-columns__inner--img-left,
.section-two-columns__inner--img-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.section-two-columns__inner--img-right { flex-direction: row-reverse; }
.section-two-columns__inner--img-left .section-two-columns__media,
.section-two-columns__inner--img-right .section-two-columns__media {
  flex: 0 0 45%;
  max-width: 45%;
  margin-bottom: 0;
}
.section-two-columns__inner--img-left .section-two-columns__body,
.section-two-columns__inner--img-right .section-two-columns__body { flex: 1; }
.two-columns__social-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.section-two-columns__body--align-center .two-columns__social-list { justify-content: center; }
.section-two-columns__body--align-right .two-columns__social-list { justify-content: flex-end; }
.two-columns__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  color: #222;
  transition: background 0.3s ease, color 0.3s ease;
}
.two-columns__social-link:hover {
  background: {{ settings.color_main2 }};
  color: #fff;
}
@media (max-width: 991px) {
  .section-two-columns__col {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .section-two-columns__inner--img-left,
  .section-two-columns__inner--img-right {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    min-height: 0;
  }
  .section-two-columns__inner--img-left .section-two-columns__media,
  .section-two-columns__inner--img-right .section-two-columns__media {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    margin-bottom: 20px;
    align-self: stretch;
  }
  .section-two-columns__media img,
  .section-two-columns__media .placeholder-svg {
    width: 100%;
    display: block;
  }
}
/* END_SECTION:section-two-columns */