/** Shopify CDN: Minification failed

Line 500:0 All "@import" rules must come first

**/
/* =====================
   Root Variables
   ===================== */
:root {
  --growm-color-black: #000000;
  --growm-color-darkgrey: #3d3d3d;
  --growm-color-lightgrey: #bebebe;
  --growm-color-blue: #4a7c9d;
  --growm-color-white: #ffffff;
  --growm-color-gradient1: #406985;
  --growm-color-gradient2: #264b63;
  --growm-color-modal-overlay: rgba(0, 0, 0, 0.5);
  --growm-color-boxed-light: #00000028;
  --growm-color-boxed-blue: #4a7c9dc9;
  
  /* Grid pattern variables */
  --grid-line: rgba(255, 255, 255, 0.1);
  --grid-size: 40px;
}

/* =====================
   Global Resets
   ===================== */
* {
  box-sizing: border-box;
}


/* Prevent browser scroll restoration */
html, body {
  height: auto;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

/* =====================
   Layout Containers
   ===================== */
#landing-page-growm {
  overscroll-behavior-y: none;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: small;

   
}

#background-gradient {
  height: 100vh !important;
  background:
    linear-gradient(
      90deg,
      var(--grid-line) 1px,
      transparent 1px var(--grid-size)
    )
    50% 50% / var(--grid-size) var(--grid-size),
    linear-gradient(
      var(--grid-line) 1px,
      transparent 1px var(--grid-size)
    )
    50% 50% / var(--grid-size) var(--grid-size),
    radial-gradient(circle at bottom right, var(--growm-color-blue) 0%, var(--growm-color-white) 80%);
}

#landing-page {
  /* overscroll-behavior-y: none; */
  width: 100%;
  /* height: 100vh; */
  -webkit-font-smoothing: antialiased;
  /*font-family: 'Poppins', sans-serif;*/
  font-weight: 400;
}
 
.scroll {
  z-index: 0;
}

.section-growm {
  position: relative;
  width: 100% !important;
  max-width: none !important;
}

.section-gap {
  position: relative;
  width: 100%;
}

.section-container {
  height: 100vh;
  position: relative;
  width: 1600px;
  max-width: 80%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
}
  .section-container.top {
    top: 0;
    transform: translate(-50%, 0);
  }
  .section-container.middle {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .section-container.bottom {
    bottom: 0;
    transform: translate(-50%, 0);
  }
  .section-container.sticky {
    position: sticky;
    top: 0;
    width: 1600px;
    max-width: 80%;
    margin: 0 auto;
    left: 0;
    right: 0;
    transform: none;
  }

/* =====================
   Section Backgrounds
   ===================== */
.section-background {
  position: absolute;
  left: 0; right: 0; 
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: inherit;
  background: transparent;
}
  .section-background.cliptopleft { clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 100%); }
  .section-background.cliptopright { clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%); }
  .section-background.clipbottomleft { clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%); }
  .section-background.clipbottomright { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%); }
  .section-background.cliptopbottomleft { clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%); }
  .section-background.cliptopbottomright { clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%); }

/* Section background colors */
.section-growm:nth-child(2) .section-background { 
  height: 100vh;
  background: transparent; 
}
.section-growm:nth-child(3) .section-background { background-color: var(--growm-color-blue); height: 160vh;}
.section-growm:nth-child(4) .section-background { 
  height: 200vh;
  background: transparent;
}

.section-foreground {
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 25vh;
  z-index: 1000;
  background-color: white;
}

/* =====================
   Section Content
   ===================== */
.section-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 10px;
  z-index: 2;
  pointer-events: auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  max-width: 525px;
}
  .section-content.hero { text-align: left; }
  .section-content.left { text-align: left; }
  .section-content.right {
    text-align: right;
    align-items: flex-end;
    /*left: 60%;
    transform: translate(-100%, -50%);*/
  }
  .section-content.centre {
    text-align: center;
    transform: translate(-50%, -50%);
    left: 50%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
    .section-content.centre > .benefits-grid,
    .section-content.centre > .sliding-gallery {
      width: 100%;
      margin-top: 2rem;
    }
  .section-content.dark, .section-content.dark > h2 {
    color: var(--growm-color-white) !important;
  }

.section-content-boxed {
  padding: 2rem;
  background-color: var(--growm-color-boxed-light);
  backdrop-filter: blur(10px);
  z-index: 200;
}
  .section-content-boxed.blue { background-color: var(--growm-color-boxed-blue); }
  .section-content-boxed.dark, .section-content-boxed.dark > h2 { color: var(--growm-color-white) !important; }

/* =====================
   Hero Section
   ===================== */
.hero-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
  z-index: 200;
}
  .hero-container > h2 {
    font-weight: 600;
    font-size: 3.5rem;
  }
  .hero-pretitle, .hero-title, .hero-subtitle {
    text-align: center;
    text-transform: uppercase;
    line-height: 0.8;
  }
  .hero-pretitle, .hero-subtitle { font-size: 1.5rem; }
  .hero-title { font-size: 5rem; font-weight: 600; }
  .hero-container> h2 {
    margin: inherit !important;
    text-transform: uppercase;
    color:   color: var(--growm-color-white) !important;;
  }

.section-hero {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
  .section-hero > h2 { font-size: 8rem; }

/* =====================
   Typography & Links
   ===================== */
.section-content > h1 {
  margin: 0 !important;
  margin-bottom: 0.25em;
  -webkit-font-smoothing: auto;
}
.section-content > h2 {
  margin: 0 !important;
  -webkit-font-smoothing: auto;
}

.section-content-link {
  text-decoration: none !important;
  position: relative;
  display: inline-block;
  font-weight: 600;
}
  .section-content-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transform: scale(0);
    transform-origin: center;
    transition: transform 300ms ease;
  }
  .section-content-link:hover::after { transform: scale(1); }
  .section-content-link.light { color: var(--growm-color-black); }
  .section-content-link.dark { color: var(--growm-color-white); }

.section-content-list {
  list-style: square;
  /* padding: 0; */
  margin: 0;
  padding: 0 1rem;
}
  .section-content-list > li {
    margin-bottom: 0.5rem;
  }

/* =====================
   Buttons
   ===================== */
.button_growmCTA {
  background: none !important;
  color: var(--growm-color-white) !important;
  padding: 10px 20px;
  margin: 0;
  border-radius: 0px;
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid var(--growm-color-white) !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  width: fit-content;
}
  .button_growmCTA::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100.1%;
    background: linear-gradient(to right, var(--growm-color-gradient1) 0%, var(--growm-color-gradient2) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  .button_growmCTA:hover::before { transform: scaleX(1); }

  .button_growmCTA.left {
    margin-left: 0;
  }
  .button_growmCTA.right {
    margin-right: 0;
    align-self: flex-end;
  }

/* =====================
   Canvas
   ===================== */
canvas {
  position: relative !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  isolation: isolate;
}

/*=====================
   Header
   =====================*/
/*Added so it sits in front of the canvas*/
.shopify-section--header{
  z-index: 10;
  position: relative;
}

/* =====================
   Modal Styles
   ===================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--growm-color-modal-overlay);
  z-index: 100;
}

.modal-content {
  position: fixed;
  left: 50%;
  top: 50%;
  max-width: 1000px;
  transform: translate(-50%, -50%) !important;
  color: var(--growm-color-white);
  background-color: transparent;
  border-radius: 0.5rem;
  border: none;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  margin: 0 auto;
  z-index: 101;
}

.modal_video {
  width: 800px !important;
  aspect-ratio: 1/0.5625;
  border-radius: 0.5rem;
}

.modal_image_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.modal_image {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0.5rem !important;
}

.modal_image_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--growm-color-modal-overlay);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0.5rem;
}
  .modal_image_overlay.has-link { cursor: pointer; }
  .modal_image_container:hover .modal_image_overlay { opacity: 1; }

.modal_image_caption {
  font-weight: 100;
  font-size: 5rem;
  text-align: center;
  width: 100%;
  line-height: 1.2;
  white-space: pre-line;
  color: var(--growm-color-white);
  padding: 2rem;
}

/* =====================
   Loading Screen Styles
   ===================== */
.loading-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--growm-color-black);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.loading-logo {
  width: 400px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

iframe { border: none; }

.modal-close-button {
  position: absolute;
  background-color: transparent;
  font-size: 2rem;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--growm-color-darkgrey);
  transition: color 0.2s;
}
  .modal-close-button:hover { color: var(--growm-color-black); }

.modal_info {
  width: 100%;
  height: 100%;
}

/* Scroll Indicator Styles */
@import url('../components/ScrollIndicator.css');

/* =====================
   Responsive Styles
   ===================== */
@media only screen and (max-width: 1200px) {
  .section-content.centre { width: 90%; }
  .caption { font-size: 4em; }
  .section-content > h1 { font-size: 3.5em; }
  .section-content.left > h1 { font-size: 2.5em; }
  .section-content.centre > h2 { font-size: 2em; }
  .section-content.dark > h2 { font-size: 2em; }
  .section-hero { font-size: 7rem; text-align: center; }
  .section-content { justify-content: end; text-wrap: wrap; } /*height: 60%; */
  .section-content.centre { width: 100%; }
  .section-hero > h2 { display: flex; flex-wrap: wrap; justify-content: center; }
  .modal-content { max-width: 90%; width: 90%; }
  .modal_video { width: 100% !important; }
  .modal_image_caption { font-size: 3.5rem; padding: 1.5rem; }
  .loading-logo { font-size: 4rem; }
  .section-growm:nth-child(8) .section-background {
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
  }
}

#canvas-growm {
  /* top: calc((100vw / 100vh - 1) * 50px); */
  /* height: 80vh !important; */
}

@media only screen and (max-width: 800px) {
  .section-content, .section-hero { width: 100%; }
  .section-content, .section-hero {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left !important;
    text-wrap: balance;
    gap: 1rem;
    background: none !important;
  }
  .hero-subtitle, .hero-pretitle { font-size: 1rem; }
  .section-content { height: 80%; justify-content: space-between; text-wrap: wrap; }
  .section-content-boxed { padding: 1rem; }
  .hero-title { font-size: 3rem; }
  .section-content.centre { width: 100%; }
  .hero-container { align-items: center; }
  .caption { font-size: 2.5em; }
  .section-content > h1 { font-size: 2.5em; }
  .section-content.left > h1 { font-size: 2.5em; }
  .section-content.centre > h2 { font-size: 2em; }
  .section-content.dark > h2 { font-size: 2em; }
  .hero-container > h2 { display: flex; flex-wrap: wrap; justify-content: center; font-size: 2rem; }
  .modal-content { max-width: 95%; width: 95%; }
  .modal_video { width: 100% !important; }
  .modal_image_caption { font-size: 2rem; padding: 1rem; }
  .loading-logo { width: 200px; }
  .modal-close-button { font-size: 1.5rem; top: 0.5rem; right: 0.5rem; }
  .button_growmCTA { padding: 8px 16px; font-size: 0.9rem; }
  .section-growm:nth-child(8) .section-background {
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
  }
}

@media only screen and (max-width: 450px) {
  .section-content, .section-hero { width: 100%; }
  .section-content, .section-hero {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left !important;
    text-wrap: balance;
    padding: 0;
    gap: 1rem;
    background: none !important;
  }
  .hero-title { font-size: 2.5rem; }
  .section-content { height: 85%; justify-content: space-between; text-wrap: wrap; font-size: 14px; gap: 14px; line-height: 1.2em }
  .section-content.centre { width: 100%; }
  .section-container.sticky { max-width: 86% }
  .hero-container { align-items: center; }
  .caption { font-size: 2.5em; }
  .section-content > h1 { font-size: 2.5em; }
  .section-content.left > h1 { font-size: 2.5em; }
  .section-content.centre > h2 { font-size: 2em; }
  .section-content.dark > h2 { font-size: 2em; }
  .hero-container > h2 { display: flex; flex-wrap: wrap; justify-content: center; font-size: 1.25rem; line-height: 1.2em }
  .modal-content { max-width: 95%; width: 95%; }
  .modal_video { width: 100% !important; }
  .modal_image_caption { font-size: 2rem; padding: 1rem; }
  .loading-logo { width: 200px; }
  .modal-close-button { font-size: 1.5rem; top: 0.5rem; right: 0.5rem; }
  .button_growmCTA { padding: 6px 14px; font-size: 0.9rem; }
  .section:nth-child(8) .section-background {
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
  }
  .section-background.cliptopleft { clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 100%); }
  .section-background.cliptopright { clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 100%); }
  .section-background.clipbottomleft { clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%); }
  .section-background.clipbottomright { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 97%); }
  .section-background.cliptopbottomleft { clip-path: polygon(0 0, 100% 3%, 100% 97%, 0 100%); }
  .section-background.cliptopbottomright { clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 97%); }
}

#animation-section{
  height: 681vh;
  bottom: 20px;
}
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
  user-select: none;
  z-index: 900;
}
.scroll-indicator.visible {
  opacity: 1;
}
.chevron {
  width: 50px;
  height: 50px;
  color: var(--growm-color-darkgrey);
  margin: 0;
  margin-bottom: -35px;
  display: block;
  transition: color 0.4s linear;
}
.scroll-indicator .chevron:nth-child(1) {
  animation: chevron-color 2s infinite;
}
.scroll-indicator .chevron:nth-child(2) {
  animation: chevron-color 2s infinite 0.25s;
}
.scroll-indicator .chevron:nth-child(3) {
  animation: chevron-color 2s infinite 0.5s;
}
@keyframes chevron-color {
  0% {
    color: var(--growm-color-darkgrey);
  }
  30% {
    color: var(--growm-color-lightgrey);
  }
  60% {
    color: var(--growm-color-darkgrey);
  }
  100% {
    color: var(--growm-color-darkgrey);
  }
} 

/* =====================
   Animation and scrolling
   ===================== */
.sticky-wrapper {
  position: sticky;
  top: 0;
  height: 681vh;
  width: 100%;
  overflow: visible; /* keep Canvas from spilling out */
    /* z-index: 100;      create a new stacking context */
}

.sticky-bg {
  /* position: absolute; */
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: top;
  /* z-index: 0; */
}

/* Now your <Canvas> inside #landing-page can be 100% × 100vh */
/* .landing-page-growm, 
.landing-page-growm canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;     /*above the overlay sections*/
/* }  */

