/*/ Layout /*/
@font-face {
  font-family: "PlantinMTPro";
  src: url("../font/PlantinMTProRg.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "PlantinMTPro";
  src: url("../font/PlantinMTProLight.TTF") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "PlantinMTPro";
  src: url("../font/PlantinMTProLightIt.TTF") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "PlantinMTPro";
  src: url("../font/PlantinMTProBoldIt.TTF") format("truetype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "PlantinMTPro";
  src: url("../font/PlantinMTProBold.TTF") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "PlantinMTPro";
  src: url("../font/PlantinMTProSemiBdIt.TTF") format("truetype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "RedHatDisplay";
  src: url("../font/RedHatDisplay-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "RedHatDisplay";
  src: url("../font/RedHatDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "RedHatDisplay";
  src: url("../font/RedHatDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "RedHatDisplay";
  src: url("../font/RedHatDisplay-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "RedHatDisplay";
  src: url("../font/RedHatDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "RedHatDisplay";
  src: url("../font/RedHatDisplay-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "RedHatDisplay";
  src: url("../font/RedHatDisplay-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
}

body {
  font-size: 18px;
  font-family: "PlantinMTPro", monospace;
  background-color: #ffffff;
  color: #272e3f;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.custom-container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.custom-hero-container {
  width: 100%;
  padding-left: 0px;
  padding-right: 0px;
  margin-left: auto;
  margin-right: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 84vh;
  overflow: hidden;
}

.container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
}

a {
  text-decoration: none;
  transition: 0.2s ease-in;
}
a:hover {
  color: #272e3f;
  text-decoration: none;
}

ul {
  padding: 0;
  list-style-type: none;
}

ol li {
  list-style-type: disc;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.non-clickable {
  pointer-events: none;
  cursor: default;
}

.burger-trigger {
  position: relative;
  height: 10px;
  width: 20px;
  z-index: 15;
  display: none;
  cursor: pointer;
}
.burger-trigger span {
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  transition-duration: 0.3s;
  border-radius: 999px;
}
.burger-trigger span:first-child {
  top: 0px;
}
.burger-trigger span.center {
  top: calc(50% - 1px);
}
.burger-trigger span:last-child {
  bottom: 0px;
}
.burger-trigger.burger-active {
  display: none;
}
.burger-trigger.burger-active span:nth-of-type(1) {
  rotate: -135deg;
  top: 8.5px;
}
.burger-trigger.burger-active span.center {
  opacity: 0;
}
.burger-trigger.burger-active span:nth-of-type(4) {
  rotate: 135deg;
  bottom: 7.5px;
}

strong {
  color: #2aa6a1;
  font-weight: inherit;
}

.fa {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
}

.button-container {
  margin-top: 32px;
}

.theme-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  padding: 8px 22px;
  transition: 0.2s ease-in-out;
  font-family: "RedHatDisplay", sans-serif;
  border: 2px solid #2aa6a1;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  text-decoration: none !important;
  width: -moz-max-content;
  width: max-content;
}
.theme-button i {
  transition: all 0.2s ease-in-out;
}
.theme-button:hover {
  color: #ffffff;
}
.theme-button.primary {
  background-color: #2aa6a1;
  color: #ffffff;
}
.theme-button.primary.blue {
  color: #272e3f;
}
.theme-button.primary::after {
  content: "";
  background: transparent;
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  transform-origin: left;
  transition: 0.2s transform ease-out;
  will-change: transform;
  z-index: -1;
}
.theme-button.primary-blue {
  background-color: #272e3f;
  color: #ffffff;
  border: 2px solid #272e3f;
}
.theme-button.primary-blue::after {
  content: "";
  background: transparent;
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  transform-origin: left;
  transition: 0.2s transform ease-out;
  will-change: transform;
  z-index: -1;
}
.theme-button.secondary {
  background-color: #2aa6a1;
  color: #ffffff;
  border: 2px solid #272e3f;
}
.theme-button.secondary::after {
  content: "";
  background-color: #2aa6a1;
  display: block;
  height: 100%;
  width: 100%;
  color: #272e3f;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  transform-origin: left;
  transition: 0.2s transform ease-out;
  will-change: transform;
  z-index: -1;
}
.theme-button.secondary-black {
  background-color: none;
  color: #272e3f;
  border: 2px solid #272e3f;
}
.theme-button.secondary-black::after {
  content: "";
  background-color: #272e3f;
  display: block;
  height: 100%;
  width: 100%;
  color: #ffffff;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  transform-origin: left;
  transition: 0.2s transform ease-out;
  will-change: transform;
  z-index: -1;
}

.lightbox .lb-image {
  border: none;
}

.theme-wrapper {
  padding: 100px 0;
}

.theme-loader {
  display: flex;
  justify-content: center;
  width: 100%;
}
.theme-loader button.wpgb-button.wpgb-load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  outline: none !important;
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0);
  transition: 0.1s ease-in-out;
}
.theme-loader button.wpgb-button.wpgb-load-more::after {
  font-family: "Font Awesome 6 Pro";
  content: "\f110" !important;
  font-size: 28px;
  animation: spin 1.5s linear infinite;
  color: #272e3f;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 768px) {
  .theme-button {
    padding: 8px 16px;
  }
}
/*/ Blocks /*/
.theme-header {
  font-family: "RedHatDisplay", sans-serif;
  position: absolute;
  padding: 88px 0;
  width: 100%;
  z-index: 10;
}
.theme-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.theme-header-wrapper nav {
  width: 100%;
}
.theme-header-wrapper .menu-main-menu-container ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  gap: 60px;
}
.theme-header-wrapper .menu-main-menu-container ul li a {
  font-size: 24px;
  font-weight: 600;
  color: #272e3f;
}
.theme-header-wrapper .menu-main-menu-container ul li a:hover {
  color: #901d39;
}

@media screen and (max-width: 1200px) {
  .theme-header-wrapper .menu-main-menu-container ul {
    gap: 32px;
  }
}
@media screen and (max-width: 992px) {
  .theme-header {
    padding: 32px 0;
  }
  .theme-header-wrapper {
    justify-content: center;
  }
  .theme-header-wrapper .menu-main-menu-container {
    display: none;
  }
  .theme-header-wrapper nav {
    display: none;
  }
  .theme-header .row {
    gap: 32px;
  }
}
.theme-hero {
  background-color: #f4f0ed;
  position: relative;
  padding-top: 300px;
  padding-bottom: 130px;
}
.theme-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/Merea-golvend-patroon-lines.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.theme-hero-header {
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.theme-hero-header h1 {
  font-size: 72px;
  font-weight: 600;
}
.theme-hero-header em {
  font-style: normal;
  color: #901d39;
}
.theme-hero-header p {
  font-size: 36px;
  font-family: "RedHatDisplay", sans-serif;
}
.theme-hero-content {
  font-weight: 600;
  font-size: 21px;
  font-family: "RedHatDisplay", sans-serif;
}

@media screen and (max-width: 576px) {
  .theme-hero {
    padding-top: 275px;
  }
  .theme-hero-header h1 {
    font-size: 46px;
  }
  .theme-hero-header p {
    font-size: 21px;
  }
  .theme-hero-content {
    font-size: 18px;
  }
}
.theme-content {
  color: #ffffff;
  background-color: #272e3f;
}
.theme-content-header {
  margin-bottom: 60px;
}
.theme-content-header h1 {
  font-size: 52px;
  text-align: center;
  font-weight: 400;
}
.theme-content-body h2 {
  font-weight: 700;
  font-size: 24px;
  font-family: "RedHatDisplay", sans-serif;
  height: 80px;
}
.theme-content-body p {
  font-size: 21px;
  font-family: "RedHatDisplay", sans-serif;
}

@media screen and (max-width: 768px) {
  .theme-content-header h1 {
    font-size: 42px;
  }
  .theme-content-body h2 {
    height: auto;
    margin-bottom: 12px;
  }
}
.theme-cta-wrapper {
  padding: 52px;
  background-color: #f4fafa;
  font-family: "RedHatDisplay", sans-serif;
}
.theme-cta-wrapper h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
}
.theme-cta-wrapper p {
  font-size: 18px;
}
.theme-cta-wrapper p strong {
  font-weight: 800;
}
.theme-cta-wrapper a {
  font-weight: 600;
  text-decoration: underline;
  color: #2aa6a1;
  text-underline-offset: 4px;
  transition: text-underline-offset color 0.2s ease-in-out;
}
.theme-cta-wrapper a:hover {
  text-underline-offset: 2px;
  color: rgb(31.7019230769, 125.2980769231, 121.5240384615);
}

@media screen and (max-width: 576px) {
  .theme-cta-wrapper {
    padding: 32px;
  }
}
.theme-showcase-product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  font-family: "RedHatDisplay", sans-serif;
}
.theme-showcase-product-info-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
}
.theme-showcase-product-info-title strong {
  color: #901d39;
}
.theme-showcase-product-info-description {
  font-size: 21px;
  margin-bottom: 20px;
}
.theme-showcase-product-info-cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.theme-showcase-product-info-cart .cart-link {
  font-size: 21px;
  color: #272e3f;
  text-decoration: underline;
  font-weight: 500;
  transition: text-underline-offset 0.2s ease-in-out;
  text-underline-offset: 2px;
}
.theme-showcase-product-info-cart .cart-link:hover {
  text-underline-offset: 4px;
}
.theme-showcase-product-info-cart .cart-link i {
  margin-right: 8px;
}
.theme-showcase-product-info-cart span.price {
  font-size: 28px;
  font-weight: 700;
}
.theme-showcase-product-info-cart span.price span {
  font-size: 18px;
  font-weight: 400;
}
.theme-showcase-product-info-cart i {
  font-size: 18px;
}
.theme-showcase-product-image {
  height: 100%;
}
.theme-showcase-product-image img {
  height: 100%;
  border-radius: 20px;
}

@media screen and (max-width: 1400px) {
  .theme-showcase-product-info-cart {
    flex-wrap: wrap-reverse;
    gap: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .theme-showcase-product-info-cart {
    gap: 0;
  }
}
@media screen and (max-width: 992px) {
  .theme-showcase-product .row {
    flex-direction: column-reverse;
  }
  .theme-showcase-product-info-title {
    font-size: 36px;
  }
  .theme-showcase-product-info-cart {
    flex-wrap: nowrap;
    flex-direction: column-reverse;
    gap: 20px;
  }
}
@media screen and (max-width: 576px) {
  .theme-showcase-product-info-title {
    font-size: 34px;
    margin-top: 8px;
  }
  .theme-showcase-product-info-title strong {
    display: block;
    width: 100%;
  }
}
.theme-podcast {
  font-family: "RedHatDisplay", sans-serif;
  background-image: url("../img/verloop-podcast.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.theme-podcast .col-12.col-lg-6 {
  margin-bottom: 30px;
}
.theme-podcast-item {
  padding: 40px 56px;
  background-color: #ffffff;
  border-radius: 10px;
  height: 100%;
}
.theme-podcast-item h3 {
  color: #901d39;
  font-size: 18px;
  font-weight: bold;
}
.theme-podcast-item-title {
  font-size: 32px;
  margin-bottom: 6px;
  font-weight: 900;
}
.theme-podcast-item-title a {
  color: #272e3f;
}
.theme-podcast-item-excerpt {
  font-size: 17px;
  color: #2aa6a1;
}
.theme-podcast-item-excerpt strong {
  color: #272e3f;
}
.theme-podcast-item-excerpt p {
  margin: 0;
}
.theme-podcast-item-excerpt a {
  font-weight: 600;
  text-decoration: underline;
  color: #2aa6a1;
  text-underline-offset: 4px;
  transition: text-underline-offset color 0.2s ease-in-out;
}
.theme-podcast-item-excerpt a:hover {
  text-underline-offset: 2px;
  color: rgb(31.7019230769, 125.2980769231, 121.5240384615);
}

@media screen and (max-width: 576px) {
  .theme-podcast-item {
    padding: 32px 24px;
  }
}
.theme-review {
  transition: opacity 0.5s ease-in-out;
}
.theme-review .row {
  justify-content: end;
  padding-right: 100px;
}
.theme-review-rotator {
  z-index: 5;
  position: relative;
}
.theme-review-stars {
  margin-bottom: 24px;
}
.theme-review-wrapper {
  background-color: #FAF9F8;
  border-radius: 20px;
  padding: 46px 40px;
  font-family: "RedHatDisplay", sans-serif;
  position: absolute;
  z-index: 5;
  top: -150px;
}
.theme-review-wrapper i {
  color: #2aa6a1;
}
.theme-review-wrapper-quote {
  font-style: italic;
  font-weight: 500;
}
.theme-review-wrapper-author {
  margin: 24px 0px 0px 0px;
  display: flex;
  flex-direction: column;
}
.theme-review-wrapper-author h4 {
  font-family: "PlantinMTPro", monospace;
  font-size: 21px;
  font-weight: bold;
  margin: 0;
  padding: 0;
}
.theme-review-wrapper-author span {
  font-size: 16px;
}

@media screen and (max-width: 992px) {
  .theme-review {
    padding: 25px 0px 75px 0;
  }
  .theme-review .row {
    justify-content: center;
    padding-right: 0px;
  }
  .theme-review-wrapper {
    position: relative;
    text-align: center;
    top: 0;
  }
}
.modal {
  font-family: "RedHatDisplay", sans-serif;
}
.modal-dialog {
  max-width: 920px;
}
.modal-content {
  border-radius: 20px;
  border: none;
}
.modal-content .modal-header {
  border: none;
  padding: 0;
}
.modal-content .modal-header img {
  height: 468px;
  border-radius: 20px 20px 0px 0px;
}
.modal-content .modal-header .btn-close {
  position: absolute;
  background: none;
  border: none;
  font-size: 32px;
  color: white;
  right: 10px;
  width: -moz-max-content;
  width: max-content;
  padding: 0;
}
.modal-content .modal-body {
  border-radius: 20px;
  padding: 30px 50px;
}
.modal-content .modal-title {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 24px;
}
.modal-content .modal-title strong {
  display: none;
}
.modal-content .modal-subtitle {
  font-weight: 700;
  color: #901d39;
}

.fluentform {
  font-family: "RedHatDisplay", sans-serif;
}
.fluentform input,
.fluentform textarea,
.fluentform select {
  border-radius: 10px !important;
  background-color: #F4F3F2 !important;
  border: none !important;
  font-size: 18px;
  padding: 16px 24px !important;
  color: #868e96 !important;
  resize: none !important;
}
.fluentform select {
  height: 58px !important;
}
.fluentform .ff-el-tc {
  font-size: 12px;
  font-weight: 400;
  color: #272e3f;
}

@media screen and (max-width: 576px) {
  .modal-content .modal-body {
    padding: 30px 14px;
  }
  .modal-content .modal-title {
    font-size: 32px;
  }
  .modal-content .modal-header img {
    height: 325px;
  }
  .fluentform select {
    padding: 16px 24px !important;
  }
}
.theme-text {
  font-family: "RedHatDisplay", sans-serif;
  background-image: url("../img/verloop-bedankt.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.theme-text-title h1 {
  font-size: 60px;
  font-weight: 900;
}
.theme-text-content {
  font-size: 28px;
  font-weight: 600;
  margin-top: 18px;
}
.theme-text-content p {
  margin: 0;
}
.theme-text-link {
  margin-top: 58px;
  display: flex;
}
.theme-text-link a {
  margin: auto;
}

@media screen and (max-width: 576px) {
  .theme-text {
    padding: 200px 0;
    height: auto;
  }
}
.theme-footer {
  background-image: url("../img/verloop-footer.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 146px 0px;
  font-family: "RedHatDisplay", sans-serif;
}
.theme-footer.no-bg {
  background: none;
  padding: 40px 0px;
  position: absolute;
  bottom: 0;
}
.theme-footer-wrapper {
  background-color: #ffffff;
  padding: 62px 40px;
  border-radius: 20px;
  display: flex;
  gap: 32px;
}
.theme-footer-wrapper .logo img {
  min-width: 397px;
}
.theme-footer-wrapper .logo .theme-footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.theme-footer-wrapper .logo .theme-footer-socials i {
  background-color: #272e3f;
  padding: 6px;
  border-radius: 999px;
  color: white;
  font-size: 18px;
}
.theme-footer-wrapper h4 {
  font-size: 18px;
  font-weight: 800;
}
.theme-footer-wrapper .list {
  display: flex;
  gap: 14px;
  align-items: baseline;
}
.theme-footer-wrapper .list__multi {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  align-items: baseline;
}
.theme-footer-wrapper .list__multi i {
  color: #901d39;
  font-size: 18px;
}
.theme-footer-wrapper .list__multi .list-info {
  display: flex;
  flex-direction: column;
}
.theme-footer-wrapper .list__multi a {
  color: #272e3f;
  font-size: 18px;
  font-weight: 500;
}
.theme-footer-wrapper .list__multi a:hover {
  color: #901d39;
}
.theme-footer-wrapper .list a {
  color: #272e3f;
  font-size: 18px;
}
.theme-footer-wrapper .list a:hover {
  color: #901d39;
}
.theme-footer-wrapper .list i {
  color: #901d39;
  font-size: 18px;
}
.theme-footer-bottom {
  background-color: #901d39;
  height: 32px;
}

@media screen and (max-width: 1200px) {
  .theme-footer-wrapper {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .theme-footer-wrapper {
    padding: 32px 20px;
  }
  .theme-footer-wrapper .logo {
    margin: auto;
  }
  .theme-footer-wrapper .logo img {
    min-width: 100px;
    max-width: 300px;
  }
  .theme-footer.no-bg {
    position: relative;
  }
}/*# sourceMappingURL=style.css.map */