/** Shopify CDN: Minification failed

Line 330:15 Expected identifier but found whitespace
Line 330:17 Unexpected "{"
Line 330:26 Expected ":"
Line 330:61 Expected identifier but found "!"

**/


/* CSS from section stylesheet tags */
.jc-grid-gallery {
  padding: 40px 20px;
  max-width: 1920px;
  margin: 0 auto;
}

.jc-grid-gallery__title {
  margin: 0 0 40px;
  text-align: center;
  font-size: 32px;
  line-height: 1.2;
}

.jc-grid-gallery__container {
  width: 100%;
}

.jc-grid-gallery__wrapper {
  display: grid;
  gap: 24px;
  width: 100%;
}

.jc-grid-gallery__wrapper--scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}


@media screen and (min-width: 1024px) {
  .jc-grid-gallery__wrapper:not(.jc-grid-gallery__wrapper--scroll) {
    grid-template-columns: repeat(var(--columns, 3), 1fr);
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .jc-grid-gallery__wrapper:not(.jc-grid-gallery__wrapper--scroll) {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .jc-grid-gallery__wrapper:not(.jc-grid-gallery__wrapper--scroll) {
    grid-template-columns: 1fr;
  }
}

.jc-grid-gallery__item {
  position: relative;
  scroll-snap-align: start;
}

.jc-grid-gallery__item-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.jc-grid-gallery__image-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 16px;
}

.jc-grid-gallery__image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
}

.jc-grid-gallery__text {
  text-align: center;
}

.jc-grid-gallery__item-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
}

.jc-grid-gallery__item-subtitle {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.4;
}

.jc-grid-gallery__container--gap-small { gap: 10px; }
.jc-grid-gallery__container--gap-medium { gap: 20px; }
.jc-grid-gallery__container--gap-large { gap: 30px; }

@media screen and (min-width: 1024px) {
  .jc-grid-gallery__wrapper:not(.jc-grid-gallery__wrapper--scroll) {
    &.jc-grid-gallery__container--desktop-2 { grid-template-columns: repeat(2, 1fr); }
    &.jc-grid-gallery__container--desktop-3 { grid-template-columns: repeat(3, 1fr); }
    &.jc-grid-gallery__container--desktop-4 { grid-template-columns: repeat(4, 1fr); }
    &.jc-grid-gallery__container--desktop-5 { grid-template-columns: repeat(5, 1fr); }
    &.jc-grid-gallery__container--desktop-6 { grid-template-columns: repeat(6, 1fr); }
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .jc-grid-gallery__wrapper:not(.jc-grid-gallery__wrapper--scroll) {
    &.jc-grid-gallery__container--tablet-1 { grid-template-columns: 1fr; }
    &.jc-grid-gallery__container--tablet-2 { grid-template-columns: repeat(2, 1fr); }
    &.jc-grid-gallery__container--tablet-3 { grid-template-columns: repeat(3, 1fr); }
  }
    .jc-grid-gallery {
  padding: 15px 10px;
}
}

@media screen and (max-width: 767px) {
  .jc-grid-gallery__wrapper:not(.jc-grid-gallery__wrapper--scroll) {
    &.jc-grid-gallery__container--mobile-1 { grid-template-columns: 1fr; }
    &.jc-grid-gallery__container--mobile-2 { grid-template-columns: repeat(2, 1fr); }
  }
  .jc-grid-gallery {
  padding: 10px 10px;
}
}

.jc-grid-gallery__item {
  position: relative;
  scroll-snap-align: start;
}

.jc-grid-gallery__item-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.jc-grid-gallery__item-content {
  overflow: hidden;
}

.jc-grid-gallery__image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.jc-grid-gallery__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.jc-grid-gallery__text {
  padding: 15px;
}

.jc-grid-gallery__item-title {
  margin: 0;
  line-height: 1.2;
}

.jc-grid-gallery__item-subtitle {
  margin: 0;
  line-height: 1.4;
}

.jc-grid-gallery__button {
  display: inline-block;
  margin-top: 10px;
}
.jc-grid-gallery__item-link:hover .jc-grid-gallery__image {
  transform: scale(1.05);
}
.jc-image-text-section {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.jc-image-text-section__wrapper {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.jc-image-text-section__media-container {
  flex: 1;
  position: relative;
}

.jc-image-text-section__content-container {
  flex: 1;
  position: relative;
  max-width: 663px;
}

.jc-image-text-section__logo {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.jc-image-text-section__media {
  width: 100%;
  height: auto;
  display: block;
}

.jc-image-text-section__media--desktop {
  display: block;
}

.jc-image-text-section__media--mobile {
  display: none;
}

.jc-image-text-section__media--placeholder {
  background-color: #f4f4f4;
  width: 100%;
  aspect-ratio: 1;
}

.jc-image-text-section__wrapper--reversed {
  flex-direction: row-reverse;
}

.jc-image-text-section__heading {
  margin: 0 0 20px;
  line-height: 1.2;
  font-family: var(--font-heading-family);
  font-weight: var(--font-heading-weight);
  color: var(--color-header-text);
  transition: all var(--header-transition-duration, 0.3s);
}

.jc-image-text-section__text-content {
  margin-bottom: 30px;
  line-height: 1.6;
  font-family: var(--font-body-family);
  font-weight: var(--font-body-weight);
}

.jc-image-text-section__cta {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--font-body-family);
  font-weight: 500;
  cursor: pointer;
}

.jc-image-text-section__cta:hover {
  opacity: 0.85;
}

.jc-image-text-section__cta--solid {
  border-width: 2px;
  border-style: solid;
}

.jc-image-text-section__cta--outline {
  background-color: transparent;
  border-width: 2px;
  border-style: solid;
}

.jc-image-text-section__cta--link {
  padding: 0;
  background: none;
  border: none;
  text-decoration: underline;
}

@media (min-width: 1024px) {
  .jc-image-text-section__wrapper {
    padding: 0 40px;
  }
  
  .jc-image-text-section__content-container {
    flex: 2;
  }
}

@media screen and (max-width: 1024px) {
  .jc-image-text-section__wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .jc-image-text-section__wrapper--reversed {
    flex-direction: column;
  }

  .jc-image-text-section__wrapper--mobile-reversed {
    flex-direction: column-reverse;
  }

  .jc-image-text-section__media--desktop {
    display: none;
  }

  .jc-image-text-section__media--mobile {
    display: block;
  }

  .jc-image-text-section__content-container {
    padding: 20px 0;
    text-align: {{ section.settings.mobile_text_alignment }} !important;
  }

  .jc-image-text-section__text-content {
    font-size: 0.9em;
  }
  .jc-image-text-section__wrapper {
    padding: 0 20px;
    gap: 20px;
  }

  section.jc-image-text-section {
    padding: 10px 0 !important;
  }
}

@media screen and (max-width: 768px) {
  .jc-image-text-section__wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .jc-image-text-section__wrapper--reversed {
    flex-direction: column;
  }

  .jc-image-text-section__wrapper--mobile-reversed {
    flex-direction: column-reverse;
  }

  .jc-image-text-section__media--desktop {
    display: none;
  }

  .jc-image-text-section__media--mobile {
    display: block;
  }

  .jc-image-text-section__content-container {
    padding: 20px 0;
  }

  .jc-image-text-section__text-content {
    font-size: 0.9em;
  }
  
  .jc-image-text-section__wrapper {
    padding: 0 20px;
    gap: 20px;
  }

  section.jc-image-text-section {
    padding: 10px 0 !important;
  }
}