/* FONTS */
@font-face {
  font-family: 'CANNAHeadingBlack';
  src: url('../../assets/fonts/cannaheading-black-webfont.woff2') format('woff2'),
       url('../../assets/fonts/cannaheading-black-webfont.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'CANNAHeadingLight';
  src: url('../../assets/fonts/cannaheading-light-webfont.woff2') format('woff2'),
       url('../../assets/fonts/cannaheading-light-webfont.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'CANNATextRegular';
  src: url('../../assets/fonts/cannatextregular-webfont.woff2') format('woff2'),
       url('../../assets/fonts/cannatextregular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'CANNATextBold';
  src: url('../../assets/fonts/cannatextbold-webfont.woff2') format('woff2'),
       url('../../assets/fonts/cannatextbold-webfont.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Variables */
:root {
  --max-width: 1360px;
  --color-primary: #00685e;
  --color-secondary: #00342f;
  --color-accent: 60 100% 41%;
  --color-light-green-1: #F1F6F6;
  --color-light-green-2: #E8F1F1;
  --color-light-green-3: #E2EDEC;
  --color-light-green-4: #C6DBDA;
  --color-light-green-5: #8EB8B7;
  --color-light-accent: #fff;
  --color-dark-green-1: #004444;
  --color-dark-green-2: #001a18;
}

/* GENERAL */
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  margin: 0;
  scroll-behavior: smooth;
  font-size: .625em;
}
body {
  font-family: 'CANNATextRegular', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5em;
  position: relative;
  margin: 0;
  color: var(--color-primary);
}
@media handheld, only screen and (min-width: 835px) {
  body {
	font-size: 1.8rem;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'CANNAHeadingBlack', sans-serif;
  font-style: normal;
  font-weight: 800;
  line-height: 1em;
  text-transform: uppercase;
  text-wrap: balance;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}
h1 {
  margin-top: 0;
  font-size: 4rem;
  letter-spacing: -0.2rem;
  line-height: 0.8em;
  margin-bottom: 1.5rem;
}
h2, blockquote {
  font-size: 3rem;
  margin: 0.5rem 0 1rem;
  color: var(--color-primary);
}
h3 {
  font-size: 2rem;
  margin: 0.5rem 0;
}
h4 {
  font-size: 1.8rem;
  margin: 0.5rem 0;
}
@media handheld, only screen and (min-width: 580px) {
  h1 {
	font-size: 6rem;
  }
  h2, blockquote {
	font-size: 4rem;
  }
  h3 {
	font-size: 2.4rem;
  }
  h4 {
	font-size: 2rem;
  }
}

strong, .strong {
  font-family: 'CANNATextBold', sans-serif;
}
p {
  margin: 1.8rem 0;
  color: var(--color-secondary);
}
ul li {
  color: var(--color-secondary);
}

.section-dark,
.section-dark p,
.section-dark ul li {
  color: var(--color-light-green-3);
}
.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--color-light-accent);
}

/* --- LINKS --- */
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: var(--color-dark-green-2);
  text-decoration: underline;
}
a.white {
  color: var(--color-light-accent);
  text-decoration: none;
}
a.white:hover {
  color: var(--color-light-green-1);
  text-decoration: underline;
}

/* --- BUTTON COMPONENTS --- */
input[type="submit"],
.btn {
  color: var(--color-light-accent);
  text-transform: uppercase;
  padding: 1.2rem 3rem;
  background: var(--color-primary);
  display: inline-block;
  text-align: center;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  font-family: 'CANNATextBold', sans-serif;
  border-radius: 6rem;
  transition: all 0.3s ease;
}
input[type="submit"]:hover,
.btn:hover {
  color: #fff;
  background: var(--color-secondary);
  text-decoration: none;
}
@media handheld, only screen and (min-width: 580px) {
  input[type="submit"],
  .btn {
    height: 50px;
    font-size: 1.6rem;
    min-width: fit-content;
    white-space: nowrap;
  }
}

input[type="submit"].btn-white,
.btn-white {
  text-align: center;
  background: var(--color-light-accent);
  color: var(--color-primary);
}
input[type="submit"].btn-white:hover,
.btn-white:hover {
  background: var(--color-primary);
  color: var(--color-light-accent);
}

.btn-hanging {
  padding: 1rem 2rem 1rem;
  background-color: hsl(var(--color-accent) / 0.8);
  border-radius: 0 0 2rem 2rem;
}

.btn-outline {
  padding: 1rem 3rem 1.2rem;
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-light-accent);
}

.btn-outline-white {
  padding: 1rem 3rem 1.2rem;
  background: transparent;
  color: var(--color-light-accent);
  border: 2px solid var(--color-light-accent);
}
.btn-outline-white:hover {
  background: var(--color-light-accent);
  color: var(--color-primary);
}

/* --- OTHER COMPONENTS --- */
img {
  max-width: 100%;
  height: auto;
}
select,
textarea,
input[type="text"],
input[type="email"],
input[type="date"] {
  width: 100%;
  padding: 1rem;
  font-size: 1.8rem;
  font-family: 'CANNATextRegular', sans-serif;
  font-style: normal;
  border: none;
  border-radius: 0.5rem;
}
select {
  max-width: 50%;
}
.contact-form label {
  font-weight: bold;
}
.contact-form label .required {
  color: red;
}
::selection {
  background: var(--color-primary);
  color: #fff;
}

.subtitle {
  margin-bottom: 3rem;
  margin-top: 0;
  font-family: 'CANNAHeadingLight', sans-serif;
  font-size: 2.6rem;
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.alert {
  margin-bottom: 1rem;
  padding: 0.5rem 1.5rem;
  border-radius: 3rem;
  text-align: center;
}
.alert-success {
  color: green;
  background: lightgreen;
}
.alert-error {
  color: red;
  background: #ffcece;
}

/* --- GRID --- */
.grid-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: 4rem;
  text-align: left;
}
.grid-columns-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media handheld, only screen and (min-width: 1040px) {
  .grid-columns-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 4rem;
  }
}
.grid-columns-4 {
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}
.grid-columns .card-column {
  display: flex;
  flex-direction: column;
}
.card-column .btn-edge {
  margin-top: auto;
}
.card-column .btn-edge .btn {
  width: 100%;
}
@media handheld, only screen and (min-width: 960px) {
  .grid-columns-one-third {
    grid-template-columns: minmax(min(420px, 100%), 1fr) 2fr;
  }
  .grid-columns-two-third {
    grid-template-columns: 2fr minmax(min(420px, 100%), 1fr);
  }
}
.flex-horizontal {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
@media handheld, only screen and (max-width: 580px) {
  .flex-horizontal {
	flex-direction: column;
  }
}
.flex-horizontal.center {
  justify-content: center;
  gap: 3rem;
}
.flex-horizontal .grow {
  flex-grow: 1;
}
.flex-horizontal .grow select {
  max-width: 100%;
}


/* LAY-OUT */
/* Sections */
.section {
  padding: 5rem 0;
}
.section .row {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
.section .row.wide {
  max-width: 1800px;
}
.section .row.narrow {
  max-width: 960px;
}
.section .grid-columns .column-left,
.section .grid-columns .column-right {
  align-self: center;
}
.section .grid-columns .column-left.align-start,
.section .grid-columns .column-right.align-start {
  align-self: start;
}
@media handheld, only screen and (min-width: 580px) {
  .section {
	padding: 8rem 0;
  }
}
@media handheld, only screen and (min-width: 835px) {
  .section {
	padding: 10rem 0;
  }
}

/* --- HEADER --- */
.header {
  min-height: 75vh;
  text-align: center;
  background: var(--color-secondary);
  background-size: cover;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
  position: relative;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo {
  max-width: 340px;
  width: 100%;
}
.navbar .main-menu {
  display: flex;
  align-self: start;
  list-style: none;
  margin: 0;
  padding: 1rem 0 0;
  gap: 3rem;
  font-size: 1.6rem;
}
.navbar .main-menu .menu-item a {
  color: var(--color-light-accent);
  text-transform: uppercase;
}
.navbar .main-menu .menu-item a::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 0.5rem;
  background: center no-repeat;
  background-size: contain;
}
.navbar .main-menu .menu-item--1 a::before {
  background-image: url('../../assets/img/icon-home.svg');
}
.navbar .main-menu .menu-item--2 a::before {
  background-image: url('../../assets/img/icon-login.svg');
}
.navbar .main-menu .menu-item--3 a::before {
  background-image: url('../../assets/img/icon-consult.svg');
}
.navbar .main-menu .btn-hanging {
  margin-top: -1rem;
}
.menu-toggle {
  display: none;
}
.hamburger {
  display: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header .grid-columns {
    text-align: center;
  }
  .navbar .logo {
	max-width: 220px;
	margin-left: auto;
	margin-right: auto;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: start;
    margin-top: 2rem;
    width: 30px;
    height: 21px;
    z-index: 100;
  }
  .hamburger span {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  .main-menu {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    background-color: #222;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease-in-out;
    z-index: 99;
  }
  .main-menu li {
    padding: 1rem;
    font-size: 2rem;
  }
  .main-menu li .btn-hanging {
    margin-top: 0;
    font-size: 2rem;
    padding: 1.5rem 2rem;
    border-radius: 6rem;
  }
  .header:has(.menu-toggle:checked) {
    clip-path: none;
  }
  .menu-toggle:checked ~ .main-menu {
    right: 0;
  }
  .menu-toggle:checked ~ .hamburger span {
    background-color: white;
  }
  .menu-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .menu-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

@media handheld, only screen and (min-width: 835px) {
  .header .section {
	font-size: 1.8rem;
	line-height: 1.5em;
  }
}
.header .section p:first-child {
  margin-top: 0;
}
@media handheld, only screen and (min-width: 920px) {
  .header {
	clip-path: polygon(0 0, 100% 0, 100% 70%, 0% 100%);
  }
  .header .grid-columns {
	margin-top: -16rem;
  }
}
@media handheld, only screen and (min-width: 1200px) {
  .header {
	clip-path: polygon(0 0, 100% 0, 100% 60%, 0% 100%);
  }
}

/* header video */
.header-video {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.header-video video,
.header-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.header-video::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,26,24,0.6) 15%, rgba(0,26,24,0.75) 50%);
  left: 0;
  top: 0;
}

/* Sub-pages */
.page-sub .header {
  min-height: 60vh;
}
.page-sub .navbar .logo {
  max-width: 240px;
}
@media handheld, only screen and (min-width: 920px) {
  .page-sub .header .grid-columns {
    margin-top: -12rem;
  }
}

/* --- COMPONENT INTRO CARD --- */
.component-intro-card {
  position: relative;
  z-index: 10;
  margin-top: -6rem;
  margin-left: 2rem;
  margin-right: 2rem;
}
@media handheld, only screen and (min-width: 920px) {
  .component-intro-card {
	margin-top: -20rem;
  }
}
@media handheld, only screen and (min-width: 1200px) {
  .component-intro-card {
	margin-top: -28rem;
  }
}
@media handheld, only screen and (max-height: 840px) {
  .component-intro-card {
	margin-top: -6rem;
  }
}
@media handheld, only screen and (min-width: 1420px) {
  .component-intro-card {
	margin-left: 0;
	margin-right: 0;
  }
}
.component-intro-card .row {
  background: var(--color-primary);
  color: var(--color-light-accent);
  border-radius: 0 6rem 6rem 6rem;
  display: grid;
  padding: 6rem 3rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.component-intro-card .grid-icon-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.component-intro-card .grid-icon-tiles .icon-tiles-item::before {
  content: '';
  width: 96px;
  height: 96px;
  margin-bottom: 1rem;
  display: block;
  background: var(--color-dark-green-1) center no-repeat;
  border-radius: 9rem;
}
.component-intro-card .grid-icon-tiles .icon-tiles-item--1::before {
  background-image: url('../../assets/img/icon-integrated-system.svg');
}
.component-intro-card .grid-icon-tiles .icon-tiles-item--2::before {
  background-image: url('../../assets/img/icon-results.svg');
}
.component-intro-card .grid-icon-tiles .icon-tiles-item--3::before {
  background-image: url('../../assets/img/icon-scale.svg');
}
.component-intro-card .grid-icon-tiles .icon-tiles-item--4::before {
  background-image: url('../../assets/img/icon-expert-support.svg');
}
.component-intro-card .grid-icon-tiles .icon-tiles-item h3 {
  font-size: 1.8rem;
}
@media handheld, only screen and (min-width: 1420px) {
  .component-intro-card .grid-icon-tiles .icon-tiles-item h3 {
    font-size: 2rem;
  }
}
.component-intro-card .grid-icon-tiles .icon-tiles-item p {
  margin-top: 1rem;
  font-size: 1.6rem;
}

/* --- COMPONENT HERO HIGHLIGHT --- */
.component-hero-highlight {
  background: var(--color-primary) url('../../assets/img/bg-hero-highlight-home.jpg') center no-repeat;
  background-size: cover;
  position: relative;
}
.component-hero-highlight::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,26,24,0) 15%, rgba(0,26,24,0.85) 50%);
  left: 0;
  top: 0;
}
@media handheld, only screen and (max-width: 919px) {
  .component-hero-highlight::after {
	background: linear-gradient(to right, rgba(0,26,24,0.80) 15%, rgba(0,26,24,0.80) 50%);
  }
}
.component-hero-highlight .row {
  z-index: 20;
  position: relative;
}
.component-hero-highlight ol {
  columns: 2 200px; 
  column-gap: 2rem;
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}
.component-hero-highlight ol li {
  break-inside: avoid;
  padding: 0.5rem 0 2rem;
}
.component-hero-highlight ol li::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 36px;
  margin-right: 1rem;
  margin-bottom: -1rem;
  background: url('../../assets/img/icon-check-hexagon.svg') center no-repeat;
  background-size: cover;
}

/* --- COMPONENT CARDS WIDE --- */
.component-cards-wide .card-column {
  padding: 3rem;
  border-radius: 5px;
  background: var(--color-light-green-2);
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(232,241,241,1) 100%);
}
.component-cards-wide .card-column h3::before {
  content: '';
  width: 88px;
  height: 88px;
  display: block;
  margin-top: -3rem;
  margin-bottom: 1.5rem;
  background: url('../../assets/img/icon-consistency-scale.svg') center no-repeat;
  background-size: contain;
}
.component-cards-wide .card-column--2 h3::before {
  background-image: url('../../assets/img/icon-performance.svg');
}
.component-cards-wide .card-column--3 h3::before {
  background-image: url('../../assets/img/icon-traceability.svg');
}
.component-cards-wide .card-column--4 h3::before {
  background-image: url('../../assets/img/icon-commercial-environments.svg');
}
.component-cards-wide .card-column .btn {
  text-align: left;
  position: relative;
}
.component-cards-wide .card-column .btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: url('../../assets/img/icon-arrow-right.svg') center no-repeat;
  background-size: contain;
  text-align: right;
  transition: all 0.3s ease;
}
.component-cards-wide .card-column .btn:hover::after {
  right: 1rem;
}

/* --- COMPONENT BENEFITS ARROW --- */
.component-benefits-arrow {
  position: relative;
  width: 100%;
  background-color: var(--color-light-green-2);
  overflow: hidden;
}
.banner-container {
  display: flex;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  min-height: 480px;
  position: relative;
  z-index: 2;
}
.content-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem 1rem;
}
.content-col .btn {
  max-width: fit-content;
}
.content-col ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0 2.5rem 0;
}
.content-col li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.content-col li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 12px;
  background-image: url('../../assets/img/icon-arrow-right.svg');
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.quote-col {
  flex: 1.5;
  display: flex;
  align-items: center;
  padding-left: 12rem;
  padding-right: 1rem;
}
.quote-container {
  max-width: 500px;
  margin: 0 auto;
}
.quote-icon {
  font-size: 10rem;
  font-family: 'CANNAHeadingBlack', sans-serif;
  color: hsl(var(--color-accent) / 1);
  line-height: 0.4em;
  display: block;
  margin-bottom: -1rem;
}
blockquote {
  line-height: 1em;
  margin: 0;
  font-family: 'CANNAHeadingBlack', sans-serif;
  text-transform: uppercase;
  color: var(--color-light-accent);
}
.image-bg-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: calc(50% - (var(--max-width) / 2) + (var(--max-width) / 2.5)); 
  z-index: 1;
  background: linear-gradient(rgba(0, 90, 91, 0.1), rgba(0, 90, 91, 0.1)), 
              url('../../assets/img/bg-product-range.jpg') center/cover no-repeat;
  clip-path: polygon(40px 0%, 100% 0%, 100% 100%, 40px 100%, 0% 50%);
}
@media (max-width: 1200px) {
  .image-bg-layer {
    left: 40%; 
  }
}
@media (max-width: 992px) {
  .banner-container {
    flex-direction: column;
  }
  .content-col, .quote-col {
    padding: 4rem 2rem;
  }
  .quote-col {
    background: linear-gradient(rgba(0, 90, 91, 0.1), rgba(0, 90, 91, 0.1)), 
                url('../../assets/img/bg-product-range.jpg') center/cover no-repeat;
  }
  .image-bg-layer {
    display: none;
  }
}

/* --- COMPONENT CTA STEPS --- */
.component-cta-steps {
  background: var(--color-light-green-1);
  border-radius: 5px;
  display: flex;
  overflow: hidden;
  position: relative;
}
.cta-steps-wrapper {
  flex: 3;
  padding: 3rem;
  position: relative;
  z-index: 2;
}
.cta-steps-wrapper::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 0;
  width: 58px;
  height: 100%;
  background-color: var(--color-light-accent);
  background: url('../../assets/img/icon-arrow-large-right-white.svg') center no-repeat;
  background-size: cover;
  z-index: 3;
}
.cta-steps-grid {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}
.cta-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  font-size: 1.6rem;
}
.cta-step::before {
  content: '';
  width: 100%;
  max-width: 48px;
  height: 48px;
  display: block;
  background: url('../../assets/img/icon-consult-step-1.svg') center no-repeat;
  background-size: contain;
}
.cta-step--2::before {
  background-image: url('../../assets/img/icon-consult-step-2.svg');
}
.cta-step--3::before {
  background-image: url('../../assets/img/icon-consult-step-3.svg');
}
.banner-action {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem 3rem 2rem;
  position: relative;
}
.banner-action::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1020px) {
  .component-cta-steps {
    flex-direction: column;
  }
  .cta-steps-wrapper::after {
    display: none;
  }
  .cta-steps-grid {
    flex-direction: column;
    gap: 20px;
  }
  .banner-action {
    clip-path: none;
    margin-left: 0;
    padding: 25px;
    background-color: var(--color-light-green-3);
  }
}

/* Section 4 */
.component-product-range {
  overflow: hidden;
  background: url('../../assets/img/bg-products.jpg') center no-repeat;
  background-size: cover;
}
.component-product-range h2 {
  color: var(--color-light-accent);
}
.component-product-range .intro {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.8rem;
  margin-bottom: 4rem;
  line-height: 1.5em;
  color: var(--color-light-green-3);
}
@media handheld, only screen and (min-width: 835px) {
  .component-product-range .intro {
	font-size: 2rem;
  }
}
.product-range-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media handheld, only screen and (min-width: 768px) {
  .product-range-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 2rem;
  }
}
.product-range-wrapper .product-range {
  display: flex;
  flex-direction: column;
  background: var(--color-light-green-1);
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.15);
  overflow: hidden;
}
.product-range .product-img {
  padding: 1rem 2rem;
  text-align: center;
  background: var(--color-light-accent);
  border-radius: 0 0 3rem 3rem;
}
.product-range .product-txt {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-range .product-txt h3 {
  color: var(--color-primary);
}
.product-range .product-txt ul {
  margin-top: auto;
  margin-bottom: 0;
  padding-left: 0;
  list-style-position: inside;
}
.product-range .product-txt ul::before {
  content: '';
  display: block;
  margin-bottom: 1rem;
  width: 10rem;
  height: 4px;
  background: var(--color-light-green-5);
}
.product-range .product-txt ul li {
  padding-left: 0;
}
.product-range .product-txt p,
.product-range .product-txt ul li {
  color: var(--color-primary);
}

/* COMPONENT FORM */
.component-form {
  text-align: center;
  padding-bottom: 6rem;
}
.component-form .contact-form .form-item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.component-form .contact-form .form-item label {
  align-self: center;
  text-align: left;
  font-family: 'CANNATextBold', sans-serif;
}
.component-form .contact-form .form-item-submit {
  margin: 3rem 0 0;

}
.component-form .contact-form .form-item-submit input {
  grid-column: 1;
  width: 100%;
  max-width: 280px;
}

/* --- COMPONENT FAQ ACCORDION --- */
.faq-container {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.faq-container h2 {
  padding: 20px 24px;
  margin: 0;
  font-size: 24px;
  border-bottom: 1px solid #e0e0e0;
}
.faq-item {
  border-bottom: 1px solid #e0e0e0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  background-color: transparent;
  border: none;
  text-align: left;
  width: 100%;
  padding: 20px 24px;
  cursor: pointer;
  color: var(--color-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}
.faq-question:hover {
  background-color: #f9f9f9;
}
.faq-icon {
  font-size: 2.2rem;
  font-weight: bold;
  color: hsl(var(--color-accent) / 1);
  font-family: 'CANNATextBold', sans-serif;
  border: 2px solid hsl(var(--color-accent) / 1);
  border-radius: 6rem;
  height: 20px;
  min-width: 20px;
  width: 20px;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1em;
  transition: transform 0.3s ease-in-out;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
  padding: 0 24px;
  background-color: #f9f9f9;
}
.faq-item.active .faq-answer {
  max-height: 400px; 
  padding-bottom: 1rem;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* --- FOOTER --- */
.footer {
  background: var(--color-dark-green-1);
  position: relative;
}
.footer .grid-col--1 {
  order: 1;
  text-align: center;
}
.footer .grid-col--2 {
  order: 0;
}
.footer .grid-col--3 {
  order: 2;
  text-align: center;
}
.footer .logo-wrapper {
  display: flex;
  flex-direction: column;
}
.footer .logo {
  max-width: 240px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.footer .copy {
  margin-top: auto;
  color: var(--color-light-green-4);
  font-size: 1.4rem;
}
.footer .copy a {
  color: var(--color-light-green-4);
}
.footer .logo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.footer h2, .footer h3 {
  color: var(--color-light-accent);
}
.footer h3 {
  margin-bottom: 1rem;
}
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer ul li {
  margin: 1rem 0;
}
.footer .grid-col--3 {
  display: flex;
  flex-direction: column;
}
.footer .grid-col--3 .btn {
  max-width: fit-content;
  align-self: center;
}
.footer .socials {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}
.footer .socials .linkedin {
  width: 32px;
  height: 32px;
  display: inline-block;
  background: url('../../assets/img/icon-socials-linkedin.svg') center no-repeat;
  background-size: contain;
}
@media handheld, only screen and (min-width: 1040px) {
  .footer .grid-col--1 {
	order: 0;
	text-align: left;
  }
  .footer .grid-col--2 {
	order: 1;
  }
  .footer .grid-col--3 {
    text-align: right;
  }
  .footer .grid-col--3 .btn {
    align-self: end;
  }
  .footer .socials {
    margin-top: auto;
    justify-content: end;
  }
}

/* MARGINS */
.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 1.5rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mt-4 {
  margin-top: 6rem;
}
.mt-5 {
  margin-top: 9rem;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 1.5rem;
}
.mb-3 {
  margin-bottom: 3rem;
}
.mb-4 {
  margin-bottom: 6rem;
}
.mb-5 {
  margin-bottom: 9rem;
}

/* PADDINGS */
.pt-0 {
  padding-top: 0;
}
.pt-1 {
  padding-top: 1rem;
}
.pt-2 {
  padding-top: 1.5rem;
}
.pt-3 {
  padding-top: 3rem;
}
.pt-4 {
  padding-top: 6rem;
}
.pt-5 {
  padding-top: 9rem;
}
.pb-0 {
  padding-bottom: 0;
}
.pb-1 {
  padding-bottom: 1rem;
}
.pb-2 {
  padding-bottom: 1.5rem;
}
.pb-3 {
  padding-bottom: 3rem;
}
.pb-4 {
  padding-bottom: 6rem;
}
.pb-5 {
  padding-bottom: 9rem;
}

/* TEXT ALIGNMENT */
.txt-align-left {
  text-align: left;
}
.txt-align-center {
  text-align: center;
}
.txt-align-right {
  text-align: right;
}
