/** Shopify CDN: Minification failed

Line 21:19 Expected identifier but found whitespace
Line 21:21 Unexpected "{"
Line 21:30 Expected ":"
Line 52:19 Expected identifier but found whitespace
Line 52:21 Unexpected "{"
Line 52:30 Expected ":"
Line 76:18 Expected identifier but found whitespace
Line 76:20 Unexpected "{"
Line 76:29 Expected ":"
Line 76:51 Expected ":"
... and 18 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* Container & background */
.cust-home-grid-section {
  background-color: {{ section.settings.bg_color }};
  padding: 0;
}

/* Pre-grid text */
.cust-home-grid-pretext {
  font-size: 14px;
  margin-bottom: 16px;
  color: #000;
  font-family: 'Inter',sans-serif;
  margin-left:2%;
  margin-top:5%;
  margin-bottom:2%;
}

/* Each row: two columns */
.cust-home-grid-row {
  display: flex;
  width: 100%;
  gap: 30px;
  margin-bottom: 30px;
}
.cust-home-grid-row:last-child {
  margin-bottom: 0;
}

/* Columns */
.cust-home-grid-col {
  flex: 1;
  position: relative;
  overflow: hidden;
  background-color: {{ section.settings.bg_color }};
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fit modes */
.cust-home-grid-col--cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cust-home-grid-col--contain img {
  max-height: 75%;
  object-fit: contain;
}

/* Responsive: stack on narrow screens */
@media (max-width: 480px) {
  .cust-home-grid-row {
    flex-direction: column;
  }
  .cust-home-grid-col {
    width: 100%;
    margin-bottom: {{ section.settings.row_gap }}px;
  }
  .cust-home-grid-row:last-child .cust-home-grid-col {
    margin-bottom: 0;
  }
}
.nc2-flex-wrapper {
    display: flex;
    flex-wrap: wrap;
  }

  .nc2-col {
    flex: 1 1 50%;
    box-sizing: border-box;
    position: relative;
  }

  .nc2-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .nc2-text-block {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
  }

  .nc2-text-block h2 {
    color: #cc3333;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 35%;
  }

  .nc2-text-block p {
    color: #111;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 80%;
  }

  .nc2-btn {
    padding: 12px 28px;
    font-family:'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    border: 1px solid #000;
    text-decoration: none;
    border-radius: 9999px;
    display: inline-block;
    transition: background 0.3s, color 0.3s;
    max-width:fit-content;
  }

  .nc2-btn:hover {
    background-color: #f5f5f5;
    color: #000;
  }

  .nc2-overlay-icon {
    position: absolute;
    display: block;
  }

  .nc2-overlay-icon img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Column Swapping */
  .nc2-flex-wrapper.desktop-swap .nc2-col-left {
    order: 2;
  }

  .nc2-flex-wrapper.desktop-swap .nc2-col-right {
    order: 1;
  }

  @media (max-width: 768px) {
    .nc2-flex-wrapper {
      flex-direction: column;
    }

    .nc2-flex-wrapper.mobile-swap .nc2-col-left {
      order: 2;
    }

    .nc2-flex-wrapper.mobile-swap .nc2-col-right {
      order: 1;
    }

    .nc2-text-block {
      padding: 40px 20px;
    }

    .nc2-text-block h2 {
      font-size: 2rem;
      margin-bottom:5%;
    }

     .nc2-text-block p {
      max-width: 100%;
    }

    .nc2-btn {
      font-size: 0.85rem;
    }
  }
.home-bnr-image-banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.home-bnr-image-banner-wrapper {
  width: 100%;
  display: flex;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scroll-behavior: smooth;
}
.home-bnr-image-banner-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  position: relative;
  overflow: hidden;
  height: {{ section.settings.image_height | default: '100vh' }};
}
.home-bnr-image-banner-slide img {
  width: 100%;
  object-fit: cover;
  display: block;
}
/* Overlay */
.home-bnr-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
/* Text block */
.home-bnr-text-block {
  position: absolute;
  z-index: 2;
  padding: 20px;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.home-bnr-text-left   { text-align: left;   left: 0; }
.home-bnr-text-center { text-align: center; left: 50%; transform: translate(-50%, -50%); }
.home-bnr-text-right  { text-align: right;  right: 0; }
/* CTA Link */
.home-bnr-cta {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 20px;
  font-size: 14px;
  color: #fff;
  text-decoration: underline;
}
.home-bnr-cta:hover { text-decoration: none }
/* Dots */
.home-bnr-image-banner-dots { text-align: center; margin-top: 10px; }
.home-bnr-image-banner-dot {
  width:10px; height:10px; background:#ccc; border-radius:50%;
  display:inline-block; margin:0 4px; cursor:pointer;
}
.home-bnr-image-banner-dot.active { background:#333 }

/* Responsive */
@media (max-width: 768px) {
  .home-bnr-image-banner-slide {
    height: {{ section.settings.mobile_image_height | default: '80vh' }};
  }
  .home-bnr-image-banner-slide img.desktop-img { display: none; }
  .home-bnr-image-banner-slide img.mobile-img  { display: block; }
  .home-bnr-text-block {
    font-size: {{ section.settings.mobile_font_size | default: 14 }}px;
    padding: 10px;
  }
  .home-bnr-cta {
    font-size: 12px;
    bottom: 10px;
    left: 10px;
  }
   .home-bnr-text-left{
    font-size:20px!important;
    line-height: 25px!important;
   }
}
@media (min-width: 769px) {
  .home-bnr-image-banner-slide img.mobile-img  { display: none; }
  .home-bnr-image-banner-slide img.desktop-img { display: block; }
}
.image-grid-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns per row on desktop */
  gap: 2rem;
  width: 100%;
}

.grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-wrapper {
  width: 100%;
  position: relative;
  padding-bottom: 75%; /* Aspect ratio 4:3 for desktop */
  overflow: hidden;
}

.image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-caption {
  margin-top: 1rem;
  text-align: center;
  font-size: 16px;
  margin-bottom:1rem;
}

.img-caption a {
  color: #222d2f !important;
  text-decoration: none !important;
}

.link-button {
  border-radius: 30px;
  background-color: #014483;
  color: white;
  text-decoration:none;
  padding:10px 30px;
  margin-top:2%;
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .image-grid {
    grid-template-columns: 1fr; /* One column per row on mobile */
    gap: 1.5rem;
  }
  
  .image-wrapper {
    padding-bottom: 100%; /* Square aspect ratio for mobile */
  }
  
  .img-caption {
    margin-top: 0.75rem;
    font-size: 14px;
  }


  .announcement-bar__message{
    padding:0!important;
  }
}

/* Optional hover effect for images */
.image-wrapper {
  transition: transform 0.3s ease;
}

.image-wrapper:hover {
  transform: scale(1.02); /* Slight zoom effect */
}
.nc2-custom-text-section {
    padding: 40px 20px;
    text-align: center;
  }

  .nc2-custom-text-section__text {
    margin: 0 auto;
  }

  @media screen and (max-width: 768px) {
    .nc2-custom-text-section__desktop {
      display: none;
    }

    .nc2-custom-text-section__mobile {
      display: block;
    }

    .nc2-custom-text-section__text {
      font-size:20px;
      font-weight:400;
    }
  }

  @media screen and (min-width: 769px) {
    .nc2-custom-text-section__desktop {
      display: block;
    }

    .nc2-custom-text-section__mobile {
      display: none;
    }

     .nc2-custom-text-section__text {
      font-size:48px;
       font-weight:400;
    }
    
  }
.oct-two-col-section {
  background-color: #dec6a3;
  padding: 40px 20px;
}
.oct-two-col-section .oct-two-col-columns {
  display: flex;
  gap: 40px;
}
.oct-two-col-section .oct-two-col-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.oct-two-col-section .oct-two-col-column img {
  width: 100%;
  max-width: {{ section.settings.image_max_width }}%;
  height: auto;
  display: block;
}
.oct-two-col-section .oct-two-col-column h2 {
  margin: 0;
  font-size: 50px;
  line-height:60px;
}
.oct-two-col-section .oct-two-col-column p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight:400;
  max-width:80%;
  color:#000;
}
.oct-two-col-section .oct-two-col-column a {
  font-size: {{ section.settings.text_size }}px;
  font-weight: bold;
  text-decoration: underline;
  color: #000;
  font-weight:500;
}
.oct-two-col-section .oct-two-col-column a:hover {
  text-decoration: underline;
}

/* Tablet: stack columns, center text & images */
@media (max-width: 1024px) {
  .oct-two-col-section {
    padding: 32px 16px;
  }
  .oct-two-col-section .oct-two-col-columns {
    flex-direction: column;
    gap: 32px;
  }
  .oct-two-col-section .oct-two-col-column {
    align-items: left;
    text-align: left;
  }

  .oct-two-col-section .oct-two-col-column h2{
    font-size:30px;
    line-height: 40px;;
  }
}

/* Mobile: tighten up padding & gaps */
@media (max-width: 480px) {
  .oct-two-col-section {
    padding: 24px 12px;
  }
  .oct-two-col-section .oct-two-col-columns {
    gap: 24px;
  }
  .oct-two-col-section .oct-two-col-column {
    gap: 12px;
  }
}
.split-image-banner {
  width: 100%;
  overflow: hidden;
}

.split-banner-row {
  display: flex;
  width: 100%;
  height: 100vh;
}

.split-banner-col {
  position: relative;
  flex: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.split-banner-button {
  display: inline-block;
  color: #fff;
  text-align: center;
  font-size: 48px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 30px;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

/* Center button horizontally and near bottom */
.desktop-button-wrapper {
  position: absolute;
  bottom: 45%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align:center;
  width:100%;
}

/* Hide mobile elements by default */
.split-banner-mobile-col {
  display: none;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .split-banner-row {
    flex-direction: column;
    height: auto;
  }

  .split-banner-col {
    display: none;
  }

  .split-banner-mobile-col {
  display: block;
  position: relative;
  margin-bottom: 40px;
}

.split-banner-mobile-col img {
  width: 100%;
  height: auto;
  display: block;
}

.mobile-button-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}


.split-banner-button {
  font-size: 36px;
}


  /* Mobile order toggle */
  .mobile-order-left-first .mobile-left {
    order: 1;
  }

  .mobile-order-left-first .mobile-right {
    order: 2;
  }

  .mobile-order-right-first .mobile-left {
    order: 2;
  }

  .mobile-order-right-first .mobile-right {
    order: 1;
  }
}
@media(max-width:767px)  {
  
.sustainability-report {
  padding: 2rem;
  margin: 0 auto;
}

.sr-header {
  text-align: left;
  margin-bottom: 3rem;
}

.sr-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.sr-header p {
  color: #222d2f;
  margin-top: 0;
  font-size: 1rem;
}

.sr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.sr-column {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-column img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
}

.metric-column {
  text-align: center;
}

.sr-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sr-number {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  font-family:'ManifontGroteskBook';
    color: #222d2f;
}

.sr-description {
  font-size: 8px;
  color: #222d2f;
  line-height: normal;
  max-width: 150px;
}

}
@media(min-width:768px){
.sustainability-report {
  padding: 3%;
  max-width: 95%;
  margin: 0 auto;
}

.sr-header {
  text-align: left;
  margin-bottom: 3rem;
}

.sr-header h2 {
  font-size: 32px;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.sr-header p {
  color: #222d2f;
  margin-top: 0;
  font-size: 24px;
}

.sr-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.sr-column {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-column img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
}

.metric-column {
  text-align: center;
}

.sr-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sr-number {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color:#222d2f;
  font-family:'ManifontGroteskBook';
}

.sr-description {
  font-size: 12px;
  color: #222d2f;
  line-height: 1.4;
  max-width: 150px;
}
  }