/* Variables
-------------------------*/
/* Colors */
/* CSS Properties */
/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");
/* Elements
-------------------------*/
[data-reveal=fade] {
  opacity: var(--opacity, 0) !important;
  will-change: transform;
  transform: translateY(var(--vertical, 50px)) translateX(var(--horizontal, 0px)) scale(var(--scale, 1));
  transition: opacity var(--duration, 0.85s) cubic-bezier(0.23, 1, 0.32, 1) calc(var(--delay, 0s) + 0.15s), transform var(--duration, 0.85s) cubic-bezier(0.23, 1, 0.32, 1) calc(var(--delay, 0s) + 0.15s);
}
[data-reveal=fade].revealed {
  opacity: var(--to-opacity, 1) !important;
  transform: translateY(0px);
}

[data-reveal=heading] {
  opacity: 0;
}
[data-reveal=heading].revealed {
  opacity: 1;
}
[data-reveal=heading] > div {
  line-height: var(--line-height);
}
[data-reveal=heading] > div > div > div {
  transform-origin: 50% 100%;
}

h1, h2, h3, h4, h5, p, ul li, ol li, a {
  color: #000000;
  font-family: "Sora", sans-serif;
  hyphens: manual;
}
h1 span, h2 span, h3 span, h4 span, h5 span, p span, ul li span, ol li span, a span {
  font-size: inherit !important;
  font-family: inherit !important;
  display: inline !important;
}

h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
  font-family: "Sora", sans-serif;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.035em;
  color: #485948;
}
h1 a, h2 a, h3 a, h4 a, h5 a, .h1 a, .h2 a, .h3 a, .h4 a, .h5 a {
  font-family: inherit;
  font-size: inherit !important;
  color: #485948 !important;
}

h1, h2, .h1, .h2 {
  font-weight: 700;
}

p, ul li, ol li, span, a {
  color: #000000;
  font-family: "Sora", sans-serif;
}

.wysiwyg {
  width: 100%;
}
.wysiwyg.centered {
  text-align: center;
}
.wysiwyg .flag-dark {
  background-color: #000000;
  color: #FFFFFF;
  line-height: 1;
  display: inline-block;
  margin: 0;
  padding: 5px 10px;
}
.wysiwyg .flag-green {
  background-color: #485948;
  color: #000000;
  display: inline-block;
  margin: 0;
  padding: 5px 10px;
}
.wysiwyg h1, .wysiwyg .h1 {
  font-size: clamp(46px, 6.5vw, 90px);
  line-height: 0.9;
}
.wysiwyg h2, .wysiwyg .h2 {
  font-size: clamp(38px, 5.5vw, 62px);
}
.wysiwyg h3, .wysiwyg .h3 {
  font-size: clamp(20px, 4.5vw, 54px);
  line-height: 1.05;
}
.wysiwyg h4, .wysiwyg .h4 {
  font-size: clamp(16px, 3.5vw, 28px);
  line-height: 1.25;
}
.wysiwyg h5, .wysiwyg .h5 {
  font-size: clamp(14px, 2vw, 18px);
}
.wysiwyg p, .wysiwyg ul li, .wysiwyg ol li, .wysiwyg span, .wysiwyg a {
  font-size: clamp(12px, 1.8vw, 18px);
  color: #000000;
}

.cta-button {
  position: relative;
  display: inline-block;
  background-color: #9FAC9F;
  padding: 15px 30px;
}
.cta-button:hover::before {
  width: 100%;
  left: 0;
}
.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background-color: rgb(131.6480446927, 148.3519553073, 131.6480446927);
  opacity: 1;
  z-index: 1;
  transition: 0.35s ease all;
}
.cta-button span.text {
  position: relative;
  text-transform: uppercase;
  color: #FFFFFF;
  z-index: 2;
}

.arrow-button {
  display: grid;
  align-items: center;
  justify-content: center;
}
.arrow-button svg {
  grid-row: 1;
  grid-column: 1;
}
.arrow-button span.text {
  grid-row: 1;
  grid-column: 1;
  color: #FFFFFF;
  text-align: center;
}

.image-container {
  width: 100%;
}
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body {
  background-color: #FEFFFA;
  overscroll-behavior: contain;
}
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  background: #485948;
}
body::-webkit-scrollbar-thumb {
  background: #242D24;
}
body::-webkit-scrollbar-thumb:hover {
  background: #242D24;
}

/* Global
-----------------*/
body {
  background-color: #FEFFFA;
}

.grid-x.contained {
  max-width: 1920px !important;
  margin: 0 auto;
}

/* Header
-----------------*/
header {
  position: fixed;
  top: 25px;
  width: 100%;
  z-index: 3;
  transition: 0.25s ease all;
}
header::after {
  content: "";
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
  height: 200%;
  background: linear-gradient(to bottom, rgba(254, 255, 250, 0.75), rgba(254, 255, 250, 0.5), rgba(254, 255, 250, 0));
  z-index: 0;
  transform: translateY(-25px);
  opacity: 0;
  transition: 0.25s ease all;
}
header.scrolled {
  transform: translateY(-25px);
}
header.scrolled::after {
  opacity: 1;
  transform: translateY(0);
}
header.scrolled .cell .logo a svg .text {
  opacity: 0;
  transform: translateX(-69%);
  transition: 0.25s ease all, 0.15s ease opacity 0s;
}
header.scrolled .cell .logo a svg .cap {
  transform: translateX(-69%);
}
header .cell {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .cell .logo a:hover svg .text {
  opacity: 1;
  transform: translateX(2%);
  transition: 0.25s ease all, 0.25s ease opacity 0.05s;
}
header .cell .logo a:hover svg .cap {
  transform: translateX(4%);
}
header .cell .logo a svg {
  overflow: visible;
}
header .cell .logo a svg .text {
  transition: 0.25s ease all, 0.15s ease opacity 0.05s;
}
header .cell .logo a svg .text path {
  transition: 0.25s ease all;
}
header .cell .logo a svg .cap {
  transition: 0.25s ease all;
}
header .cell .menu {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #FEFFFA;
  padding: 25px;
  cursor: pointer;
  transition: 0.25s ease all;
}
header .cell .menu:hover {
  background-color: #FFFFFF;
}
header .cell .menu:hover .icon .line {
  background-color: #000000;
  width: 338%;
}
header .cell .menu:hover .icon .line:nth-child(2) {
  width: 100%;
}
header .cell .menu .text {
  margin-right: 10px;
  font-family: "Sora", sans-serif;
  font-size: calc(clamp(12px, 1.8vw, 18px) * 0.9);
  font-weight: 600;
  text-transform: uppercase;
  color: #000000;
}
header .cell .menu .icon {
  width: 30px;
  height: 31px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
header .cell .menu .icon .line {
  width: 100%;
  height: 3px;
  background-color: #000000;
  transition: 0.25s ease all;
}
header .cell .menu .icon .line:nth-child(2) {
  width: 70%;
}

nav {
  background-color: rgba(254, 255, 250, 0.75);
  position: fixed;
  z-index: 9;
  width: 100vw;
  height: 100vh;
  right: 0;
  top: 0;
  display: flex;
  justify-content: flex-end;
  transform: translateX(100%);
  transition: 0.75s ease all;
}
nav::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 100%;
  background-color: rgba(254, 255, 250, 0.75);
}
nav.active {
  transform: translateX(0px);
}
nav .off-canvas {
  height: 100%;
  width: 60%;
  background-color: #fefffa;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
nav .off-canvas .menu-container {
  position: relative;
  margin-left: 5vw;
  margin-right: 5vw;
  margin-top: 25px;
  background-color: #485948;
  width: 40vw;
}
nav .off-canvas .menu-container .close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 30px;
  height: 30px;
}
nav .off-canvas .menu-container .close:hover::before, nav .off-canvas .menu-container .close:hover::after {
  transform: translate(-50%, -50%);
}
nav .off-canvas .menu-container .close:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 3px;
  background-color: #FFFFFF;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: 0.25s ease all;
}
nav .off-canvas .menu-container .close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 3px;
  background-color: #FFFFFF;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: 0.25s ease all;
}
nav .off-canvas .menu-container ul {
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 25px;
  padding: clamp(15px, 4vw, 50px);
}
nav .off-canvas .menu-container ul li:last-child {
  border-bottom: none;
}
nav .off-canvas .menu-container ul li {
  border-bottom: rgba(237, 241, 221, 0.5) 1px solid;
  width: 100%;
}
nav .off-canvas .menu-container ul li a {
  display: flex;
  align-items: center;
  padding: 10px 0;
  font-size: 2.5vw;
  gap: 10px;
  transition: 0.35s ease all;
}
nav .off-canvas .menu-container ul li a span.icon {
  width: 20px;
  opacity: 0;
  transform: scale(0.5);
  transition: 0.35s ease all;
}
nav .off-canvas .menu-container ul li a span.text {
  color: #FFFFFF;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  transform: translateX(-30px);
  transition: 0.35s ease all;
}
nav .off-canvas .menu-container ul li a:hover span.icon {
  opacity: 1;
  transform: scale(1);
}
nav .off-canvas .menu-container ul li a:hover span.text {
  transform: translateX(0px);
}
nav .off-canvas .bottom-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5vw;
  margin-right: 5vw;
  gap: 25px;
  width: 40vw;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(72, 89, 72, 0.5);
}
nav .off-canvas .bottom-links ul {
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  width: 100%;
}
nav .off-canvas .bottom-links ul li {
  color: #485948;
  text-transform: uppercase;
  font-weight: 500;
}
nav .off-canvas .bottom-links ul li a {
  color: #000000;
  font-family: "Sora", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  transition: 0.25s ease all;
  color: #485948;
}
nav .off-canvas .bottom-links ul li a:hover {
  color: #000000;
}

/* Content
-----------------*/
section.dark {
  background-color: #DBE1DB;
}
section.form .cell h2.h0 {
  font-size: 7vw;
  margin-bottom: clamp(30px, 8vw, 100px);
}
section.form .form-video-container {
  display: grid;
  grid-template-columns: 4fr 3fr 4fr;
  grid-gap: clamp(30px, 8vw, 100px);
  padding-bottom: clamp(30px, 8vw, 100px);
}
section.form .form-video-container .product-selector .group {
  margin-bottom: 25px;
}
section.form .form-video-container .product-selector .group h5 {
  color: #000000;
  margin-left: 65px;
  text-transform: none;
}
section.form .form-video-container .product-selector .group ul {
  margin: 0;
  padding: 0;
}
section.form .form-video-container .product-selector .group ul li {
  list-style: none;
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-column-gap: 15px;
  margin-bottom: 5px;
  cursor: pointer;
}
section.form .form-video-container .product-selector .group ul li:hover span.text {
  background-color: #dbe1db;
}
section.form .form-video-container .product-selector .group ul li.active span.nr, section.form .form-video-container .product-selector .group ul li.keep-active span.nr {
  background-color: #F40415;
  color: #FFFFFF;
}
section.form .form-video-container .product-selector .group ul li.active span.text, section.form .form-video-container .product-selector .group ul li.keep-active span.text {
  background-color: #dbe1db;
}
section.form .form-video-container .product-selector .group ul li span.nr {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #F40415;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease all;
}
section.form .form-video-container .product-selector .group ul li span.text {
  height: 50px;
  background-color: rgba(219, 225, 219, 0.5);
  display: flex !important;
  align-items: center;
  padding-left: 15px;
  text-transform: uppercase;
  transition: 0.3s ease all;
}
section.form .form-video-container .form-container .radio-group {
  display: none;
}
section.form .form-video-container .form-container .gform-body .gform_fields {
  row-gap: 5px;
}
section.form .form-video-container .form-container .gform-body .gform_fields label {
  display: none;
}
section.form .form-video-container .form-container .gform-body .gform_fields input {
  height: 50px;
  outline: none;
}
section.form .form-video-container .form-container .gform-body .gform_fields textarea {
  transition: 0s ease all !important;
}
section.form .form-video-container .form-container .gform-body .gform_fields input, section.form .form-video-container .form-container .gform-body .gform_fields textarea {
  border: none;
  box-shadow: none;
  outline: none;
  border-radius: 0px;
  background-color: rgba(219, 225, 219, 0.5);
}
section.form .form-video-container .form-container .gform-body .gform_fields input::placeholder, section.form .form-video-container .form-container .gform-body .gform_fields textarea::placeholder {
  color: rgba(159, 172, 159, 0.75);
  font-family: "Sora", sans-serif;
}
section.form .form-video-container .form-container .gform-body .hidden-checkbox {
  opacity: 0;
  position: absolute;
  pointer-events: none;
  height: 0;
}
section.form .form-video-container .form-container .gform-footer {
  margin-top: 5px;
}
section.form .form-video-container .form-container .gform-footer input[type=submit], section.form .form-video-container .form-container .gform-footer button {
  border-radius: 0px !important;
  background-color: #F40415 !important;
  text-transform: uppercase !important;
  font-family: "Sora", sans-serif !important;
  font-weight: 700;
  border: none;
  padding: 15px 30px !important;
}
section.form .form-video-container .video-container {
  display: flex;
  justify-content: center;
}

section.home.intro {
  min-height: 100vh;
  padding-bottom: clamp(60px, 16vw, 200px);
}
section.home.intro .intro-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: flex-end;
}
section.home.intro .intro-bg img {
  height: auto;
  max-width: 50vw;
  opacity: 0.5;
}
section.home.intro .cell {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: clamp(15px, 4vw, 50px);
  min-height: 100vh;
  padding-bottom: clamp(15px, 4vw, 50px);
  align-items: flex-end;
  justify-content: space-between;
}
section.home.intro .cell .text-container p {
  padding-top: 3rem;
  width: 62.5%;
  font-size: calc(clamp(12px, 1.8vw, 18px) * 1.25);
}
section.home.intro .cell .video-container {
  display: flex;
  justify-content: flex-end;
}
section.home.products {
  overflow: hidden;
  margin-bottom: clamp(45px, 12vw, 150px);
}
section.home.products h2.h0 {
  margin-bottom: clamp(15px, 4vw, 50px);
  font-size: 8vw;
}
section.home.products .flicking-viewport {
  overflow: visible;
}
section.home.products .flicking-viewport .panel {
  position: relative;
  width: 25vw;
  max-width: 450px;
  margin-left: 50px;
  border: 5px solid #DBE1DB;
  padding: 25px;
  background-color: #FEFFFA;
  overflow: hidden;
}
section.home.products .flicking-viewport .panel svg.bg {
  position: absolute;
  height: 100%;
  top: 0;
  right: -50px;
  z-index: 0;
}
section.home.products .flicking-viewport .panel h4 {
  color: #485948;
  text-transform: none;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  z-index: 2;
}
section.home.products .flicking-viewport .panel p {
  position: relative;
  z-index: 2;
  color: #485948;
  margin-bottom: 25px;
}
section.home.products .flicking-viewport .panel .image-container {
  background-color: #EDF1DD;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}
section.home.products .flicking-viewport .panel .image-container img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}
section.home.products .flicking-viewport .panel .button-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}
section.home.products .flicking-viewport .panel .button-container .arrow-button span.text {
  text-transform: uppercase;
}
section.home.products .flicking-navigation {
  display: flex;
  gap: 25px;
  margin-top: clamp(15px, 4vw, 50px);
}
section.home.products .flicking-navigation button {
  cursor: pointer;
}
section.home.products .flicking-navigation button svg path.bg {
  transition: 0.25s ease all;
}
section.home.products .flicking-navigation button svg path.arrow {
  transition: 0.25s ease all;
}
section.home.products .flicking-navigation button:hover svg path.bg {
  fill: rgb(205.0909090909, 213.4090909091, 205.0909090909);
}
section.home.products .flicking-navigation button.prev:hover svg path.arrow {
  transform: translateX(-5px);
}
section.home.products .flicking-navigation button.next:hover svg path.arrow {
  transform: translateX(5px);
}
section.home.text.dark {
  padding-top: clamp(45px, 12vw, 150px);
  padding-bottom: clamp(45px, 12vw, 150px);
}
section.home.text.dark .image-container {
  padding-top: clamp(15px, 4vw, 50px);
  padding-bottom: clamp(45px, 12vw, 150px);
}
section.home.text.dark .button-container {
  transform: translateY(calc(0 - clamp(45px, 12vw, 150px)));
}
section.home.text h3 {
  margin-bottom: clamp(45px, 12vw, 150px);
}
section.home.text h3.no-padding {
  margin-bottom: clamp(15px, 4vw, 50px);
}
section.home.text .dual-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(30px, 8vw, 100px);
}
section.home.text .button-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: clamp(30px, 8vw, 100px);
  margin-top: 50px;
}
section.home.text .button-container .wrapper-start {
  grid-column: 1;
  display: flex;
  gap: 25px;
}
section.home.text .button-container .wrapper {
  grid-column: 2;
  display: flex;
  gap: 25px;
}
section.home.image-slider {
  overflow: hidden;
  margin-top: clamp(45px, 12vw, 150px);
  margin-bottom: clamp(45px, 12vw, 150px);
}
section.home.image-slider .flicking-viewport {
  overflow: visible;
}
section.home.image-slider .flicking-viewport .flicking-camera .panel {
  border: 2px solid #9FAC9F;
  height: 80vh;
  width: auto;
  margin-left: 50px;
}
section.home.image-slider .flicking-viewport .flicking-camera .panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.home.image-slider .flicking-navigation {
  display: flex;
  gap: 25px;
  margin-top: 50px;
}
section.home.image-slider .flicking-navigation button {
  cursor: pointer;
}
section.home.image-slider .flicking-navigation button svg path.bg {
  transition: 0.25s ease all;
}
section.home.image-slider .flicking-navigation button svg path.arrow {
  transition: 0.25s ease all;
}
section.home.image-slider .flicking-navigation button:hover svg path.bg {
  fill: rgb(205.0909090909, 213.4090909091, 205.0909090909);
}
section.home.image-slider .flicking-navigation button.prev:hover svg path.arrow {
  transform: translateX(-5px);
}
section.home.image-slider .flicking-navigation button.next:hover svg path.arrow {
  transform: translateX(5px);
}
section.home.brands {
  padding-top: clamp(30px, 8vw, 100px);
  overflow: hidden;
}
section.home.brands .flicking-viewport {
  overflow: visible;
}
section.home.brands .flicking-viewport .flicking-camera .panel {
  width: 15vw;
  margin-left: 7.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.home.brands .flicking-viewport .flicking-camera .panel img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

section.product.intro {
  padding-top: clamp(90px, 24vw, 300px);
}
section.product.intro .intro-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
section.product.intro .intro-bg img {
  width: 100%;
  object-fit: contain;
  opacity: 0.5;
}
section.product.intro .cell h1.h0 {
  font-size: 9vw;
}
section.product.product-list {
  padding-top: clamp(30px, 8vw, 100px);
  padding-bottom: clamp(30px, 8vw, 100px);
}
section.product.product-list .product-card {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-gap: 50px;
  margin-bottom: 50px;
  border: 3px solid #C4D6C4;
  border-radius: 10px;
  padding: 25px;
  background-color: #FEFFFA;
}
section.product.product-list .product-card .image-container {
  background-color: #EDF1DD;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  border: 2px solid #C4D6C4;
}
section.product.product-list .product-card .image-container img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}
section.product.product-list .product-card .text-container {
  padding-top: 35px;
  padding-bottom: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section.product.product-list .product-card .text-container h4 {
  padding-bottom: 25px;
}
section.product.product-list .product-card .text-container p {
  color: #485948;
}
section.product.product-list .product-card .text-container .bottom-text p {
  margin-bottom: 0;
}
section.product.product-list .product-card .slider-button {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section.product.product-list .product-card .slider-button .flicking-viewport {
  background-color: #EDF1DD;
  aspect-ratio: 4/3;
  border: 2px solid #C4D6C4;
  border-radius: 10px;
}
section.product.product-list .product-card .slider-button .flicking-viewport .flicking-camera .panel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
section.product.product-list .product-card .slider-button .flicking-viewport .flicking-camera .panel img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}
section.product.product-list .product-card .slider-button .flicking-viewport .navigation {
  position: absolute;
  z-index: 2;
  bottom: 0;
  display: flex;
  align-items: center;
}
section.product.product-list .product-card .slider-button .flicking-viewport .navigation:hover svg path.bg {
  fill: rgb(180.955, 203.545, 180.955);
}
section.product.product-list .product-card .slider-button .flicking-viewport .navigation:hover svg path.arrow {
  transform: translateX(3px);
}
section.product.product-list .product-card .slider-button .flicking-viewport .navigation:hover .text-label {
  color: rgb(49.1925465839, 60.8074534161, 49.1925465839);
}
section.product.product-list .product-card .slider-button .flicking-viewport .navigation:hover .text-label span {
  color: rgb(49.1925465839, 60.8074534161, 49.1925465839);
}
section.product.product-list .product-card .slider-button .flicking-viewport .navigation svg path.bg {
  transition: 0.25s ease all;
}
section.product.product-list .product-card .slider-button .flicking-viewport .navigation svg path.arrow {
  transition: 0.25s ease all;
  display: inline-block;
}
section.product.product-list .product-card .slider-button .flicking-viewport .navigation .text-label {
  color: #485948;
  font-weight: 500;
  margin-left: 15px;
}
section.product.product-list .product-card .slider-button .flicking-viewport .navigation .text-label span {
  color: #485948;
  font-weight: 500;
}
section.product.product-list .product-card .slider-button .flicking-viewport .navigation .text-label span.name {
  display: inline-block;
  margin-left: 5px;
  transition: 0.25s ease all;
}
section.product.product-list .product-card .slider-button .flicking-viewport .navigation .text-label span.name.changing {
  opacity: 0;
  transform: translateX(-3px);
}
section.product.product-list .product-card .slider-button .flicking-viewport .navigation .text-label span.name.changed {
  opacity: 0;
  transform: translateX(3px);
}
section.product.product-list .product-card .slider-button .button-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
}
section.product.image-slider {
  margin: 0;
  padding-top: clamp(45px, 12vw, 150px);
  padding-bottom: clamp(45px, 12vw, 150px);
  overflow: hidden;
}
section.product.image-slider .flicking-viewport {
  overflow: visible;
  margin-bottom: clamp(15px, 4vw, 50px);
}
section.product.image-slider .flicking-viewport .flicking-camera .panel {
  width: 80vh;
  height: auto;
  margin-right: 50px;
}
section.product.image-slider .flicking-viewport .flicking-camera .panel img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.product.image-slider .flicking-navigation {
  display: flex;
  gap: 25px;
  margin-top: 50px;
}
section.product.image-slider .flicking-navigation button {
  cursor: pointer;
}
section.product.image-slider .flicking-navigation button svg path.bg {
  transition: 0.25s ease all;
}
section.product.image-slider .flicking-navigation button svg path.arrow {
  transition: 0.25s ease all;
}
section.product.image-slider .flicking-navigation button:hover svg path.bg {
  fill: rgb(205.0909090909, 213.4090909091, 205.0909090909);
}
section.product.image-slider .flicking-navigation button.prev:hover svg path.arrow {
  transform: translateX(-5px);
}
section.product.image-slider .flicking-navigation button.next:hover svg path.arrow {
  transform: translateX(5px);
}
section.product.text {
  margin-bottom: clamp(30px, 8vw, 100px);
}
section.product.text.dark {
  padding-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
section.product.accessories {
  padding-bottom: clamp(45px, 12vw, 150px);
}
section.product.accessories .cell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
}
section.product.accessories .cell .accessory-card {
  position: relative;
  width: 100%;
  border: 5px solid #DBE1DB;
  padding: 25px;
  overflow: hidden;
}
section.product.accessories .cell .accessory-card svg.bg {
  position: absolute;
  height: 100%;
  top: 0;
  right: -50px;
  z-index: -1;
}
section.product.accessories .cell .accessory-card h4 {
  color: #485948;
  text-transform: none;
  margin-bottom: 25px;
  text-align: center;
}
section.product.accessories .cell .accessory-card p {
  color: #485948;
  margin-bottom: 15px;
}
section.product.accessories .cell .accessory-card p.spared {
  padding-right: 50%;
  margin-bottom: 0;
}
section.product.accessories .cell .accessory-card .image-container {
  background-color: #EDF1DD;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  margin-bottom: 25px;
}
section.product.accessories .cell .accessory-card .image-container img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}
section.product.accessories .cell .accessory-card .button-container {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 25px;
  right: 25px;
}
section.product.accessories .cell .accessory-card .button-container .ep-label {
  position: relative;
}
section.product.brands {
  padding-bottom: clamp(45px, 12vw, 150px);
  margin-bottom: 0;
}

section.contact.banner {
  padding-top: clamp(90px, 24vw, 300px);
}
section.contact.banner .intro-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
section.contact.banner .intro-bg img {
  width: 100%;
  object-fit: contain;
}
section.contact.banner .cell h1.h0 {
  text-align: center;
  font-size: 12vw;
  line-height: 1;
  margin: 0;
  transform: translateY(17.5%);
}
section.contact.banner .cell .image-container {
  width: 100%;
}
section.contact.banner .cell .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.contact.text {
  padding-top: clamp(45px, 12vw, 150px);
  padding-bottom: clamp(45px, 12vw, 150px);
}
section.contact.text .button-container {
  margin-top: clamp(15px, 4vw, 50px);
}
section.contact.text .button-container .wrapper-start {
  grid-column: 1;
  display: flex;
  gap: 25px;
}
section.contact.text hr {
  max-width: none;
  border: none;
  height: 1px;
  background-color: #000000;
  margin-top: clamp(30px, 8vw, 100px);
  margin-bottom: clamp(30px, 8vw, 100px);
}
section.contact.form .cell h2.h0 {
  font-size: 6vw;
}
section.contact.brands {
  padding-bottom: clamp(30px, 8vw, 100px);
}

/* Footer
-----------------*/
footer {
  background-color: #242D24;
  padding-top: clamp(30px, 8vw, 100px);
}
footer .row-1 .cell {
  display: grid;
  grid-template-columns: 6fr 3fr;
}
footer .row-1 .cell .logo svg {
  max-width: 20vw;
}
footer .row-1 .cell .social-text-container {
  display: flex;
}
footer .row-1 .cell .social-text-container ul.socials {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0;
  margin-right: 50px;
}
footer .row-1 .cell .social-text-container ul.socials li {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #EDF1DD;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease all;
}
footer .row-1 .cell .social-text-container ul.socials li:hover {
  border: 1px solid #485948;
}
footer .row-1 .cell .social-text-container ul.socials li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .row-1 .cell .social-text-container p {
  color: #9FAC9F;
  margin-bottom: 0;
}
footer .row-1 .cell .social-text-container p strong {
  color: #DBE1DB;
}
footer .row-1 .cell .social-text-container a {
  color: #9FAC9F;
  transition: 0.25s ease all;
}
footer .row-1 .cell .social-text-container a:hover {
  color: #FFFFFF;
}
footer .row-2 {
  margin-top: clamp(30px, 8vw, 100px);
}
footer .row-2 .cell {
  padding-bottom: clamp(15px, 4vw, 50px);
  display: grid;
  grid-template-columns: 6fr 3fr;
}
footer .row-2 .cell p {
  color: #9FAC9F;
}
footer .row-2 .cell ul.links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  gap: 25px;
}
footer .row-2 .cell ul.links li a {
  color: #9FAC9F;
  transition: 0.25s ease all;
  font-weight: 300;
}
footer .row-2 .cell ul.links li a:hover {
  color: #FFFFFF;
}

/* Media Queries
-------------------------*/
@media screen and (min-width: 1026px) {
  .phablet {
    display: none !important;
  }
}
@media screen and (min-width: 642px) {
  .mobile-only {
    display: none !important;
  }
}
@media screen and (max-width: 1025px) {
  .desktop-only {
    display: none !important;
  }
  header .cell .logo {
    width: 200px;
  }
  header .cell .menu {
    padding: 15px;
  }
  nav .off-canvas {
    width: 90%;
  }
  nav .off-canvas .menu-container {
    width: 70vw;
  }
  nav .off-canvas .menu-container .close {
    top: 15px;
  }
  nav .off-canvas .bottom-links {
    width: 70vw;
  }
  nav .off-canvas .bottom-links ul {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 10px;
  }
  section.form .form-video-container {
    grid-template-columns: 1fr;
  }
  section.home.intro {
    margin-top: 100px;
  }
  section.home.intro .intro-bg {
    align-items: flex-start;
    top: 110vh;
  }
  section.home.intro .cell {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  section.home.intro .cell .text-container {
    order: 2;
  }
  section.home.intro .cell .video-container {
    width: 100%;
    order: 1;
    justify-content: center;
    margin-bottom: 10vh;
  }
  section.home.intro .cell .video-container video {
    max-width: 100%;
    max-height: 90vh;
  }
  section.home.text .button-container {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }
  section.home.text .dual-columns {
    grid-template-columns: 1fr;
  }
  section.home.text .wrapper, section.home.text .wrapper-start {
    margin-top: 25px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  section.home.products h2.h0 {
    font-size: 10vw;
  }
  section.home.products .flicking-viewport .panel {
    width: 50vw;
  }
  section.home.image-slider .flicking-viewport .flicking-camera .panel {
    height: auto;
    width: 75vw;
  }
  section.home.brands .flicking-viewport .flicking-camera .panel {
    width: 35vw;
    margin-right: 25px;
  }
  section.product.product-list .product-card {
    grid-gap: 15px;
    grid-template-columns: repeat(5, 1fr);
  }
  section.product.product-list .product-card .title-container {
    grid-row: 1;
    grid-column: 1/span 5;
  }
  section.product.product-list .product-card .image-container {
    grid-row: 2;
    grid-column: 1/span 2;
    height: 100%;
  }
  section.product.product-list .product-card .text-container {
    grid-row: 4;
    grid-column: 1/span 5;
  }
  section.product.product-list .product-card .slider-button {
    grid-row: 2;
    grid-column: 3/span 3;
    height: 100%;
  }
  section.product.product-list .product-card .slider-button .button-container {
    display: none;
  }
  section.product.product-list .product-card .button-wrapper {
    grid-row: 5;
    grid-column: 1/span 5;
    display: flex;
    justify-content: flex-start;
  }
  section.product.image-slider .flicking-viewport .flicking-camera .panel {
    height: auto;
    width: 75vw;
  }
  section.product.image-slider .flicking-navigation {
    margin-top: 25px;
  }
  section.product.accessories .cell {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 35px;
  }
  section.contact.text .button-container {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }
  section.contact.text .dual-columns {
    grid-template-columns: 1fr;
  }
  section.contact.text .wrapper, section.contact.text .wrapper-start {
    flex-direction: column;
  }
  footer .row-1 .cell {
    grid-template-columns: 1fr;
  }
  footer .row-1 .cell .logo {
    margin-bottom: 25px;
  }
  footer .row-1 .cell .logo svg {
    max-width: 70vw;
  }
  footer .row-2 {
    padding-bottom: 25px;
  }
  footer .row-2 .cell {
    grid-template-columns: 1fr;
  }
  footer .row-2 .cell ul.links {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
}
@media screen and (max-width: 641px) {
  .tablet-up {
    display: none !important;
  }
  header {
    top: 10px;
  }
  header.scrolled {
    transform: translateY(0);
  }
  header .cell .logo {
    width: 165px;
  }
  header .cell .menu {
    padding: 10px;
  }
  header .cell .menu .icon {
    width: 20px;
    height: 20px;
  }
  nav .off-canvas {
    width: 100%;
  }
  nav .off-canvas .menu-container {
    margin-top: 10px;
    width: 90vw;
  }
  nav .off-canvas .menu-container ul li {
    padding: 10px 0;
  }
  nav .off-canvas .menu-container ul li a {
    font-size: 5vw;
  }
  nav .off-canvas .bottom-links {
    width: 90vw;
  }
  nav .off-canvas .bottom-links ul {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 10px;
  }
  section.form .form-video-container .product-selector .group ul li {
    grid-template-columns: 40px 1fr;
    grid-gap: 10px;
  }
  section.form .form-video-container .product-selector .group ul li span.nr {
    width: 40px;
    height: 40px;
  }
  section.form .form-video-container .product-selector .group ul li span.text {
    height: 40px;
  }
  section.form .form-video-container .video-container {
    margin-bottom: 50px;
  }
  section.home.intro {
    margin-top: 100px;
  }
  section.home.intro .intro-bg {
    top: 125vw;
  }
  section.home.intro .cell .text-container {
    order: 2;
  }
  section.home.intro .cell .text-container h1 {
    font-size: 10vw;
  }
  section.home.intro .cell .text-container p {
    padding-top: 1rem;
    width: 100%;
  }
  section.home.intro .cell .video-container {
    order: 1;
  }
  section.home.products h2.h0 {
    margin-bottom: 25px;
  }
  section.home.products .flicking-viewport .panel {
    width: 90%;
    padding: 15px;
    margin-left: 25px;
  }
  section.home.products .flicking-viewport .panel h4 {
    margin-bottom: 10px;
  }
  section.home.products .flicking-viewport .panel .image-container {
    margin-bottom: 10px;
  }
  section.home.products .flicking-viewport .panel p {
    margin-bottom: 10px;
  }
  section.home.products .flicking-viewport .panel .button-container .arrow-button {
    width: 200px;
  }
  section.home.products .flicking-viewport .panel .button-container .ep-label {
    display: none;
  }
  section.home.products .flicking-navigation {
    justify-content: space-between;
  }
  section.home.products .flicking-navigation button {
    width: 80px;
  }
  section.home.text .wrapper a, section.home.text .wrapper-start a {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  section.home.text .image-container img {
    aspect-ratio: 5/4;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  section.home.image-slider .flicking-viewport .flicking-camera .panel {
    width: 85vw;
  }
  section.home.image-slider .flicking-navigation {
    justify-content: space-between;
  }
  section.home.image-slider .flicking-navigation button {
    width: 80px;
  }
  section.home.form h2.h0 {
    margin-bottom: 50px;
  }
  section.home.brands .flicking-viewport .flicking-camera .panel {
    width: 50vw;
    margin-left: 10px;
  }
  section.product.intro {
    padding-top: 150px;
  }
  section.product.product-list {
    padding-top: 100px;
  }
  section.product.product-list .product-card {
    border: none;
    border-radius: 0px;
    border-bottom: 3px solid #C4D6C4;
    padding: 0;
    padding-bottom: 25px;
  }
  section.product.product-list .product-card .image-container {
    width: calc(100% + 5vw + 0.625rem);
    transform: translateX(calc(0px - 5vw - 0.625rem));
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-left: none;
  }
  section.product.product-list .product-card .slider-button {
    width: calc(100% + 5vw + 0.625rem);
  }
  section.product.product-list .product-card .slider-button .flicking-viewport {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-right: none;
  }
  section.product.product-list .product-card .slider-button .flicking-viewport .navigation .text-label span.name {
    display: none;
  }
  section.product.image-slider .flicking-viewport .flicking-camera .panel {
    width: 85vw;
  }
  section.product.image-slider .flicking-navigation {
    justify-content: space-between;
  }
  section.product.image-slider .flicking-navigation button {
    width: 80px;
  }
  section.product.accessories {
    padding-top: 100px;
  }
  section.product.accessories .grid-x.contained {
    padding: 0 5vw;
  }
  section.product.accessories .cell {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 25px;
  }
  section.product.accessories .cell .accessory-card {
    padding: 15px;
    border: 3px solid #DBE1DB;
  }
  section.product.accessories .cell .accessory-card svg.bg path {
    transform: translateX(50px);
  }
  section.product.accessories .cell .accessory-card h4 {
    margin-bottom: 15px;
    text-transform: uppercase;
  }
  section.product.accessories .cell .accessory-card .image-container {
    aspect-ratio: 5/3;
    margin-bottom: 15px;
  }
  section.product.accessories .cell .accessory-card .image-container img {
    height: 50%;
  }
  section.product.accessories .cell .accessory-card p {
    margin-bottom: 0;
    font-size: clamp(12px, 1.8vw, 18px);
  }
  section.product.accessories .cell .accessory-card p.spared {
    padding-right: 0;
  }
  section.product.accessories .cell .accessory-card .button-container .ep-label {
    display: none;
  }
  section.contact.banner {
    padding-top: 150px;
  }
  section.contact.banner .cell h1.h0 {
    transform: translateY(0%);
  }
  section.contact.banner .cell .image-container {
    margin-top: 50px;
  }
  section.contact.banner .cell .image-container img {
    aspect-ratio: 5/4;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  section.contact.text {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  section.contact.form {
    padding-top: 50px;
  }
  footer {
    padding-bottom: 25px;
  }
}