/** Shopify CDN: Minification failed

Line 25:27 Expected identifier but found whitespace
Line 25:31 Unexpected "{"
Line 25:40 Expected ":"
Line 26:27 Expected identifier but found whitespace
Line 26:31 Unexpected "{"
Line 26:40 Expected ":"
Line 27:23 Expected identifier but found whitespace
Line 27:31 Unexpected "{"
Line 27:40 Expected ":"
Line 28:20 Expected identifier but found whitespace
... and 19 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:aks-lp-hero (INDEX:3) */
/* ============================================================
   AKS LP Hero — CSS Custom Properties
   ============================================================ */
.aks-lp-hero {
  --aks-hero-eyebrow-color:   {{ section.settings.eyebrow_color }};
  --aks-hero-heading-color:   {{ section.settings.heading_color }};
  --aks-hero-sub-color:       {{ section.settings.subheading_color }};
  --aks-hero-cta-bg:          {{ section.settings.cta_bg_color }};
  --aks-hero-cta-text:        {{ section.settings.cta_text_color }};
  --aks-hero-cta-hover-bg:    {{ section.settings.cta_hover_color }};
  --aks-hero-mobile-bg:       {{ section.settings.mobile_bg_color }};
  --aks-hero-min-height-desk: {{ section.settings.min_height_desktop }}px;
  --aks-hero-min-height-mob:  {{ section.settings.min_height_mobile }}px;
}

/* ============================================================
   Section wrapper
   ============================================================ */
.aks-lp-hero {
  position: relative;
  overflow: hidden;
  min-height: var(--aks-hero-min-height-desk);
  display: flex;
  align-items: center;
  background-color: var(--aks-hero-mobile-bg); /* fallback */
}

/* ============================================================
   Background layer (desktop only)
   ============================================================ */
.aks-lp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.aks-lp-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.aks-lp-hero__bg-placeholder {
  width: 100%;
  height: 100%;
}

.aks-lp-hero__overlay {
  position: absolute;
  inset: 0;
  background: #ffffff;
  pointer-events: none;
}

/* ============================================================
   Inner layout — two columns on desktop
   ============================================================ */
.aks-lp-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* ============================================================
   Copy column
   ============================================================ */
.aks-lp-hero__copy {
  flex: 0 0 42%;
  max-width: 520px;
}

.aks-lp-hero__eyebrow {
  font-size: 1rem;
  font-weight: 600;
  color: var(--aks-hero-eyebrow-color);
  margin: 0 0 0.5rem;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.aks-lp-hero__heading {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 800;
  color: var(--aks-hero-heading-color);
  line-height: 1.1;
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;
}

.aks-lp-hero__subheading {
  font-size: 1rem;
  color: var(--aks-hero-sub-color);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

/* Feature badges / pills */
.aks-lp-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
}

.aks-lp-hero__badge {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--aks-hero-sub-color);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.aks-lp-hero__badge::before {
  content: '·';
  color: var(--aks-hero-sub-color);
  opacity: 0.5;
  display: none; /* shown via JS or nth-child */
}

.aks-lp-hero__badge:not(:last-child)::after {
  content: '·';
  margin-left: 0.35rem;
  opacity: 0.5;
}

/* CTA Button */
.aks-lp-hero__cta {
  display: inline-block;
  background: var(--aks-hero-cta-bg);
  color: var(--aks-hero-cta-text);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.aks-lp-hero__cta:hover,
.aks-lp-hero__cta:focus-visible {
  background: var(--aks-hero-cta-hover-bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.22);
  outline: 2px solid var(--aks-hero-cta-bg);
  outline-offset: 2px;
}

/* ============================================================
   Media / product image column
   ============================================================ */
.aks-lp-hero__media {
  flex: 0 0 56%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.aks-lp-hero__product-img {
  width: 100%;
  max-width: 740px;
  height: auto;
  display: block;
  object-fit: contain;
}

.aks-lp-hero__product-placeholder {
  width: 100%;
  max-width: 600px;
  height: auto;
}

/* ============================================================
   Tablet — 750px–1099px
   ============================================================ */
@media screen and (max-width: 1099px) {
  .aks-lp-hero__copy {
    flex: 0 0 46%;
  }

  .aks-lp-hero__media {
    flex: 0 0 52%;
  }

  .aks-lp-hero__heading {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
  }
}

/* ============================================================
   Mobile — ≤749px
   Background image hidden; solid bg color used instead.
   Layout stacks: copy top-centered, image below.
   ============================================================ */
@media screen and (max-width: 749px) {
  .aks-lp-hero {
    min-height: var(--aks-hero-min-height-mob);
    background-color: var(--aks-hero-mobile-bg);
    align-items: flex-start;
  }

  /* Hide the desktop background on mobile */
  .aks-lp-hero__bg {
    display: none;
  }

  .aks-lp-hero__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 2.5rem;
    padding-bottom: 0;
    gap: 1.5rem;
  }

  .aks-lp-hero__copy {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .aks-lp-hero__eyebrow {
    font-size: 0.875rem;
  }

  .aks-lp-hero__heading {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .aks-lp-hero__subheading {
    font-size: 0.9375rem;
  }

  .aks-lp-hero__badges {
    justify-content: center;
  }

  .aks-lp-hero__cta {
    font-size: 1rem;
    padding: 0.875rem 2rem;
    width: auto;
  }

  .aks-lp-hero__media {
    flex: none;
    width: 100%;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
  }

  .aks-lp-hero__product-img {
    width: 100%;
    max-width: 100%;
    /* Slight bottom bleed for visual weight */
    margin-bottom: 0;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .aks-lp-hero__cta {
    transition: none;
  }
}
/* END_SECTION:aks-lp-hero */

/* START_SECTION:nws-lp-seen-featured-post (INDEX:79) */
.nws-featured-post .page-width {
  max-width: 1360px;
}
.nws-featured-post {
 background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23000000' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
 
}  
.nws-featured-post .col-md-3 {
  width: 25%;
  padding: 0 15px;
}
.nws-featured-post .post-box {
  background-color: #fff;
  box-shadow: 0 0 12px -4px #ccc;
  border-radius: 5px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.nws-featured-post .img-box {
  position: relative;
  padding-bottom: 75%;
  display: block;    
}
.nws-featured-post .img-box .post-img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  object-fit: cover;  
  border-radius: 15px;  
}
.nws-featured-post .icon-box {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(255,255,255,0.5);
  padding: 5px;
  border-radius: 8px;
  display: flex;
  align-items: center;
}
.nws-featured-post .post-content .quote-box {
  background-color: #FDF7EB;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.nws-featured-post .post-content .quote-box p {
  margin: 0;
}
.nws-featured-post .post-content .quote-box br {
  display: none;
}  
.nws-featured-post .post-content .quote-box strong {
  display: block;
  margin-top: 10px;
}
  
.nws-featured-post .icon-box img {
  max-width: 35px;
}
.nws-featured-post .post-content {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nws-featured-post .top-content span {
  font-size: 14px;
  opacity: 0.6;
}  
.nws-featured-post .post-content a {
  font-size: 14px;
  background: #fff;
  font-weight: 500;
  color: #000;
  border-radius: 30px;
  font-family: Muli;
  transition: all .3s ease-in-out 0s;
  border: 1px solid transparent;
  display: block;
  padding: 10px 30px;
  text-align: center;
  border: 1px solid #ccc;
}
.nws-featured-post .post-content a:hover {
  background-color:  #000;
  color: #fff;
  border-color: transparent;
}  
.mfp-wrap .mfp-container .mfp-content {
  background: #fff;
  padding: 15px 20px 20px;
  border-radius: 6px;
}
.mfp-wrap .mfp-iframe-scaler {
  position: relative;
}
.mfp-wrap .mfp-iframe-holder .mfp-close {
  top: 0;
  width: 40px;
  height: 40px;
background: linear-gradient(154deg, rgba(186, 27, 59, 1), rgba(186, 27, 59, 1) 100%);
  right: 0px;
  text-align: center;
  padding-right: 0px;
}
.mfp-wrap .mfp-iframe-scaler iframe {
  margin-top: 0;
}  

@media(max-width: 767px) {
  .nws-featured-post .col-md-3 {
    width: 100%;
    padding: 0 5px;
    margin-top: 20px;
  }
  .nws-featured-post .col-md-4:first-child {
    margin: 0;
  }
}
/* END_SECTION:nws-lp-seen-featured-post */

/* START_SECTION:revy-contents (INDEX:96) */
.revy-custom-content-section-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 10px;
    max-width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
/* END_SECTION:revy-contents */