@media (min-width: 1400px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1435px !important;
  }
}

@media (min-width: 992px) {
  .container-fluid-left {
    margin-left: calc((100vw - 960px) / 2) !important;
    max-width: calc(100% - (100vw - 960px) / 2 + 0px) !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1200px) {
  .container-fluid-left {
    margin-left: calc((100vw - 1140px) / 2) !important;
    max-width: calc(100% - (100vw - 1140px) / 2 + 0px) !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1400px) {
  .container-fluid-left {
    margin-left: calc((100vw - 1320px) / 2) !important;
    max-width: calc(100% - (100vw - 1320px) / 2 + 0px) !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1500px) {
  .container-fluid-left {
    margin-left: calc((100vw - 1435px) / 2) !important;
    max-width: calc(100% - (100vw - 1435px) / 2 + 0px) !important;
    margin-right: 0 !important;
  }
}

@media (min-width: 768px) {
  .container-fluid-left-100 {
    margin-left: calc((100vw - 720px) / 2) !important;
    max-width: calc(100% - (100vw - 720px) / 2 + 100px) !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 992px) {
  .container-fluid-left-100 {
    margin-left: calc((100vw - 960px) / 2) !important;
    max-width: calc(100% - (100vw - 960px) / 2 + 100px) !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1200px) {
  .container-fluid-left-100 {
    margin-left: calc((100vw - 1140px) / 2) !important;
    max-width: calc(100% - (100vw - 1140px) / 2 + 100px) !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1400px) {
  .container-fluid-left-100 {
    margin-left: calc((100vw - 1320px) / 2) !important;
    max-width: calc(100% - (100vw - 1320px) / 2 + 100px) !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1500px) {
  .container-fluid-left-100 {
    margin-left: calc((100vw - 1435px) / 2) !important;
    max-width: calc(100% - (100vw - 1435px) / 2 + 100px) !important;
    margin-right: 0 !important;
  }
}

.btn, .btn-outline, .btn-secondary,
.btn-primary {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  background-color: #192f2f;
  color: #fff;
}
@media (max-width: 992px) {
  .btn, .btn-outline, .btn-secondary,
  .btn-primary {
    font-size: 18px;
  }
}
.btn:hover, .btn-outline:hover, .btn-secondary:hover,
.btn-primary:hover {
  background-color: rgb(7.2916666667, 13.7083333333, 13.7083333333);
  color: #fff;
}
.btn a, .btn-outline a, .btn-secondary a,
.btn-primary a {
  color: #fff !important;
}

.owl-button {
  cursor: pointer;
}
.owl-button:hover {
  background-color: rgb(7.2916666667, 13.7083333333, 13.7083333333) !important;
}

.btn-secondary {
  background-color: blue;
  color: #fff;
}
.btn-secondary:hover {
  background-color: #0000cc;
  color: #fff;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #192f2f;
  color: #192f2f;
}
.btn-outline:hover {
  background-color: #192f2f;
  color: #fff;
}

.flex, .flex-end, .flex-end-center, .flex-end-stretch, .flex-end-end, .flex-end-start, .flex-start, .flex-start-stretch, .flex-start-end, .flex-start-start, .flex-evenly, .flex-evenly-stretch, .flex-evenly-end, .flex-evenly-start, .flex-around, .flex-around-stretch, .flex-around-end, .flex-around-start, .flex-between, .flex-between-center, .flex-between-stretch, .flex-between-end, .flex-between-start, .flex-center, .flex-center-stretch, .flex-center-end, .flex-center-start {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.flex-reverse {
  flex-direction: row-reverse;
}

.flex-center, .flex-center-stretch, .flex-center-end, .flex-center-start {
  justify-content: center;
  align-items: center;
}

.flex-center-start {
  align-items: flex-start;
}

.flex-center-end {
  align-items: flex-end;
}

.flex-center-stretch {
  align-items: stretch;
}

.flex-between, .flex-between-center, .flex-between-stretch, .flex-between-end, .flex-between-start {
  justify-content: space-between;
}

.flex-between-start {
  align-items: flex-start;
}

.flex-between-end {
  align-items: flex-end;
}

.flex-between-stretch {
  align-items: stretch;
}

.flex-between-center {
  align-items: center;
}

.flex-around, .flex-around-stretch, .flex-around-end, .flex-around-start {
  justify-content: space-around;
}

.flex-around-start {
  align-items: flex-start;
}

.flex-around-end {
  align-items: flex-end;
}

.flex-around-stretch {
  align-items: stretch;
}

.flex-evenly, .flex-evenly-stretch, .flex-evenly-end, .flex-evenly-start {
  justify-content: space-evenly;
}

.flex-evenly-start {
  align-items: flex-start;
}

.flex-evenly-end {
  align-items: flex-end;
}

.flex-evenly-stretch {
  align-items: stretch;
}

.flex-start, .flex-start-stretch, .flex-start-end, .flex-start-start {
  justify-content: flex-start;
}

.flex-start-start {
  align-items: flex-start;
}

.flex-start-end {
  align-items: flex-end;
}

.flex-start-stretch {
  align-items: stretch;
}

.flex-end, .flex-end-center, .flex-end-stretch, .flex-end-end, .flex-end-start {
  justify-content: flex-end;
}

.flex-end-start {
  align-items: flex-start;
}

.flex-end-end {
  align-items: flex-end;
}

.flex-end-stretch {
  align-items: stretch;
}

.flex-end-center {
  align-items: center;
}

.flex-col, .flex-col-end, .flex-col-start, .flex-col-start-center,
.flex-col-center,
.flex-col-between-center,
.flex-col-end-center {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}

.flex-col-start, .flex-col-start-center {
  align-items: flex-start;
}

.flex-col-start-center {
  justify-content: center;
}

.flex-col-end {
  align-items: flex-end;
}

.flex-col-end-center {
  justify-content: flex-end;
}

.flex-col-between-center {
  justify-content: space-between;
}

.gap-05 {
  gap: 0.5rem;
}

.gap-075 {
  gap: 0.75rem;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

.gap-4 {
  gap: 4rem;
}

.gap-5 {
  gap: 5rem;
}

.gap-6 {
  gap: 6rem;
}

.fill {
  width: 100%;
  height: 100%;
}

.fill-width {
  width: 100%;
}

.fill-height {
  height: 100%;
}

.fluid-height {
  max-width: 100%;
  height: auto;
}

.fluid-width {
  max-height: 100%;
  width: auto;
}

.relative {
  position: relative;
}

.text-center * {
  text-align: center;
}

.no-padding {
  padding: 0;
}

.no-margin {
  margin: 0;
}

.half-page-left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
}
@media (max-width: 1199px) {
  .half-page-left {
    position: relative;
    width: 100%;
    height: 420px;
  }
}

.half-page-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
}
@media (max-width: 1199px) {
  .half-page-right {
    position: relative;
    width: 100%;
    height: 420px;
  }
}

.container-small {
  max-width: 900px !important;
}

.contain,
.contain-width {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

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

.contain-height {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.contain-width {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.background,
.background-cover {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.background-contain {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: 100%;
  z-index: -1;
}

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

body,
html {
  padding: 0;
  margin: 0;
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333b6f;
  scroll-behavior: smooth;
}
body.menu-open,
html.menu-open {
  overflow: hidden;
}

.hero {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.hero.in-view {
  opacity: 1;
  transform: translateY(0);
}

.contact-form {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.contact-form.in-view {
  opacity: 1;
  transform: translateY(0);
}

.text-block {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.text-block.in-view {
  opacity: 1;
  transform: translateY(0);
}

.slider {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.slider.in-view {
  opacity: 1;
  transform: translateY(0);
}

.afsluiter {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.afsluiter.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-6.666%);
  }
}
.lightpaper-banner {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .lightpaper-banner {
    padding: 12px 0;
  }
}
.lightpaper-banner .lightpaper-scroll-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.lightpaper-banner .lightpaper-scroll-track {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  animation: scroll-left 8s linear infinite;
}
.lightpaper-banner .lightpaper-scroll-track:hover {
  animation-play-state: paused;
}
.lightpaper-banner .lightpaper-content {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0 50px;
  font-family: "neue-haas-unica", sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (max-width: 576px) {
  .lightpaper-banner .lightpaper-content {
    font-size: 13px;
    padding: 0 30px;
  }
}
.lightpaper-banner .lightpaper-content p {
  display: inline;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  color: inherit !important;
}
.lightpaper-banner .lightpaper-content a {
  font-weight: 600;
  text-decoration: underline;
  transition: opacity 0.3s ease;
  color: inherit !important;
}
.lightpaper-banner .lightpaper-content a:hover {
  opacity: 0.7;
}
.lightpaper-banner .lightpaper-content strong,
.lightpaper-banner .lightpaper-content b {
  font-weight: 600;
  color: inherit !important;
}
.lightpaper-banner .lightpaper-content * {
  color: inherit !important;
}

header {
  width: 100%;
  background-color: #fff;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  header {
    padding-top: 20px;
  }
}
@media screen and (max-width: 576px) {
  header {
    padding-top: 10px;
  }
}
header .content-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 50px;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  header .content-header {
    justify-content: flex-start;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 576px) {
  header .content-header {
    padding-bottom: 10px;
  }
}
header .content-header .menu-left .nav-menu,
header .content-header .menu-right .nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
  align-items: center;
}
@media screen and (max-width: 991px) {
  header .content-header .menu-left .nav-menu,
  header .content-header .menu-right .nav-menu {
    gap: 20px;
  }
}
@media screen and (max-width: 576px) {
  header .content-header .menu-left .nav-menu,
  header .content-header .menu-right .nav-menu {
    gap: 15px;
  }
}
header .content-header .menu-left .nav-menu li a,
header .content-header .menu-right .nav-menu li a {
  font-family: "neue-haas-unica", sans-serif;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 991px) {
  header .content-header .menu-left .nav-menu li a,
  header .content-header .menu-right .nav-menu li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 576px) {
  header .content-header .menu-left .nav-menu li a,
  header .content-header .menu-right .nav-menu li a {
    font-size: 12px;
  }
}
header .content-header .menu-left .nav-menu li a:hover,
header .content-header .menu-right .nav-menu li a:hover {
  opacity: 0.6;
}
header .content-header .menu-left .nav-menu li.current-menu-item a, header .content-header .menu-left .nav-menu li.current_page_item a,
header .content-header .menu-right .nav-menu li.current-menu-item a,
header .content-header .menu-right .nav-menu li.current_page_item a {
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  header .content-header .menu-left,
  header .content-header .menu-right {
    display: none;
  }
}
header .content-header .menu-left #menu-item-199 a,
header .content-header .menu-right #menu-item-199 a {
  padding: 8px 20px;
  border-radius: 20px;
  background-color: #192f2f;
  color: #fff !important;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 991px) {
  header .content-header .menu-left #menu-item-199 a,
  header .content-header .menu-right #menu-item-199 a {
    padding: 6px 16px;
    font-size: 12px;
  }
}
header .content-header .menu-left #menu-item-199 a:hover,
header .content-header .menu-right #menu-item-199 a:hover {
  background-color: rgb(7.2916666667, 13.7083333333, 13.7083333333);
  opacity: 1;
}
header .content-header .menu-left {
  flex: 0 1 auto;
  justify-content: flex-start;
  max-width: 35%;
}
@media screen and (max-width: 991px) {
  header .content-header .menu-left {
    max-width: 30%;
  }
}
@media screen and (max-width: 768px) {
  header .content-header .menu-left {
    display: none;
  }
}
header .content-header .menu-right {
  flex: 0 1 auto;
  display: flex;
  justify-content: flex-end;
  max-width: 35%;
}
@media screen and (max-width: 991px) {
  header .content-header .menu-right {
    max-width: 30%;
  }
}
@media screen and (max-width: 768px) {
  header .content-header .menu-right {
    display: none;
  }
}
header .content-header .menu-right .nav-menu {
  margin-right: 30px;
}
@media screen and (max-width: 991px) {
  header .content-header .menu-right .nav-menu {
    margin-right: 20px;
  }
}
header .content-header .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  display: inline-block;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  header .content-header .logo {
    position: relative;
    left: 0;
    transform: none;
    width: 220px;
  }
}
@media screen and (max-width: 576px) {
  header .content-header .logo {
    width: 180px;
  }
}
header .content-header .logo a {
  display: block;
  width: 100%;
  height: 100%;
}
header .content-header .logo img {
  height: 100%;
  width: 100%;
  transition: opacity 0.3s ease;
}
header .content-header .logo a:hover img {
  opacity: 0.9;
}
header .content-header .repeater-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  gap: 22px;
}
@media screen and (max-width: 991px) {
  header .content-header .repeater-wrapper {
    gap: 15px;
  }
}
@media screen and (max-width: 576px) {
  header .content-header .repeater-wrapper {
    gap: 10px;
  }
}
@media screen and (max-width: 400px) {
  header .content-header .repeater-wrapper {
    padding-top: 0px;
  }
}
header .content-header .repeater-wrapper .repeater-item img {
  height: 50px;
}
@media screen and (max-width: 576px) {
  header .content-header .repeater-wrapper .repeater-item img {
    height: 30px;
  }
}
header .content-header .hamburger-menu {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 2000;
}
@media screen and (max-width: 768px) {
  header .content-header .hamburger-menu {
    display: flex;
  }
}
header .content-header .hamburger-menu span {
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}
header .content-header .hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 3px);
}
header .content-header .hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}
header .content-header .hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
@media screen and (max-width: 768px) {
  header .content-header .repeater-wrapper {
    display: none !important;
  }
}
header .mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: #fff;
  z-index: 1500;
  transition: left 0.3s ease;
  overflow-y: auto;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 769px) {
  header .mobile-menu-overlay {
    display: none;
  }
}
header .mobile-menu-overlay.active {
  left: 0;
}
header .mobile-menu-overlay .mobile-menu-content {
  padding: 100px 30px 40px;
}
header .mobile-menu-overlay .mobile-menu-content .mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
}
header .mobile-menu-overlay .mobile-menu-content .mobile-nav-menu li {
  margin-bottom: 20px;
}
header .mobile-menu-overlay .mobile-menu-content .mobile-nav-menu li a {
  font-family: "neue-haas-unica", sans-serif;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  display: block;
  padding: 10px 0;
  transition: opacity 0.3s ease;
}
header .mobile-menu-overlay .mobile-menu-content .mobile-nav-menu li a:hover {
  opacity: 0.6;
}
header .mobile-menu-overlay .mobile-menu-content .mobile-nav-menu li.current-menu-item a, header .mobile-menu-overlay .mobile-menu-content .mobile-nav-menu li.current_page_item a {
  font-weight: 600;
}
header .mobile-menu-overlay .mobile-menu-content .mobile-nav-menu li#menu-item-199 a {
  padding: 12px 24px;
  border-radius: 20px;
  background-color: #192f2f;
  color: #fff !important;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  text-align: center;
}
header .mobile-menu-overlay .mobile-menu-content .mobile-nav-menu li#menu-item-199 a:hover {
  background-color: rgb(7.2916666667, 13.7083333333, 13.7083333333);
  opacity: 1;
}
header .mobile-menu-overlay .mobile-menu-content .mobile-socials {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
header .mobile-menu-overlay .mobile-menu-content .mobile-socials a img {
  height: 40px;
  transition: opacity 0.3s ease;
}
header .mobile-menu-overlay .mobile-menu-content .mobile-socials a img:hover {
  opacity: 0.7;
}
header .mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1400;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
header .mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 769px) {
  header .mobile-menu-backdrop {
    display: none;
  }
}

body.stop-scrolling,
html.stop-scrolling {
  overflow: hidden;
  height: 100%;
}

.hero {
  padding-top: 0px;
  padding-bottom: 160px;
}
@media screen and (max-width: 576px) {
  .hero {
    padding-top: 0px;
    padding-bottom: 80px;
  }
}
.hero .images-hero {
  display: flex;
  gap: 20px;
  padding: 0;
  position: relative;
}
.hero .images-hero .desktop-images {
  display: flex;
  gap: 20px;
  width: 100%;
  position: relative;
}
.hero .images-hero .desktop-images .image-container-left,
.hero .images-hero .desktop-images .image-container-right {
  width: 100%;
  height: 700px;
  position: relative;
}
@media screen and (max-width: 1800px) {
  .hero .images-hero .desktop-images .image-container-left,
  .hero .images-hero .desktop-images .image-container-right {
    max-height: 600px;
    padding-top: 60px;
  }
}
.hero .images-hero .desktop-images .image-container-left .hero-image-left,
.hero .images-hero .desktop-images .image-container-right .hero-image-left {
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .images-hero .desktop-images .image-container-left .hero-image-right,
.hero .images-hero .desktop-images .image-container-right .hero-image-right {
  position: absolute;
  top: 40px;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1400px) {
  .hero .images-hero .desktop-images .deco-wave-top {
    display: none;
  }
}
.hero .images-hero .desktop-images .deco-wave-top {
  position: absolute;
  top: -15px;
  right: 0;
  width: 100%;
  z-index: 100;
}
.hero .images-hero .desktop-images .deco-wave-bottom {
  position: absolute;
  bottom: -100px;
  right: 0;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .hero .images-hero .desktop-images .deco-wave-bottom {
    display: none;
  }
}
@media screen and (max-width: 1400px) {
  .hero .images-hero .desktop-images {
    display: none;
  }
}
.hero .images-hero .mobile-carousel {
  display: none;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .hero .images-hero .mobile-carousel {
    display: block;
  }
}
.hero .images-hero .mobile-carousel .carousel-item {
  height: 600px;
}
@media screen and (max-width: 1800px) {
  .hero .images-hero .mobile-carousel .carousel-item {
    height: 500px;
  }
}
@media screen and (max-width: 768px) {
  .hero .images-hero .mobile-carousel .carousel-item {
    height: 400px;
  }
}
@media screen and (max-width: 576px) {
  .hero .images-hero .mobile-carousel .carousel-item {
    height: 300px;
  }
}
.hero .images-hero .mobile-carousel .hero-carousel-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.hero .images-hero .mobile-carousel .owl-nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 100%;
}
.hero .images-hero .mobile-carousel .owl-nav .owl-prev,
.hero .images-hero .mobile-carousel .owl-nav .owl-next {
  position: absolute;
  background: rgba(169, 114, 70, 0.8) !important;
  color: white !important;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}
.hero .images-hero .mobile-carousel .owl-nav .owl-prev:hover,
.hero .images-hero .mobile-carousel .owl-nav .owl-next:hover {
  background: rgb(169, 114, 70) !important;
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  .hero .images-hero .mobile-carousel .owl-nav .owl-prev,
  .hero .images-hero .mobile-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}
.hero .images-hero .mobile-carousel .owl-nav .owl-prev {
  left: 20px;
}
.hero .images-hero .mobile-carousel .owl-nav .owl-next {
  right: 20px;
}
.hero .images-hero .text-container {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0px 20px 0px 20px;
  background-color: rgb(169, 114, 70);
  border-radius: 20px;
  max-width: 700px;
  z-index: 200;
}
@media screen and (max-width: 767px) {
  .hero .images-hero .text-container {
    padding: 0px 10px 30px 10px;
    bottom: 0px;
  }
}
@media screen and (max-width: 576px) {
  .hero .images-hero .text-container {
    width: 75%;
    padding: 0px 5px 30px 5px;
  }
}
.hero .images-hero .text-container h1 {
  text-align: center;
  margin: 0;
  color: white;
  padding-top: 20px;
  font-weight: 300 !important;
}
@media screen and (max-width: 767px) {
  .hero .images-hero .text-container h1 {
    font-size: 27px;
  }
}
@media screen and (max-width: 576px) {
  .hero .images-hero .text-container h1 {
    font-size: 20px;
  }
}
.hero .images-hero .text-container p {
  text-align: left;
  padding: 0px 0px 0px 40px;
  font-weight: 300;
  margin: 0;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .hero .images-hero .text-container p {
    display: none;
  }
}
.hero .images-hero .text-container .btn-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -12%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "neue-haas-unica", sans-serif;
  font-weight: 300;
  font-size: 25px;
}
@media screen and (max-width: 767px) {
  .hero .images-hero .text-container .btn-primary {
    font-size: 18px;
  }
}
.hero .images-hero .text-container .btn-primary a {
  text-decoration: none;
}

.content-text-block {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 80px;
}
@media screen and (max-width: 576px) {
  .content-text-block {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.content-text-block h1 {
  text-align: center;
  line-height: 1.2;
}
.content-text-block .image-container {
  position: absolute;
}
.content-text-block .image-container .vlekjes.vlekjes {
  position: absolute;
  top: -225px;
  left: -325px;
}
@media screen and (max-width: 1400px) {
  .content-text-block .image-container .vlekjes.vlekjes {
    top: -265px;
    left: -230px;
  }
}
@media screen and (max-width: 1200px) {
  .content-text-block .image-container .vlekjes.vlekjes {
    top: -310px;
    left: -220px;
  }
}
@media screen and (max-width: 992px) {
  .content-text-block .image-container .vlekjes.vlekjes {
    top: -170px;
    left: -270px;
  }
}
@media screen and (max-width: 767px) {
  .content-text-block .image-container .vlekjes.vlekjes {
    top: -180px;
    left: -230px;
  }
}
@media screen and (max-width: 575px) {
  .content-text-block .image-container .vlekjes.vlekjes {
    top: -170px;
    left: -230px;
  }
}
@media screen and (max-width: 500px) {
  .content-text-block .image-container .vlekjes.vlekjes {
    display: none;
  }
}
.content-text-block .image-container .vlekjes.vlekjes_naar_beneden {
  position: absolute;
  left: -200px;
  top: -255px;
}
@media screen and (max-width: 1400px) {
  .content-text-block .image-container .vlekjes.vlekjes_naar_beneden {
    top: -295px;
    left: -200px;
  }
}
@media screen and (max-width: 1200px) {
  .content-text-block .image-container .vlekjes.vlekjes_naar_beneden {
    top: -325px;
    left: -190px;
  }
}
@media screen and (max-width: 992px) {
  .content-text-block .image-container .vlekjes.vlekjes_naar_beneden {
    top: -165px;
    left: -350px;
  }
}
@media screen and (max-width: 767px) {
  .content-text-block .image-container .vlekjes.vlekjes_naar_beneden {
    top: -180px;
    left: -250px;
  }
}

.slider {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 1000px) {
  .slider {
    padding-top: 0px;
  }
}
.slider .text-container {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.slider .text-container h2 {
  color: #6a1137;
}
@media screen and (max-width: 576px) {
  .slider .text-container {
    left: 50%;
    transform: translateX(-50%);
    bottom: 80px;
  }
}

.afsluiter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 576px) {
  .afsluiter {
    padding-top: 40px;
  }
}

.single-textblock {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .single-textblock {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 576px) {
  .single-textblock {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.single-textblock .content {
  text-align: left;
}
.single-textblock .content h1,
.single-textblock .content h2,
.single-textblock .content h3,
.single-textblock .content h4,
.single-textblock .content h5,
.single-textblock .content h6 {
  text-align: left;
  margin-bottom: 20px;
}
.single-textblock .content p {
  margin-bottom: 20px;
}
.single-textblock .image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
@media screen and (max-width: 991px) {
  .single-textblock .image-wrapper {
    margin-top: 30px;
  }
}
@media screen and (min-width: 992px) {
  .single-textblock .align-items-center {
    display: flex;
    align-items: stretch;
  }
  .single-textblock .align-items-center > .col-lg-6 {
    display: flex;
    flex-direction: column;
  }
  .single-textblock .align-items-center .image-wrapper {
    flex: 1;
    display: flex;
    margin-top: 0;
  }
  .single-textblock .align-items-center .image-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 8px;
  }
  .single-textblock .align-items-center .content {
    flex: 1;
  }
}
@media screen and (min-width: 992px) {
  .single-textblock .align-items-center > .col-lg-6:first-child {
    padding-right: 30px;
  }
}
@media screen and (min-width: 992px) {
  .single-textblock .align-items-center > .col-lg-6:last-child {
    padding-left: 30px;
  }
}
@media screen and (min-width: 992px) {
  .single-textblock .align-items-center.flex-row-reverse > .col-lg-6:first-child {
    padding-left: 30px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 992px) {
  .single-textblock .align-items-center.flex-row-reverse > .col-lg-6:last-child {
    padding-right: 30px;
    padding-left: 15px;
  }
}

.single-imageblock .row {
  display: flex;
  justify-content: center;
}
.single-imageblock .col-12 {
  max-width: 100%;
}
.single-imageblock .image-container {
  width: 100%;
}
.single-imageblock .image-container img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

footer {
  background-color: rgba(178, 111, 75, 0.1);
}

.footer-content {
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-content .text-container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 630px;
  padding-bottom: 50px;
  padding-top: 50px;
}
.footer-content .text-container h2 {
  font-weight: 500;
  color: #b26f4b;
}
.footer-content .text-container img {
  position: absolute;
  right: -40px;
  width: 100px;
  bottom: -20px;
}
@media screen and (max-width: 576px) {
  .footer-content .text-container img {
    width: 60px;
    right: -10px;
    bottom: 0px;
  }
}

.middle-footer {
  padding: 50px 0px;
}
.middle-footer .company-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 30px;
  transition: all 0.3s ease;
}
.middle-footer .company-info a:hover {
  color: #9e4648;
}
.middle-footer .company-info img {
  height: 90px;
}

.bottom-footer {
  padding-bottom: 50px;
  padding-top: 40px;
}
.bottom-footer a {
  text-decoration: none;
  color: black;
  font-weight: 300;
  font-size: 16px;
  font-family: "neue-haas-unica", sans-serif;
  text-transform: uppercase;
}
@media screen and (max-width: 576px) {
  .bottom-footer a {
    font-size: 14px;
  }
}

section.error-404 {
  padding: 5em 0;
}

h1 {
  text-transform: uppercase;
  font-size: 41px;
  font-family: Georgia, serif;
  color: #9e4648;
  font-weight: 300;
  letter-spacing: 0.5px;
}
@media (max-width: 1199px) {
  h1 {
    font-size: 38px;
  }
}
@media (max-width: 992px) {
  h1 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 27px;
  }
}

h2 {
  font-size: 24px;
  text-transform: uppercase;
  font-family: Georgia, serif;
  font-weight: 300;
  color: #9e4648;
  letter-spacing: 0.5px;
}
@media (max-width: 1199px) {
  h2 {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  h2 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 14px;
  }
}

p {
  font-family: "neue-haas-unica", sans-serif;
  color: black;
  font-size: 20px;
  font-weight: 300;
  width: 100%;
}
@media (max-width: 1199px) {
  p {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  p {
    font-size: 14px;
  }
}

ul {
  padding-left: 20px;
  list-style: disc;
}
ul li {
  margin-bottom: 15px;
  color: #333b6f;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

p + .btn, p + .btn-secondary, p + .btn-outline {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.gform_wrapper .gform_heading {
  display: flex;
  justify-content: center;
}
.gform_wrapper .gform_heading p {
  color: #9e4648;
  font-size: 41px;
  font-family: Georgia, serif;
  text-transform: uppercase;
}
.gform_wrapper .gform-body .gform_fields .gfield .gsection_title {
  font-family: "neue-haas-unica", sans-serif;
  text-transform: uppercase;
  color: #192f2f;
  font-size: 24px;
  font-weight: 300;
}

@media screen and (max-width: 576px) {
  .gform_description {
    font-size: 24px !important;
  }
}

@media screen and (max-width: 576px) {
  #field_1_5 h3,
  #field_1_8 h3,
  #field_1_11 h3 {
    font-size: 20px !important;
  }
}

#input_1_4,
#input_1_1_3,
#input_1_1_4,
#input_1_1_6,
#input_1_10_1,
#input_1_10_2,
#input_1_10_5,
#input_1_10_6,
#input_1_12,
#input_1_13,
#input_1_14 {
  font-family: "neue-haas-unica", sans-serif;
  font-weight: 300;
}

#field_1_5,
#field_1_11,
#field_1_8 {
  display: flex;
  justify-content: center;
}

#input_1_10_2_container {
  width: 13%;
}

#input_1_10_1_container,
#input_1_10_5_container,
#input_1_10_6_container {
  width: 29%;
}

#gform_submit_button_1 {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(-50%);
  font-family: "neue-haas-unica", sans-serif;
  font-weight: 300;
  font-size: 25px;
  background-color: #192f2f;
  border-radius: 20px;
  padding: 0.7rem 1rem !important;
}
@media screen and (max-width: 767px) {
  #gform_submit_button_1 {
    font-size: 18px;
  }
}
@media screen and (max-width: 576px) {
  #gform_submit_button_1 {
    font-size: 18px !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px;
  }
}
#gform_submit_button_1 a {
  text-decoration: none;
}

#input_1_7_1,
#input_1_6_1 {
  border: #6a1137 1px solid;
}

#field_1_7,
#field_1_6 {
  font-family: "neue-haas-unica", sans-serif;
  font-weight: 300;
}

label.gform-field-label.gfield_consent_label {
  font-weight: 300 !important;
}

#input_1_1_3_container {
  width: 40% !important;
}
@media screen and (max-width: 767px) {
  #input_1_1_3_container {
    width: 100% !important;
  }
}

#input_1_1_4_container {
  width: 20% !important;
  display: flex;
  flex: none;
}
@media screen and (max-width: 767px) {
  #input_1_1_4_container {
    width: 100% !important;
  }
}
#input_1_1_4_container #input_1_1_4 {
  width: 100%;
}

#input_1_1_6_container {
  width: 40% !important;
  flex: none;
}
@media screen and (max-width: 767px) {
  #input_1_1_6_container {
    width: 100% !important;
  }
}

#field_1_4 {
  width: 75%;
}
@media screen and (max-width: 767px) {
  #field_1_4 {
    width: 100%;
  }
}

.gform-footer.gform_footer.top_label {
  display: flex !important;
  justify-content: flex-end !important;
}
@media screen and (max-width: 576px) {
  .gform-footer.gform_footer.top_label {
    justify-content: center !important;
  }
}

p a {
  text-decoration: underline;
  text-decoration-color: #707070;
  text-underline-offset: 4px;
  color: black;
}

@media screen and (max-width: 767px) {
  #input_1_10_1_container,
  #input_1_10_2_container,
  #input_1_10_5_container,
  #input_1_10_6_container,
  #input_1_4 {
    width: 100%;
  }
}

@media screen and (max-width: 576px) {
  .contact-form p {
    padding-top: 25px;
  }
}/*# sourceMappingURL=style.css.map */