/** Shopify CDN: Minification failed

Line 48:8 Expected identifier but found whitespace
Line 48:10 Unexpected "{"
Line 48:19 Expected ":"

**/


/* CSS from section stylesheet tags */
.section-info-v1 {
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

/* Marquee Container */
.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 0px;
}

.marquee-wrapper {
  display: inline-block;
  animation: marquee 100s linear infinite;
}

.marquee-content {
  display: inline-flex;
  gap: 40px;
  align-items: center;
}

.marquee-text {
  display: inline-block;
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
  padding: 0 20px;
}

/* White filled text */
.marquee-text.text-white {
  color: {{ section.settings.color_title_info | default: '#FFFFFF' }};
}

/* Outline text */
.marquee-text.text-outline {
  color: transparent;
  -webkit-text-stroke: 0.3px white;
  text-stroke: 0.3px white;
  font-family: Typewriter;
}

/* Marquee Animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Content styling */
.content_info {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 16px;
  line-height: 1.6;
}

/* Button styling */
.btn-info-v1 {
  display: inline-block;
  padding: 15px 40px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  font-size: 14px;
}

.btn-info-v1:hover {
  background: #fff;
  color: #000;
  text-decoration: none;
}

/* Responsive */
@media screen and (max-width: 991px) {
  .marquee-text {
    font-size: 60px;
  }
  
  .section-info-v1 {
    padding: 40px 0;
  }
}

@media screen and (max-width: 767px) {
  .marquee-text {
    font-size: 40px;
  }
  
  .marquee-content {
    gap: 20px;
  }
  
  .content_info {
    font-size: 14px;
    padding: 0 20px;
  }
  
  .section-info-v1 {
    padding: 30px 0;
  }
}

@media screen and (max-width: 480px) {
  .marquee-text {
    font-size: 28px;
    -webkit-text-stroke: 1px;
    text-stroke: 1px;
  }
}
.section-service-v1 {
  position: relative;
  padding: 70px 0 20px 0;
  overflow: hidden;
}

.service-v1-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.service-v1-content {
  position: relative;
  z-index: 2;
}

.service-item-v1 {
  text-align: center;
  padding: 20px;
}

.service-icon {
  margin-bottom: 20px;
}

.service-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.service-title {
  font-size: 16px;
  font-weight: 700;
  color: #0000;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.service-content {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Instagram Follow Button */
.instagram-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: linear-gradient(50deg,rgb(0, 0, 0), 0), 0), 0)rgb(0, 0, 0)100%);
  color: #00000;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgb(7, 7, 7);
}

.instagram-follow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgb(0, 0, 0);
  color: #00000;
  text-decoration: none;
}

.instagram-follow-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media screen and (max-width: 991px) {
  .section-service-v1 {
    padding: 60px 0;
  }
}

@media screen and (max-width: 767px) {
  .section-service-v1 {
    padding: 40px 0;
  }
  
  .service-item-v1 {
    padding: 15px;
  }
  
  .service-icon img {
    width: 50px;
    height: 50px;
  }
  
  .service-title {
    font-size: 15px;
  }
  
  .service-content {
    font-size: 13px;
  }
  
  .instagram-follow-btn {
    padding: 10px 25px;
    font-size: 13px;
  }
}