/* Bubbel container */
.bubbles {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

/* Individuele bubbels */
.bubble {
  position: absolute;
  bottom: -100px;
  border-radius: 50%;
  opacity: 0;

  /* Realistisch zeepbel effect */
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 107, 53, 0.3) 30%,
    rgba(0, 191, 255, 0.2) 60%,
    rgba(255, 20, 147, 0.1) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.2),
    0 0 10px rgba(255, 107, 53, 0.1);

  /* Animatie */
  -webkit-animation: float-up 15s linear;
  -moz-animation: float-up 15s linear;
  -o-animation: float-up 15s linear;
  animation: float-up 15s linear;
}

/* Verschillende kleuren voor verschillende bubbels */
.bubble:nth-child(1) {
  background: radial-gradient(
    circle at 25% 25%,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 107, 53, 0.4) 30%,
    rgba(255, 165, 0, 0.2) 70%,
    rgba(255, 69, 0, 0.1) 100%
  );
}

.bubble:nth-child(2) {
  background: radial-gradient(
    circle at 35% 30%,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(0, 191, 255, 0.3) 30%,
    rgba(30, 144, 255, 0.2) 60%,
    rgba(0, 100, 200, 0.1) 100%
  );
}

.bubble:nth-child(3) {
  background: radial-gradient(
    circle at 30% 35%,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 20, 147, 0.3) 30%,
    rgba(255, 105, 180, 0.2) 60%,
    rgba(199, 21, 133, 0.1) 100%
  );
}

.bubble:nth-child(4) {
  background: radial-gradient(
    circle at 28% 28%,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(50, 205, 50, 0.3) 30%,
    rgba(0, 255, 127, 0.2) 60%,
    rgba(0, 128, 0, 0.1) 100%
  );
}

.bubble:nth-child(5) {
  background: radial-gradient(
    circle at 32% 25%,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 107, 53, 0.4) 30%,
    rgba(255, 140, 0, 0.2) 60%,
    rgba(255, 69, 0, 0.1) 100%
  );
}

.bubble:nth-child(6) {
  background: radial-gradient(
    circle at 30% 32%,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(138, 43, 226, 0.3) 30%,
    rgba(147, 112, 219, 0.2) 60%,
    rgba(75, 0, 130, 0.1) 100%
  );
}

.bubble:nth-child(7) {
  background: radial-gradient(
    circle at 35% 28%,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 215, 0, 0.3) 30%,
    rgba(255, 255, 0, 0.2) 60%,
    rgba(218, 165, 32, 0.1) 100%
  );
}

.bubble:nth-child(8) {
  background: radial-gradient(
    circle at 25% 30%,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(0, 255, 255, 0.3) 30%,
    rgba(64, 224, 208, 0.2) 60%,
    rgba(0, 128, 128, 0.1) 100%
  );
}

/* Verschillende groottes en posities */
.bubble:nth-child(1) {
  width: 12px;
  height: 12px;
  left: 10%;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
}

.bubble:nth-child(2) {
  width: 18px;
  height: 18px;
  left: 25%;
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -o-animation-delay: 2s;
  animation-delay: 2s;
}

.bubble:nth-child(3) {
  width: 10px;
  height: 10px;
  left: 40%;
  -webkit-animation-delay: 4s;
  -moz-animation-delay: 4s;
  -o-animation-delay: 4s;
  animation-delay: 4s;
}

.bubble:nth-child(4) {
  width: 15px;
  height: 15px;
  left: 55%;
  -webkit-animation-delay: 6s;
  -moz-animation-delay: 6s;
  -o-animation-delay: 6s;
  animation-delay: 6s;
}

.bubble:nth-child(5) {
  width: 20px;
  height: 20px;
  left: 70%;
  -webkit-animation-delay: 8s;
  -moz-animation-delay: 8s;
  -o-animation-delay: 8s;
  animation-delay: 8s;
}

.bubble:nth-child(6) {
  width: 11px;
  height: 11px;
  left: 85%;
  -webkit-animation-delay: 10s;
  -moz-animation-delay: 10s;
  -o-animation-delay: 10s;
  animation-delay: 10s;
}

.bubble:nth-child(7) {
  width: 14px;
  height: 14px;
  left: 15%;
  -webkit-animation-delay: 12s;
  -moz-animation-delay: 12s;
  -o-animation-delay: 12s;
  animation-delay: 12s;
}

.bubble:nth-child(8) {
  width: 16px;
  height: 16px;
  left: 65%;
  -webkit-animation-delay: 14s;
  -moz-animation-delay: 14s;
  -o-animation-delay: 14s;
  animation-delay: 14s;
}

/* Bubbel animatie */
@-webkit-keyframes float-up {
  0% {
    bottom: -100px;
    opacity: 0;
    -webkit-transform: translateX(0px) scale(0.5);
  }
  10% {
    opacity: 0.6;
  }
  20% {
    opacity: 0.8;
    -webkit-transform: translateX(10px) scale(0.8);
  }
  40% {
    opacity: 0.7;
    -webkit-transform: translateX(-5px) scale(1);
  }
  60% {
    opacity: 0.6;
    -webkit-transform: translateX(15px) scale(0.9);
  }
  80% {
    opacity: 0.4;
    -webkit-transform: translateX(-10px) scale(0.7);
  }
  100% {
    bottom: 110vh;
    opacity: 0;
    -webkit-transform: translateX(5px) scale(0.3);
  }
}

@-moz-keyframes float-up {
  0% {
    bottom: -100px;
    opacity: 0;
    -moz-transform: translateX(0px) scale(0.5);
  }
  10% {
    opacity: 0.6;
  }
  20% {
    opacity: 0.8;
    -moz-transform: translateX(10px) scale(0.8);
  }
  40% {
    opacity: 0.7;
    -moz-transform: translateX(-5px) scale(1);
  }
  60% {
    opacity: 0.6;
    -moz-transform: translateX(15px) scale(0.9);
  }
  80% {
    opacity: 0.4;
    -moz-transform: translateX(-10px) scale(0.7);
  }
  100% {
    bottom: 110vh;
    opacity: 0;
    -moz-transform: translateX(5px) scale(0.3);
  }
}

@-o-keyframes float-up {
  0% {
    bottom: -100px;
    opacity: 0;
    -o-transform: translateX(0px) scale(0.5);
  }
  10% {
    opacity: 0.3;
  }
  20% {
    opacity: 0.6;
    -o-transform: translateX(10px) scale(0.8);
  }
  40% {
    opacity: 0.4;
    -o-transform: translateX(-5px) scale(1);
  }
  60% {
    opacity: 0.3;
    -o-transform: translateX(15px) scale(0.9);
  }
  80% {
    opacity: 0.2;
    -o-transform: translateX(-10px) scale(0.7);
  }
  100% {
    bottom: 110vh;
    opacity: 0;
    -o-transform: translateX(5px) scale(0.3);
  }
}

@keyframes float-up {
  0% {
    bottom: -100px;
    opacity: 0;
    transform: translateX(0px) scale(0.5);
  }
  10% {
    opacity: 0.3;
  }
  20% {
    opacity: 0.6;
    transform: translateX(10px) scale(0.8);
  }
  40% {
    opacity: 0.4;
    transform: translateX(-5px) scale(1);
  }
  60% {
    opacity: 0.3;
    transform: translateX(15px) scale(0.9);
  }
  80% {
    opacity: 0.2;
    transform: translateX(-10px) scale(0.7);
  }
  100% {
    bottom: 110vh;
    opacity: 0;
    transform: translateX(5px) scale(0.3);
  }
}

/* Responsief voor mobiel */
@media (max-width: 768px) {
  .bubble {
    -webkit-animation-duration: 20s;
    -moz-animation-duration: 20s;
    -o-animation-duration: 20s;
    animation-duration: 20s;
  }
}

/* Hier kun je je eigen CSS toevoegen */

.calculator .left,
.calculator .right {
  max-width: 92vw;
}

/* Unieke stijlen voor de portfolio-pagina */
.portfolio {
  margin: 4rem auto 8rem;
}

.portfolio .sqzl-flex {
  border-radius: 1rem;
  margin: 2rem 0;
}

.portfolio .sqzl-flex.mobile-column:not(#footer .mobile-column) {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 4px 0px;
  max-height: 60vh;
  margin: 16rem auto;
}

.portfolio .right {
  flex: 1;
}

.portfolio p {
  font-weight: 500;
  font-size: 14px;
}

.portfolio .left .label {
  font-weight: bold;
  font-size: 16px;
  transform: unset;
  margin: unset;
}

.portfolio h4 {
  margin: 2rem 0 1rem;
  font-family: Montserrat;
  font-weight: bold;
}

.portfolio .left {
  padding: 0 2rem 0 6rem;
}

/* Achtergrondkleuren voor klantnamen */
.riverwood {
  background-color: #f9f2e390;
}

.looping {
  background-color: #ede4f6;
}

.vertellis {
  background-color: #fbebe180;
}

.dochorse {
  background-color: #353d6b60;
}

.portfolio .groenovatie {
  background-color: #bee2bf80;
}

.ade {
  background-color: #d9d9d980;
}

.paradiso {
  background-color: #f78f1e60;
}

/* Media queries specifiek voor de portfolio-pagina */
@media (max-width: 768px) {
  .portfolio .left,
  .portfolio .right {
    width: 100%;
    padding: 2rem;
  }
  .portfolio .label {
    padding: 1rem 2rem !important;
  }
  .portfolio .sqzl-flex.mobile-column:not(#footer .mobile-column) {
    max-height: unset;
    margin: 4rem 0;
  }
  .portfolio .right img {
    margin-top: -40px;
    transition: 0.4s;
  }
  .portfolio .right img:hover {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

/* Basis stijl voor mobiel menu items */
.desktop .menu a {
  text-decoration: none;
  padding: 20px;
  /* Altijd transitie eigenschappen hebben, zelfs als verborgen */
  transition: opacity 0.3s ease, transform 0.3s ease;

  transform: translateY(0px);
}

/* Toon actieve menu items per pagina template */
.home .desktop .menu a.home,
.werkwijze .desktop .menu a.werkwijze,
.portfolio .desktop .menu a.klanten {
  display: inline-block;
  opacity: 1;
  transform: translateY(0);
}

/* Menu uitgeklapt styling */
.desktop .menu.show-all {
  flex-direction: column !important;
  align-self: flex-start;
  margin-top: 2rem;
  gap: 1px;
  background-color: white;
  padding-left: 0 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bold-text {
  margin-top: 2rem;

  font-size: 28px;
  margin-bottom: 2rem;
  font-weight: bold;
}

/* Menu items in uitgeklapte staat */
.desktop .menu.show-all a {
  display: inline-block;
  border-radius: 0 !important;
  width: 100%;
}

/* Animatie volgorde voor menu items */
.desktop .menu.show-all a:nth-child(1) {
  transition-delay: 0.1s;
}
.desktop .menu.show-all a:nth-child(2) {
  transition-delay: 0.15s;
}
.desktop .menu.show-all a:nth-child(3) {
  transition-delay: 0.2s;
}
.desktop .menu.show-all a:nth-child(4) {
  transition-delay: 0.25s;
}

/* Actieve show-all staat */
.desktop .menu.show-all a {
  opacity: 1;
  transform: translateY(0);
}

/* Reset delays bij sluiten */
.desktop .menu:not(.show-all) a {
  transition-delay: 0s;
}

/* Specifieke styling voor eerste en laatste items */
.desktop .menu.show-all .home {
  border-radius: 8px 8px 0 0 !important;
}

.desktop .menu.show-all .contact {
  border-radius: 0 0 8px 8px !important;
}

@media (max-width: 921px) {
  .ast-separate-container #primary,
  .ast-separate-container #secondary {
    padding: 0;
  }
}

/* Verberg altijd de header, en verberg de footer behalve wanneer deze de klasse 'home' heeft */
.site-header,
.site-footer#colophon {
  display: none;
}

.ast-container {
  max-width: unset;
  padding: 0 !important;
  margin: unset;
}

.ast-separate-container #primary,
.ast-separate-container.ast-left-sidebar #primary,
.ast-separate-container.ast-right-sidebar #primary,
.ast-plain-container.ast-no-sidebar #primary {
  margin: 0 !important;
}

.slick-list {
  overflow: visible !important;
}

.werkwijze p,
.werkwijze b {
  margin: 2rem 0 !important;
}

.werkwijze .hero .container {
  margin-bottom: 0 !important;
}

.werkwijze .calculator {
  padding: 1rem;
  margin-bottom: 4rem !important;
}

.werkwijze main section .container:not(.hero .container) {
  max-width: 850px !important;
}

.bg-highlight {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#d0e5f8),
    color-stop(10%, #b5d9ff),
    to(#cfe3f6)
  );
  background: -o-linear-gradient(left, #d0e5f8, #b5d9ff 10%, #cfe3f6);
  background: linear-gradient(90deg, #d0e5f8, #b5d9ff 10%, #cfe3f6);
  border-radius: 6px 3px 6px 3px;
  padding: 0.25rem 0 0.25rem 0.25rem;
  display: inline;
}

body .werkwijze main section.calculator .container:not(.hero) {
  width: 100%;
  min-width: unset !important;
  max-width: unset !important;
}

/*! CSS Used from: https://houseofadsperiment.nl/wp-content/themes/houseofadsperiment/css/_base.css */
html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
u,
ul,
li,
label,
details,
footer,
header,
nav,
section,
summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

details,
footer,
header,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ul {
  list-style: none;
  padding: 0 2rem;
}

img,
iframe {
  vertical-align: bottom;
  max-width: 100%;
}

input {
  font: inherit;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/*! CSS Used from: https://houseofadsperiment.nl/wp-content/themes/houseofadsperiment/css/header.css */

@media (min-width: 1100px) {
  /* Container styling */
  header .container {
    z-index: 9998;
    width: 100%; /* Conflict: 160px vs 100% */
    position: relative; /* Conflict: fixed vs relative */
    background-color: unset !important; /* Conflict: #231f20 vs unset vs white */

    padding: 0 4rem 4rem;
    padding-top: 0px;
    margin-bottom: 0 !important;

    /* Flexbox conflicten */
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; /* Conflict: column vs row */
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  /* Logo styling */
  header .logo {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px 0 !important;

    -webkit-box-shadow: none;
    box-shadow: none; /* Conflict: met 0 1px 0 0 hsla(0, 0%, 40%, .27) */
    transition: all 0.2s ease-out;
  }

  /* Logo image */
  .logo img {
    max-height: 100px;
  }

  /* Menu styling */
  header .menu {
    display: flex;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; /* Conflict: column vs row */
    -webkit-box-flex: 3;
    -ms-flex: 3;
    flex: 3;
    justify-content: space-between;
    align-items: center;
    height: 400px;
    padding: 0 2rem;
  }
}

@media (max-width: 1100px) {
  header.desktop .container {
    height: 80px;
    width: 100%;
    bottom: 0;
    flex-direction: row;
    flex-wrap: nowrap;
    position: sticky;
    background-color: #231f20;
    padding: 0px 4%;
    align-items: flex-end;
    margin-bottom: 0px;
  }

  header.desktop .menu {
    flex-direction: row;
    transform: translateY(0px);
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    flex: 1 1 auto;
    padding-left: 2%;
    justify-content: space-evenly;
  }

  header.desktop .logo {
    width: 40% !important;
    margin-bottom: 1%;
    align-self: center;
  }

  header.desktop .logo {
    display: block;
    transition: all 0.2s ease-out;
    width: 15%;
    margin-left: 2%;
  }

  header.desktop .logo img {
    max-height: 80px;
  }
}

@media (max-width: 800px) {
  header.desktop .container {
    height: 80px;
    align-items: flex-end;
  }
}

@media (max-height: 650px) {
  header .logo {
    margin: 0px;
    padding: 20px;
  }
}

/*! CSS Used from: https://houseofadsperiment.nl/wp-content/themes/houseofadsperiment/css/.css */
html,
body {
  width: 100%;
  overflow-x: hidden;
  margin-top: 0px !important;
}

body {
  font-family: Avenir;
  font-size: 18px;
  line-height: 1;
  background-color: #ffffff;
  color: #666666;
  margin-bottom: 40px;
}

section {
  margin-left: 200px;
  margin-bottom: 80px;
}

.container {
  margin-left: 0;
  padding-top: 80px;
  padding-bottom: 80px;
  margin-bottom: 40px;
}

.container {
  display: flex;
  justify-content: space-around;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
}

h1 {
  font-family: "Avenir";
  font-size: 48px;
  font-weight: 700;
  color: #fdb701;
}

h2 {
  font-family: "Avenir";
  color: #fdb701;
  font-size: 36px;
}

h3 {
  font-family: "Avenir";
  color: #fdb701;
  font-size: 40px;
  text-align: center;
}

h4 {
  font-family: "Avenir";
  font-size: 32px;
  color: #fdb701;
  margin-bottom: 1rem;
}

h6 {
  color: white;
  font-weight: 500;
  font-family: "Avenir";
  font-size: 28px;
}

p {
  font-family: Avenir;
  line-height: 1.2;
}

.left {
  width: 50%;
  flex: 2 1 auto;
}

.right {
  width: 50%;
  flex: 1 2 auto;
}

button {
  background-color: #16c9c5;
  border-radius: 4px;
  border: none;
  padding: 16px 24px;
  margin-top: 20px;
  text-transform: uppercase;
}

a {
  text-decoration: none;
}

ul {
  line-height: 1.4;
}

.letsadsperiment button {
  margin: 0;
}

@media (max-width: 1100px) {
  section {
    margin-left: 0px;
    margin-bottom: 40px;
  }

  .container {
    margin-left: 0;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-bottom: 0px;
  }
}

@media (max-width: 800px) {
  .left,
  .right {
    flex-basis: 100%;
  }

  .left h2,
  .left p,
  .left h4,
  .left h1 {
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .right img {
    margin-top: 40px;
  }

  h2 {
    font-size: 32px;
    text-align: center;
  }

  h4 {
    font-size: 24px;
  }

  span {
    font-size: 16px;
  }

  li {
    font-size: 18px !important;
  }

  p {
    font-size: 16px;
  }

  h3 {
    font-size: 24px;
    margin-left: 0px;
  }

  h5 {
    font-size: 36px;
  }

  h6 {
    font-size: 20px;
  }
}

@media (min-width: 1100px) {
  section {
    margin-left: 280px;
    padding-right: 80px;
  }
}

/*! CSS Used from: https://houseofadsperiment.nl/wp-content/themes/houseofadsperiment/css/whyadsperiment.css */
.whyleft li {
  margin-bottom: 10px;
}

.whyleft h6 {
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .whyleft {
    order: 2;
  }

  .whyright {
    order: 1;
  }

  .right.whyright {
    padding-left: 20px;
  }
}

/*! CSS Used from: https://houseofadsperiment.nl/wp-content/uploads/sqzl-css.css */
:root {
  --breakpoint-m: 640px;
  --breakpoint-t: 1139px;
  --breakpoint-d: 1140px;
  --sqzl-breakpoint-m: 640px;
  --sqzl-breakpoint-t: 1139px;
  --sqzl-breakpoint-d: 1140px;
  --sqzl-box-shadow-light: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  --sqzl-box-shadow-dark: 0 2px 4px #1c1a52;
}

.sqzl-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sqzl-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.sqzl-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 768px) {
  .mobile-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/*! CSS Used from: https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick-theme.css */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

.slick-prev:before {
  content: "←";
}

.slick-next {
  right: -25px;
}

.slick-next:before {
  content: "→";
}

/*! CSS Used from: https://houseofadsperiment.nl/wp-includes/css/dist/block-library/style.min.css?ver=2c4c07a49d11fedd8b69669142966d53 ; media=all */
@media all {
  ul {
    box-sizing: border-box;
  }

  :root {
    --wp--preset--font-size--normal: 16px;
    --wp--preset--font-size--huge: 42px;
  }

  .screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
  }

  .screen-reader-text:focus {
    background-color: #ddd;
    clip: auto !important;
    clip-path: none;
    color: #444;
    display: block;
    font-size: 1em;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
  }
}

/*! CSS Used from: Embedded */
:root {
  --wp--preset--aspect-ratio--square: 1;
  --wp--preset--aspect-ratio--4-3: 4/3;
  --wp--preset--aspect-ratio--3-4: 3/4;
  --wp--preset--aspect-ratio--3-2: 3/2;
  --wp--preset--aspect-ratio--2-3: 2/3;
  --wp--preset--aspect-ratio--16-9: 16/9;
  --wp--preset--aspect-ratio--9-16: 9/16;
  --wp--preset--color--black: #000000;
  --wp--preset--color--cyan-bluish-gray: #abb8c3;
  --wp--preset--color--white: #ffffff;
  --wp--preset--color--pale-pink: #f78da7;
  --wp--preset--color--vivid-red: #cf2e2e;
  --wp--preset--color--luminous-vivid-orange: #ff6900;
  --wp--preset--color--luminous-vivid-amber: #fcb900;
  --wp--preset--color--light-green-cyan: #7bdcb5;
  --wp--preset--color--vivid-green-cyan: #00d084;
  --wp--preset--color--pale-cyan-blue: #8ed1fc;
  --wp--preset--color--vivid-cyan-blue: #0693e3;
  --wp--preset--color--vivid-purple: #9b51e0;
  --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(
    135deg,
    rgba(6, 147, 227, 1) 0%,
    rgb(155, 81, 224) 100%
  );
  --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(
    135deg,
    rgb(122, 220, 180) 0%,
    rgb(0, 208, 130) 100%
  );
  --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(
    135deg,
    rgba(252, 185, 0, 1) 0%,
    rgba(255, 105, 0, 1) 100%
  );
  --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(
    135deg,
    rgba(255, 105, 0, 1) 0%,
    rgb(207, 46, 46) 100%
  );
  --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(
    135deg,
    rgb(238, 238, 238) 0%,
    rgb(169, 184, 195) 100%
  );
  --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(
    135deg,
    rgb(74, 234, 220) 0%,
    rgb(151, 120, 209) 20%,
    rgb(207, 42, 186) 40%,
    rgb(238, 44, 130) 60%,
    rgb(251, 105, 98) 80%,
    rgb(254, 248, 76) 100%
  );
  --wp--preset--gradient--blush-light-purple: linear-gradient(
    135deg,
    rgb(255, 206, 236) 0%,
    rgb(152, 150, 240) 100%
  );
  --wp--preset--gradient--blush-bordeaux: linear-gradient(
    135deg,
    rgb(254, 205, 165) 0%,
    rgb(254, 45, 45) 50%,
    rgb(107, 0, 62) 100%
  );
  --wp--preset--gradient--luminous-dusk: linear-gradient(
    135deg,
    rgb(255, 203, 112) 0%,
    rgb(199, 81, 192) 50%,
    rgb(65, 88, 208) 100%
  );
  --wp--preset--gradient--pale-ocean: linear-gradient(
    135deg,
    rgb(255, 245, 203) 0%,
    rgb(182, 227, 212) 50%,
    rgb(51, 167, 181) 100%
  );
  --wp--preset--gradient--electric-grass: linear-gradient(
    135deg,
    rgb(202, 248, 128) 0%,
    rgb(113, 206, 126) 100%
  );
  --wp--preset--gradient--midnight: linear-gradient(
    135deg,
    rgb(2, 3, 129) 0%,
    rgb(40, 116, 252) 100%
  );
  --wp--preset--font-size--small: 13px;
  --wp--preset--font-size--medium: 20px;
  --wp--preset--font-size--large: 36px;
  --wp--preset--font-size--x-large: 42px;
  --wp--preset--spacing--20: 0.44rem;
  --wp--preset--spacing--30: 0.67rem;
  --wp--preset--spacing--40: 1rem;
  --wp--preset--spacing--50: 1.5rem;
  --wp--preset--spacing--60: 2.25rem;
  --wp--preset--spacing--70: 3.38rem;
  --wp--preset--spacing--80: 5.06rem;
  --wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);
  --wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);
  --wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);
  --wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1),
    6px 6px rgba(0, 0, 0, 1);
  --wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);
}

/*! CSS Used from: https://houseofadsperiment.nl/wp-content/themes/houseofadsperiment/style.css?ver=1.0.0 ; media=all */
@media all {
  html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
  }

  body {
    margin: 0;
  }

  main {
    display: block;
  }

  a {
    background-color: transparent;
  }

  img {
    border-style: none;
  }

  input {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
  }

  input {
    overflow: visible;
  }

  button,
  [type="button"] {
    -webkit-appearance: button;
  }

  [type="checkbox"] {
    box-sizing: border-box;
    padding: 0;
  }

  details {
    display: block;
  }

  summary {
    display: list-item;
  }

  *,
  *::before,
  *::after {
    box-sizing: inherit;
  }

  html {
    box-sizing: border-box;
  }

  .screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
  }
}

/*! CSS Used from: https://houseofadsperiment.nl/wp-content/themes/houseofadsperiment/css/custom.css?ver=2c4c07a49d11fedd8b69669142966d53 ; media=all */
@media all {
  @media (max-width: 767px) {
    .reviews-slider .sqzl-column {
      margin: 0 0.5rem !important;
    }

    .desktop .menu a {
      display: none;
    }
  }

  li {
    font-size: 22px;
  }

  @media (max-width: 800px) {
    .werkwijze.hero {
      background-image: none !important;
    }
  }

  @media (max-width: 1100px) {
     {
      display: none;
    }

    .desktop {
      display: block;
    }
  }

  .tekst {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 65%;
    margin-top: 120px;
  }

  .column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }

  .afbeelding {
    position: relative;
    display: inline-block;
    overflow: hidden;
    margin: -32px 0 0;
    -webkit-box-shadow: 0 -10px 20px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 -10px 20px -5px rgba(0, 0, 0, 0.1);
    width: 35%;
    height: auto;
    -webkit-transform: translateY(-40px) translateX(-20px);
    -ms-transform: translateY(-40px) translateX(-20px);
    transform: translateY(-40px) translateX(-20px);
  }

  .afbeelding img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  #footer {
    background-color: #231f20;
    margin-left: 200px;
    padding-left: 80px;
    padding-right: 0px;
    border-radius: 20px 0px 0px 0px;
    color: white;
    margin-bottom: 0;
    opacity: 1;
    -webkit-transition: all 0.8s ease-in;
    -o-transition: all 0.8s ease-in;
    transition: all 0.8s ease-in;
    max-height: 100%;
  }

  #footer .container {
    padding: 0;
    margin: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  a {
    color: inherit;
  }

  span:nth-child(3) {
    margin-bottom: 20px;
  }

  span {
    line-height: 1.25;
  }

  .letsadsperiment {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    border-radius: 8px;
    padding-left: 0px;
    padding-right: 0px;
    gap: 2rem;
    position: relative;
  }

  .lets {
    color: white;
    font-size: 54px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: "Bebas Neue";
  }

  .letstekst {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-bottom: 20px;
    margin-top: 40px;
  }

  .letsadsperiment a {
    margin-top: 10px;
    margin-bottom: 10px;
    color: white;
    font-weight: 600;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }

  .letsadsperiment button {
    -ms-flex-preferred-size: 100%;
    width: 100%;
  }

  @media (max-width: 500px) {
    .letsadsperiment button {
      margin-left: 0px;
    }
  }

  @media (max-width: 1100px) {
    #footer {
      margin-left: 10%;
      margin-bottom: 0px !important;
      padding-left: 20px;
    }

    .site-footer {
      margin-top: 80px;
    }

    .tekst {
      width: 60%;
      margin-top: 2rem;
    }

    .column {
      padding-right: 4px;
    }

    .letsadsperiment {
      width: 90%;
      width: 100%;
      gap: 0;
    }

    #footer a {
      width: 100%;
    }
  }

  @media (max-width: 800px) {
    #footer {
      margin-left: 10%;
      margin-bottom: 78px;
    }

    .afbeelding {
      width: 35%;
    }

    .lets {
      font-size: 40px;
    }

    .tekst {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }

    .column:nth-child(2) {
      margin-top: 20px;
    }

    .letsadsperiment {
      top: -20px;
    }
  }

  @media (max-width: 450px) {
    .afbeelding {
      -webkit-transform: translate(-10px, 60px);
      -ms-transform: translate(-10px, 60px);
      transform: translate(-10px, 60px);
    }

    .letsadsperiment {
      margin-left: auto;
      padding: 0;
      margin-right: auto;
    }

    .lets {
      font-size: 28px;
    }

    #footer a {
      font-size: 14px;
    }
  }

  button {
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }

  .linkedinlink {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 150%;
  }

  .linkedinlink svg {
    fill: white;
  }

  .linkedinlink a {
    margin-left: 4px;
  }

  .linkedinlink div {
    margin-left: 8px;
  }

  .site-footer {
    margin-top: 200px;
  }

  input {
    margin-top: 8px !important;
  }

  @media (min-width: 1100px) {
    .klanten {
      margin-left: 0px;
    }
  }

  .klanten {
    background-color: #1e1c1c0d;
  }

  .hero .container {
    padding-bottom: 0px;
    margin-bottom: 0px !important;
  }

  @media (min-width: 1100px) {
    section {
      margin-left: 160px !important;
      padding-right: 0px;
      margin-bottom: 2rem !important;
    }
  }

  @media (min-width: 768px) {
    .hero {
      background-size: cover;
      background-repeat: no-repeat;
      margin-bottom: 0px;
    }

    .left.hero {
      padding-left: 40px;
      width: 60%;
    }

    .right.hero {
      width: 35%;
    }
  }

  @media (max-width: 1380px) and (min-width: 768px) {
    .left.hero {
      padding-left: 40px;
    }

    .left.hero p {
      padding-right: 0px;
    }
  }

  @media (min-width: 1380px) {
    .left.hero p,
    .left.hero {
      padding-right: 80px;
    }
  }

  @media (max-width: 1315px) and (min-width: 768px) {
    .letsadsperiment {
      -webkit-transform: translateY(-180px) !important;
      -ms-transform: translateY(-180px) !important;
      transform: translateY(-180px) !important;
    }
  }

  section.hero {
    background-position: 30%;
  }

  h2,
  h3 {
    font-weight: bold;
  }

  @media (min-width: 1100px) {
    /* Container styling */
    header .container {
      z-index: 9998;
      width: 100%;
      position: relative;
      background-color: white !important;

      padding: 0 4rem 4rem;
      padding-top: 0px;
      margin-bottom: 0 !important;

      /* Flexbox eigenschappen */
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
      flex-direction: row !important;
      -webkit-box-align: end;
      -ms-flex-align: end;
      align-items: flex-end;
      -ms-flex-pack: distribute;
      justify-content: space-around;
    }

    /* Logo styling */
    header .logo {
      position: relative;
      -webkit-box-flex: 1;
      -ms-flex: 1;
      flex: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      padding: 20px 0;
      -webkit-box-shadow: none;
      box-shadow: none;
      transition: all 0.2s ease-out;
    }

    /* Logo image */
    .logo img {
      max-height: 100px;
    }

    /* Menu styling */
    header .menu {
      display: flex;
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
      flex-direction: row !important;
      -webkit-box-flex: 3;
      -ms-flex: 3;
      flex: 3;
      justify-content: space-between;
      align-items: center;
      height: 400px;
      padding: 0 2rem;
    }
  }

  @media (min-width: 800px) and (max-width: 1100px) {
    header.desktop .container {
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
    }

    header.desktop .logo {
      -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
    }

    header.desktop .menu {
      -ms-flex-preferred-size: 35%;
      flex-basis: 35%;
    }
    header.desktop .menu {
      -ms-flex-preferred-size: 35%;
      flex-basis: 35%;
    }

    header.desktop .container {
      background-color: #f9f9f9;
    }
  }

  button {
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    -o-transition: transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s;
  }

  button {
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    -o-transition: transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s;
  }

  button:hover {
    -webkit-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04);
  }

  /* Speciale hover voor footer buttons die al een translate hebben */
  .letsadsperiment button:hover {
    -webkit-transform: translateY(-180px) scale(1.04);
    -ms-transform: translateY(-180px) scale(1.04);
    transform: translateY(-180px) scale(1.04);
  }

  .hide {
    opacity: 0;
  }

  :root {
    --background-color: #f3f3f380;
  }

  button,
  .whyleft,
  .whyright {
    -webkit-box-shadow: 0px 0px 20px -10px grey;
    box-shadow: 0px 0px 20px -10px grey;
  }

  body p {
    line-height: 1.5;
  }

  .whyright {
    padding: 30px;
    border-radius: 8px;
    background-color: var(--background-color);
  }

  h1,
  h2,
  h3,
  h4,
  h5 {
    color: #2d3047 !important;
  }

  .right {
    position: relative;
  }

  section.hero {
    background-position-y: 51px;
  }

  .klanten {
    background-color: transparent;
  }

  @media (min-width: 801px) {
    nav.menu {
      height: 70% !important;
    }
  }

  nav.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap: 1rem;
  }

  .menu a {
    text-align: center;
    border: 1px solid #2d3047;
    border-bottom: 3px solid #2d3047;
    padding: 1rem 20px;
    color: #2d3047;
    border-radius: 8px;
    width: 180px;
    font-weight: bold;
  }

  .home a.home,
  .werkwijze a.werkwijze {
    background-color: #2d3047;
    color: white !important;
    border-bottom: 2px solid orange !important;
    font-weight: bold;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    display: block;
  }

  #footer {
    background-color: #2d3047 !important;
  }

  @media (min-width: 801px) and (max-width: 1485px) {
    .left.hero {
      padding-right: 25%;
      width: 100%;
    }
  }

  @media (min-width: 1100px) {
    section {
      margin-left: 200px !important;
    }

    .hero.left {
      width: 100%;
    }

    #footer {
      margin-left: 260px !important;
      background-color: #2d3047 !important;
    }
  }

  #footer h4 {
    color: white !important;
  }

  a.contact:before {
    margin-right: 4px;
    content: "\2615 ";
  }

  @media (max-width: 800px) {
    header.desktop .container {
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      height: 120px;
    }

    .right img {
      -webkit-transform: translate(0vw, 5vw);
      -ms-transform: translate(0vw, 5vw);
      transform: translate(0vw, 5vw);
    }

    .left h2,
    .left p,
    .left h4,
    .left h1 {
      padding: 0 !important;
    }

    h1 {
      font-size: 38px;
    }
  }

  .active {
    -webkit-animation: fadeInMSP 1s;
    animation: fadeInMSP 1s;
  }

  :root {
    --uur: 280px;
    --halfuur: calc(var(--uur) * 0.5);
    --driekwartier: calc(var(--uur) * 0.75);
  }

  :root {
    --verticaal-uur: 150px;
    --verticaal-halfuur: calc(var(--verticaal-uur) * 0.5);
    --verticaal-driekwartier: calc(var(--verticaal-uur) * 0.75);
  }

  .werkwijze.hero {
    background-color: var(--background-color-dark);
    max-width: unset !important;
    padding: 0 !important;
  }

  .werkwijze.hero .container {
    padding: 2rem;
  }

  .werkwijze.hero h1,
  .werkwijze.hero p {
    color: white !important;
  }

  .reviews .slick-track > div {
    padding: 2rem;
  }

  .reviews {
    margin-top: 4rem;
  }

  .reviews h3 {
    text-align: left;
    font-size: 22px;
  }

  .bg-dark {
    background-color: #2d3047;
    color: white;
    border-radius: 16px;
    box-shadow: var(--sqzl-box-shadow-light);
    padding: 2rem;
  }

  .bg-dark p,
  .bg-dark h3 {
    color: white !important;
  }

  .reviews img {
    margin: 0 auto 2rem;
    width: 50%;
  }

  .reviews-slider .sqzl-column {
    margin: 0 2rem;
  }

  .section-reviews-slider {
    max-width: unset;
  }

  .switch {
    position: absolute;
    display: inline-block;
    width: 100px;
    height: 50px;
    background-color: #008080;
    border-radius: 50px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.4s;
    margin-top: 1rem;
  }

  .left.hero {
    position: relative;
  }

  h1 span {
    line-height: inherit;
    text-decoration: underline;
  }

  h1 {
    line-height: 1.2 !important;
    margin-bottom: 1rem;
  }

  .hidden-h1 {
    display: none;
  }

  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: 0.4s;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
  }

  label .switchlabel {
    position: absolute;
    color: white;
    transition: opacity 0.4s;
    z-index: 4;
    color: #008080;
  }

  label .label-left {
    left: 18px;
    opacity: 1;
    font-size: 150%;
  }

  label .label-right {
    right: 20px;
    font-size: 150%;
  }

  .slider:before {
    content: "";
    position: absolute;
    height: 42px;
    width: 50px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: 0.4s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2;
  }

  input:checked + .slider:before {
    transform: translateX(40px);
  }

  @media (min-width: 767px) {
    .switch {
      top: -4rem;
      right: 8rem;
    }
  }

  @media (max-width: 767px) {
    .switch {
      top: -4rem;
      right: 0rem;
    }

    .left.hero {
      margin-top: 2rem;
    }
  }
}

/*! CSS Used from: https://houseofadsperiment.nl/wp-content/themes/houseofadsperiment/css/hoa.css?ver=2c4c07a49d11fedd8b69669142966d53 ; media=all */
@media all {
  :root {
    --background-color-light: white;
    --background-color-dark: #2d3047;
  }

  .bg-dark {
    background-color: var(--background-color-dark);
  }

  .bg-light {
    background-color: var(--background-color-light);
  }

  .bg-none {
    background-color: unset !important;
  }

  iframe {
    border-radius: 1rem;
  }

  body p {
    line-height: 1.8 !important;
    color: #2d3047 !important;
  }

  section {
    padding: 1rem;
  }

  .label {
    color: white !important;
    background-color: var(--lp-primary-color);
    padding: 0.5rem 2rem;
    border-radius: 2rem !important;
    margin-bottom: 1rem !important;
    font-weight: bold !important;
    font-size: 90%;
    -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 4px 0px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 4px 0px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    display: block !important;
  }

  button.cta {
    background-color: #fc9902;
    color: white;
    padding: 1rem;

    font-weight: bold;
    border-radius: 8px;
    width: 100%;
  }

  .hero .container {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    color: #2d3047;
    margin: 0 auto 4rem !important;
    border-radius: 8rem;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    max-width: 1100px;
  }

  div {
    outline: none !important;
    border: none !important;
  }

  h1 {
    border: none !important;
  }

  .right.hero img {
    display: block !important;
    fill: unset;
    outline: unset;
    border-radius: 2rem;
    height: auto !important;
  }

  .right.hero {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .left.hero {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
    background-color: unset;
    height: unset !important;
  }

  @media (max-width: 800px) {
    .hero .container {
      border-radius: 4rem;
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
      flex-direction: column !important;
    }

    .hero .left {
      width: 100%;
      padding: 0;
    }

    h1 span {
      font-size: inherit;
    }
  }

  .intro_wrapper {
    text-align: center;
  }

  .intro_wrapper p {
    font-size: 18px;
  }

  @media (min-width: 1100px) {
    .intro_wrapper {
      width: 60% !important;
      margin-bottom: 2rem !important;
    }

    section {
      padding: 0;
    }

    .calculator .container {
      min-width: 95vw;
    }
  }

  .calculator .container {
    min-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #2d3047;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: white;
    border-radius: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .calculator .left,
  .calculator .right {
    padding: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .calculator .right {
    background-color: unset !important;
    padding: 2rem 3rem;
    margin: 0;
    border-radius: 8px;
  }

  .sqzl-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .sqzl-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .input-group,
  .output-group {
    margin-bottom: 20px;
  }

  .input-group span,
  .left .output-group span {
    font-weight: bold;
    background-color: black;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
  }

  .right .output-group {
    padding: 2rem 1rem;
    width: 60%;
    border: 1px solid #fc9902 !important;
    border-radius: 4rem;
  }

  .calculator .right {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .calculator label {
    display: block;
    margin-bottom: 5px;
  }

  .calculator input[type="range"] {
    width: 100%;
  }

  .output-group span {
    font-weight: bold;
  }

  .output-group {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    margin: 2rem 0;
  }

  .calculator button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #fc9902;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    color: white;
    margin: 0;
    font-weight: bold;
  }

  input[type="range"]:focus {
    outline: none;
  }

  .klantlogos-slider img {
    padding: 2rem !important;
    -webkit-filter: grayscale(0.95);
    filter: grayscale(0.95);
    margin: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
  }

  .klantlogos-slider {
    margin-top: 4rem;
  }

  .klantlogos-slider .slick-arrow {
    display: none !important;
  }

  @media (max-width: 1100px) {
    .klantlogos-slider img {
      padding: 1rem !important;
    }

    .slick-list {
      padding: 0 !important;
    }
  }

  .programma .left {
    background-color: #2d3047;
    padding: 2rem;
    margin-right: 2rem;
  }

  .programma .left p,
  .programma .left h4 {
    color: white !important;
    padding-left: unset;
    margin-bottom: 0.5rem;
  }

  .programma .left p {
    margin-bottom: 2rem;
  }

  .programma .container {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .programma .left,
  .programma .right img {
    border-radius: 8px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 4px 0px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 4px 0px;
  }

  .sub {
    padding: 2rem;
    background-color: #f4f4f4;

    border-radius: 1rem;
    font-size: 120%;
  }

  .sub h5 {
    font-size: 150%;
    font-weight: bold;
    margin-bottom: 1rem;
  }

  .hero .right img {
    max-height: 60vh !important;
    width: auto !important;
    -webkit-box-shadow: var(--sqzl-box-shadow-light);
    box-shadow: var(--sqzl-box-shadow-light);
  }

  @media (max-width: 1100px) {
    .programma .container {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }

    .right.hero {
      width: 100%;
      padding: 0 4rem;
    }

    .programma .left {
      margin-right: unset;
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2;
      padding: 4rem 2rem;
    }

    .programma .left h4 {
      font-size: 2rem;
    }

    .calculator {
      padding: 0.5rem;
    }

    .werkwijze main section .calculator .container {
      width: 100%;
      min-width: unset !important;
      max-width: unset !important;
    }

    .calculator .left,
    .calculator .right {
      padding: 0 !important;
    }

    .hero .right img {
      max-height: 60vh !important;
      -webkit-box-shadow: var(--sqzl-box-shadow-light);
      box-shadow: var(--sqzl-box-shadow-light);
    }

    .bg-light {
      padding: 2rem;
    }
  }

  .menu a:hover {
    background-color: #2d3047;
    color: white !important;
    border-bottom: 2px solid orange !important;
    font-weight: bold;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    opacity: 80%;
  }

  .orange {
    color: #fc9902 !important;
  }

  main section .container:not(.hero .container) {
    margin: 0 !important;
    padding: 0 !important;
  }

  .intro_wrapper {
    margin-bottom: 2rem !important;
  }

  .linkedinlink a {
    border-bottom: 1px solid white;
    padding-bottom: 0.2rem;
  }

  @media (max-width: 1100px) {
    #footer {
      z-index: 9999;
    }

    .letsadsperiment {
      height: unset;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
    }

    .letsadsperiment button:last-of-type {
      -ms-flex-preferred-size: unset !important;
      flex-basis: unset !important;
    }

    #footer img {
      border-radius: 4px;
    }
  }

  li {
    font-size: 16px;
    line-height: 1.8;
    color: white;
    margin-bottom: 0.5rem;
    list-style: circle;
    text-align: left;
  }

  .calculator .container {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 1rem;
    background-color: unset;
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
    padding: 0 !important;
  }

  .calculator .left,
  .calculator .right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background-color: #2d3047 !important;
  }

  .calculator h6 {
    margin-bottom: 1rem;
  }

  .calculator .right {
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
    border: 1px solid #fc9902 !important;
    border-radius: 8px;
    padding: 2rem;
  }

  .calculator .right .output-group {
    border: none !important;
    padding: 0;
  }

  .calculator .left {
    border: 1px solid white !important;
    border-radius: 8px;
  }

  .output-group.sub {
    margin: 0.5rem 0 !important;
    width: 100%;
    border: none !important;
    padding: 0 !important;
  }

  .right .output-group {
    width: 100% !important;
  }

  .sub.output-group span {
    font-weight: bold;
    background-color: black;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    color: white;
  }

  header .container {
    background-color: #edf3eb !important;
    z-index: 9999;
  }

  @media (max-width: 1100px) {
    .calculator .left,
    .calculator .right {
      padding: 2rem !important;
    }
  }

  .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  iframe {
    width: 100%;
  }

  .slick-slider {
    position: relative;
  }

  .slick-prev {
    top: 0 !important;
    right: 8rem !important;
    margin-right: 2rem;
  }

  .slick-next {
    top: 0 !important;
    right: 2rem !important;
  }

  .slick-next,
  .slick-prev {
    width: 120px !important;
    border-radius: 0.5rem !important;
    border: none !important;
    -webkit-transition: 1s !important;
    -o-transition: 1s !important;
    transition: 1s !important;
    background-color: #2d3047;
    height: 40px;
  }

  .slick-prev:before,
  .slick-next:before {
    color: #f9f9f9;
  }

  .slick-next:hover,
  .slick-prev:hover,
  .slick-next:focus,
  .slick-prev:focus {
    opacity: 0.8;
    color: unset;
    outline: unset;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background: #2d3047;
    transform: translateY(-50%);
  }

  .slick-prev::before {
    content: "←";
    height: 100%;
  }

  .slick-next::before {
    content: "→";
    height: 100%;
  }

  @media (max-width: 1100px) {
    .slick-prev {
      right: 8rem !important;
      margin-right: 4rem;
    }

    .slick-next {
      right: 2rem !important;
    }

    .slick-next,
    .slick-prev {
      top: unset !important;
      bottom: -5rem !important;
    }
  }

  .bg-light {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 4px 0px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 4px 0px;
    max-width: 800px;
  }

  .cta {
    -webkit-box-shadow: 0 4px 0 0 #e5ad06, 0 7px 0 1px #000,
      0 6px 8px 2px #00000050;
    box-shadow: 0 4px 0 0 #e5ad06, 0 7px 0 1px #000, 0 6px 8px 2px #00000050;
    font-family: Montserrat;
  }

  section#werkwijze {
    padding-top: 0 !important;
  }

  section:not(#footer) {
    margin-left: auto !important;
    margin-right: auto;
    max-width: 1200px;
  }

  @media (max-width: 1100px) {
    .bg-light {
      padding: 2rem;
    }

    .calculator {
      width: 100% !important;
      margin-bottom: 2rem !important;
    }
    header.desktop .container {
      bottom: unset !important;
      top: 0;
      -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 4px 0px;
      box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 4px 0px;
    }
  }

  .martijn .left {
    -webkit-transform: translateX(2vw);
    -ms-transform: translateX(2vw);
    transform: translateX(2vw);
  }

  .martijn .right {
    -webkit-transform: translateX(-2vw);
    -ms-transform: translateX(-2vw);
    transform: translateX(-2vw);
  }

  .klantlogos-slider .slick-list {
    overflow: hidden !important;
    max-width: 100%;
  }

  .martijn {
    margin: 4rem 0;
  }

  .martijn img {
    border-radius: 1rem;
    -webkit-box-shadow: var(--sqzl-box-shadow-light);
    box-shadow: var(--sqzl-box-shadow-light);
  }

  .right .sqzl-flex {
    gap: 2rem;
  }

  .martijn .sqzl-flex {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  label.bg-light {
    color: #2d3047;
    font-family: "Bebas Neue";
    font-size: 200%;
    padding: 1rem 2rem;
  }

  @media (max-width: 767px) {
    .martijn .left,
    .martijn .right {
      width: 100%;
    }

    .martijn .right {
      -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
      order: -1;
      z-index: 99;
    }

    label.bg-light {
      font-size: 100%;
      padding: 1rem;
    }

    .martijn .left {
      -webkit-transform: translateY(-12%);
      -ms-transform: translateY(-12%);
      transform: translateY(-12%);
    }
  }

  @media (min-width: 768px) {
    .martijn .left {
      -webkit-transform: translateX(2vw);
      -ms-transform: translateX(2vw);
      transform: translateX(2vw);
    }

    .martijn .right {
      -webkit-transform: translateX(-2vw);
      -ms-transform: translateX(-2vw);
      transform: translateX(-2vw);
    }

    .martijn img {
      width: 70%;
    }

    .martijn .sqzl-flex {
      -webkit-box-pack: unset;
      -ms-flex-pack: unset;
      justify-content: unset;
    }
  }

  body p {
    font-weight: 500 !important;
    font-size: 18px;
  }

  .programma,
  .calculator {
    background-color: #f9f9f9;
  }

  main section .container:not(.hero .container) {
    margin: 0 auto !important;
    padding: 1rem 0 !important;
  }

  section:not(#footer) {
    max-width: unset;
    padding-top: 2rem;
    padding-bottom: 2rem !important;
  }

  label.bg-light {
    font-size: 120% !important;
  }

  .martijn {
    display: none;
  }

  .programma span {
    font-size: inherit;
  }

  #footer {
    margin-bottom: 0 !important;
  }

  .vergelijking {
    padding-top: 0;
    padding-bottom: 0;
  }

  section.programma {
    margin-bottom: 0 !important;
  }

  @media (max-width: 767px) {
    .reviews .slick-track > div {
      height: fit-content;
    }
  }

  section > div {
    margin-left: auto;
    margin-right: auto;
  }

  body main,
  body section,
  body {
    background-color: #edf3eb !important;
  }

  #footer,
  .input-group span,
  .bg-dark,
  .label,
  .menu a,
  .sub.output-group span {
    background-color: #008080 !important;
    color: white !important;
  }

  .label {
    background-color: white !important;
    color: #333 !important;
    width: 100%;
  }

  .menu a {
    background-color: #008080;
    color: white;
    border: none;
  }

  .home a.home {
    border-bottom: 3px solid orange !important;
  }

  #footer .sqzl-flex {
    align-items: flex-start;
  }

  .linkedinlink {
    padding: 0.751rem 2rem 0.75rem 0.75rem !important;
    border-radius: 2rem;
    width: fit-content !important;
    background-color: white;
  }

  .orange {
    color: #008080 !important;
  }

  .programma .left,
  .bg-light {
    background-color: white !important;
  }

  body section {
    padding-bottom: 0 !important;
    margin-bottom: 2rem !important;
    margin-left: 0 !important;
  }

  .werkwijze.hero h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .programma .left p,
  .programma .left h4,
  .programma .left h2 {
    color: #333333 !important;
    font-family: "Avenir";
    font-weight: 700;
  }

  .linkedinlink svg,
  .linkedinlink a {
    fill: #008080;
    color: #008080;
    white-space: nowrap;
  }

  body p,
  .werkwijze.hero h1,
  .werkwijze.hero p {
    font-family: "Avenir";
    color: #333 !important;
  }

  .reviews p {
    font-size: 16px !important;
  }

  .reviews .sqzl-flex {
    align-items: flex-start !important;
  }

  .reviews img {
    margin: 0 !important;
  }

  h1 span {
    color: #008080 !important;
  }

  .programma,
  .calculator {
    background-color: unset !important;
  }

  .calculator .container > div,
  .sub {
    background-color: white !important;
  }

  .whyright h6 {
    margin-bottom: 20px;
  }

  .calculator .container {
    color: #333;
  }

  .klantlogos-slider img {
    border: unset;
    filter: unset;
  }

  .whyleft h6 {
    color: white !important;
  }

  button.cta {
    background-color: #ff6f00;
    box-shadow: rgba(0, 0, 0, 0.31) 0px 4px 12px;
    color: white;
    padding: 1rem 2rem;

    font-weight: bold;
    border-radius: 2rem;
    border-bottom: orange 3px solid;
  }

  input[type="range"]:focus {
    outline: none;
  }
}

/*! CSS Used from: Embedded */
.cmplz-hidden {
  display: none !important;
}

/*! CSS Used from: https://houseofadsperiment.nl/wp-content/uploads/complianz/css/banner-1-optin.css?v=28 */
.cmplz-cookiebanner {
  box-sizing: border-box;
}

:root {
  --cmplz_banner_width: 526px;
  --cmplz_banner_background_color: #ffffff;
  --cmplz_banner_border_color: #f2f2f2;
  --cmplz_banner_border_width: 0px 0px 0px 0px;
  --cmplz_banner_border_radius: 12px 12px 12px 12px;
  --cmplz_banner_margin: 10px;
  --cmplz_categories-height: 163px;
  --cmplz_title_font_size: 15px;
  --cmplz_text_line_height: calc(var(--cmplz_text_font_size) * 1.5);
  --cmplz_text_color: #222222;
  --cmplz_hyperlink_color: #1e73be;
  --cmplz_text_font_size: 12px;
  --cmplz_link_font_size: 12px;
  --cmplz_category_body_font_size: 12px;
  --cmplz_button_accept_background_color: #1e73be;
  --cmplz_button_accept_border_color: #1e73be;
  --cmplz_button_accept_text_color: #ffffff;
  --cmplz_button_deny_background_color: #f9f9f9;
  --cmplz_button_deny_border_color: #f2f2f2;
  --cmplz_button_deny_text_color: #222222;
  --cmplz_button_settings_background_color: #f9f9f9;
  --cmplz_button_settings_border_color: #f2f2f2;
  --cmplz_button_settings_text_color: #333333;
  --cmplz_button_border_radius: 6px 6px 6px 6px;
  --cmplz_button_font_size: 15px;
  --cmplz_category_header_always_active_color: green;
  --cmplz_category_header_title_font_size: 14px;
  --cmplz_category_header_active_font_size: 12px;
  --cmplz-manage-consent-height: 50px;
  --cmplz-manage-consent-offset: -35px;
  --cmplz_slider_active_color: #1e73be;
  --cmplz_slider_inactive_color: #f56e28;
  --cmplz_slider_bullet_color: #ffffff;
}

#cmplz-manage-consent .cmplz-manage-consent {
  margin: unset;
  z-index: 9998;
  color: var(--cmplz_text_color);
  background-color: var(--cmplz_banner_background_color);
  border-style: solid;
  border-color: var(--cmplz_banner_border_color);
  border-width: var(--cmplz_banner_border_width);
  border-radius: var(--cmplz_banner_border_radius);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  line-height: initial;
  position: fixed;
  bottom: var(--cmplz-manage-consent-offset);
  min-width: 100px;
  height: var(--cmplz-manage-consent-height);
  right: 40px;
  padding: 15px;
  cursor: pointer;
  animation: mc_slideOut 0.5s forwards;
}

#cmplz-manage-consent .cmplz-manage-consent:active {
  outline: none;
  border: none;
}

#cmplz-manage-consent .cmplz-manage-consent:hover {
  animation: mc_slideIn 0.5s forwards;
  animation-delay: 0;
}

@media (max-width: 425px) {
  .cmplz-cookiebanner .cmplz-header .cmplz-title {
    display: none;
  }
}

.cmplz-cookiebanner {
  max-height: calc(100vh - 20px);
  position: fixed;
  height: auto;
  left: 50%;
  top: 50%;
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  grid-template-rows: minmax(0, 1fr);
  z-index: 99999;
  background: var(--cmplz_banner_background_color);
  border-style: solid;
  border-color: var(--cmplz_banner_border_color);
  border-width: var(--cmplz_banner_border_width);
  border-radius: var(--cmplz_banner_border_radius);
  padding: 15px 20px;
  display: grid;
  grid-gap: 10px;
}

.cmplz-cookiebanner a {
  transition: initial;
}

.cmplz-cookiebanner .cmplz-buttons a.cmplz-btn.tcf {
  display: none;
}

.cmplz-cookiebanner.cmplz-dismissed {
  display: none;
}

.cmplz-cookiebanner .cmplz-body {
  width: 100%;
  grid-column: span 3;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 55vh;
}

.cmplz-cookiebanner .cmplz-body::-webkit-scrollbar-track {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0);
  background-color: transparent;
}

.cmplz-cookiebanner .cmplz-body::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
}

.cmplz-cookiebanner .cmplz-body::-webkit-scrollbar-thumb {
  background-color: var(--cmplz_button_accept_background_color);
  border-radius: 10px;
}

@media (min-width: 350px) {
  .cmplz-cookiebanner .cmplz-body {
    min-width: 300px;
  }
}

.cmplz-cookiebanner .cmplz-divider {
  margin-left: -20px;
  margin-right: -20px;
}

.cmplz-cookiebanner .cmplz-header {
  grid-template-columns: 100px 1fr 100px;
  align-items: center;
  display: grid;
  grid-column: span 3;
}

.cmplz-cookiebanner .cmplz-title {
  justify-self: center;
  grid-column-start: 2;
  font-size: var(--cmplz_title_font_size);
  color: var(--cmplz_text_color);
  font-weight: 500;
}

.cmplz-cookiebanner .cmplz-close {
  line-height: 20px;
  justify-self: end;
  grid-column-start: 3;
  font-size: 20px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  color: var(--cmplz_text_color);
}

.cmplz-cookiebanner .cmplz-close svg {
  width: 20px;
  height: 20px;
}

.cmplz-cookiebanner .cmplz-close:hover {
  text-decoration: none;
  line-height: initial;
  font-size: 18px;
}

.cmplz-cookiebanner .cmplz-message {
  word-wrap: break-word;
  font-size: var(--cmplz_text_font_size);
  line-height: var(--cmplz_text_line_height);
  color: var(--cmplz_text_color);
  margin-bottom: 5px;
}

.cmplz-cookiebanner .cmplz-message,
.cmplz-cookiebanner .cmplz-categories,
.cmplz-cookiebanner .cmplz-links,
.cmplz-cookiebanner .cmplz-buttons,
.cmplz-cookiebanner .cmplz-divider {
  grid-column: span 3;
}

.cmplz-cookiebanner .cmplz-categories .cmplz-category {
  background-color: rgba(239, 239, 239, 0.5);
}

.cmplz-cookiebanner .cmplz-categories .cmplz-category:not(:last-child) {
  margin-bottom: 10px;
}

.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-category-header {
  display: grid;
  grid-template-columns: 1fr auto 15px;
  grid-template-rows: minmax(0, 1fr);
  align-items: center;
  grid-gap: 10px;
  padding: 10px;
}

.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-category-header
  .cmplz-category-title {
  font-weight: 500;
  grid-column-start: 1;
  justify-self: start;
  font-size: var(--cmplz_category_header_title_font_size);
  color: var(--cmplz_text_color);
  margin: 0;
}

.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-category-header
  .cmplz-always-active {
  font-size: var(--cmplz_category_header_active_font_size);
  font-weight: 500;
  color: var(--cmplz_category_header_always_active_color);
}

.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-category-header
  .cmplz-always-active
  label {
  display: none;
}

.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-category-header
  .cmplz-banner-checkbox {
  display: flex;
  align-items: center;
  margin: 0;
}

.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-category-header
  .cmplz-banner-checkbox
  label
  > span {
  display: none;
}

.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-category-header
  .cmplz-banner-checkbox
  input[data-category="cmplz_functional"] {
  display: none;
}

.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-category-header
  .cmplz-icon.cmplz-open {
  grid-column-start: 3;
  cursor: pointer;
  content: "";
  transform: rotate(0deg);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-size: cover;
  height: 18px;
  width: 18px;
}

.cmplz-cookiebanner .cmplz-categories .cmplz-category summary {
  display: block;
}

.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  summary::-webkit-details-marker {
  display: none;
  content: "";
}

.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-description {
  font-size: var(--cmplz_category_body_font_size);
  color: var(--cmplz_text_color);
  margin: 0;
  max-width: 100%;
  padding: 10px;
}

@media (max-width: 425px) {
  .cmplz-cookiebanner .cmplz-category .cmplz-category-header {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 425px) {
  .cmplz-cookiebanner .cmplz-message {
    margin-right: 5px;
  }
}

.cmplz-cookiebanner .cmplz-buttons {
  display: flex;
  gap: var(--cmplz_banner_margin);
}

.cmplz-cookiebanner .cmplz-buttons .cmplz-btn {
  height: 45px;
  padding: 10px;
  margin: initial;
  width: 100%;
  white-space: nowrap;
  border-radius: var(--cmplz_button_border_radius);
  cursor: pointer;
  font-size: var(--cmplz_button_font_size);
  font-weight: 500;
  text-decoration: none;
  line-height: 20px;
  text-align: center;
  flex: initial;
}

.cmplz-cookiebanner .cmplz-buttons .cmplz-btn:hover {
  text-decoration: none;
}

.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-accept {
  background-color: var(--cmplz_button_accept_background_color);
  border: 1px solid var(--cmplz_button_accept_border_color);
  color: var(--cmplz_button_accept_text_color);
}

.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-deny {
  background-color: var(--cmplz_button_deny_background_color);
  border: 1px solid var(--cmplz_button_deny_border_color);
  color: var(--cmplz_button_deny_text_color);
}

.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-view-preferences {
  background-color: var(--cmplz_button_settings_background_color);
  border: 1px solid var(--cmplz_button_settings_border_color);
  color: var(--cmplz_button_settings_text_color);
}

.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-save-preferences {
  background-color: var(--cmplz_button_settings_background_color);
  border: 1px solid var(--cmplz_button_settings_border_color);
  color: var(--cmplz_button_settings_text_color);
}

.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-manage-options {
  background-color: var(--cmplz_button_settings_background_color);
  border: 1px solid var(--cmplz_button_settings_border_color);
  color: var(--cmplz_button_settings_text_color);
}

.cmplz-cookiebanner .cmplz-buttons a.cmplz-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: initial;
}

@media (max-width: 425px) {
  .cmplz-cookiebanner .cmplz-links.cmplz-information {
    display: initial;
    text-align: center;
  }
}

.cmplz-cookiebanner .cmplz-links {
  display: flex;
  gap: var(--cmplz_banner_margin);
}

.cmplz-cookiebanner .cmplz-links.cmplz-information {
  justify-content: space-between;
}

.cmplz-cookiebanner .cmplz-links.cmplz-documents {
  justify-content: center;
}

.cmplz-cookiebanner .cmplz-links .cmplz-link {
  color: var(--cmplz_hyperlink_color);
  font-size: var(--cmplz_link_font_size);
  text-decoration: underline;
  margin: 0;
}

.cmplz-cookiebanner .cmplz-links .cmplz-link.cmplz-read-more-purposes {
  display: none;
}

.cmplz-categories .cmplz-category .cmplz-description-statistics-anonymous {
  display: none;
}

.cmplz-categories .cmplz-category .cmplz-description-statistics {
  display: block;
}

.cmplz-cookiebanner {
  top: initial;
  left: initial;
  right: 10px;
  bottom: 10px;
  transform: initial;
}

@media (min-width: 768px) {
  .cmplz-cookiebanner {
    min-width: var(--cmplz_banner_width);
    max-width: 100%;
    display: grid;
    grid-row-gap: 10px;
  }

  section .container {
    max-width: 80% !important;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .cmplz-cookiebanner {
    left: initial;
    right: initial;
    bottom: 0;
    width: 100%;
  }

  .cmplz-cookiebanner .cmplz-buttons {
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  .cmplz-message,
  .cmplz-categories {
    width: calc(var(--cmplz_banner_width) - 42px);
  }
}

.cmplz-cookiebanner .cmplz-categories,
.cmplz-cookiebanner .cmplz-save-preferences,
.cmplz-cookiebanner .cmplz-link.cmplz-manage-options,
.cmplz-cookiebanner .cmplz-manage-vendors,
.cmplz-cookiebanner .cmplz-btn.cmplz-manage-options {
  display: none;
}

.cmplz-cookiebanner .cmplz-links.cmplz-information {
  display: none;
}

.cmplz-cookiebanner .cmplz-preferences {
  display: none;
}

@media (max-width: 768px) {
  #cmplz-manage-consent .cmplz-manage-consent {
    display: none;
  }
}

.cmplz-logo {
  display: none !important;
}

.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox {
  position: relative;
}

.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-banner-checkbox
  input.cmplz-consent-checkbox {
  opacity: 0;
  margin: 0;
  margin-top: -10px;
  cursor: pointer;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
  width: 40px;
  height: 20px;
}

.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-banner-checkbox
  input.cmplz-consent-checkbox:focus
  + .cmplz-label:before {
  box-shadow: 0 0 0 2px #245fcc;
}

.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-banner-checkbox
  input.cmplz-consent-checkbox:checked
  + .cmplz-label::before {
  display: block;
  background-color: var(--cmplz_slider_active_color);
  content: "";
  padding-left: 6px;
}

.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-banner-checkbox
  input.cmplz-consent-checkbox:checked
  + .cmplz-label:after {
  left: 14px;
}

.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-banner-checkbox
  .cmplz-label {
  position: relative;
  padding-left: 30px;
  margin: 0;
}

.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-banner-checkbox
  .cmplz-label:before,
.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-banner-checkbox
  .cmplz-label:after {
  box-sizing: border-box;
  position: absolute;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  transition: background-color 0.3s, left 0.3s;
}

.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-banner-checkbox
  .cmplz-label:before {
  display: block;
  content: "";
  color: #fff;
  box-sizing: border-box;
  font-family: "FontAwesome", sans-serif;
  padding-left: 23px;
  font-size: 12px;
  line-height: 20px;
  background-color: var(--cmplz_slider_inactive_color);
  left: 0px;
  top: -7px;
  height: 15px;
  width: 28px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.cmplz-cookiebanner
  .cmplz-categories
  .cmplz-category
  .cmplz-banner-checkbox
  .cmplz-label:after {
  display: block;
  content: "";
  letter-spacing: 20px;
  background: var(--cmplz_slider_bullet_color);
  left: 4px;
  top: -5px;
  height: 11px;
  width: 11px;
}

.cmplz-cookiebanner {
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

#cmplz-manage-consent .cmplz-manage-consent {
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.cmplz-categories .cmplz-category .cmplz-description-statistics-anonymous {
  display: block;
}

.cmplz-categories .cmplz-category .cmplz-description-statistics {
  display: none;
}

/*! CSS Used from: Embedded */

@media (max-width: 1100px) {
  .desktop .menu a {
    text-decoration: none;
    padding: 20px;
    transition: opacity 0.3s ease, transform 0.3s ease;

    transform: translateY(-10px);
  }

  .home .desktop .menu a.home {
    display: inline-block;
    opacity: 1;
    transform: translateY(0);
  }

  .desktop .menu:not(.show-all) a {
    transition-delay: 0s;
  }
}
/*! CSS Used keyframes */
@-webkit-keyframes mc_slideOut {
  100% {
    bottom: var(--cmplz-manage-consent-offset);
  }
}

@keyframes mc_slideOut {
  100% {
    bottom: var(--cmplz-manage-consent-offset);
  }
}

@-webkit-keyframes mc_slideIn {
  100% {
    bottom: 0;
  }
}

@keyframes mc_slideIn {
  100% {
    bottom: 0;
  }
}

/*! CSS Used fontfaces */
@font-face {
  font-family: "slick";
  font-weight: normal;
  font-style: normal;
  src: url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/fonts/slick.eot");
  src: url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/fonts/slick.eot?#iefix")
      format("embedded-opentype"),
    url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/fonts/slick.woff")
      format("woff"),
    url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/fonts/slick.ttf")
      format("truetype"),
    url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/fonts/slick.svg#slick")
      format("svg");
}

@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/bebasneue/v14/JTUSjIg69CK48gW7PXoo9Wdhyzbi.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/bebasneue/v14/JTUSjIg69CK48gW7PXoo9Wlhyw.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxC7mw9c.woff2)
    format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}

@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRzS7mw9c.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxi7mw9c.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxy7mw9c.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRyS7m.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxC7mw9c.woff2)
    format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}

@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRzS7mw9c.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxi7mw9c.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxy7mw9c.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRyS7m.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxC7mw9c.woff2)
    format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}

@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRzS7mw9c.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxi7mw9c.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxy7mw9c.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRyS7m.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxC7mw9c.woff2)
    format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}

@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRzS7mw9c.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxi7mw9c.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRxy7mw9c.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUQjIg1_i6t8kCHKm459WxRyS7m.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2)
    format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2)
    format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2)
    format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2)
    format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459WZhyzbi.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459Wdhyzbi.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

.oud {
  display: none !important;
}

.wrapper {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

/* Footer buttons: alleen scale bij hover, geen translate */
.letsadsperiment button:hover {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
  transition: transform 0.2s ease;
}

/* Wrapper buttons (zoals in header en hero): scale bij hover */
.wrapper.btn:hover {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
  transition: transform 0.2s ease;
}
