/** Shopify CDN: Minification failed

Line 114:0 Unexpected "<"
Line 259:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.about-servicebox {
    position: relative;
  }

  .about-servicebox::before {
    content: " ";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,.58);
  }

  .about-introduce-v2 .info-intro .content-intro{
    margin-top: 20px;
  }

  /* Service v2 */
  .services-v2-container {
    padding: 40px 0;  
  }
  
  .services-v2-container .img-item {
    width: 140px;
    height: auto;
    margin: 0 auto;
  }

  .services-v2-container .img-item img {
    width: 100%;
    height: 100%;
  }
  
  .services-v2-container .service-item{
    background-color: #075944;
    padding: 20px 15px;
    color: #fff;
    font-size: 14px;
    border-radius: 8px;
    height: 100%;
    cursor: pointer;
  }
  
  .services-v2-container .service-item .title {
    border-bottom: 1px solid #0d3e34;
    padding-bottom: 10px;
    width: 100%;
  }
  
  .services-v2-container .service-item .icon i {
    font-size: 30px;
    margin-right: 9px;
  }

  .services-v2-container .service-item span {
    font-size: 18px;
  }

  .services-v2-container .service-item p {
    font-size: 16px;
    margin: 0;
  }

  .services-v2-container .service-item:hover {
    background-color: #8abf45;
    box-shadow:0px 5px 12px 0px rgba(0,0,0,.36);
  }

  .services-v2-container .service-item:hover .title {
    border-bottom: 1px solid #69a719;
  }
.right-size-pages {
  padding: 60px 0px 120px;
}
  
.info-intro p{
  color: #666666;
  margin: 0;
}

.content-section .content-item{
  margin-bottom: 60px;
}

.content-item h3 {
  margin-bottom: 20px;
  font-size: 23px;
  font-weight: 500;
}

.content-item .content-answer {
  color: #666666 !important;
}

.content-item .img-cover {
  margin-top: 30px;
}

.content-item .img-cover img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
<style>
  .gallery-pages-template {
    padding: 40px 0px 100px !important;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three equal columns */
    gap: 10px;
  }

  .gallery-item-wrapper {
    position: relative;
    overflow: hidden;
    height: 450px; /* Set a consistent height for all images */
  }

  .gallery-item-wrapper.wide {
    grid-column: span 2; /* Landscape images span two columns */
  }

  .gallery-item {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the container while maintaining aspect ratio */
    transition: transform 0.3s ease-in-out;
  }

  .gallery-item img:hover {
    transform: scale(1.05);
  }

  /* Modal adjustments */
  .gallery-modal-img .modal-body {
    padding: 0 !important;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .gallery-modal-img .modal-body img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 80vh; /* Limits height to 80% of the viewport height */
    object-fit: contain;
  }

  /* Loading Indicator */
  .loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
  }

  .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #8ac146;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  /* Ensure the modal itself is responsive */
  .modal-dialog-centered {
    max-width: 100%;
    margin: 0;
  }

  .modal-content {
    border: none;
    border-radius: 0;
    background: transparent;
    position: relative;
  }

  .modal {
    padding: 0px 10px !important;
  }

  /* Close Button Styling */
  .close-modal-btn {
    position: absolute;
    top: -10%;
    right: 10px;
    background: none;
    border: none;
    font-size: 4rem;
    color: white;
    cursor: pointer;
    z-index: 1051; /* Ensure it stays above the modal content */
  }

  .close-modal-btn:hover {
    color: #ccc;
  }

  /* Small screens */
  @media (max-width: 1024px) {
    .gallery-item-wrapper {
      height: 300px; /* Set a consistent height for all images */
    }
  }
  
  /* Small screens */
  @media (max-width: 576px) {
    .gallery-grid {
      grid-template-columns: repeat(1, 1fr); /* Single column on smaller screens */
    }

    .gallery-item-wrapper {
      height: 200px; /* Set a consistent height for all images */
    }
  
    .gallery-item-wrapper.wide {
      grid-column: 1; /* Landscape images span two columns */
    }

    .modal-body img {
      max-height: 70vh; /* Reduce the height slightly more on small screens */
    }

    .close-modal-btn {
      font-size: 2.5rem;
      top: -53px;
    }
  }
</style>
/* Instruction Section  */
  .instructions-section .instruction-item{
    margin-bottom: 40px;
  }

  .instruction-item h3 {
    margin-bottom: 20px;
    font-size: 23px;
    font-weight: 500;
  }
  
  .instruction-item .instruction-answer {
    color: #666666 !important;
  }
  
  .instruction-item .img-cover {
    cursor: pointer;
    margin: 30px 0;
    display: flex;
  }

  .instruction-item .img-cover img {
    object-fit: contain;
  }

  .instruction-modal-img .modal-body {
    padding: 0 !important;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .instruction-modal-img .modal-body img {
    display: block;
    margin: auto;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 80vh; /* Limits height to 80% of the viewport height */
    object-fit: contain;
  }

  /* Loading Indicator */
  .loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
  }

  .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #8ac146;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  /* Close Button Styling */
  .close-modal-btn {
    position: absolute;
    top: -10%;
    right: 10px;
    background: none;
    border: none;
    font-size: 4rem;
    color: white;
    cursor: pointer;
    z-index: 1051; /* Ensure it stays above the modal content */
  }

  .close-modal-btn:hover {
    color: #ccc;
  }

  /* Small screens */
  @media (max-width: 576px) {
    
    .modal-body img {
      max-height: 70vh; /* Reduce the height slightly more on small screens */
    }

    .close-modal-btn {
      font-size: 2.5rem;
      top: -53px;
    }
  }
.faq-container {
    padding: 40px 0 100px;
  }

  /* FAQ SECTION */
  .faq-section {
    margin-top: 60px;
  }
  
  .faq-section h4{
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 30px;
  }
  
  .section-title {
  }

  .section-title h3 {
    margin: 0;
    padding: 0
  }

  /* FAQ SECTION ITEM */
  .faq-item {
    border-bottom: 1px solid #666666;
    margin-bottom: 0;
  }

  .faq-item .faq-title h3{
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
  }

  .faq-item .faq-title span {
    font-size: 36px;
    transition: transform 0.1s ease;
  }

  .faq-answer {
    display: none;
    color: #666666 !important;
    padding: 25px 0;
    font-size: 16px;
  }

  .faq-item.active .faq-answer {
    display: block;
  }

  .faq-item.active .faq-title {
      color: #8ac146;
  }
  
  .faq-item.active .faq-title span {
      transform: rotate(45deg);
  }

  .faq-item .faq-title {
    cursor: pointer;
    padding: 10px 0;
    
  }
.right-size-pages {
  padding: 60px 0px 120px;
}
  
.info-intro p{
  color: #666666;
  margin: 0;
}

.content-section .content-item{
  margin-bottom: 60px;
}

.content-item h3 {
  margin-bottom: 20px;
  font-size: 23px;
  font-weight: 500;
}

.content-item .content-answer {
  color: #666666 !important;
}

.content-item .img-cover {
  margin-top: 30px;
}

.content-item .img-cover img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
/* .section-newsletter-v1 {
    position: relative;
  }

  .section-newsletter-v1::before {
    content: " ";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,.58);
  }

  .newsletter-content {
    position: relative;
    z-index: 1000;
  } */
.section-slideshow-v6 .slides-number-1 .content,
  .section-slideshow-v6 .slides-number-3 .content {
    max-width: 700px;
  }

  .section-slideshow-v6 .slides-number-3 .container {
    display: flex;
    justify-content: flex-end;
  }

  .section-slideshow-v6 .slides-number-2 {
    background-size: cover;
  }

  @media (max-width: 1024px) {
    .section-slideshow-v6 .slides-number-1 .content,
    .section-slideshow-v6 .slides-number-3 .content {
      max-width: 500px;
    }

    .section-slideshow-v6 .slides-number-2 {
      background-size: 1100px;
      background-position: bottom;
      background-color: #83ce76;
    }
  }

  @media (max-width: 768px) {
    .section-slideshow-v6 .slides-number-1 {
      background-size: 1000px;
      background-position-y: 369px;
    }

    .section-slideshow-v6 .slides-number-2 {
      background-size: 800px;
    }
  }

  @media (max-width: 575.98px) {
    .section-slideshow-v6 .slides-number-1 {
      background-size: 640px;
      background-position: bottom;
    }

    .section-slideshow-v6 .slides-number-2 {
      background-size: 500px;
    }

    .section-slideshow-v6 .slides-number-3 {
      background-size: 976px;
      background-position: bottom left;
      background-position-y: 440px;
      background-position-x: 19px;
    }
  }