/** Shopify CDN: Minification failed

Line 30:5 Unexpected "{"
Line 30:14 Expected ":"
Line 30:20 Unexpected "{"
Line 31:14 Expected identifier but found whitespace
Line 31:16 Unexpected "{"
Line 31:25 Expected ":"
Line 31:66 Expected ":"
Line 32:14 Expected identifier but found whitespace
Line 32:16 Unexpected "{"
Line 32:25 Expected ":"
... and 42 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* Load Poppins + Playfair Display */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;1,400;1,500&display=swap');

/* Container & sizing */
.before-after-section {
  max-width: 1200px;
  margin: 2.5rem auto;
  text-align: center;
}

/* Dual-font heading base (same control logic as Video & Text) */
.dt-{{ section.id }}{
  --dt-size-1: {{ section.settings.size_primary | default: 32 }}px;
  --dt-size-2: {{ section.settings.size_secondary | default: 32 }}px;
  --dt-weight-1: {{ section.settings.weight_primary | default: 700 }};
  --dt-weight-2: {{ section.settings.weight_secondary | default: 400 }};
  --dt-line: {{ section.settings.title_line_height | default: 110 }};
  --dt-ls: {{ section.settings.title_letter_spacing | default: 0 }}px;
  --dt-gap-ch: {{ section.settings.title_secondary_gap | default: 1 }};
  --dt-show-highlight: {% if section.settings.title_highlight_enable %}1{% else %}0{% endif %};
  --dt-highlight: {{ section.settings.title_highlight_color | default: 'rgba(0,0,0,0)' }};
  --dt-pad-v: {{ section.settings.title_highlight_pad_v | default: 0 }}px;
  --dt-pad-h: {{ section.settings.title_highlight_pad_h | default: 0 }}px;
  --dt-radius: {{ section.settings.title_highlight_radius | default: 0 }}px;

  margin: 0 0 1rem 0;
  line-height: calc(var(--dt-line)/100);
  font-synthesis: none;
  font-size: 0; /* actual sizes on spans */
}

.ba-heading {
  line-height: initial;
  font-weight: normal;
}

/* Primary part: Poppins */
.dt-{{ section.id }} .dt__primary{
  font-family: 'Poppins', var(--font-heading, system-ui), -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: var(--dt-weight-1, 700);
  font-size: var(--dt-size-1, 32px);
  letter-spacing: var(--dt-ls, 0);
  padding: var(--dt-pad-v, 0) var(--dt-pad-h, 0);
  border-radius: var(--dt-radius, 0);
  background: color-mix(
    in srgb,
    var(--dt-highlight, transparent) calc(var(--dt-show-highlight, 0) * 100%),
    transparent calc((1 - var(--dt-show-highlight, 0)) * 100%)
  );
}

/* Secondary part: Playfair italic */
.dt-{{ section.id }} .dt__secondary{
  font-family: 'Playfair Display', var(--font-secondary, serif);
  font-style: italic;
  font-weight: var(--dt-weight-2, 400);
  font-size: var(--dt-size-2, 32px);
  letter-spacing: var(--dt-ls, 0);
  margin-left: calc(var(--dt-gap-ch, 1) * 0.25em);
  padding: var(--dt-pad-v, 0) var(--dt-pad-h, 0);
  border-radius: var(--dt-radius, 0);
  background: color-mix(
    in srgb,
    var(--dt-highlight, transparent) calc(var(--dt-show-highlight, 0) * 100%),
    transparent calc((1 - var(--dt-show-highlight, 0)) * 100%)
  );
}

/* Slider wrapper */
.ba-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  user-select: none;
}

.ba-after-layer,
.ba-before-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-after-img,
.ba-before-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center center;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* Before layer starts at 50% */
.ba-before-layer {
  clip-path: inset(0 50% 0 0);
  -webkit-clip-path: inset(0 50% 0 0);
}

/* Divider line */
.ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: #3b82f6;
  z-index: 9;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
  pointer-events: none;
}

/* Handle */
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  background: #fff;
  border: 2px solid #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  touch-action: none;
}
.ba-handle:active { cursor: grabbing; }
.ba-circle { width: 14px; height: 14px; background: #3b82f6; border-radius: 50%; }

/* Caption */
.ba-caption { margin-top: 1rem; color: #666; font-size: .95rem; }

/* Responsive */
@media (max-width: 600px) {
  .ba-wrapper { aspect-ratio: 4 / 3; }
}
.home-logo-list__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 5rem;
  text-align: center;
  align-items: start;
}

.home-logo-list__item {
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 280px;
  margin: 0 auto;
}

.home-logo-list__img {
  max-width: 90px;
  height: auto;
  margin: 0 auto 10px;
}

.home-logo-list__heading {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0.5rem 0 0.25rem;
  word-wrap: break-word;
  white-space: normal;
}

.home-logo-list__desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.4;
  margin-top: 0.25rem;
}

/* dual heading styles use CSS variables set inline on the section */
.dual-heading { margin: 0; line-height: calc(var(--dh-line,110)/100); }
.dual-heading__primary {
  display: inline-block;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-weight: calc(var(--dh-weight-1,700));
  font-size: var(--dh-size-1,36px);
  letter-spacing: var(--dh-ls,0);
  margin-right: calc(var(--dh-gap-ch,1) * 0.25ch);
  color: #0b0b0b;
}
.dual-heading__secondary {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: calc(var(--dh-weight-2,700));
  font-size: var(--dh-size-2,34px);
  padding: var(--dh-pad-v,2px) var(--dh-pad-h,7px);
  border-radius: var(--dh-radius,3px);
  background: color-mix(in srgb, var(--dh-highlight, transparent) calc(var(--dh-show-highlight,0) * 100%), transparent 0%);
  color: #0b0b0b;
}