* {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}

body {
  font-family: "Encode Sans", sans-serif;
}

.no-scroll {
  overflow: hidden;
}

.fade {
  opacity: 0;
  transition: 0.4s ease;
  transition-delay: 0.2s;
}

.inView {
  opacity: 1;
}

a {
  text-decoration: none;
}

.btn {
  display: inline-block;
  padding: 16px 50px;
  transition: 0.2s ease;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  background-color: #0096D8;
}
.btn:hover {
  background-color: #161F60;
}

.btn-row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.btn-row .btn {
  margin-right: 20px;
  margin-bottom: 5px;
}
.btn-row .btn:last-of-type {
  margin-right: 0px;
}
.btn-row:empty {
  display: none;
}

article h1 {
  margin-bottom: 50px;
  font-size: 50px;
  font-weight: 300;
  line-height: 60px;
}
article h1 strong {
  font-weight: 800;
}
article h2 {
  margin-bottom: 40px;
  font-size: 45px;
  font-weight: 300;
}
article h2 strong {
  font-weight: 800;
}
article h3 {
  font-size: 30px;
  font-weight: 400;
}
article h4 {
  font-size: 20px;
  font-weight: 400;
}
article p {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 30px;
}
article p strong {
  color: #377BAC;
}
article ul, article ol {
  margin-bottom: 30px;
}

.header-top {
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  z-index: 12;
  background-color: #0056A4;
}
.header-top .header-top-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: auto auto;
  max-width: 1400px;
  width: calc( 100% / 14 * 12 );
}
.header-top .header-top-inner ul {
  list-style: none;
}
.header-top .header-top-inner ul li {
  display: inline-block;
  margin-left: 40px;
  font-size: 16px;
}
.header-top .header-top-inner ul li a {
  color: #ffffff;
}

.header-main {
  position: sticky;
  top: 0px;
  padding-top: 20px;
  padding-bottom: 20px;
  z-index: 12;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
}
.header-main header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto auto;
  max-width: 1400px;
  width: calc( 100% / 14 * 12 );
}
.header-main header .logo-header {
  height: 60px;
  width: auto;
}
.header-main header nav ul {
  list-style: none;
}
.header-main header nav ul li {
  display: inline-block;
  margin-left: 40px;
  font-size: 18px;
  font-weight: 700;
}
.header-main header nav ul li a {
  color: #000000;
}
.header-main header nav ul .btn a {
  color: #ffffff;
}
.header-main header #menu-toggle {
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 4;
  display: none;
}
.header-main header #menu-toggle span {
  display: block;
  background: #000000;
  border-radius: 5px;
  transition: 0.2s ease;
}
.header-main header #menu-toggle #hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  height: 100%;
  width: 100%;
}
.header-main header #menu-toggle #hamburger span {
  width: 30px;
  height: 3px;
  position: relative;
  margin-bottom: 7px;
}
.header-main header #menu-toggle #hamburger span:nth-child(1) {
  transition-delay: 0.5s;
}
.header-main header #menu-toggle #hamburger span:nth-child(2) {
  transition-delay: 0.625s;
}
.header-main header #menu-toggle #hamburger span:nth-child(3) {
  transition-delay: 0.75s;
  margin-bottom: 0px;
}
.header-main header #menu-toggle #cross {
  position: absolute;
  height: 100%;
  width: 100%;
  transform: rotate(45deg);
}
.header-main header #menu-toggle #cross span:nth-child(1) {
  height: 0%;
  width: 3px;
  position: absolute;
  top: 0%;
  left: 14px;
  transition-delay: 0s;
}
.header-main header #menu-toggle #cross span:nth-child(2) {
  width: 0%;
  height: 3px;
  position: absolute;
  left: 0%;
  top: 14px;
  transition-delay: 0.25s;
}
.header-main header #menu-toggle.open #hamburger span {
  width: 0%;
}
.header-main header #menu-toggle.open #hamburger span:nth-child(1) {
  transition-delay: 0s;
}
.header-main header #menu-toggle.open #hamburger span:nth-child(2) {
  transition-delay: 0.125s;
}
.header-main header #menu-toggle.open #hamburger span:nth-child(3) {
  transition-delay: 0.25s;
}
.header-main header #menu-toggle.open #cross span:nth-child(1) {
  height: 30px;
  transition-delay: 0.625s;
}
.header-main header #menu-toggle.open #cross span:nth-child(2) {
  width: 30px;
  transition-delay: 0.375s;
}

.mobile-menu-wrapper {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 3;
  overflow: auto;
  background-color: #ffffff;
}
.mobile-menu-wrapper nav {
  margin: auto auto;
  width: calc( 100% / 14 * 12 );
  margin-top: 120px;
  font-family: "Encode Sans", sans-serif;
}
.mobile-menu-wrapper nav .menu {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  list-style: none;
}
.mobile-menu-wrapper nav .menu .menu-item-has-children {
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: 100% 2px;
}
.mobile-menu-wrapper nav .menu .menu-item {
  margin-left: 0px;
  margin-bottom: 20px;
  width: 100%;
  font-weight: 700;
}
.mobile-menu-wrapper nav .menu .menu-item a {
  color: #000000;
}
.mobile-menu-wrapper nav .menu .menu-item:hover a {
  color: #0056A4;
}
.mobile-menu-wrapper nav .menu .menu-item:after {
  display: none;
}
.mobile-menu-wrapper nav .menu .menu-item .sub-menu {
  position: relative;
  top: 10px;
  padding: 10px 0px 10px 10px;
  list-style: none;
  background-color: inherit;
}
.mobile-menu-wrapper nav .menu .menu-item .sub-menu .menu-item {
  font-weight: 400;
}
.mobile-menu-wrapper nav .menu .menu-item .sub-menu .menu-item:last-of-type {
  margin-bottom: 0px;
}
.mobile-menu-wrapper nav .menu .menu-item .sub-menu .menu-item a {
  color: #000000;
}
.mobile-menu-wrapper nav .menu .menu-item .sub-menu .menu-item:hover a {
  color: #0056A4;
}
.mobile-menu-wrapper nav .menu .btn {
  width: auto;
}

.hero {
  position: relative;
  max-height: 500px;
  height: 70vh;
}
.hero .hero-inner {
  display: flex;
  align-items: center;
  position: relative;
  margin: auto auto;
  max-width: 1200px;
  width: calc( 100% / 14 * 12 );
  height: 100%;
  z-index: 2;
}
.hero .hero-inner h1 {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  font-size: 70px;
  line-height: 70px;
  color: #ffffff;
}
.hero .hero-inner h1 span {
  padding: 20px;
}
.hero .hero-inner h1 span:nth-child(1) {
  background-color: #161F60;
}
.hero .hero-inner h1 span:nth-child(2) {
  background-color: #0056A4;
}
.hero .hero-inner h1 span:nth-child(3) {
  background-color: #0096D8;
}
.hero .hero-image, .hero .wp-post-image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero .hero-wave {
  position: absolute;
  bottom: -10px;
  left: 0px;
  width: 100%;
  height: auto;
  z-index: 2;
}
.hero .hero-wave .wave {
  position: relative;
  width: 100%;
  height: auto;
}
.hero .hero-wave .slogan {
  position: absolute;
  top: -40px;
  width: 300px;
  height: auto;
  right: calc( 100% / 14 * 2 );
}
.hero .sliderActueel {
  height: 100%;
}
.hero .sliderActueel .swiper-button-prev {
  top: 50%;
  left: calc( 100% / 14 * 1 );
  margin: 0px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #E6AD00;
}
.hero .sliderActueel .swiper-button-prev:after {
  font-size: 20px;
  color: #ffffff;
}
.hero .sliderActueel .swiper-button-next {
  top: 50%;
  right: calc( 100% / 14 * 1 );
  margin: 0px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #E6AD00;
}
.hero .sliderActueel .swiper-button-next:after {
  font-size: 20px;
  color: #ffffff;
}

.home .hero {
  max-height: 900px;
}
.home #breadcrumbs {
  display: none;
}

.archive #breadcrumbs {
  margin-bottom: 40px;
}

#breadcrumbs {
  padding-top: 10px;
  padding-bottom: 10px;
  margin: auto auto;
  max-width: 1400px;
  width: calc( 100% / 14 * 12 );
  font-size: 14px;
  font-weight: 700;
  color: #0096D8;
}
#breadcrumbs a {
  font-weight: 400;
  color: #000000;
}

.icons {
  padding-top: 120px;
  padding-bottom: 120px;
}
.icons .icons-inner {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: auto auto;
  max-width: 1600px;
  width: calc( 100% / 14 * 13 );
}
.icons .icons-inner .icon-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  height: 120px;
  transition: 0.2s ease;
}
.icons .icons-inner .icon-wrapper svg {
  max-width: 120px;
  max-height: 50px;
}
.icons .icons-inner .icon-wrapper p {
  font-size: 18px;
  font-weight: 700;
  color: #161F60;
}
.icons .icons-inner .icon-wrapper:hover svg path {
  fill: #E6AD00;
}
.icons .icons-inner .icon-wrapper:hover svg rect {
  fill: #E6AD00;
}
.icons .icons-inner .icon-wrapper:hover p {
  color: #E6AD00;
}

.page-template-about .text-cta {
  align-items: flex-start;
}

.text-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 70px;
  padding-bottom: 120px;
  margin: auto auto;
  max-width: 1400px;
  width: calc( 100% / 14 * 12 );
}
.text-cta article {
  max-width: 680px;
}
.text-cta article .btn-row {
  margin-top: 40px;
}
.text-cta .cta-cirkle {
  position: relative;
  max-width: 400px;
  width: 100%;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.text-cta .cta-cirkle:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.text-cta .cta-cirkle .cta-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.text-cta .cta-cirkle .cta-inner h4 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  line-height: 50px;
  color: #161F60;
}
.text-cta .cta-cirkle .cta-inner p {
  text-decoration: underline;
  font-size: 18px;
  color: #0096D8;
}
.text-cta .cta-cirkle .cta-inner ul {
  padding-left: 0px;
  list-style: none;
}
.text-cta .cta-cirkle .cta-inner ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  font-size: 20px;
  color: #0056A4;
}
.text-cta .cta-cirkle .cta-inner ul li:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0px;
  width: 20px;
  height: 20px;
  background-image: url("../../img/checkmark-yellow.svg");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}
.text-cta .cta-cirkle .cta-inner .btn {
  margin-top: 20px;
}
.text-cta .cta-cirkle .cta-one {
  transform: scale(1);
  transition: 0.2s ease;
}
.text-cta .cta-cirkle .cta-two {
  transform: scale(0);
  transition: 0.2s ease;
}
.text-cta .cta-cirkle:hover .cta-one {
  transform: scale(0);
}
.text-cta .cta-cirkle:hover .cta-two {
  transform: scale(1);
}

.text-text {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 120px;
  padding-bottom: 120px;
  margin: auto auto;
  max-width: 1400px;
  width: calc( 100% / 14 * 12 );
}
.text-text article {
  max-width: 700px;
  width: 48%;
}

form .nf-before-form-content {
  display: none;
}
form .nf-form-content {
  padding: 0px;
}
form .nf-form-content nf-fields-wrap nf-field:nth-child(1) {
  display: inline-block;
  padding-right: 20px;
  width: 50%;
}
form .nf-form-content nf-fields-wrap nf-field:nth-child(2) {
  display: inline-block;
  padding-left: 20px;
  width: 50%;
}
form .nf-form-content nf-fields-wrap nf-field .nf-field-container label {
  font-family: "Encode Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
form .nf-form-content nf-fields-wrap nf-field .nf-field-container input, form .nf-form-content nf-fields-wrap nf-field .nf-field-container textarea {
  font-family: "Encode Sans", sans-serif;
  border: none;
  resize: none;
  background-color: #EEEEEE;
}
form .nf-form-content nf-fields-wrap nf-field .nf-field-container input[type=button] {
  display: inline-block;
  padding: 16px 50px;
  transition: 0.2s ease;
  font-family: "Encode Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  color: #ffffff;
  background-color: #0096D8;
}
form .nf-form-content nf-fields-wrap nf-field .nf-field-container input[type=button]:hover {
  background-color: #161F60;
}

.signup-form {
  position: relative;
  padding-top: 200px;
  margin-bottom: 100px;
  clip-path: ellipse(100% 100% at 60% 100%);
  background-color: #0096D8;
}
.signup-form .wave-signup-form-bottom {
  position: absolute;
  bottom: 0px;
  width: 100%;
  z-index: 0;
}
.signup-form .signup-form-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  margin: auto auto;
  max-width: 1400px;
  width: calc( 100% / 14 * 12 );
  z-index: 2;
}
.signup-form .signup-form-inner article {
  width: 48%;
  color: #ffffff;
}
.signup-form .signup-form-inner article form .nf-form-content nf-fields-wrap nf-field .nf-field-container input[type=button] {
  background-color: #161F60;
}
.signup-form .signup-form-inner article form .nf-form-content nf-fields-wrap nf-field .nf-field-container input[type=button]:hover {
  background-color: #0096D8;
}
.signup-form .signup-form-inner .cta {
  position: relative;
  padding-bottom: 100px;
  width: 48%;
  background-color: inherit;
}
.signup-form .signup-form-inner .cta .cta-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  margin: inherit;
  max-width: inherit;
  width: auto;
  min-height: 400px;
  z-index: 1;
}
.signup-form .signup-form-inner .cta .cta-inner article {
  margin-right: 0px;
  align-self: flex-start;
  width: inherit;
  color: #ffffff;
}
.signup-form .signup-form-inner .cta .cta-inner article h2 {
  color: #161F60;
}
.signup-form .signup-form-inner .cta .cta-inner img {
  align-self: flex-end;
  margin-top: 50px;
  border-radius: 50%;
  width: 300px;
  height: 300px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.posts-verhuur {
  position: relative;
  margin-top: 120px;
  padding-bottom: 120px;
  background-color: #E3E4EC;
}
.posts-verhuur .wave-verhuur-top {
  position: absolute;
  bottom: 100%;
  transform: translateY(1px);
  width: 100%;
  z-index: -1;
}
.posts-verhuur .title-row {
  padding-bottom: 70px;
  margin: auto auto;
  max-width: 1400px;
  width: calc( 100% / 14 * 12 );
  text-align: center;
}
.posts-verhuur .title-row h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 50px;
  color: #161F60;
}
.posts-verhuur .slider-wrapper {
  position: relative;
  overflow: hidden;
}
.posts-verhuur .slider-wrapper .sliderVerhuur {
  margin: auto auto;
  max-width: 1400px;
  width: calc( 100% / 14 * 12 );
  overflow: visible;
}
.posts-verhuur .slider-wrapper .sliderVerhuur .swiper-slide {
  position: relative;
  transition: 0.2s;
  opacity: 0.3;
  pointer-events: none;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
}
.posts-verhuur .slider-wrapper .sliderVerhuur .swiper-slide .wp-post-image {
  position: relative;
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}
.posts-verhuur .slider-wrapper .sliderVerhuur .swiper-slide .title {
  padding: 40px 20px;
  text-align: center;
}
.posts-verhuur .slider-wrapper .sliderVerhuur .swiper-slide .title h3 {
  font-size: 22px;
}
.posts-verhuur .slider-wrapper .sliderVerhuur .swiper-slide .overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0px;
  left: 0px;
  transform: scale(0);
  transition: 0.4s ease;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  background-color: rgba(22, 31, 96, 0.9);
}
.posts-verhuur .slider-wrapper .sliderVerhuur .swiper-slide .overlay span {
  text-decoration: underline;
  font-weight: 700;
  color: #ffffff;
}
.posts-verhuur .slider-wrapper .sliderVerhuur .swiper-slide:hover .overlay {
  transform: scale(1);
  opacity: 1;
}
.posts-verhuur .slider-wrapper .sliderVerhuur .swiper-slide-active {
  opacity: 1;
  pointer-events: auto;
}
.posts-verhuur .slider-wrapper .sliderVerhuur .swiper-slide-prev {
  opacity: 1;
  pointer-events: auto;
}
.posts-verhuur .slider-wrapper .sliderVerhuur .swiper-slide-next {
  opacity: 1;
  pointer-events: auto;
}
.posts-verhuur .slider-wrapper .swiper-button-prev {
  top: 50%;
  left: -20px;
  margin: 0px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #E6AD00;
}
.posts-verhuur .slider-wrapper .swiper-button-prev:after {
  font-size: 20px;
  color: #ffffff;
}
.posts-verhuur .slider-wrapper .swiper-button-next {
  top: 50%;
  right: -20px;
  margin: 0px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #E6AD00;
}
.posts-verhuur .slider-wrapper .swiper-button-next:after {
  font-size: 20px;
  color: #ffffff;
}
.posts-verhuur .button-row {
  padding-top: 70px;
  margin: auto auto;
  max-width: 1400px;
  width: calc( 100% / 14 * 12 );
  text-align: center;
}

.posts-actueel {
  padding-bottom: 100px;
  background-color: #E3E4EC;
}
.posts-actueel .posts-wrapper {
  display: flex;
  align-items: stretch;
  margin: auto auto;
  position: relative;
  width: calc( 100% / 14 * 12 );
  max-width: 1400px;
  z-index: 2;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
}
.posts-actueel .posts-wrapper img {
  height: auto;
  width: 40%;
  object-fit: cover;
  object-position: center;
}
.posts-actueel .posts-wrapper .posts {
  padding: 60px;
  width: 60%;
}
.posts-actueel .posts-wrapper .posts h3 {
  margin-bottom: 50px;
  font-size: 50px;
  font-weight: 800;
  color: #161F60;
}
.posts-actueel .posts-wrapper .posts ul {
  list-style: none;
}
.posts-actueel .posts-wrapper .posts ul li {
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E1E4E5;
  font-weight: 700;
}
.posts-actueel .posts-wrapper .posts ul li a {
  width: 100%;
  color: #000000;
}
.posts-actueel .posts-wrapper .posts ul li:hover a {
  color: #0096D8;
}

.posts-related {
  position: relative;
  padding-top: 120px;
  padding-bottom: 200px;
  margin-top: 90px;
  margin-bottom: -100px;
  clip-path: ellipse(100% 100% at 60% 100%);
  overflow: hidden;
  background-color: #E3E4EC;
}
.posts-related .title-row {
  margin: auto auto;
  max-width: 1400px;
  width: calc( 100% / 14 * 12 );
}
.posts-related .title-row h3 {
  margin-bottom: 90px;
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  line-height: 40px;
  color: #161F60;
}
.posts-related .posts-related-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
  align-items: stretch;
  margin: auto auto;
  max-width: 1400px;
  width: calc( 100% / 14 * 12 );
}
.posts-related .posts-related-inner .post {
  position: relative;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
}
.posts-related .posts-related-inner .post .wp-post-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}
.posts-related .posts-related-inner .post .post-title {
  padding: 40px;
}
.posts-related .posts-related-inner .post .post-title h3 {
  font-size: 20px;
  line-height: 24px;
  color: #161F60;
}
.posts-related:after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -300px;
  border-radius: 50%;
  width: 40%;
  height: 400px;
  background-color: #ffffff;
}

.cta {
  position: relative;
  padding-bottom: 100px;
  background-color: #0096D8;
}
.cta .wave-cta-top {
  position: absolute;
  bottom: 100%;
  width: 100%;
}
.cta .cta-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  margin: auto auto;
  max-width: 1400px;
  width: calc( 100% / 14 * 12 );
  min-height: 400px;
  z-index: 1;
}
.cta .cta-inner article {
  align-self: flex-start;
  margin-right: 40px;
  color: #ffffff;
}
.cta .cta-inner article h2 {
  font-size: 50px;
  font-weight: 700;
}
.cta .cta-inner article p {
  font-size: 29px;
  font-weight: 300;
  line-height: 40px;
}
.cta .cta-inner img {
  align-self: flex-end;
  border-radius: 50%;
  width: 300px;
  height: 300px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.cta .wave-cta-bottom {
  position: absolute;
  bottom: 0px;
  width: 100%;
  z-index: 0;
}

.logo-slider-wrapper {
  padding-top: 100px;
  padding-bottom: 100px;
  margin: auto auto;
  max-width: 1400px;
  width: calc( 100% / 14 * 12 );
}
.logo-slider-wrapper .title-row {
  padding-bottom: 70px;
  margin: auto auto;
  max-width: 1400px;
  width: calc( 100% / 14 * 12 );
  text-align: center;
}
.logo-slider-wrapper .title-row h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 50px;
  color: #161F60;
}
.logo-slider-wrapper .slider-wrapper {
  position: relative;
}
.logo-slider-wrapper .slider-wrapper .sliderLogo .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #ffffff;
}
.logo-slider-wrapper .slider-wrapper .sliderLogo .swiper-slide .logo {
  position: relative;
  max-width: 150px;
  width: 100%;
  height: auto;
}
.logo-slider-wrapper .slider-wrapper .swiper-button-prev {
  top: 50%;
  left: -40px;
  margin: 0px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #E6AD00;
}
.logo-slider-wrapper .slider-wrapper .swiper-button-prev:after {
  font-size: 20px;
  color: #ffffff;
}
.logo-slider-wrapper .slider-wrapper .swiper-button-next {
  top: 50%;
  right: -40px;
  margin: 0px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #E6AD00;
}
.logo-slider-wrapper .slider-wrapper .swiper-button-next:after {
  font-size: 20px;
  color: #ffffff;
}

.slider-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-top: 100px;
  padding-bottom: 100px;
  margin: auto auto;
  max-width: 1400px;
  width: calc( 100% / 14 * 12 );
}
.slider-content .slider-wrapper {
  position: relative;
  width: 48%;
}
.slider-content .slider-wrapper .sliderSingleVerhuur {
  height: 600px;
}
.slider-content .slider-wrapper .sliderSingleVerhuur .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slider-content .slider-wrapper .slider-navigation {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  position: relative;
  padding-top: 20px;
  width: 100%;
}
.slider-content .slider-wrapper .slider-navigation .swiper-button-prev {
  position: relative;
  margin: 0px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #E6AD00;
}
.slider-content .slider-wrapper .slider-navigation .swiper-button-prev:after {
  font-size: 20px;
  color: #ffffff;
}
.slider-content .slider-wrapper .slider-navigation .swiper-button-next {
  position: relative;
  bottom: 0px;
  margin: 0px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #E6AD00;
}
.slider-content .slider-wrapper .slider-navigation .swiper-button-next:after {
  font-size: 20px;
  color: #ffffff;
}
.slider-content .slider-wrapper .slider-navigation .swiper-pagination {
  position: relative;
  width: auto;
  bottom: inherit;
}
.slider-content .slider-wrapper .slider-navigation .swiper-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background-color: #161F60;
}
.slider-content article {
  width: 48%;
}
.slider-content article h2 {
  font-weight: 700;
  color: #161F60;
}
.slider-content article h3 {
  color: #0096D8;
}
.slider-content article .btn-row {
  margin-top: 30px;
}

.site-footer {
  padding-top: 100px;
  clip-path: ellipse(100% 100% at 50% 100%);
  background-blend-mode: multiply;
  background: #0056A4;
  background-image: url("../../img/footer-background.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.site-footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-bottom: 30px;
  margin: auto auto;
  max-width: 1400px;
  width: calc( 100% / 14 * 12 );
}
.site-footer .footer-inner .widget-footer {
  padding: 20px;
  width: 25%;
  max-width: 400px;
  color: #ffffff;
}
.site-footer .footer-inner .widget-footer img {
  max-width: 200px;
  max-height: 200px;
}
.site-footer .footer-inner .widget-footer h2 {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 400;
}
.site-footer .footer-inner .widget-footer h3 {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 19px;
  font-weight: 400;
}
.site-footer .footer-inner .widget-footer h4 {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 400;
}
.site-footer .footer-inner .widget-footer p, .site-footer .footer-inner .widget-footer ul, .site-footer .footer-inner .widget-footer ol {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 30px;
}
.site-footer .footer-inner .widget-footer p:last-of-type, .site-footer .footer-inner .widget-footer ul:last-of-type, .site-footer .footer-inner .widget-footer ol:last-of-type {
  margin-bottom: 0px;
}
.site-footer .footer-inner .widget-footer nav ul {
  padding: 0px;
  list-style: none;
}
.site-footer .footer-inner .widget-footer nav ul li {
  font-size: 18px;
  line-height: 30px;
}
.site-footer .footer-inner .widget-footer nav ul li a {
  color: #ffffff;
}
.site-footer .under-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 40px;
  margin: auto auto;
  border-top: 1px solid #ffffff;
  max-width: 1400px;
  width: calc( 100% / 14 * 12 );
}
.site-footer .under-footer p {
  font-size: 16px;
  color: #ffffff;
}

.main-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 100px;
  padding-bottom: 100px;
  margin: auto auto;
  max-width: 1400px;
  width: calc( 100% / 14 * 12 );
}
.main-content article {
  position: relative;
  max-width: 690px;
}
.main-content article h1 {
  margin-bottom: 60px;
  color: #161F60;
}
.main-content article h1 strong {
  font-weight: 800;
}
.main-content article h2 {
  color: #0096D8;
}
.main-content article h2 strong {
  font-weight: 800;
}
.main-content article h3 {
  color: #0096D8;
}
.main-content article h3 strong {
  font-weight: 800;
}
.main-content article h4 {
  color: #0096D8;
}
.main-content article h4 strong {
  font-weight: 800;
}
.main-content article .wp-block-image {
  margin-top: 40px;
  margin-bottom: 40px;
}
.main-content .progress-bar {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
  position: relative;
}
.main-content .progress-bar .line {
  position: absolute;
  height: 100%;
  width: 3px;
  background-color: #E1E4E5;
}
.main-content .progress-bar #cirkle {
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 50%;
  margin-top: 0px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #ffffff;
}
.main-content .progress-bar #cirkle:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid #0096D8;
  border-radius: 50%;
}
.main-content .side-image {
  position: sticky;
  top: 140px;
  max-width: 500px;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.page-template-about .icons {
  position: relative;
  margin-top: 100px;
  padding-top: 100px;
  padding-bottom: 60px;
  clip-path: ellipse(100% 100% at 60% 100%);
  background-color: #0096D8;
}
.page-template-about .icons .title-row {
  padding-bottom: 50px;
  margin: auto auto;
  max-width: 1400px;
  width: calc( 100% /14 * 12 );
  text-align: center;
}
.page-template-about .icons .title-row h2 {
  font-size: 40px;
  font-weight: 400;
  color: #161F60;
}
.page-template-about .icons .icons-inner .icon-wrapper p {
  color: #ffffff;
}
.page-template-about .icons .wave-icons-bottom {
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 0;
}

.team {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  flex-wrap: wrap;
  position: relative;
  padding-top: 100px;
  padding-bottom: 50px;
  margin: auto auto;
  max-width: 1400px;
  width: calc( 100% / 14 * 12 );
  z-index: 2;
}
.team .team-member {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 40px;
  max-width: 320px;
  min-width: 300px;
  width: 100%;
  text-align: center;
}
.team .team-member .image {
  margin-bottom: 30px;
  width: 300px;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.team .team-member .image:after {
  content: "";
  display: block;
  padding-top: 100%;
}
.team .team-member h4 {
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 700;
  color: #161F60;
}
.team .team-member p {
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 400;
  color: #161F60;
}

.archive {
  background-image: url("../../img/archive-background.svg");
  background-size: contain;
  background-position: 0% 80%;
  background-repeat: no-repeat;
}
.archive .posts-actueel {
  padding-bottom: 0px;
  background-color: #ffffff;
}
.archive .archive-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-top: 90px;
  padding-bottom: 90px;
  margin: auto auto;
  max-width: 1400px;
  width: calc( 100% / 14 * 12 );
}
.archive .archive-inner .sidebar {
  position: sticky;
  top: 140px;
  max-width: 300px;
}
.archive .archive-inner .sidebar section {
  margin-bottom: 30px;
}
.archive .archive-inner .sidebar h2 {
  margin-bottom: 20px;
  color: #161F60;
}
.archive .archive-inner .sidebar h3 {
  margin-bottom: 30px;
  font-weight: 800;
  color: #0096D8;
}
.archive .archive-inner .sidebar h4 {
  margin-bottom: 30px;
  font-weight: 800;
  color: #0096D8;
}
.archive .archive-inner .sidebar p {
  font-size: 20px;
  line-height: 35px;
}
.archive .archive-inner .sidebar p a {
  text-decoration: underline;
}
.archive .archive-inner .sidebar .wp-block-image {
  margin-top: 40px;
  margin-bottom: 20px;
}
.archive .archive-inner .sidebar .wp-block-image img {
  max-width: 280px;
  width: 100%;
  max-height: 280px;
  height: 100%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.archive .archive-inner .sidebar .widget_nav_menu ul {
  list-style: none;
  font-size: 20px;
  line-height: 35px;
}
.archive .archive-inner .sidebar .widget_nav_menu ul li a {
  color: #000000;
}
.archive .archive-inner .sidebar .widget_nav_menu ul li:hover a {
  color: #0096D8;
}
.archive .archive-inner .sidebar .widget_nav_menu ul .current-menu-item a {
  text-decoration: underline;
  color: #0096D8;
}
.archive .archive-inner .archive-loop {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.archive .archive-inner .archive-loop .post {
  position: relative;
  min-width: 300px;
  width: 48%;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
}
.archive .archive-inner .archive-loop .post .wp-post-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}
.archive .archive-inner .archive-loop .post .post-title {
  padding: 40px;
}
.archive .archive-inner .archive-loop .post .post-title h3 {
  font-size: 20px;
  line-height: 24px;
  color: #161F60;
}
.archive .archive-inner .archive-loop-verhuur {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  width: 70%;
}
.archive .archive-inner .archive-loop-verhuur .post {
  margin-bottom: 40px;
  width: 48%;
}
.archive .archive-inner .archive-loop-actueel {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.archive .archive-inner .archive-loop-actueel .post {
  margin-bottom: 40px;
  width: 30%;
}
.archive .archive-inner .pagination {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  width: 100%;
}
.archive .archive-inner .pagination .nav-links a {
  color: #ffffff;
}
.archive .archive-inner .pagination .nav-links .page-numbers {
  display: inline-block;
  padding: 10px 17px;
  font-size: 18px;
  color: #ffffff;
  background-color: #0056A4;
}
.archive .archive-inner .pagination .nav-links .current {
  background-color: #0096D8;
}

.post-type-archive-actueel {
  background-image: none;
}

.map {
  margin-bottom: -100px;
  width: 100%;
  height: 500px;
  clip-path: ellipse(100% 100% at 60% 100%);
  border: none;
}

@media only screen and (max-width: 1699px) {
  .hero .hero-wave .slogan {
    top: -30px;
    width: 200px;
    right: calc( 100% / 14 * 1.5 );
  }
}
@media only screen and (max-width: 1599px) {
  .hero .hero-inner h1 {
    font-size: 50px;
    line-height: 50px;
  }

  .icons .icons-inner .icon-wrapper {
    height: 100px;
  }
  .icons .icons-inner .icon-wrapper img {
    max-width: 90px;
  }
}
@media only screen and (max-width: 1499px) {
  .main-content article {
    max-width: 590px;
  }
  .main-content .side-image {
    max-width: 400px;
  }
}
@media only screen and (max-width: 1399px) {
  .hero .hero-inner h1 {
    font-size: 40px;
    line-height: 40px;
  }

  .icons .icons-inner .icon-wrapper img {
    max-width: 40px;
    max-width: 70px;
  }
  .icons .icons-inner .icon-wrapper p {
    font-size: 14px;
  }

  .text-cta article {
    max-width: 500px;
  }
  .text-cta .cta-cirkle {
    padding: 20px;
    max-width: 360px;
  }
}
@media only screen and (max-width: 1299px) {
  .main-content article {
    max-width: 590px;
  }
  .main-content .side-image {
    max-width: 300px;
  }

  .archive .archive-inner .sidebar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    top: 0px;
    padding: 20px;
    margin-bottom: 20px;
    width: 100%;
    max-width: inherit;
    background-color: #ffffff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  }
  .archive .archive-inner .sidebar .wp-block-image {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .archive .archive-inner .archive-loop-verhuur {
    width: 100%;
  }
}
@media only screen and (max-width: 1099px) {
  .hero .hero-wave .slogan {
    display: none;
  }

  .main-content {
    flex-wrap: wrap;
  }
  .main-content article {
    max-width: inherit;
    width: 90%;
  }
  .main-content .side-image {
    margin-top: 40px;
    max-width: 400px;
  }

  .archive .archive-inner .archive-loop-actueel .post {
    width: 48%;
  }
  .archive .archive-inner .archive-loop-verhuur {
    width: 100%;
  }

  .posts-related {
    clip-path: ellipse(140% 100% at 60% 100%);
  }
  .posts-related .posts-related-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .slider-content {
    flex-direction: column;
  }
  .slider-content .slider-wrapper {
    margin-bottom: 40px;
    width: 100%;
  }
  .slider-content article {
    width: 100%;
  }

  .text-text {
    flex-direction: column;
  }
  .text-text article {
    margin-bottom: 40px;
    width: 100%;
  }
}
@media only screen and (max-width: 999px) {
  .header-top {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .header-top .header-top-inner ul li {
    margin-right: 10px;
    margin-left: 0px;
    font-size: 12px;
  }

  .header-main {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .header-main header img {
    max-height: 40px;
  }
  .header-main header nav {
    display: none;
  }
  .header-main header #menu-toggle {
    display: block;
  }

  .icons {
    display: none;
  }

  .text-cta article {
    max-width: inherit;
  }
  .text-cta .cta-cirkle {
    margin-top: 40px;
  }

  .posts-actueel .posts-wrapper {
    flex-direction: column;
  }
  .posts-actueel .posts-wrapper img {
    width: 100%;
  }
  .posts-actueel .posts-wrapper .posts {
    padding: 40px;
    width: 100%;
  }

  .logo-slider-wrapper .slider-wrapper .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
  .logo-slider-wrapper .slider-wrapper .swiper-button-next {
    width: 30px;
    height: 30px;
  }

  .signup-form {
    clip-path: ellipse(200% 100% at 60% 100%);
  }
  .signup-form .signup-form-inner {
    flex-direction: column;
  }
  .signup-form .signup-form-inner article {
    margin-bottom: 40px;
    width: 100%;
  }
  .signup-form .signup-form-inner .cta {
    width: 100%;
  }

  .site-footer {
    clip-path: ellipse(140% 100% at 50% 100%);
  }
  .site-footer .footer-inner .widget-footer {
    width: 50%;
  }
}
@media only screen and (max-width: 799px) {
  .main-content article {
    width: 100%;
  }
  .main-content .progress-bar {
    display: none;
  }

  .cta .cta-inner article {
    margin-right: 0px;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 799px) {
  .archive .archive-inner .archive-loop-actueel .post {
    width: 100%;
  }
  .archive .archive-inner .archive-loop-verhuur .post {
    min-width: inherit;
    width: 100%;
  }

  .posts-related {
    clip-path: ellipse(200% 100% at 60% 100%);
  }
  .posts-related .posts-related-inner {
    grid-template-columns: repeat(1, 1fr);
  }

  .slider-content .slider-wrapper .sliderSingleVerhuur {
    max-height: 400px;
  }
}
@media only screen and (max-width: 599px) {
  .hero .hero-inner h1 {
    font-size: 30px;
    line-height: 30px;
  }
  .hero .hero-inner h1 span {
    padding: 10px;
  }

  .logo-slider-wrapper .slider-wrapper .swiper-button-prev {
    left: 0px;
  }
  .logo-slider-wrapper .slider-wrapper .swiper-button-next {
    right: 0px;
  }

  form .nf-form-content nf-fields-wrap nf-field:nth-child(1) {
    padding-right: 0px;
    width: 100%;
  }
  form .nf-form-content nf-fields-wrap nf-field:nth-child(2) {
    padding-left: 0px;
    width: 100%;
  }

  .site-footer {
    clip-path: ellipse(200% 100% at 50% 100%);
  }
  .site-footer .footer-inner .widget-footer {
    padding: 0px;
    margin-bottom: 40px;
    width: 100%;
  }
  .site-footer .footer-inner .widget-footer img {
    max-height: 40px;
    width: auto;
  }
}

/*# sourceMappingURL=style.css.map */
