html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}
:root {
	--brand-color: #fc5800;
	--brand-color-light: #e08849;
	--text-color: #1c2331;
	--secondary-color: #ebe9e8;
	--accent-color: #d01c1c;
	--light-color: #ffffff;
	--ratings-color: #ffc40d;
	--normal-text: clamp(16px, 1.46vw, 23px);
	--small-text: clamp(13px, 1.1vw, 16px);
	--big-text: clamp(20px, 2.6vw, 38px);
	--header-text: clamp(25px, 3.5vw, 45px);
	--big-header-text: clamp(40px, 3.68vw, 53px);
	--section-margin: min(20vw, 200px);
	--element-margin: min(5vw, 1.5rem);
	--normal-radius: 10px;
}
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: "Poppins", sans-serif;
	color: var(--text-color);
	overflow-x: hidden;
	font-size: var(--font-1x);
	line-height: 1.5;
}
img {
	max-width: 100%;
}
h2.section-header {
	font-size: var(--big-text);
    text-transform: uppercase;
	text-align: center;
}
p.section-header-text {
	font-size: var(--normal-text);
	width: 90vw;
    max-width: 800px;
    margin: 1em auto;
}
.section-container {
	width: 90vw;
	max-width: 1440px;
	margin: 0 auto;
}
.columns {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}
.columns > * {
	flex-basis: 95%;
	flex-grow: 1;
}
@media (min-width: 769px) {
	.ratio-50-50 > * {
		flex-basis: 45%;
	}
	.ratio-40-60 > *:nth-child(1) {
		flex-basis: 35%;
	}
	.ratio-40-60 > *:nth-child(2) {
		flex-basis: 55%;
	}
	.ratio-30-70 > *:nth-child(1) {
		flex-basis: 25%;
	}
	.ratio-30-70 > *:nth-child(2) {
		flex-basis: 65%;
	}
	.ratio-30-30-30 > * {
		flex-basis: 25%;
	}
}

.mainHeader {
	position: fixed;
	width: 100%;
	z-index: 1000;
	transition: padding .3s ease .3s, height .3s ease .3s, background .3s ease .3s;
	height: 80px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.mainHeader > div {
	padding: clamp(10px,.1vw,20px) clamp(15px,.25vw,50px);
	padding: clamp(10px,.1vw,20px) 0;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: padding .3s ease .3s, height .3s ease .3s, background .3s ease .3s;
}
.main-navbar-sticky.scroll-down .main-navbar {
	transform: translate3d(0, -100%, 0);
}

.main-navbar-sticky .mainHeader {
	height: 50px;
	background: rgba(255,255,255,.9);
	border-bottom: 1px solid var(--accent-color);
	backdrop-filter: blur(3px);
}
.main-navbar-sticky .mainHeader > div {
	height: 50px;
}
.mainHeader .logo svg {
	fill: var(--light-color);
	width: clamp(100px, 12.41vw, 170px);
	transition: width .3s ease .3s, fill .3s ease .3s;
}
.main-navbar-sticky .mainHeader .logo svg {
	width: clamp(70px, 9.41vw, 130px);
	fill: var(--text-color);
}
.mainHeader .nav-links li {
	font-size: var(--font-1x);
	transition: font-size .3s ease-in-out;
}
.mainHeader.sticky .nav-links li {
	font-size: 1rem;
}
.mainHeader.sticky .header-social-links > * {
	width: 20px;
}
.nav-links {
	display: flex;
	align-items: center;
	list-style: none;
	gap: 10px;
}
.nav-links a {
	padding: 10px 10px;
	text-decoration: none;
	color: var(--light-color);
	text-transform: uppercase;
	font-weight: 500;
	transition: all 0.3s ease .3s;
}
.main-navbar-sticky .nav-links a {
	color: var(--text-color);
}
.nav-links a:hover {
	color: var(--accent-color);
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  background-color: var(--brand-color);
  height: 3px;
  width: 25px;
  margin: 3px;
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
	.nav {
		order: 2;
	}
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    background-color: var(--text-color);
    padding: 10px;
	left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
	transform: translateX(100%);
	transition: transform .3s;
  }
  .nav-links.active {
	transform: translateX(0);
  }

  .nav-links li {
    margin: 10px 0;
  }

  .hamburger {
    display: flex;
  }
	.hamburger.active {
		position: relative;
	}
	.hamburger.active span:nth-child(1) {
		transform: translateY(9px) rotate(45deg);
	}
	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}
	.hamburger.active span:nth-child(3) {
		transform: translateY(-9px) rotate(-45deg);
	}
  .nav.active .nav-links {
    display: flex;
  }
	.main-navbar-sticky .nav-links a {
		color: var(--light-color);
	}
}
.cta-button, .products-list-container .product-item h3 {
	padding: min(.88vw, 13px) min(1.46vw, 22px);
	padding: 0.7em 1.3em;
	border: 2px solid var(--brand-color);
	border-radius: 10px;
	font-size: var(--small-text);
	text-decoration: none;
	color: var(--light-color);
	font-weight: 700;
	text-transform: uppercase;
	background-color: var(--brand-color);
}
.cta-button-alt, .products-list-container .product-item h3 {
	background-color: transparent;
}
.frontHeroSmall .cta-button {
	display: block;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 1em;
}
.frontHero {
	position: relative;
	width: 100vw;
	height: 70vh;
}
.frontHeroVideoBg video, .frontHeroVideoBgOverlay {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.frontHeroVideoBgOverlay {
	background: rgba(0,0,0,.6);
}
.frontHeroProducts {
	position: relative;
	height: 100%;
}
.frontHeroProduct {
	position: absolute;
	bottom: 0;
	margin-bottom: min(10vw, 3rem);
	opacity: 0;
	transition: opacity 1s ease-in-out;
	pointer-events: none;
}
.frontHeroProduct.active {
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
}
.frontHeroVideoImageOverlay svg {
	fill: var(--brand-color);
    width: 50vw;
    position: absolute;
    bottom: 0;
    height: 45vh;
    left: 0;
}
.frontHeroProduct .content {
	display: flex;
	flex-direction: column;
}
.frontHeroText {
	font-size: var(--normal-text);
	margin-bottom: var(--element-margin);
}
.frontHeroProduct .frontHeroText {
	color: var(--light-color);
	display: none;
}
.frontHeroSmall .frontHeroText {
	text-align: center;
	position: absolute;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	left: 50%;
	transform: translateX(-50%);
}
.frontHeroSmall .frontHeroText.active {
	opacity: 1;
}
.frontHeroTextContent {
	margin-bottom: var(--element-margin);
}
.frontHeroProduct .frontHeroProductImage {
	order: 1;
	width: min(80vw, 300px);
	max-height: 30vh;
}
.frontHeroProduct .frontHeroProductImage img {
	max-height: 30vh;
}
.frontHeroProduct .frontHeroButtons a:nth-child(1) {
	margin-right: 1rem;
}
.frontHeroSmall {
	margin: var(--section-margin) 0;
}
.frontHeroSmall .cta-button-alt {
	color: var(--brand-color);
}
.product-ratings-stars-container {
	margin-top: calc(1.5 * var(--element-margin));
	position: relative;
    width: fit-content;
}
.frontHeroSmall .product-ratings-stars-container {
	margin: 0 auto;
	margin-bottom: var(--element-margin);
}
.product-ratings-stars {
	display: flex;
	stroke-width: 1rem;
	width: fit-content;
}
.product-ratings-stars svg {
	width: 2rem;
	height: 2rem;
	margin: 0 .5rem;
}
.product-ratings-stars svg:not(:first-child) {
}
.stars-empty {
	fill: none;
	stroke: var(--ratings-color);
}
.stars-full {
	--percent: calc((var(--rating) / 5) * 100%);
	fill: var(--ratings-color);
	stroke: var(--ratings-color);
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	position: absolute;
	top: 0;
	left: 0;
	transition: clip-path .5s ease-in-out;
}
.stars-full.visible {
	clip-path: polygon(0% 0%, var(--percent) 0%, var(--percent) 100%, 0% 100%);
}
.frontInfo, .frontCTA {
	background-attachment: fixed;
	background-image: url('../images/pageBackgrounds/front-info-background.webp');
	background-position-y: bottom;
	background-size: cover;
	height: 400px;
	overflow: hidden;
	position: relative;
	margin-bottom: var(--section-margin);
}
.frontCTA {
	background-image: url('../images/pageBackgrounds/front-cta-background.webp');
	height: 500px;
}
.frontInfoImage img {
	position: absolute;
	top: 0;
	height: 350px;
	left: 15%;
	transform: translateY(-50%);
}
.frontInfoText {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	font-size: var(--big-text);
	font-weight: 700;
	color: var(--light-color);
}
.frontInfoText p {
	margin-bottom: 1em;
}
.fade-on-scroll {
  opacity: 0;
  transition: opacity 0.4s ease-out;
}
.frontTagline {
	padding: calc(1 * var(--section-margin)) 0;
	background: linear-gradient(var(--brand-color), var(--accent-color));
	font-size: var(--header-text);
	color: var(--light-color);
	text-align: center;
	margin-bottom: var(--section-margin);
}
.frontTagline h1 {
	font-size: var(--big-header-text);
	font-weight: 700;
	text-transform: uppercase;
}
.frontDescriptionIntro {
	font-size: var(--big-text);
	width: min(90vw, 800px);
	margin-left: auto;
	margin-right: auto;
	margin-bottom: var(--section-margin);
	text-align: center;
}
.frontIconsWrapper {
/*	display: flex; */
/*	flex-wrap: wrap; */
/*	gap: calc( 2 * var(--element-margin)); */
	margin-bottom: var(--section-margin);
}
.frontIconsWrapper > * {
	flex: 1 0 min(90vw, 300px);
	text-align: center;
}
.frontIcon img {
	width: 30%;
	max-width: 20vw;
}
.frontIconText {
	font-size: var(--normal-text);
	color: var(--accent-color);
	font-weight: 700;
	padding: 0 1em;
}
.frontIconContainer {
	background: var(--secondary-color);
	border-radius: var(--normal-radius);
	padding: 1rem .5rem;
	margin-bottom: var(--element-margin);
}
.frontIconTextContainer {
	padding: 0 10%;
}
.frontProducts {
	padding: calc(var(--section-margin) / 2) 0;
	background: var(--secondary-color);
}
.frontProducts header {
	text-align: center;
}
.frontProducts h2 {
	font-size: var(--big-header-text);
	text-transform: uppercase;
	color: var(--text-color);
}
.frontProductsWrapper {
	display: flex;
	flex-direction: column;
}
.frontProductsWrapper > * {
	flex: 1 0 95%;
	text-align: center;
}
.frontProduct {
/*
	container-type: inline-size;
	container-name: frontProductFeatures;
*/
}
.frontProductImgWrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1/1;
	position: relative;
	max-height: 600px;
	margin-left: auto;
	margin-right: auto;
}
.frontProductImg img {
	width: min(50vw, 232px);
}
.frontProductFeatures {
	color: var(--accent-color);
	font-weight: 700;
	font-size: var(--big-text);
}
.frontProductFeature p {
    max-width: 150px;
	font-size: clamp(1rem, 2vw, 2rem);
}
.frontProductFeatures > * {
	position: absolute;
	font-size: .7em;
	left: 0;
	top: 0;
}
.frontProductFeatures > * {
	display: flex;
	flex-direction: column;
}
.frontProduct:nth-child(1) .frontProductFeature:nth-child(1) {
	top: 15%;
	left: 15%;
}
.frontProduct:nth-child(1) .frontProductFeature:nth-child(1) .frontProductFeatureArrow {
	transform: scaleX(-1) rotate(85deg) translate(5%, 40%);
}
.frontProduct:nth-child(1) .frontProductFeature:nth-child(1) .frontProductFeatureArrow img {
	width: min(10vw, 60px);
}
.frontProduct:nth-child(1) .frontProductFeature:nth-child(2) {
	top: 20%;
	left: 70%;
}
.frontProduct:nth-child(1) .frontProductFeature:nth-child(2) .frontProductFeatureArrow {
	transform: rotate(333deg) translate(-70%, -130%);
}
.frontProduct:nth-child(1) .frontProductFeature:nth-child(2) .frontProductFeatureArrow img {
	width: min(10vw, 60px);
}
.frontProduct:nth-child(1) .frontProductFeature:nth-child(3) {
	top: 75%;
    left: 10%;
}
.frontProduct:nth-child(1) .frontProductFeature:nth-child(3) .frontProductFeatureArrow {
	transform: rotate(-40deg) translate(50%, -160%);
}
.frontProduct:nth-child(1) .frontProductFeature:nth-child(3) .frontProductFeatureArrow img {
	width: min(10vw, 60px);
}
.frontProduct:nth-child(1) .frontProductFeature:nth-child(4) {
	top: 65%;
    left: 55%;
}
.frontProduct:nth-child(1) .frontProductFeature:nth-child(4) .frontProductFeatureArrow {
	transform: rotate(15deg) translate(-12%, -202%);
}
.frontProduct:nth-child(1) .frontProductFeature:nth-child(4) .frontProductFeatureArrow img {
	width: min(10vw, 50px);
}
.frontProduct:nth-child(2) .frontProductFeature:nth-child(1) {
	top: 30%;
	left: 15%;
}
.frontProduct:nth-child(2) .frontProductFeature:nth-child(1) .frontProductFeatureArrow {
	transform: translateX(25%);
}
.frontProduct:nth-child(2) .frontProductFeature:nth-child(1) .frontProductFeatureArrow img {
	width: min(10vw, 60px);
}
.frontProduct:nth-child(2) .frontProductFeature:nth-child(2) {
	top: 25%;
	left: 65%;
	flex-direction: row;
	align-items: flex-start;
    gap: .5rem;
}
.frontProduct:nth-child(2) .frontProductFeature:nth-child(2) .frontProductFeatureArrow {
	order: -1;
}
.frontProduct:nth-child(2) .frontProductFeature:nth-child(2) .frontProductFeatureArrow img {
	width: min(10vw, 60px);
}
.frontProduct:nth-child(2) .frontProductFeature:nth-child(3) {
	top: 60%;
	left: 10%;
	flex-direction: row;
	align-items: flex-end;
    gap: .5rem;
}
.frontProduct:nth-child(2) .frontProductFeature:nth-child(3) .frontProductFeatureArrow img {
	width: min(10vw, 60px);
}
.frontProduct:nth-child(2) .frontProductFeature:nth-child(4) {
	top: 50%;
	left: 65%;
}
.frontProduct:nth-child(2) .frontProductFeature:nth-child(4) .frontProductFeatureArrow {
	order: -1;
}
.frontProduct:nth-child(2) .frontProductFeature:nth-child(4) .frontProductFeatureArrow img {
	width: min(10vw, 50px);
}
@media (min-width: 1024px) {
	.frontProductFeature p {
		max-width: 170px;
		font-size: clamp(1rem, 1vw, 1.4rem);
	}
	.frontProduct:nth-child(1) .frontProductFeature:nth-child(1) .frontProductFeatureArrow img {
		width: min(5vw, 60px);
	}
	.frontProduct:nth-child(1) .frontProductFeature:nth-child(2) .frontProductFeatureArrow img {
		width: min(5vw, 60px);
	}
	.frontProduct:nth-child(1) .frontProductFeature:nth-child(3) .frontProductFeatureArrow img {
		width: min(5vw, 60px);
	}
	.frontProduct:nth-child(1) .frontProductFeature:nth-child(4) .frontProductFeatureArrow img {
		width: min(5vw, 50px);
	}
}
.frontTestimonialsIntro {
	margin-top: var(--section-margin);
	margin-bottom: var(--section-margin);
	position: relative;
}
.frontTestimonialsIntro p {
	font-size: clamp(18px, 3.68vw, 53px);
	color: var(--text-color);
	font-weight: 700;
	padding: 1rem clamp(5rem, 20vw, 20rem) 1rem 0rem;
}
.frontTestimonialsIntro svg {
	position: absolute;
	top: 0;
	right: 0;
	fill: var(--brand-color);
	width: clamp(50px, 15vw, 200px);
}
.frontTestimonials {
	margin-bottom: var(--section-margin);
}
.frontTestimonial {
	display: flex;
    align-items: center;
}
.frontTestimonialImg {
	position: absolute;
	width: 10vw;
	margin-left: 1rem;
}
.frontTestimonialImg img {
	position: relative;
}
.frontTestimonialText {
	margin-left: 0;
    margin-right: 0;
	padding: 1.5rem 2.5rem 1.5rem 17vw;
	font-size: calc(var(--normal-text) * .9);
}
.frontTestimonialText {
	background: var(--secondary-color);
}
.frontTestimonialAuthor {
	margin: 1rem 0;
	font-weight: 700;
}
.frontTestimonialText .product-ratings-stars-container {
	margin-top: 0;
}
.frontTestimonialText .product-ratings-stars-container .product-ratings-stars svg {
	width: 1.5rem;
	height: 1.5rem;
}
.frontTestimonialText .product-ratings-stars-container .product-ratings-stars svg:first-child {
	margin-left: 0;
}
@media (min-width: 1024px) {
	.frontTestimonialText {
		margin-left: -15px;
		margin-right: 10vw;
		padding: 1.5rem 2.5rem 1.5rem 2.5rem;
	}
	.frontTestimonialImg {
		position: static;
		flex: 0 0 200px;
	}
}
.frontCTA::after {
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.5);
	position: absolute;
	top: 0;
	left: 0;
}
.frontCTAImage img {
	position: absolute;
	top: 50%;
	height: auto;
	max-width:90vw;
	left: -10vw;
	transform: translateY(-50%);
	transition: all 0.1s linear;	
}
.frontCTAWrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: var(--header-text);
	width: 90vw;
	max-width: 860px;
	z-index: 1;
}
.frontCTAWrapper > p {
	color: var(--light-color);
	margin-bottom: .5em;
	text-align: center;
}
.frontCTAImageWrapper {
	display: flex;
    justify-content: space-between;
    align-items: flex-start;
	flex-direction: column;
}
.frontCTAImageWrapper > * {
	margin-left: auto;
	margin-right: auto;
}
.frontCTAImageWrapper img {
	margin-top: 20px;
	width: 60%;
}

@media (min-width: 768px) {
	.frontCTAImageWrapper img {
		max-width: 40%;
	}
}
@media (min-width: 1024px) {
	.frontCTAWrapper > p {
		text-align: left;
	}
	.frontCTAImageWrapper > * {
		margin-left: 0;
	}
	.frontCTAImageWrapper {
		flex-direction: row;
	}
	.frontCTAImageWrapper img {
		margin-top: 20px;
		max-width: 400px;
	}
	.frontIconsWrapper {
		gap: calc( 5 * var(--element-margin));
	}
	.frontHeroProduct .content {
		gap: min(9.52vw, 160px);
		flex-direction: row;
		align-items: flex-end;
	}
	.frontHeroSmall {
		display: none;
	}
	.frontHeroProduct .frontHeroText {
		display: block;
	}
	.frontHeroProduct .frontHeroProductImage {
		order: 0;
		flex: 0 0 300px; 
	}
	.frontTagline {
		background: none;
		margin-bottom: 0;
	}
	.frontTagline h1 {
		background: linear-gradient(var(--brand-color), var(--accent-color));
	}
	.frontProductsWrapper {
		flex-direction: row;
	}
	.frontProductsWrapper > * {
		flex: 1 0 45%;
	}
	.frontInfoText {
		left: 30%;
		transform: translateY(-50%);
		width: 60%;
	}
	.product-cta-top .frontInfoText {
		left: 50%;
		transform: translate(-50% , -50%);
		max-width: 1440px;
	}
}
@media (min-width: 1200px) {
	.frontCTAImage img {
		left: 10vw;
	}
	.frontCTAImageWrapper img {
		margin-top: -30px;
		max-width: 300px;
	}
	.frontHeroProduct .frontHeroProductImage {
		width: min(32.94vw, 474px);
	}
	.frontHeroProduct .frontHeroProductImage {
		flex: 0 0 min(32.94vw, 474px); 
	}
}


.page-footer {
	margin-top: 5rem;
	background: rgba(0,0,0);
	color: var(--light-color);
	font-size: .9rem;
	padding-bottom: 3rem;
}
.footer_container {
	padding: 3rem 0;
}
.footer_container > * {
	flex-basis: 90%;
	flex-grow: 1;
	text-align: center;
	margin-bottom: 1.5rem;
}
.footer_container > *:first-child {
	flex-basis: 90%;
	flex-grow: 1;
	text-align: center;
}
@media (min-width: 500px) {
	.footer_container > * {
		flex-basis: 45%;
		flex-grow: 1;
	}
	.footer_container > *:first-child {
		flex-basis: 90%;
		flex-grow: 1;
		text-align: center;
	}
}
@media (min-width: 800px) {
	.footer_container > * {
		flex-basis: 30%;
		flex-grow: 1;
		text-align: left;
	}
	.footer_container > *:first-child {
		flex-basis: 90%;
		flex-grow: 1;
		text-align: center;
	}
}
@media (min-width: 1100px) {
	.footer_container > * {
		flex-basis: 23%;
		flex-grow: 1;
		text-align: left;
	}
	.footer_container > *:first-child {
		flex-basis: 23%;
		flex-grow: 1;
		text-align: left;
	}
}
.footer_info_header p {
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: .5rem;
}
.footer_container a {
	color: #fff;
	transition: color .3s ease-in-out;
}
.footer_container a:hover {
	color: var(--accent-color);
}
.page-footer > p {
	text-align: center;
}
.cookieBannerWrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: rgba(0,0,0,.8);
	font-family: Montserrat;
	font-size: 13px;
	line-height: 1.3;
	position: fixed;
	z-index: 9999999999;
	width: 100%;
	top: 0;
	display: none;
	color: var(--brand-color);
}
.cookieBannerContainer {
	width: clamp(320px, 80vw, 650px);
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	transition: .5s;
	max-height: 90vh;
	overflow-y: auto;
}
.cookieBannerContainer > p {
	margin-bottom: .8rem;
	font-size: 13px;
	line-height: 1.3;
}
p.cookieBannerHeader {
	font-weight: bold;
	font-size: 15px;
}
.cookieBannerQuestion {
	font-weight: bold;
}
.cookieBannerCheckboxesContainer, .cookieBannerButtonsContainer {
	display: flex;
	align-items: center;
	justify-content: space-around;
	margin:1.5rem 0;
	flex-wrap: wrap;
}
.cookieBannerCheckboxesContainer {
	margin-top: 1rem;
}
.cookieBannerCheckbox {
	display: flex;
	align-items: center;
}
.cookieBannerCheckbox label {
	position: relative;
	width: 45px;
	height: 20px;
	display: inline-block;
	cursor: pointer;
	margin-right: .8rem;
}
.cookieBannerCheckbox label input {
	position: relative;
	z-index: -1;
	appearance: none;
	opacity: 0;
}
.cookieBannerCheckbox p {
	font-size: 13px;
}
.cookieBannerCheckbox label span {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--brand-color);
	border-radius: 20px;
	transition: .5s;
}
.cookieBannerCheckbox label span i {
	position: absolute;
	width: 16px;
	height: 16px;
	background: #fff;
	border-radius: 50%;
	top: 2px;
	left: 2px;
	transition: .5s;
}
.cookieBannerCheckbox label input:checked ~ span {
	background: var(--accent-color);
}
.cookieBannerCheckbox label input:checked ~ span i {
	left: 27px;
}
.cookieBannerCheckbox label input:disabled ~ span {
	background: #ddd;
}
.cookieBannerButtonsContainer button {
	display: inline-block;
	margin: 10px 10px 0 10px;
	width: 250px;
	background-color: var(--accent-color);
	color: #fff;
	text-align: center;
	font-size: 1.125rem;
	font-weight: 400;
	padding: 6px 20px;
	transition: all .5s;
	text-decoration: none;
	cursor: pointer;
	border: none;
	transition: background-color 500ms, color 500ms;
}
#cookieBannerCustomiseOptions {
	background: none;
	text-decoration: underline;
	color: var(--icon-color-2);
}
#cookieBannerAllowSelectedButton {
	background: none;
	border: 1px solid var(--accent-color);
	color: var(--brand-color);
}
.cookieBannerButtonsContainer button:hover {
	background-color: var(--brand-color);
	border: none;
	color: #fff;
}
#cookieBannerCustomiseOptions:hover {
	background-color: var(--brand-color);
	border: none;
	color: #fff;
}
#cookieBannerAllowSelectedButton:hover {
	background-color: var(--brand-color);
	border: 1px solid var(--brand-color);
	color: #fff;
}
.cookieBannerContainer a {
	color: #000;
	font-weight: bold;
}
.cookieBannerOptionsContainer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 500ms;
}
.cookieBannerOptionsContainer.cookieBannerOptionsActive {
	grid-template-rows: 1fr;
}
.cookieBannerOptionsContainer > div {
	overflow: hidden;
}
@media screen and (max-width: 600px) {
	.cookieBannerCheckboxesContainer {
		flex-direction: column;
		align-items: flex-start;
	}
	.cookieBannerCheckboxesContainer > div {
		margin-bottom: .8rem;
	}
}

.product-hero {
	background-position: center;
	background-size: cover;
	position: relative;
	min-height: 70vh;
	color: var(--light-color);
}
.product-hero::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(0,0,0,0.9), rgba(0,0,0,.5), rgba(0,0,0,.9));
	top: 0;
	left: 0;
}
.product-hero > div.section-container {
	height: 100%;
    bottom: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.product-hero .frontHeroVideoImageOverlay svg {
	transform: scaleX(-1);
	left: 50%;
}
.product-hero-image {
	position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}
.product-hero-image img {
	max-width: 500px;
	width: 50vw;
	margin-right: -1.5em;
	display: block;
	margin-bottom: .5em;
	max-height: 60vh;
	object-fit: contain;
}
.product-hero-text {
	bottom: 0;
    position: absolute;
    margin-bottom: 8%;
	max-width: 50%;
}
.product-hero h1, h1.page-title {
	font-size: var(--big-header-text);
	text-transform: uppercase;
	position: relative;
	width: fit-content;
	line-height: 1;
    padding-bottom: .3em;
}
.info-page-head-text h1.page-title {
	width: auto;
	overflow-wrap: break-word;
    word-break: normal;
}
.product-hero h1::after, h1.page-title::after {
	content: '';
	position: absolute;
	width: 0%;
	height: 2px;
	background: var(--brand-color);
	left: 0;
	bottom: 5%;
	transition: width 1s ease;
}
.product-hero h1.visible::after, h1.page-title.visible::after {
	width: 100%;
}
.product-hero h2, p.page-subtitle {
	font-size: calc(var(--big-text) / 1.5);
	margin-bottom: 4%;
	font-weight: 700;
}
.product-hero h2 {
	margin-bottom: 1em;
}
.product-hero p {
	font-size: var(--normal-text);
	margin-bottom: 8%;
	display: none;
}
.product-hero-buttons a {
	margin-right: 3%;
}
.product-benefits {
	margin-top: var(--section-margin);
	margin-bottom: var(--section-margin);
	text-align: center;
}
.product-benefit-grid, .front-icons-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
	list-style: none;
	padding-left: 0;
	margin-top: calc(var(--section-margin) / 2);
	font-size: calc(var(--normal-text)/1.5);
}
.product-benefit-grid img, .info-page-horizontal-list img, .front-icons-grid img, .product-benefit-grid svg, .product-benefit-icon svg, .info-page-horizontal-list svg {
	width: 50vw;
	max-width: 100px;
	margin-bottom: var(--element-margin);
}
.product-benefit-grid svg, .product-benefit-icon svg, .info-page-horizontal-list svg {
	height: auto;
	stroke: var(--text-color);
}
.product-benefit-grid svg .svg-accent, .product-benefit-icon svg .svg-accent, .info-page-horizontal-list svg .svg-accent {
	stroke: var(--brand-color);
}
.product-benefit-title {
	font-size: calc(var(--big-text)/1.5);
	text-transform: uppercase;
	font-weight: 700;
}
.product-for-whom {
	background: var(--text-color);
	color: var(--light-color);
	padding: calc(var(--section-margin) / 2) 0;
}
.product-for-whom .target-group, .info-page-image-list .image-list-group {
	display: flex;
	align-items: center;
	gap: 2rem;
	border-radius: 16px;
	margin-bottom: 2rem;
	overflow: hidden;
	flex-direction: column;
}
.target-text-container, .image-list-text-container {
	background: var(--secondary-color);
    border-radius: 15px;
    color: var(--text-color);
	flex-grow: 1;
	position: relative;
}
.image-list-text-container {
	background: var(--light-color);
    border: 0.1em solid var(--text-color);
}
.target-text {
	padding: 3rem;
}
.image-list-text {
	padding: 1rem 2rem;
}
.image-list-text-container .image-list-text p {
	margin-bottom: 0;
	font-size: var(--small-text);
}
.target-icon img, .image-list-icon img {
	display: block;
	border-radius: 50%;
    border: 0.4em solid var(--brand-color);
    width: 400px;
	position: relative;
}
.image-list-icon img {
    border: 0;
	border-radius: 0;
}
.image-list-icon img {
    width: 100px;
}
.image-list-icon svg {
    width: 100px;
	height: auto;
	stroke: var(--text-color);
}
.image-list-icon svg .svg-accent {
	stroke: var(--brand-color);
}
.target-text h3, .image-list-text h3 {
	margin-top: 0;
	margin-bottom: 0.5rem;
	color: var(--brand-color);
}
.image-list-text h3 {
	color: var(--accent-color);
}
.target-icon, .image-list-icon {
	background: var(--secondary-color);
	border-radius: 50%;
	flex-shrink: 0;
	transform: translateY(30%);
}
.image-list-icon {
	background: var(--light-color);
	padding: 2em;
    border: 0.2em solid var(--brand-color);
	position: relative;
}
@media only screen and (min-width: 768px) {
	.product-for-whom .target-group, .info-page-image-list .image-list-group {
		flex-direction: row;
	}
	.product-for-whom .target-group:nth-child(odd) .target-icon, .info-page-image-list .image-list-group:nth-child(odd) .image-list-icon {
		order: 2;
	}
	.target-text-container, .image-list-text-container {
		margin-right: -5rem;
		padding-right: 5rem;
		position: static;
	}
	.product-for-whom .target-group:nth-child(even) .target-text-container, .info-page-image-list .image-list-group:nth-child(even) .image-list-text-container {
		margin-left: -5rem;
		margin-right: 0;
		padding-right: 0;
		padding-left: 3rem;
	}
	.target-icon, .image-list-icon {
		transform: translateY(0);
	}
}
.product-evidence {
	margin: var(--section-margin) 0;
}
.product-evidence-container {
	display: flex;
	gap: 2em;
	margin-top: calc(var(--section-margin) / 2);
	flex-direction: column;
}
.product-evidence-container > * {
	flex: 1 1 45%;
}
.product-evidence-image {
	background: var(--brand-color-light);
	border-radius: 12px;
}
.product-evidence-image img {
	width: 100%;
	border-radius: 12px;
	display: block;
	height: 100%;
    object-fit: cover;
}
.product-evidence-list, .products-list-container {
	display: flex;
	gap: 1em;
	flex-wrap: wrap;
	text-align: center;
}
.products-list-container {
	margin-top: calc(var(--section-margin) / 2);
}
.product-evidence-list > div, .products-list-container > div {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 250px;
    padding: 30px;
    border-radius: 12px;
	background: #fff7f5;
}
.product-evidence-list h3 {
	font-size: var(--big-text);
	line-height: 1.1;
    margin-bottom: 0.5em;
}
.product-evidence-link {
	margin-top: .5em;
	text-align: right;
}
.product-evidence-link a {
	color: var(--text-color);
	font-size: var(--small-text);
}
@media only screen and (min-width: 768px) {
	.product-evidence-container {
		flex-direction: row;
	}
}
.product-cta-top {
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
    height: 400px;
    overflow: hidden;
    position: relative;
	margin-bottom: var(--section-margin);
}
.product-cta-top::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--text-color);
	opacity: .3;
}
.product-faq {
	background: var(--secondary-color);
	padding: calc(var(--section-margin) / 2) 0;
}
.product-faq-container {
	background: var(--light-color);
	max-width: 800px;
	padding: 2em;
	margin: 1em auto;
	border-radius: 12px;
}
.product-faq-container .product-faq-item:not(:last-child) {
	border-bottom: 2px solid var(--brand-color);
}
.product-faq-icon {
	width: 1.5em;
	height: 1.5em;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--brand-color);
	font-size: 1.5em;
	line-height: 1;
	transition: transform .3s ease, background .3s ease, color .3s ease;
}
.product-faq-expand {
	color: var(--light-color);
	background: var(--brand-color);
}
.product-faq-item .product-faq-expanded {
	display: none;
}
.product-faq-item-button {
	background: transparent;
	cursor: pointer;
	width: 100%;
	padding: 1em 0;
	font-size: var(--normal-text);
	text-align: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
	border: 0;
	font-weight: 700;
	color: var(--text-color);
	transition: color .3s ease;
}
.product-faq-item-button:hover {
	color: var(--brand-color);
}
.product-faq-item-button:hover .product-faq-icon {
	transform: rotate(180deg);
}
.product-faq-item-button.active .product-faq-icon {
	transform: rotate(45deg);
	background: var(--light-color);
	color: var(--brand-color);
}
.product-faq-description {
	background-color: var(--light-color);
	max-height: 0;
	overflow: hidden;
	transition: max-height .2s ease;
}
.product-faq-description p {
	padding: 1.5em 0 ;
}
.product-reviews {
	margin-top: var(--section-margin);
	margin-bottom: var(--section-margin);
}
.product-reviews .container {
	min-height: 50vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.product-reviews-slider {
	height: 100%;
	width: 90vw;
	max-width: 850px;
	margin: 0 auto;
	position: relative;
}
.product-reviews-slide {
	width: 100%;
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.product-review-image-container {
	width: 100%;
	margin: 0 auto;
	height: 100%;
	padding: 2em;
	background: url('../images/pageImages/testimonials-image-background.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.product-review-image-container img {
	height: 100%;
	max-width: min(100%, 400px);
	max-height: 400px;
}
.product-reviews-text-container {
	padding-top: 2em;
	font-size: var(--big-text);
}
.product-reviews-author {
	font-size: var(--normal-text);
	font-weight: 700;
	margin-top: .5em;
}
.product-reviews-author span {
	display: block;
	font-weight: 400;
	color: var(--brand-color);
	font-size: var(--small-text);
}
.product-reviews-buttons {
	width: 4em;
    height: 2em;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
	display: flex;
	font-size: 1em;
	gap: .5em;
	bottom: -4em;
}
.product-reviews-buttons > div {
    background: var(--text-color);
	color: var(--brand-color);
	display: inline-block;
	width: 2em;
	height: 2em;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .3s ease, color .3s ease;
}
.product-reviews-buttons > div:hover {
    background: var(--brand-color);
	color: var(--text-color);
	cursor: pointer;
}
.product-reviews .product-ratings-stars-container, .product-ratings-rating .product-ratings-stars-container {
	margin: .5em 0;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
.product-reviews .stars-full {
	fill: var(--brand-color);
	stroke: var(--brand-color);
}
.product-reviews .product-ratings-stars svg {
	margin: 0;
	margin-right: .5em;
}
@media only screen and (min-width: 768px) {
	.product-reviews-slide {
		flex-direction: row;
		align-items: center;
		justify-content: center;
		text-align: left;
	}	
	.product-reviews-text-container {
		padding-top: 0;
		flex: 1 0 60%;
	}
	.product-reviews .product-ratings-stars-container, .product-ratings-rating .product-ratings-stars-container {
		margin-left: 0;
	}
}
.info-page-header, .blog-frist-article {
	background: var(--text-color);
	color: var(--light-color);
	padding: calc(var(--section-margin) / 2) 0;
}
.blog-frist-article {
	padding-top: 0;
}
.blog-first-article-container, .info-page-photo-paragraph {
	display: flex;
	flex-direction: column;
}
.blog-article-image-container, .info-page-photo-paragraph-image {
	aspect-ratio: 16/9;
	width: 100%;
	overflow: hidden;
	margin-bottom: var(--element-margin);
}
.blog-article-image-container img {
	aspect-ratio: 16/9;
	object-fit: cover;
	width: 100%;
	transition: scale .3s ease;
	display: block;
}
.blog-article-image-container:hover img {
	scale: 1.1;
}
.blog-first-article-text-container h2 {
	font-weight: 400;
	font-size: var(--big-text);
	line-height: 1.2;
}
.blog-article-text-container h3 {
	margin-top: .5em;
	font-weight: 400;
	font-size: var(--normal-text);
	line-height: 1.2;
}
.blog-first-article-text-container a {
	color: var(--light-color);
	text-decoration: none;
	transition: color .3s ease;
}
.blog-articles-grid a {
	color: var(--text-color);
	text-decoration: none;
	transition: color .3s ease;
	margin-bottom: var(--element-margin);
}
.blog-first-article-text-container a:hover, .blog-articles-grid a:hover {
	color: var(--brand-color);
}
.blog-articles-grid {
	margin: calc(var(--section-margin) / 2) 0;
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;	
}
.blog-articles-grid > * {
	flex: 1 0 min(100%, 480px);
}
.blog-article {
	margin-top: calc(var(--section-margin) / 2);
	margin-bottom: var(--section-margin);
}
.blog-article h2 {
	font-size: calc(var(--big-text) * .9);
	margin: .5em 0;
	font-weight: 400;
}
.blog-article p, .info-page-body p {
	font-size: calc(var(--normal-text) * .9);
	line-height: 1.5;
	margin-bottom: 1em;
}
.blog-article h2 + p {
	border-left: 2px solid var(--brand-color);
    padding-left: 1em;
}
.blog-article ul, .blog-article ol, .info-page-body ul:not(.info-page-horizontal-list) {
	font-size: calc(var(--small-text) * 1.2);
	line-height: 1.5;
	margin-bottom: 1em;
	margin-left: 1.1em;
}
.blog-article li  {
	margin-bottom: .5em;
}
.blog-article hr  {
	border: none;
	height: 2px;
	background: var(--brand-color);
	width: 80%;
	margin-bottom: 1em;
}
.info-page-body {
	margin: calc(var(--section-margin) / 2) 0;
}
.info-page-secondary-section {
	background: var(--secondary-color);
	padding: calc(var(--section-margin) / 2) 0;
}
.info-page-tertiary-section {
	background: var(--text-color);
	padding: calc(var(--section-margin) / 2) 0;
}
.info-page-tertiary-section .info-page-section-title, .info-page-tertiary-section .info-page-center-paragraph-text {
	color: var(--light-color);
}
.info-page-center-paragraph-text {
	text-align: center;
	width: min(90%, 800px);
	margin-left: auto;
	margin-right: auto;
}
.info-page-horizontal-list {
	display: flex;
	flex-wrap: wrap;
	gap: calc(var(--element-margin) * 2);
	list-style: none;
	margin: calc(var(--element-margin) * 3) 0;
}
.info-page-horizontal-list > * {
	flex: 1 0 max(30%, 300px);
	text-align: center;
}
.info-page-horizontal-list p {
	width: 70%;
	margin: 0 auto;
	background: var(--text-color);
	color: var(--light-color);
	padding: calc(var(--element-margin) / 2);
	font-size: calc(var(--small-text) * .9);
	font-weight: 700;
	border-radius: 12px;
}
.info-page-image-list {
	width: 90vw;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	margin-top: calc(var(--section-margin) / 3);
}
.info-page-tertiary-section .product-evidence-container {
	margin-bottom: calc(var(--section-margin) / 2);
}
@media only screen and (min-width: 768px) {
	.blog-first-article-container, .info-page-photo-paragraph {
		flex-direction: row;
		gap: calc(var(--section-margin) / 2);
		align-items: flex-end;
	}
	.info-page-photo-paragraph {
		align-items: center;
	}
	.blog-first-article-container > *, .info-page-photo-paragraph > * {
		flex: 1 0 45%;
	}
	.blog-article-image-container {
		margin-bottom: 0;
	}
	.blog-article .f-row {
		display: flex;
		align-items: center;
	}
	.blog-article .f-row:has(.f-grid-6):has(p[style="text-align: center;"]) {
		align-items: flex-start;
	}
	.blog-article .f-grid-6 {
		flex: 1 0 45%;
	}
	.blog-article .f-grid-6 img[width="500"] {
		display: block;
		margin: 0 auto;
	}
	.info-page-photo-paragraph-image.info-page-image-alternate {
		order: 2;
	}
	.product-hero p {
		display: block;
	}
}

.target-icon.scroll-animate img {
	transition: all .3s ease;
	opacity: 0;
	scale: 0;
}
.target-icon.scroll-animate.visible img {
	opacity: 1;
	scale: 1;
}
.products-list-container .product-item a {
	text-decoration: none;
}
.products-list-container .product-item a h3 {
	color: var(--text-color);
	width: fit-content;
	margin-top: var(--element-margin);
	margin-left: auto;
	margin-right: auto;
}
.product-item {
	transition: background .3s ease;
}
.product-item:has(a:hover) {
	background: #ffede8;
}
.footer_logo svg {
	max-width: 170px;
}
.frontProductFeatureText {
	display: flex;
	align-items: center;
}
.frontProductFeatureText svg {
	stroke: var(--text-color);
	height: auto;
	width: 2em;
}


.frontProductFeatureIcon {
	background: var(--light-color);
    border-radius: 50%;
    overflow: hidden;
	flex: 0 0 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1;
	padding: .3em;
	position: relative;
	z-index: 1;
	border: 1px solid var(--brand-color);
	display: none;
}

.scroll-animate .svg-accent {
  stroke-dasharray: var(--path-length, 600);
  stroke-dashoffset: var(--path-length, 600);
}
.scroll-animate.visible .svg-accent {
  animation: drawLine 1s ease forwards;
}

@keyframes drawLine {
  0% {
    stroke-dashoffset: var(--path-length, 600);
  }
  100% {
    stroke-dashoffset: 0;
  }
}