/** Shopify CDN: Minification failed

Line 63:19 Expected identifier but found whitespace
Line 63:21 Unexpected "{"
Line 63:30 Expected ":"
Line 128:19 Expected identifier but found whitespace
Line 128:21 Unexpected "{"
Line 128:30 Expected ":"
Line 238:14 Expected identifier but found whitespace
Line 238:16 Unexpected "{"
Line 238:25 Expected ":"
Line 238:51 Expected ":"
... and 27 more hidden warnings

**/


/* CSS from section stylesheet tags */
.responsive-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}
.responsive-content {
  flex: 1 1 50%;
}
.responsive-image {
  flex: 1 1 50%;
  text-align: center;
}
.responsive-image img {
  border-radius: 1rem;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .responsive-container {
    flex-direction: column;
  }
  .responsive-content {
    order: 2;
  }
  .responsive-image {
    order: 1;
  }
}
.accordion-item summary {
  font-size: var(--accordion-title-size);
  font-weight: var(--accordion-title-weight);
  padding: 1rem 0;
  cursor: pointer;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
}
.accordion-item p {
  font-size: var(--accordion-description-size);
  padding: 0.5rem 0;
  border-bottom: 1px solid #ccc;
}
.benefits-with-image-section {
  background-color: {{ section.settings.background_color }};
  padding: 4rem 1rem;
  text-align: center;
}

.benefits-with-image__heading {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #001b49;
}

.benefits-with-image__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.benefits-with-image__item {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
}

.benefits-with-image__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
}

.benefits-with-image__title {
  font-weight: bold;
  font-size: 1.1rem;
  color: #001b49;
  margin-bottom: 0.5rem;
}

.benefits-with-image__description {
  font-size: 0.95rem;
  color: #001b49;
}

.benefits-with-image__center {
  max-width: 400px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .benefits-with-image__grid {
    flex-direction: column;
  }

  .benefits-with-image__item {
    max-width: 100%;
  }

  .benefits-with-image__center {
    max-width: 100%;
  }
}
.benefits-with-image-section {
  background-color: {{ section.settings.background_color }};
  padding: 4rem 1rem;
  text-align: center;
}

.benefits-with-image__heading {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #001b49;
}

.benefits-with-image__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.benefits-with-image__item {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
}

.benefits-with-image__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
}

.benefits-with-image__title {
  font-weight: bold;
  font-size: 1.1rem;
  color: #001b49;
  margin-bottom: 0.5rem;
}

.benefits-with-image__description {
  font-size: 0.95rem;
  color: #001b49;
}

.benefits-with-image__center {
  max-width: 400px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .benefits-with-image__grid {
    flex-direction: column;
  }

  .benefits-with-image__item {
    max-width: 100%;
  }

  .benefits-with-image__center {
    max-width: 100%;
  }
}
.testimonial-gallery {
  display: flex;
  gap: var(--card-gap, 16px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-top: 1rem;
}
.testimonial-card {
  flex: 0 0 85%;
  scroll-snap-align: start;
  padding: 1rem;
  max-width: 360px;
}
.testimonial-card img {
  width: 100%;
  border-radius: inherit;
  margin-bottom: 1rem;
  object-fit: cover;
}
.testimonial-content .stars svg {
  width: 20px;
  height: 20px;
  fill: var(--star-color);
  margin-right: 2px;
}
.testimonial-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 1rem 0;
}
.testimonial-avatar {
  border-radius: 50% !important;
  object-fit: cover;
}
@media(min-width: 768px) {
  .testimonial-gallery {
    flex-wrap: wrap;
    overflow-x: hidden;
    justify-content: space-between;
  }
  .testimonial-card {
    flex: 0 0 calc(33.333% - var(--card-gap));
  }
}
.section-wrapper {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
  background: {{ section.settings.background_gradient | default: section.settings.background_color }};
  text-align: {{ section.settings.text_align }};
  color: {{ section.settings.text_color }};
}
.section-inner {
  max-width: {{ section.settings.max_width }}px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-title {
  font-size: clamp(20px, {{ section.settings.font_size_title_desktop }}px, 6vw);
  font-weight: {{ section.settings.font_weight_title }};
  margin-bottom: {{ section.settings.title_margin_bottom }}px;
}
.section-subtitle {
  font-size: clamp(16px, {{ section.settings.font_size_subtitle_desktop }}px, 5vw);
  font-weight: {{ section.settings.font_weight_subtitle }};
  opacity: 0.9;
}