/** Shopify CDN: Minification failed

Line 104:0 Unexpected "<"
Line 173:10 Expected identifier but found whitespace
Line 173:12 Unexpected "{"
Line 173:21 Expected ":"
Line 174:14 Expected identifier but found whitespace
Line 174:16 Unexpected "{"
Line 174:25 Expected ":"
Line 174:49 Expected ":"
Line 215:0 Unexpected "<"
Line 221:19 Expected identifier but found "{"
... and 49 more hidden warnings

**/


/* CSS from section stylesheet tags */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

.fullpage-slider {
  position: relative;
  width: 100%;
  height: 100vh; /* Added to fill viewport */
  overflow: hidden;
}

.fullpage-slider .slide {
  position: relative;
  width: 100%;
  height: 100vh; /* ensure full viewport height */
  min-height: 100vh;
  overflow: hidden;
  display: none;
  margin: 0;
  padding: 0;
}

.fullpage-slider .slide.active {
  display: block;
}

.fullpage-slider picture,
.fullpage-slider img.slide-background {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

.fullpage-slider .overlay-image-wrapper {
  position: absolute;
  z-index: 10;
  cursor: pointer;
  transition: opacity 0.3s ease;
  overflow: visible;
  transform: translate(-50%, -50%);
}

.fullpage-slider .overlay-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fullpage-slider .slide-content {
  position: relative;
  z-index: 15;
  color: white;
  text-align: center;
  padding: 1rem 2rem;
  margin-top: 1rem;
}

.fullpage-slider .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: white;
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  user-select: none;
  z-index: 50;
}

.fullpage-slider .arrow.left {
  left: 10px;
}

.fullpage-slider .arrow.right {
  right: 10px;
}
<style>
  html, body {
    overflow-x: hidden;
  }

  .gallery-section {
    padding: 40px 16px;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
  }

  .gallery-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: sans-serif;
    color: #000;
    text-align: center;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 6px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    justify-items: center;
  }

  .gallery-box {
    border: 2px solid #cc0000;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4px;
    box-sizing: border-box;
    width: 100%;
  }

  .gallery-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .gallery-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
    position: relative;
    transition: transform 0.3s, filter 0.3s, brightness 0.3s;
  }

  .gallery-image-wrapper:hover img {
    filter: brightness(85%);
  }

  .gallery-caption {
    font-weight: bold;
    color: {{ section.settings.font_color }};
    font-size: {{ section.settings.font_size }}px;
    font-family: sans-serif;
    text-align: center;
    margin-top: 4px;
    word-break: break-word;
  }

  .gallery-bottom-text {
    margin-top: 30px;
    font-size: 22px;
    font-weight: bold;
    color: #000;
    font-family: sans-serif;
    text-align: center;
  }

  /* Responsive caption size */
  @media (max-width: 768px) {
    .gallery-caption {
      font-size: 11px;
    }
  }

  @media (max-width: 480px) {
    .gallery-caption {
      font-size: 10px;
    }
  }

  /* Section visibility toggle */
  @media (max-width: 768px) {
    .hide-on-mobile {
      display: none !important;
    }
  }

  @media (min-width: 769px) {
    .hide-on-desktop {
      display: none !important;
    }
  }
</style>
.mgallery-section{
  padding:20px 10px;
  text-align:center;
  box-sizing:border-box;
  width:100%;
  background-color:{{ section.settings.background_color }};
}

/* Hide on desktop if setting enabled */
.hide-desktop { display:block; }
@media (min-width: 769px){
  .hide-desktop { display:none !important; }
}

/* Heading */
.mgallery-heading{
  font-size:28px;
  margin-bottom:16px;
  font-family:sans-serif;
  color:#000;
  text-align:center;
  font-weight:{% if section.settings.heading_bold %}700{% else %}600{% endif %};
}

/* 3 fixed columns */
.mgallery-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  justify-items:center;
}

/* Unit */
.mgallery-box{
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:6px 6px 0;
  box-sizing:border-box;
}

/* Uniform square with red outline */
.mgallery-image-wrapper{
  position:relative;
  overflow:hidden;
  background-color:#f4f4f4;
  border:2px solid #cc0000;
}
.mgallery-placeholder{
  position:relative;
  background:repeating-linear-gradient(45deg,#eee,#eee 10px,#f7f7f7 10px,#f7f7f7 20px);
  display:grid;
  place-items:center;
  color:#999;
  font-size:11px;
  font-family:sans-serif;
  border:2px solid #cc0000;
}

/* Fill & crop uniformly */
.mgallery-image-wrapper img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform: translateY(var(--voffset, 0px));
  transition: transform .3s ease, filter .3s ease;
  will-change: transform;
}

.mgallery-image-wrapper:hover img{ filter:brightness(.9) }
.mgallery-image-wrapper.is-gray img{ filter:grayscale(100%) }
.mgallery-image-wrapper.is-gray:hover img{ filter:grayscale(100%) brightness(.9) }

/* Caption */
.mgallery-caption{
  width:100%;
  color:{{ section.settings.font_color }};
  font-size:{{ section.settings.font_size }}px;
  font-family:sans-serif;
  text-align:center;
  margin:8px 0 0;
  word-break:break-word;
  overflow-wrap:anywhere;
}

/* Bottom line */
.mgallery-bottom-text{
  margin-top:18px;
  font-size:14px;
  color:#333;
  font-family:sans-serif;
  text-align:center;
  font-weight:{% if section.settings.bottom_text_bold %}700{% else %}400{% endif %};
  {% if section.settings.bottom_text_caps %} text-transform: uppercase; {% endif %}
}

/* Responsive adjustments for small phones */
@media (max-width: 480px){
  .mgallery-grid{ gap:10px; }
  .mgallery-image-wrapper,
  .mgallery-placeholder{
    width: {{ section.settings.box_size | times: 75 | divided_by: 100 }}px !important;
    height: {{ section.settings.box_size | times: 75 | divided_by: 100 }}px !important;
  }
  .mgallery-caption{ font-size: {{ section.settings.font_size | times: 90 | divided_by: 100 }}px; }
}
@media (max-width: 360px){
  .mgallery-grid{ gap:8px; }
  .mgallery-image-wrapper,
  .mgallery-placeholder{
    width: {{ section.settings.box_size | times: 65 | divided_by: 100 }}px !important;
    height: {{ section.settings.box_size | times: 65 | divided_by: 100 }}px !important;
  }
  .mgallery-caption{ font-size: {{ section.settings.font_size | times: 80 | divided_by: 100 }}px; }
}
.trusted-by-section {
  overflow: hidden;
}

.trusted-by-heading {
  text-align: center;
  font-size: var(--heading-size, 18px);
  font-weight: 500;
  margin-bottom: 25px;
  color: #333;
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: var(--gap, 40px);
  align-items: center;
  width: max-content;
  white-space: nowrap;
}

.marquee-track.is-scrolling.animate {
  animation: marquee var(--marquee-duration, 20s) linear infinite;
}

.marquee-track.centered {
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}

.logo-group {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: var(--gap, 40px);
}

.logo-link,
.logo-item {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  display: inline-block;
  height: auto;
  width: auto;
  object-fit: contain;
}

.logo-img.filtered {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.logo-img.filtered:hover {
  filter: grayscale(0%);
}

@keyframes marquee {
  0%   { transform: translateX(var(--start-offset, 0px)); }
  100% { transform: translateX(calc(var(--start-offset, 0px) - 50%)); }
}

/* Mobile layout */
@media (max-width: 749px) {
  .marquee-wrapper { overflow: visible; }

  .marquee-track {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap, 40px) * 0.6);
    white-space: normal;
  }

  .marquee-track.is-scrolling.animate { animation: none !important; }

  .marquee-track .logo-group.duplicate { display: none !important; }

  .logo-group {
    width: 100%;
    flex-direction: column;
    gap: calc(var(--gap, 40px) * 0.6);
  }

  .logo-link, .logo-item {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}