/** Shopify CDN: Minification failed

Line 115:12 Expected identifier but found whitespace
Line 115:22 Unexpected "{"
Line 115:31 Expected ":"
Line 115:57 Expected ":"
Line 143:14 Expected identifier but found whitespace
Line 143:16 Unexpected "{"
Line 143:25 Expected ":"
Line 143:60 Expected ":"
Line 151:14 Expected identifier but found whitespace
Line 151:16 Unexpected "{"
... and 1 more hidden warnings

**/


/* CSS from section stylesheet tags */
.custom-experience-section {
  text-align: center;
  background-color: #FAFAFA; /* Matches your screenshot's yellow background */
}

.custom-experience-title {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.custom-experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.custom-experience-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.custom-experience-icon {
  margin-bottom: 10px;
}

.custom-experience-icon img {
  filter: none; /* Reset filter */
  background: linear-gradient(to bottom, {{ section.settings.icon_color_start }}, {{ section.settings.icon_color_end }});
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform 0.3s ease;
}

.custom-experience-icon:hover img {
  transform: scale(1.1);
}

.custom-experience-text {
  font-size: 1em;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .custom-experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .custom-experience-icon img {
    width: 28px; /* Adjusted for mobile visibility */
    height: 28px;
  }
  .custom-experience-title {
    font-size: 1em; /* Reduced font size for mobile */
  }
}
.custom-marquee-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.custom-marquee-container {
  width: 100%;
  position: relative;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}

.custom-marquee-images {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  width: 100%;
}

.marquee-image {
  width: 200px;
  height: 100px;
  object-fit: cover;
}

.custom-marquee-text {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.marquee-content-wrapper {
  display: inline-block;
  animation: marquee {{ section.settings.scroll_speed }}s linear infinite;
}

.marquee-content {
  display: inline-block;
  margin-right: 40px; /* Increased spacing between loop text */
  white-space: nowrap;
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.custom-marquee-featured {
  font-size: 0.8em;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 767px) {
  .marquee-image {
    width: 100px;
    height: 50px;
  }

  .custom-marquee-text {
    font-size: {{ section.settings.font_size | minus: 6 }}px; /* Reduced by 6px for mobile */
  }

  .custom-marquee-featured {
    font-size: 0.7em;
  }
}
.footer-copyright-section {
  font-family: {{ settings.type_body_font | font_face }};
}

.footer-copyright-container {
  width: 100%;
  position: relative;
}

@media (max-width: 767px) {
  .footer-copyright-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}