:root {
  --white: #ffffff;
  --light: #EEECE6;
  --primary: #0c546c;
  --secondary: #1A1A1A;
}

/* -- Font weights ---------------------------*/
.text-300 {
  font-weight: 300;
}

.text-400 {
  font-weight: 400;
}

.text-500 {
  font-weight: 500;
}

.text-700 {
  font-weight: 700;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  text-transform: uppercase;
}

p {
  line-height: 1.75;
}

.page__title {
  font-weight: 300;
  line-height: 1;
}
.page__title strong {
  font-weight: 900;
  color: var(--primary);
}

@media all and (min-width: 1200px) {
  h1, .h1 {
    font-size: 3rem;
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Rethink Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--secondary);
  background: var(--white);
  position: relative;
  min-height: 100vh;
}

body.admin-bar {
  min-height: calc(100vh - 32px);
}

html, body {
  font-size: 14px;
}

@media all and (max-width: 575px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media all and (min-width: 992px) {
  html, body {
    font-size: 15px;
  }
}
@media all and (min-width: 1320px) {
  html, body {
    font-size: 16px;
  }
}
/* -- Links ---------------------------------*/
a, a:hover, a:focus, a:active {
  text-decoration: none;
  outline: none;
}

/* -- Buttons -------------------------------*/
.btn {
  font-weight: 700;
  padding: 0.5rem 1.25rem 0.55rem 1.25rem;
  border-radius: 0;
  text-transform: uppercase;
  box-shadow: none !important;
}

.btn--white {
  color: var(--primary);
  background: var(--white);
}

.btn--base {
  color: var(--secondary);
  background: var(--light);
}
.btn--base:hover {
  color: var(--primary);
}

.btn--primary {
  color: var(--white);
  background: var(--primary);
}
.btn--primary i {
  margin-left: 0.5rem;
}
.btn--primary:hover {
  color: var(--white);
  background: var(--secondary);
}
.btn--primary:hover i {
  color: #BBC7C8;
}

.btn--secondary {
  color: var(--white);
  background: var(--secondary);
}
.btn--secondary i {
  color: #BBC7C8;
  margin-left: 0.5rem;
}
.btn--secondary:hover {
  color: var(--white);
  background: #4d4f59;
}
.btn--secondary:hover i {
  color: var(--white);
}

/* -- Links ---------------------------------*/
.link--white {
  color: var(--white);
}

.link--base {
  color: var(--light);
}

.link--primary {
  color: var(--primary);
}

/* -- Backgrounds ---------------------------*/
.bcg--white {
  background: var(--white);
}

.bcg--base {
  background: var(--light);
}

.bcg--primary {
  background: var(--primary);
}

/* -- Colors --------------------------------*/
.text--white {
  color: var(--white);
}

.text--base {
  color: var(--light);
}

.text--primary {
  color: var(--primary);
}

/* -- Images --------------------------------*/
.img-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

/* -- Content styles ------------------------*/
.content-styles h1 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.content-styles h2 {
  font-weight: 700;
  color: var(--primary);
}

.content-styles h3,
.content-styles h4,
.content-styles h5,
.content-styles h6 {
  font-weight: 500;
}

.content-styles p + h2,
.content-styles p + h3,
.content-styles p + h4,
.content-styles p + h5,
.content-styles p + h6 {
  margin-top: 2.75rem; 
}

.content-styles ul:not([class]),
.content-styles ol:not([class]) {
  padding-left: 1rem;
}

.em--closer {
  font-weight: normal;
  border-left: 4px solid var(--light);
  line-height: 1.5;
  display: block;
  padding: 1rem;
  font-size: 1.125rem;
}

.em--closer a {
	color: inherit;
}

/* -- Overlays ------------------------------*/
.overlay {
  position: relative;
}

.overlay-top::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -10%;
  height: 100%;
  width: 120%;
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
}

.overlay-top--white:before {
  background-image: url("../images/overlay-top--white.svg");
}

.overlay-top--base:before {
  background-image: url("../images/overlay-top--base.svg");
}

.overlay-bottom:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 110px;
  width: 100%;
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
}

.overlay-bottom--white:before {
  background-image: url("../images/overlay-bottom--white.svg");
}

.overlay-bottom--base:before {
  background-image: url("../images/overlay-bottom--base.svg");
}

/* -- Formulier -----------------------------*/
.form-control {
  padding: 0.8rem 1.25rem;
  line-height: 1.5;
  border-radius: 1.5rem;
  background: !important;
  border: none;
}

.form-control::-moz-placeholder {
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  opacity: 1;
}

.form-control::placeholder {
  opacity: 1;
}

.form-check-input,
.form-check-input:active,
.form-check-input:focus,
.form-control:active,
.form-control:focus {
  box-shadow: none;
}

.form-check-label a {
  text-decoration: underline;
}
.form-check-label a:hover {
  text-decoration: none;
}

/* -- Card ----------------------------------*/
.card-project {
  border: none;
  border-radius: 0;
  background: var(--light);
  height: 100%;
}
.card-project .card-image {
  overflow: hidden;
}
.card-project .card-image .card__thumbnail {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
.card-project .card-body {
  padding: 2rem 2rem 1.5rem 2rem;
}
.card-project .card-body .card__meta {
  font-weight: 500;
  color: var(--secondary);
  text-transform: uppercase;
}
.card-project .card-body .card__title {
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
}
.card-project .card-body .card__text {
  color: var(--secondary);
}
.card-project .card-body .card__trigger {
  display: flex;
  justify-content: flex-end;
}
.card-project .card-body .card__trigger i {
  font-size: 1.25rem;
  color: var(--primary);
  transition: all 0.5s;
}

.card-project:hover .card-image .card__thumbnail {
  transform: scale(1.06);
}
.card-project:hover .card-body .card__trigger i {
  margin-right: 0.5rem;
}

.hamburger {
  padding: 16px 5px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger.is-active:hover {
  opacity: 1;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: var(--white);
}

.hamburger-box {
  width: 50px;
  height: 27px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 50px;
  height: 3px;
  background-color: var(--white);
  border-radius: 0px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::after {
  width: 60%;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -12px;
}
.hamburger-inner::after {
  bottom: -12px;
}

.hamburger--slider .hamburger-inner {
  top: 1.5px;
}
.hamburger--slider .hamburger-inner::before {
  top: 12px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 24px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 12px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-7.1428571429px, -9px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  width: 100%;
  transform: translate3d(0, -24px, 0) rotate(-90deg);
}

/* -- Navigation ------------------------*/
.navigation-menu {
  position: fixed;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  background: var(--secondary);
  z-index: 998;
  transition: opacity 0.5s;
}

.navigation-menu .container {
  padding: 3rem 1.5rem;
  height: 100vh;
}

.navigation-menu.menu--open {
  pointer-events: all;
  opacity: 1;
}

.navigation-menu.menu--open:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  height: 100vh;
  width: 80px;
}

.navigation-controls {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  top: 4.25rem;
  right: 0;
  width: 80px;
  height: 60px;
  z-index: 999;
}

.navigation .navigation-socials {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

.navigation .navigation-socials li + li {
  margin-top: 0.75rem;
}

.navigation .navigation-socials__link {
  font-size: 1.125rem;
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 0;
  background: var(--secondary);
  color: var(--white);
}

.navigation-aside {
  position: fixed;
  top: 2.875rem;
  right: 0;
  width: 80px;
  height: 94px;
  background: var(--primary);
  z-index: 997;
}

.navigation__trigger {
  display: block;
  width: 60px;
  height: 60px;
}

.navigation.menu--open .navigation-menu {
  pointer-events: all;
  opacity: 1;
}

.navigation.menu--open .navigation-menu:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  height: 100vh;
  width: 80px;
}

.navigation.menu--open .navigation-controls {
  height: calc(100vh - 8.5rem);
}

.navigation.menu--open .navigation-socials {
  display: block;
}

.navigation.menu--open .navigation-socials__link {
  background: var(--white);
  color: var(--secondary);
}

.navigation__nav {
  color: var(--white);
}

.navigation__nav li + li {
  margin-top: 1.25rem;
}

.navigation__nav .nav-link {
  font-weight: 900;
  font-style: normal;
  font-size: 3.5rem;
  line-height: 0.8;
  text-transform: uppercase;
  color: var(--white);
  word-spacing: 9999rem;
  padding: 0;
}

.navigation__nav .nav-link:hover, .navigation__nav .nav-link.active {
  color: var(--primary);
}

.navigation__address {
  font-weight: 300;
  font-style: normal;
  font-size: 1.25rem;
  color: var(--white);
}

.navigation__address a {
  color: var(--white);
}

@media all and (min-width: 576px) {
  .navigation .navigation-socials {
    display: block;
  }
  .navigation-controls {
    height: calc(100vh - 8.5rem);
  }
  .navigation-aside {
    position: absolute;
    height: calc(100% - 5.75rem);
  }
}
@media all and (min-width: 992px) {
  .navigation-menu.menu--open:after {
    width: 120px;
  }
  .navigation:after {
    width: 120px;
  }
  .navigation-controls {
    top: 8.5rem;
    height: calc(100vh - 17rem);
    width: 120px;
  }
  .navigation.menu--open .navigation-controls {
    height: calc(100vh - 17rem);
  }
  .navigation-aside {
    top: 2.75rem;
    height: calc(100% - 5.5rem);
    width: 120px;
  }
  .navigation-aside:before, .navigation-aside:after {
    width: 120px;
  }
  .navigation.menu--open .navigation-menu:after {
    width: 120px;
  }
}
@media all and (min-width: 1500px) {
  .navigation-menu.menu--open:after {
    width: 150px;
  }
  .navigation:after {
    width: 150px;
  }
  .navigation-controls {
    width: 150px;
  }
  .navigation-aside {
    width: 150px;
  }
  .navigation-aside:before, .navigation-aside:after {
    width: 150px;
  }
  .navigation.menu--open .navigation-menu:after {
    width: 150px;
  }
}

/* -- Header --------------------*/
.header {
  position: relative;
  overflow: hidden;
}
.header .header__brand {
  max-width: 240px;
}
.header-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2.275rem 0 0 0;
}

.header--has-image:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: rgb(26,26,26);
  background: -webkit-linear-gradient(35deg, rgba(26,26,26,1) 5%, rgba(26,26,26,0) 60%);
  background: -o-linear-gradient(35deg, rgba(26,26,26,1) 5%, rgba(26,26,26,0) 60%);
  background: linear-gradient(125deg, rgba(26,26,26,1) 5%, rgba(26,26,26,0) 60%); 
}

.header-bcg,
.header-bcg img {
  min-height: 480px;
  max-height: 850px;
}

.header--md .header-bcg,
.header--md .header-bcg img {
  min-height: 420px;
  max-height: 650px;
}

.header--no-image .header-bcg {
	height: 100%;
}

.header-bcg__eclipse {
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 120px;
  background: var(--white);
  -webkit-clip-path: ellipse(50% 60% at 50% 100%);
  clip-path: ellipse(50% 60% at 50% 100%);
}

.header-bcg__mask {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 214px;
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 160%;
}
.header-bcg__mask--base {
  background-image: url("../images/hero-mask--base.svg");
}
.header-bcg__mask--white {
  background-image: url("../images/hero-mask--white.svg");
}

@media all and (min-width: 768px) {
  .header .header__brand {
    max-width: 100%;
  }
  .header-bcg__mask {
    background-size: contain;
  }
}
@media all and (min-width: 992px) {
  .header-inner {
    padding: 5rem 0 0 0;
  }
	
	.header--no-image .header-inner {
		padding: 5rem 0;
	}
	
	.header .header__brand {
		max-width: 300px;
	}
}
/* -- Hero --------------------*/
#hero {
  position: relative;
  height: 80vh;
  min-height: 450px;
  background: var(--primary);
  overflow: hidden;
}

.hero-inner {
  display: flex;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 5;
  overflow: hidden;
}

.hero-inner .container {
  position: relative;
  z-index: 15;
}

.hero-inner__title {
  font-family: "korolev-700c", sans-serif;
  font-weight: normal;
  font-size: 3.5rem;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}

.hero-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/shape-lines.svg");
  background-size: contain;
  background-position: top left;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-bcg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bcg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(180, 101, 60);
  background: linear-gradient(50deg, rgb(180, 101, 60) 0%, rgba(23, 46, 42, 0.54) 35%, rgba(23, 46, 42, 0) 100%);
  z-index: 1;
}

.hero-bcg:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: 100%;
  background-image: url("../images/wave-bottom.svg");
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: 2;
}

@media all and (min-width: 992px) {
  .hero-inner__title {
    font-size: 3.75rem;
  }
}
@media all and (min-width: 1200px) {
  .hero-inner__title {
    font-size: 4rem;
  }
}
@media all and (min-width: 1400px) {
  .hero-inner__title {
    font-size: 4.5rem;
  }
}

/* -- Modules -------------------------------*/
.module-introductie {
  position: relative;
  padding: 3rem 0;
  background: var(--white);
}

.module-introductie .container {
  position: relative;
  z-index: 1;
}

.module-content {
  padding: 5rem 0;
  background: var(--white);
}

.module-projecten {
  padding: 3rem 0;
  background: var(--white);
}

.module-projecten .swiper-slide {
  height: auto;
}

.module-speerpunten {
  position: relative;
  padding: 10rem 0 3rem 0;
  background: var(--light);
}

.module-speerpunten:before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 214px;
  background-image: url("../images/speerpunten-mask--white.svg");
  background-repeat: repeat-x;
  background-position: top;
  background-size: 160%;
}

.list-speerpunten {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.list-speerpunten-item {
  width: clamp(200px, 33%, 300px);
  margin-bottom: 1.5rem;
  text-align: center;
}
.list-speerpunten-item img {
  display: block;
  margin: 0 auto 1rem auto;
  max-height: 100px;
}
.list-speerpunten-item h5 strong {
  font-weight: 900;
  font-style: normal;
  color: var(--primary);
}

@media all and (min-width: 768px) {
  .module-speerpunten {
    padding: 12rem 0 3rem 0;
  }
  .module-speerpunten:before {
    background-size: contain;
  }
}
@media all and (min-width: 992px) {
  .module-speerpunten {
    padding: 14rem 0 3rem 0;
  }
}
@media all and (min-width: 1200px) {
  .module-speerpunten {
    padding: 18rem 0 3rem 0;
  }
}
.module-fw-image {
  position: relative;
  overflow: hidden;
}

.fw-image-wrapper {
  min-height: 360px;
  max-height: 750px;
}
.fw-image-wrapper img {
  min-height: 360px;
  max-height: 750px;
}

.module-expertises {
  position: relative;
  padding: 5rem 0;
  background: var(--light);
}

/* -- Pages ----------------------*/
.page-404 {
  background: var(--white);
  padding: 6rem 0 10rem 0;
}

.overzicht-projecten {
  padding: 0 0 4.5rem 0;
  background: var(--white);
}

.project-information {
  padding: 4.5rem 0;
  background: var(--white);
}

.project-info-box {
  padding: 2.5rem 2rem;
  background: var(--light);
}
.project-info-box h3 {
  margin-bottom: 2rem;
  line-height: 1;
}
.project-info-box dl {
  margin-bottom: 1.5rem;
}
.project-info-box dl dt {
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  line-height: 1.2;
}
.project-info-box dl dd {
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.project-gallery {
  position: relative;
  padding: 0 0 6rem 0;
  background: var(--light);
  overflow: hidden;
}

.project-gallery:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4rem;
  background: var(--white);
  z-index: 0;
}

.project-gallery .container {
  position: relative;
  z-index: 1;
}

.gallery-carousel {
  overflow: visible;
}

.swiper-controls {
  margin-top: 1.5rem;
  justify-content: center;
}

@media all and (min-width: 992px) {
  .project-info-box {
    position: relative;
    margin-top: -12rem;
  }
}
/* -- Footer ----------------------------------*/
.footer .footer__brand {
  max-width: 180px;
}
.footer-upper {
  background: var(--white);
  padding: 3.25rem 0;
}
.footer-base {
  background: var(--white);  
}

.footer-base .container {
	border-top: 2px solid rgb(12, 84, 108);
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

.footer-base span {
  color: rgba(12, 84, 108, 0.4);
}
.footer-base span a {
  color: rgba(12, 84, 108, 0.4);
}
.footer-base span a:hover {
  color: rgb(12, 84, 108);
}

.footer__address {
  color: var(--primary);
  margin: 0;
}
.footer__address strong {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
}
.footer__address a {
  color: var(--primary);
}

@media all and (min-width: 768px) {
  .footer .footer__brand {
    max-width: 280px;
  }
}/*# sourceMappingURL=stylesheet.css.map */