/** Shopify CDN: Minification failed

Line 255:0 Unexpected "<"
Line 344:0 Unexpected "<"

**/


/* CSS from section stylesheet blocks */
.instruct-link-container {
    margin-top: 45px;
  }
  .instructions-collection-link {
    margin-top: 45px;
    background-color: #485a66;
    padding: 10px 40px;
    color: #ffffff !important;
    border-radius: 50px;
  }
  .instructions-collection-link:hover {
    
    color: #ffffff;
  }
  .full-width-container.yellow {
    background-color: #F0B46C !important;
    padding-bottom: 50px;
  }
  .head-container {
    text-align: center;
  }
  .head-container.instructions {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 1320px;
    margin: 0 auto;
  }
  .head-container.instructions h2 {
    margin-top:0;
    padding-top: 42px;
  }

  .instruction-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1320px;
    margin: 0 auto;
    margin-top: 10px;
  }

  .instruction-step {
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
  }

  .image-wrapper {
    width: 100%;
    padding-top: 100%; /* This creates a 1:1 aspect ratio box */
    position: relative;
  }

  .instruction-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire box while maintaining its aspect ratio */
  }

  .instruction-desc-wrapper {
    margin-top: 10px;
    color: #475a66
  }

  /* .instruction-button-container {
    text-align: center;
    margin-top: 20px;
  }

  .instruction-button-container a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #F0B46C;
    color: #fff;
    text-decoration: none;
  } */

  @media (min-width: 601px) and (max-width: 900px) {
    .instruction-steps {
      grid-template-columns: repeat(2, 1fr);
      justify-items: center; /* Centers items when there's only one per row */
    }
    .instruction-step {
      width: 100%;
    }
  }

  @media (max-width: 600px) {
    .instruction-steps {
      grid-template-columns: 1fr;
      justify-items: center; /* Centers items when there's only one per row */
    }
    .instruction-step {
      width: 100%;
    }
  }
.blog-posts__heading {
        padding-top: 80px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: justify;
  }
  .full-width-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #475A66; /* Adjust background color as needed */
    color: #FFFFFF
  
  }
  .blog-posts {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0;
    padding-bottom: 80px;
}
  .blog-posts__header {
    text-align: center;
  }
.blog-posts__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Adjust gap as needed */
  justify-content: center;
}
  .blog-posts__post {
  flex: 1 1 calc(33.33% - 20px); /* Adjust for different layouts if needed */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  text-align: center;
}
  .blog-posts__heading, .blog-article__heading-link, .blog-article__read-more-link {
    color: #FFFFFF !important;
    text-align: left;
  }
  .blog-article__read-more-link:hover{
    color: #F0B46C !important;
  }
  .blog-article__read-more-link:hover::after{
    color: ##F0B46C !important;
  }
  .blog-article__read-more-link:after {
    background-color: #FFFFFF !important;
  }
  .blog-article__read-more-link {
    text-transform: uppercase;
    font-weight: 600;
  }
  .blog-article__heading {
  margin: 0 0 .75rem;
  font-weight: bold;
  font-size: 28px;
  text-align: left;
  flex-grow: 1; /* Allow headings to grow and fill available space */
}
  @media (max-width: 767px) {
    .blog-posts__post {
      flex: 1 1 100%;
    }
  }
.head-container {
  width: 100%;
}

.head-container h1 {
  color: #475a66;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.collection-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Adjust the gap between items as needed */
  width: 100%;
}

.collection-item {
  box-sizing: border-box;
  text-align: center;
  position: relative; /* Needed to position the hover image correctly */
}

.collection-item img,
.main-img {
  width: 100%;
  height: auto;
}

.main-img {
  transition: opacity 0.5s ease;
}

.hover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.collection-item a {
  text-decoration: none;
  color: inherit;
}

.collection-item a:hover .main-img {
  opacity: 0;
}

.collection-item a:hover .hover-img {
  opacity: 1;
}

/* Desktop: 4 items per row */
@media (min-width: 1024px) {
  .collection-item {
    flex: 1 1 calc(25% - 20px); /* 100% / 4 items - gap */
  }
}

/* Tablet: 2 items per row */
@media (min-width: 768px) and (max-width: 1023px) {
  .collection-item {
    flex: 1 1 calc(50% - 20px); /* 100% / 2 items - gap */
  }
}

/* Mobile: 1 item per row */
@media (max-width: 767px) {
  .collection-item {
    flex: 1 1 100%; /* 100% / 1 item */
  }
}
<style>
  .cta-button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
  }

  .video-popup {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease; /* Fade-in/out effect */
  }

  .video-popup.show {
    display: flex;
    opacity: 1;
  }

  .video-popup-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background-color: transparent;
    border-radius: 8px;
    overflow: hidden;
  }

  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
  }

  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 0 10px;
    border-radius: 50%;
    z-index: 1001;
  }

  /* Mobile Optimization */
  @media (max-width: 767px) {
    .video-popup-content {
      width: 100%;
      max-width: none;
      border-radius: 0;
    }

    .video-wrapper {
      padding-bottom: 56.25%; /* Maintain aspect ratio */
      width: 100%;
    }

    .close-popup {
      font-size: 30px;
      top: 15px;
      right: 15px;
    }
  }
</style>
.eu-banner {
  }
  .EU-banner-img {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin-top: 40px;
  }