/* -- Font family -----------------------------*/
@font-face {
  font-family: "TT Tunnels Black";
  src: url("fonts/TT_Tunnels_Black.woff2") format("woff2"), url("fonts/TT_Tunnels_Black.woff") format("woff");
}
@font-face {
  font-family: "stratum1-400";
  src: url("fonts/Stratum1WebRegular.woff2") format("woff2"), url("fonts/Stratum1WebRegular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "stratum1-700";
  src: url("fonts/Stratum1WebBold.woff2") format("woff2"), url("fonts/Stratum1WebBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "stratum1-900";
  src: url("fonts/Stratum1WebBlack.woff2") format("woff2"), url("fonts/Stratum1WebBlack.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
/* -- Font weights ----------------------------*/ 
.text-s300 {
  font-family: "stratum1-400", sans-serif;
  font-weight: 400;
}

.text-s700 {
  font-family: "stratum1-700", sans-serif;
  font-weight: 700;
}

.text-s900 {
  font-family: "stratum1-900", sans-serif;
  font-weight: 900;
}

.text-t300 {
  font-family: "TT Tunnels Light", sans-serif;
  font-weight: normal;
}

.text-t400 {
  font-family: "TT Tunnels Regular", sans-serif;
  font-weight: normal;
}

.text-t700 {
  font-family: "TT Tunnels Bold", sans-serif;
  font-weight: normal;
}

.text-t900 {
  font-family: "TT Tunnels Black", sans-serif;
  font-weight: normal;
}

/* -- Font modifiers --------------------------*/
.display-5, .display-4, .display-3,
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  line-height: 0.8;
}

h1, h2, h3, h4, h5,
.h1, .h2, .h3, .h4, .h5 {
  font-family: "stratum1-900", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  /*
  margin-bottom: 1.25rem;
  */
}


h6, .h6 {
  font-family: "stratum1-700", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

strong, b {
  font-family: "stratum1-700", sans-serif;
  font-weight: 700;
}

p {
  line-height: 1.6;
}

.text--spacing-1 {
  letter-spacing: 1.5px;
}

.text--spacing-2 {
  letter-spacing: 1.25px;
}

/* -- Font colors --------------------------*/
.text-red {
  color: #d01041;
}

@media all and (min-width: 1200px) {
  .fs-1 {
    font-size: 3rem !important;
  }
  .fs-2 {
    font-size: 2.5rem !important;
  }
  .fs-3 {
    font-size: 2.25rem !important;
  }
  .fs-4 {
    font-size: 2rem !important;
  }
  .fs-5 {
    font-size: 1.75rem !important;
  }
  .fs-6 {
    font-size: 1.5rem !important;
  }
  
  .h3, h3 {
    font-size: 1.5rem;
  }

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

body {
  font-family: "stratum1-400", sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #18407a;
  scroll-behavior: smooth;
}

body.menu--active {
  height: 100dvh;
  overflow: hidden;
}

.container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.wrapper {
  position: relative;
  display: flex;
}
.wrapper-sidebar {
  position: sticky;
  top: 0;
  width: 60px;
  height: 100dvh;
  background: #ffffff;
  transition: background 0.5s;
  z-index: 99;
}
.wrapper-main {
  position: relative;
  width: calc(100dvw - 60px);
  background: #ededed;
}

.menu--active .wrapper-sidebar {
  background: #748caf;
}

@media all and (min-width: 768px) {
  .wrapper-sidebar {
    width: 80px;
  }
  .wrapper-main {
    width: calc(100dvw - 80px);
  }
}

@media all and (min-width: 992px) {
  .wrapper-sidebar {
    width: 100px;
  }
  .wrapper-main {
    width: calc(100dvw - 100px);
  }
}

@media all and (min-width: 1920px) {
  html, body {
    font-size: 18px;
  }
  
  p, ul:not([class]), ol:not([class]) {
    font-size: 20px;
  }
  
  .container {
    max-width: 1640px;
  }
}


/* -- Links ---------------------------------*/
a, a:hover, a:focus, a:active {
  text-decoration: none;
  outline: none;
  box-shadow: none;
  font-weight: inherit;
  color: inherit;
}

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

/*
ul:not([class]) li + li, ol:not([class]) li + li {
  margin-top: .75rem;
}
*/

/* -- Buttons -------------------------------*/
.btn-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid transparent;
  border-radius: 100%;
  font-size: 1.25rem;
}
.btn-circle--white {
  border-color: #ffffff;
  color: #ffffff;
}
.btn-circle--white:hover {
  color: #d01041;
  background: #ffffff;
}
.btn-rounded{
  font-size: 1rem !important;
  position: relative;
  display: inline-block;
  padding: 10px 45px 10px 20px;
  border-radius: 5rem;
  font-family: "stratum1-700", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.25px;
  color: #18407A;
  background: #ffffff; 
  transition: all 0.5s;
}
.btn-rounded::before{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 18px;
  width: 20px;
  height: 2px;
  background: #d01041;
  transition: all 0.5s;
}
.btn-rounded::after{
  position: absolute;
  right: 15px;
  content: "\f054";
  font-family: "Font Awesome 6 Sharp";
  color: #d01041;
  font-weight: normal;
}
.btn-rounded:hover{
  color: #18407A !important;
  background: #ffffff; 
  padding-right: 85px;
}
.btn-rounded:hover::before{
  width: 60px;
}
.btn-more{
  font-size: 1rem !important;
  position: relative;
  display: inline-block;
  padding: 10px 40px 10px 20px;
  border-radius: 5rem;
  font-family: "stratum1-700", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.25px;
  color: #18407A;
  background: #ffffff; 
}
.btn-more::after{
  position: absolute;
  right: 15px;
  content: "\f8cd";
  font-family: "Font Awesome 6 Pro";
  color: #d01041;
  font-weight: 500;
}
.vacature-c2a{
  display: inline-block;
  font-family: "stratum1-700", sans-serif;
  font-weight: 700;
  margin: 0 0.5rem 0.5rem 0;
  padding: 0.5rem 1.25rem;
  background: #ffffff;
  color: #18407a;
  border-radius: 3rem;
}
.vacature-c2a:hover{
  color: #d01041;
}
.vacature-c2a::before{
  font-family: "Font Awesome 6 Sharp Light";
  color: #d01041;
  margin-right: 0.5rem;
}
.vacature-c2a.btn-phone::before{
  content: "\f3ce";
}
.vacature-c2a.btn-mail::before{
  content: "\f0e0";
}

/* -- Links ---------------------------------*/
.link {
  font-family: "stratum1-700", sans-serif;
  font-weight: 700;
  font-size: 0.9em;
  letter-spacing: 0.1em;
}

.link--white {
  color: #fff;
}
.link--white:hover {
  color: #fff;
}

.link--primary {
  color: #d01041;
}
.link--primary:hover {
  color: #e81248;
}

.link--secondary {
  color: #18407a;
}
.link--secondary:hover {
  color: #1c4b8f;
}

.link--tertiary {
  color: #1c2c4c;
}
.link--tertiary:hover {
  color: #23375f;
}

.link--quaternary {
  color: #748caf;
}
.link--quaternary:hover {
  color: #8099bd;
}

/* -- Backgrounds ---------------------------*/
.bcg--white {
  background: #fff;
}

.bcg--base {
  background: #ededed;
}

.bcg--primary {
  background: #d01041;
}

.bcg--secondary {
  background: #18407a;
}

.bcg--tertiary {
  background: #1c2c4c;
}

.bcg--quaternary {
  background: #1c2c4c;
}

/* -- Colors --------------------------------*/
.clr--white {
  color: #fff;
}

.clr--base {
  color: #ededed;
}

.clr--primary {
  color: #d01041;
}

.clr--secondary {
  color: #18407a;
}

.clr--tertiary {
  color: #1c2c4c;
}

.clr--quaternary {
  color: #748caf;
}

/* -- Images --------------------------------*/
.img-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
#more-content img.alignnone{
	margin: 1rem auto; 
}

/* -- Badges & tags -------------------------*/
.tags-wrapper {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.tags-wrapper .tag {
  font-family: "stratum1-700", sans-serif;
  font-weight: 700;
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: 1.25px;
  background: #fff;
  padding: .55rem 1.125rem;
  border-radius: 3rem;
  margin-right: .5rem;
  color: #18407A;
}

.tags-wrapper .tag a { color: #18407A; }

.tags-wrapper .tag a:hover {
  color: #18407A;
}

@media all and (min-width: 992px) {
  .tags-wrapper .tag {
    font-size: 0.7rem;
  }
}

/* -- Swipers -------------------------------*/
.swiper-navigation--visible .swiper-navigation {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 1rem;
}
.swiper-navigation--visible .swiper-navigation div {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid #d01041;
  border-radius: 100%;
  font-size: 1rem;
  z-index: 3;
}
.swiper-navigation--visible .swiper-navigation div i {
  color: #d01041;
}

.swiper-navigation--hidden .swiper-navigation {
  display: none;
}

.swiper-navigation--base div {
  background: #ededed;
}

.swiper-navigation--tertiary div {
  background: #1c2c4c;
}

.swiper-navigation--visible .bottom-stripe {
  position: absolute;
  bottom: calc(5rem + 20px);
  height: 2px;
  width: 100vw;
  background: #d01041;
  z-index: 1;
}
.module-steps.swiper-navigation--visible .bottom-stripe,
.module-expertises.swiper-navigation--visible .bottom-stripe,
.module-galerij.swiper-navigation--visible .bottom-stripe {
  bottom: calc(3rem + 20px);
}
.swiper-navigation--visible .bottom-stripe--left {
  right: calc(50% - 3rem);
}
.swiper-navigation--visible .bottom-stripe--right {
  left: calc(50% - 3rem);
}

.swiper-navigation--hidden .bottom-stripe {
  display: none;
}

@media all and (min-width: 768px) {
  .swiper-navigation--visible .bottom-stripe,
  .module-expertises.swiper-navigation--visible .bottom-stripe,
  .module-galerij.swiper-navigation--visible .bottom-stripe {
    bottom: calc(5rem + 23px);
  }
  .module-steps.swiper-navigation--visible .bottom-stripe {
    bottom: calc(3rem + 23px);
  }
  .swiper-navigation--visible .swiper-navigation {
    gap: 2.5rem;
  }
  .swiper-navigation--visible .swiper-navigation div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border: 2px solid #d01041;
    border-radius: 100%;
    font-size: 1rem;
  }
  .swiper-navigation--visible .swiper-navigation div i {
    color: #d01041;
  }
}

.hamburger {
  padding: 0 0;
  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: #fff;
}

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

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 3px;
  background-color: #00485D;
  border-radius: 0px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -9px;
}
.hamburger-inner::after {
  bottom: -9px;
}

.hamburger--slider .hamburger-inner {
  top: 1.5px;
}
.hamburger--slider .hamburger-inner::before {
  top: 9px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 18px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 9px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner, .hamburger--slider.is-active .hamburger-inner::before, .hamburger--slider.is-active .hamburger-inner::after {
  background-color: #fff;
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-4.2857142857px, -6px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  width: 100%;
  transform: translate3d(0, -18px, 0) rotate(-90deg);
}

/* -- Navigation ------------------------*/
.navigation__trigger {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1.25rem 0;
  place-self: center;
  position: absolute;
  top: calc(50% - 10.5px);
}
.navigation__trigger .hamburger-inner:after {
  width: 60%;
  transition: all 0.25s;
}
.navigation__trigger:hover .hamburger-inner:after {
  width: 100%;
}

.navigation {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr;
  grid-template-rows: max-content 1fr max-content;
  gap: 3rem 0;
  width: 0;
  opacity: 1;
  pointer-events: none;
  height: 100%;
  min-height: 100dvh;
  overflow-y: scroll;
  position: absolute;
  top: 0;
  left: 60px;
  padding: 1.5rem;
  background: #1c2c4c;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  z-index: 88;
}
.navigation-body {
  align-self: center;
}
.navigation-footer {
  opacity: 0;
}
.navigation-footer__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.navigation-footer__list address {
  color: #748caf;
  margin: 0.5rem 0 0 0;
}

.navigation__logo:after {
  bottom: 37.5px;
  height: 5.6px;
}
.navigation__logo-slogan {
  margin-top: 44.4px;
  margin-left: -100px;
}

.navigation__logo {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.navigation__logo-brand img {
  height: 40px;
}
.navigation__logo:after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 30.5px;
  height: 4.5px;
  width: calc(100% - 20px);
  background: #ffffff;
}
.navigation__logo-slogan {
  margin-top: 35.4px;
  margin-left: -100px;
}
.navigation__logo-slogan img {
  height: 35px;
}

.navigation__menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem 1.75rem;
  opacity: 0;
  margin: 0;
  padding: 0;
}
.break-column {
  display: none;
}
.navigation__menu .nav-link {
  font-family: "TT Tunnels Black", sans-serif;
  font-weight: normal;
  font-size: 2.5rem;
  text-transform: uppercase;
  line-height: .8;
  padding: 0;
  color: #748caf;
}

.navigation__menu .nav-link.active,
.navigation__menu .nav-link:hover {
  color: #ffffff;
}

.navigation__contact {
  list-style: none;
  opacity: 0;
  transition: opacity 0.5s;
  margin: 2rem 0 0 0;
  padding: 0;
}
.navigation__contact .phone-link {
  font-family: "stratum1-700", sans-serif;
  font-weight: normal;
  font-size: 1.35rem;
  line-height: 1;
}
.navigation__contact .email-link {
  font-size: 1.175rem;
  line-height: 1;
}
.navigation__contact a {
  color: #748caf;
}
.navigation__contact a:hover {
  color: #ffffff;
}

.menu--active .navigation {
  width: calc(100vw - 60px);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.menu--active .navigation__menu {
  opacity: 1;
  transition: opacity 0.5s;
  transition-delay: 0.75s;
}

.menu--active .navigation__contact {
  opacity: 1;
  transition: opacity 0.5s;
  transition-delay: 1s;
}

.menu--active .navigation-footer {
  opacity: 1;
  transition: opacity 0.5s;
  transition-delay: 0.5s;
}

@media all and (min-width: 576px) {
  .navigation__logo-slogan {
    margin-left: 0;
  }
}
@media all and (min-width: 768px) {  
  .navigation__menu .nav-link {
    font-size: 3rem;
    line-height: .8;
  }
  .navigation {
    left: 80px;
  }
  .menu--active .navigation {
    width: calc(100vw - 80px);
  }
}
@media all and (min-width: 992px) {
  .navigation {
    left: 100px;
    padding: 1.562rem 3.125rem;
  }
  .navigation__menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .break-column {
    display: flex;
    flex-basis: 100%;
    width: 0;
    height: 0;
  }
  
  .navigation__menu .nav-link {
    font-size: 3.5rem;
    line-height: .6;
  }
  .menu--active .navigation {
    width: calc(100vw - 100px);
  }
}
@media all and (min-width: 1200px) {
  .navigation__logo-brand img {
    height: 57px;
  }
  .navigation__logo:after {
    bottom: 43px;
    height: 7px;
  }
  .navigation__logo-slogan {
    margin-top: 50px;
    margin-left: -100px;
  }
  .navigation__logo-slogan img {
    height: 50px;
  }
  
  .navigation {
    padding: 3.125rem 6.25rem;
  }
  .navigation__menu .nav-link {
    font-size: 4.375rem;
  }
}
/* -- Hero --------------------*/
#hero {
  position: relative;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  overflow: hidden;
}

.hero__brand {
  position: absolute;
  top: 0;
  left: 1.5rem;
}

.hero__brand img {
  height: 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: min-content min-content;
  gap: 0px 0px;
  grid-template-areas: "hero--media" "hero--content";
  margin-top: calc(70px + 1.5rem);
}

.hero-grid--content {
  grid-area: hero--content;
}

.hero-grid--image {
  grid-area: hero--media;
}

.hero-content {
  padding: 0 1.5rem;
  max-width: 540px;
  margin: 2.5rem auto 0 auto;
}

.hero-content__title{
  margin-bottom: 0.5em;
}

.hero-content__subtitle {
  margin-bottom: 1em;
}

/*
.hero-content--introduction p:first-of-type {
  font-size: 1rem;
  line-height: 1.5;
}
*/

.hero-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.hero-image:before {
  content: "";
  position: absolute;
  width: 40%;
  height: 100%;
  bottom: 0;
  background: linear-gradient(90deg, rgb(28, 44, 76) 0%, rgba(28, 44, 76, 0) 100%);
  left: 1px;
  z-index: 1;
}
.hero-image:after {
  content: "";
  position: absolute;
  width: 75%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(55deg, rgba(208, 16, 65, 1) 0%, rgba(28, 44, 76, 0) 35%);
  z-index: 2;
}
.hero-image__bcg {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
	-webkit-animation: scale-down-center 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.25s both;
	        animation: scale-down-center 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.25s both;
}

.hero-image__element {
  position: absolute;
  bottom: .5rem;
  right: 1rem;
  width: 200px;
  height: auto;
  z-index: 19;
	-webkit-animation: slide-left .75s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1.25s both;
	        animation: slide-left .75s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1.25s both;
}

.hero-image__animation {
  position: absolute;
  bottom: .5rem;
  right: 1rem;
  width: 240px;
  height: auto;
  z-index: 19;
	-webkit-animation: slide-left .75s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.75s both;
	        animation: slide-left .75s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.75s both;
}

.hero-image__blue {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(24,64,122,.8);
  z-index: 1;
}

.hero-video__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: "stratum1-700", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.05px;
  transform: translate(-50%, -50%);
  background-image: url('../images/play-btn.svg');
  background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
  z-index: 20;
  padding: .75rem 1.5rem;
}

.hero-video__btn:hover {
  color: #fff;
}

.hero-video__btn i {
  margin-left: .75rem;
}
.language{
  position: absolute;
  margin-top: 1.5rem;
  right: 5%;
  text-align: right;
  z-index: 5;
}
@media (min-width: 768px) {
  .language{
    right: 50vw;
  }
}
@media (min-width: 992px) {
  .language{
    margin-top: 1.562rem;
  }
}
@media (min-width: 1200px) {
  .language{
    margin-top: 3.125rem;
  }
}
@media (min-width: 1920px) {
  .language{
    right: 55vw;
  }
}
.language a{
  display: inline-block;
  font-size: 0.8rem;
  width: 1.5rem;
  line-height: 1.5rem;
  border-radius: 1.5rem;
  text-align: center;
  font-weight: 700; 
  color: #c9c9c9;
}
.language a.active{
  background: white;
  color: #18407a;
}


@media (min-width: 576px) {
  .hero-image__element {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 280px;
  }
  .hero-image__animation {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 300px;
  }
}

@media (min-width: 768px) {
  .hero-grid {
    margin-top: calc(70px + 1.5rem);
  }
  .hero-content {
    max-width: 720px;
  }
  .hero-image__element {
    width: 300px;
  }
  .hero-image__animation {
    width: 340px;
  }
}
@media (min-width: 992px) {
  #hero {
    margin-top: 1.562rem;
    margin-bottom: 1.562rem;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "hero--content hero--media";
    margin-top: 0;
  }
  .hero-grid--content {
    height: 100%;
    width: calc(50dvw - 50px);
  }

  .hero-grid--media {
    height: 100%;
    width: calc(50dvw + 3rem);
    margin-left: -3rem;
  }
  
  .hero-image {
    aspect-ratio: 4/4;
  }
  .hero-image__overlay {
    position: absolute;
    top: -5%;
    left: -1px;
    height: 110%;
    width: 42%;
    background-image: url("../images/mask--right.svg");
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 3;
  }
  .hero-image__element {
    right: auto;
    left: 0;
    bottom: 1rem;
    width: 360px;
  }
  .hero-image__animation {
    right: auto;
    left: 0;
    bottom: 1rem;
    width: 320px;
  }
  .hero__brand {
    position: absolute;
    left: 3.125rem;
  }
  .hero-content {
    padding: 0 0.5rem;
    width: 380.0000000304px;
    margin-top: calc(88px + 3rem);
    margin-left: auto;
    margin-right: 79.99999968px;
    margin-bottom: 5rem;
  }
  .has-overflow .hero-content {
    margin-bottom: calc(10rem + 1.562rem);
  }
  .will-overflow {
    position: relative;
    margin-top: -9rem;
    z-index: 5;
  }
}

@media (min-width: 1200px) {
  #hero {
    margin-top: 3.125rem;
    margin-bottom: 3.125rem;
  }

  .hero__brand {
    position: absolute;
    left: 6.25rem;
  }
  
  .hero__brand img {
    height: 100px;
  }
  
  .hero-content {
    width: 363.99999636px;
    margin-top: calc(88px + 5rem);
    margin-right: 190.000000038px;
  }
  .has-overflow .hero-content {
    margin-bottom: calc(12rem + 3.125rem);
  }
  .will-overflow {
    position: relative;
    margin-top: -11rem;
  }
  .hero-image__element {
    bottom: 1.5rem;
    width: 340px;
  }
  .hero-image__animation {
    bottom: 1.5rem;
    width: 400px;
  }
}
@media (min-width: 1400px) {
  .hero-content {
    width: 423.99999576px;
    margin-top: calc(88px + 6rem);
    margin-right: 220.000000044px;
  }
  .has-overflow .hero-content {
    margin-bottom: calc(13rem + 3.125rem);
  }
  .will-overflow {
    position: relative;
    margin-top: -12rem;
  }
  .hero-image__element {
    bottom: 2rem;
    width: 400px;
  }
  .hero-image__animation {
    bottom: 2rem;
    width: 460px;
  }
}
@media (min-width: 1920px) {
  .hero-content {
    width: 530.66666136px;
    margin-top: calc(88px + 11rem);
    margin-right: 273.333333388px;
  }
  .hero-image {
    aspect-ratio: 16/10;
  }
  .has-overflow .hero-content {
    margin-bottom: calc(14rem + 3.125rem);
  }
  .will-overflow {
    position: relative;
    margin-top: -13rem;
  }
  .hero-image__element {
    width: 460px;
  }
  .hero-image__animation {
    width: 550px;
  }
  .hero-grid--media {
    height: 100%;
    width: calc(50dvw + 5rem);
    margin-left: -7rem;
  }
}

@-webkit-keyframes scale-down-center {
  0% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scale-down-center {
  0% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}


@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-left {
  0% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}



/* -- Cards -----------------------------*/
.card {
  display: flex;
  border: none;
  border-radius: 0;
}
.card-media {
  overflow: hidden;
}
.card-media img {
  transition: all 0.5s;
}
.card__meta {
  font-family: "stratum1-700", sans-serif;
  font-weight: normal;
  font-size: 1rem;
  letter-spacing: 0.1em;
  display: block;
  text-transform: uppercase;
}
.card__title {
  font-family: "stratum1-900", sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: .9;
}
.card__trigger {
  position: relative;
  font-size: 16px;
  transition: all 0.5s;
}
.card__trigger i {
  margin-left: 31px;
  transition: all 0.5s;
}
.card__trigger:before {
  content: "";
  position: absolute;
  top: 7.5px;
  left: 0;
  width: 40px;
  height: 2px;
  transition: all 0.5s;
}

@media all and (-webkit-min-device-pixel-ratio: 2) and (max-width: 576px) { 
 .card__trigger:before {
    top: 8px;
  }
}

.card__trigger.clr--white {
  color: #ffffff;
}
.card__trigger.clr--white:before {
  background: #ffffff;
}

.card__trigger.clr--primary {
  color: #d01041;
}
.card__trigger.clr--primary:before {
  background: #d01041;
}

.card--vertical {
  height: 100%;
}
.card--vertical .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem 1.25rem;
}

.card--horizontal {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 0;
}
.card--horizontal .card-media {
  aspect-ratio: 16/9;
}
.card--horizontal .card-media img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.card--horizontal .card-body {
  padding: 2.5rem 1.25rem;
}

.card--vacature {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 0;
}
.card--vacature .card-meta {
  padding: 2rem;
}
.card--vacature .card-body {
  padding: 2rem;
  background: #d01041;
}
.card--vacature .card-body p {
  margin: 0;
  color: #ffffff;
}

.card--expertise {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  background: none;
  height: 100%;
  padding-top: .5rem;
}
.card--expertise .card-icon i {
  color: #ffffff;
}
.card--expertise .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  padding: 0;
}

.card--step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: none;
  height: 100%;
}
.card--step .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  padding: 0;
}

.card:hover .card__trigger i {
  margin-left: 61px;
}
.card:hover .card__trigger:before {
  width: 70px;
}

.card:hover .card-media img {
  transform: scale(1.1);
}

@media all and (min-width: 768px) {
  .card--step {
    grid-template-columns: 1fr 2fr;
    gap: 24px;
  }
  .card--vacature {
    grid-template-columns: 1fr 2fr;
    gap: 24px;
  }
  .card--vacature .card-body {
    display: flex;
    align-items: center;
  }
  .card--horizontal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 24px;
    height: 100%;
  }

.swiper-cases .swiper-slide {
  height: auto;
}
  .card--horizontal .card-media {
    aspect-ratio: inherit;
  }
  .card--horizontal .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media all and (min-width: 1200px) {
  .card--vertical .card-body {
    padding: 3rem 2.5rem;
  }
  .card--horizontal .card-body {
    padding: 4rem 2.5rem;
  }
  .card--vacature .card-meta {
    padding: 3rem;
  }
  .card--vacature .card-body {
    padding: 3rem 6rem;
  }
}
/* -- Modules -------------------------------*/
.module__title {
  font-family: "stratum1-900", sans-serif;
  font-weight: normal;
  text-transform: uppercase;
}

.module + .module {
  margin-top: 2rem;
}

@media all and (min-width: 992px) {
  .module + .module {
    margin-top: 4rem;
  }
}

/* -- Module expertises ---------------------*/
.module-expertises {
  position: relative;
  padding: 3rem 0;
  background: #1c2c4c;
}

.swiper-expertises .swiper-slide {
  height: auto;
}

@media all and (min-width: 992px) {
  .module-expertises {
    padding: 5rem 0;
  }
}

/* -- Module content ------------------------*/
.module-content {
  padding: 1.5rem 0 3rem 0;
}

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

.module-content h2:not([class]),
.module-content h3:not([class]),
.module-content h4:not([class]),
.module-content h5:not([class]),
.module-content h6:not([class]) {
  margin-bottom: 1rem;
}

.module-content p + h1, .module-content p + .h1,
.module-content p + h2, .module-content p + .h2,
.module-content p + h3, .module-content p + .h3,
.module-content p + h4, .module-content p + .h4,
.module-content p + h5, .module-content p + .h5,
.module-content p + h6, .module-content p + .h6 {
  margin-top: 2.25rem;
}

.hero-content--introduction a:not([class]),
.module-content a:not([class]) {
  font-family: "stratum1-700", sans-serif;
  font-weight: 700;
  color: inherit;
  text-decoration: none;
}

.hero-content--introduction a:not([class]):hover,
.module-content a:not([class]):hover {
  color: inherit;
  text-decoration: none;
}

@media all and (min-width: 992px) {
  .module-content {
    /*
    padding: 5rem 0;
    */
    padding: 5rem 0 0;
  }
}

/* -- Module contentblock -------------------*/
.module-contentblock {
  position: relative;
  padding: 5rem 0;
  background: #18407a;
}

@media all and (min-width: 992px) {
  .module-contentblock {
    position: relative;
    padding: 5rem 0;
    background: none;
  }
  .module-contentblock:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 75%;
    background: #18407a;
    z-index: 0;
  } 
  .module-contentblock:after {
    content: "";
    position: absolute;
    top: -5%;
    left: 1px;
    height: 110%;
    width: 75%;
    background-image: url("../images/mask--left.svg");
    background-position: top right;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
  }
  .module-contentblock .container {
    position: relative;
    z-index: 1;
  }
}
/* -- Module steps --------------------------*/
.module-steps {
  position: relative;
  padding: 3rem 0;
}

@media all and (min-width: 992px) {
  .module-steps .col-lg-3 {
    position: relative;
    z-index: 80;
  }
  .module-steps .col-lg-3 .module__title {
    position: relative;
    z-index: 100;
  }
  .module-steps .col-lg-3:before {
    content: "";
    width: 50dvw;
    height: 90%;
    position: absolute;
    top: -10%;
    right: -15.3333%;
    background: #ededed;
    z-index: 80;
  }
  .swiper-steps .swiper-navigation {
    margin-left: -25%;
  }
  .card--step .card__excerpt {
    padding-right: 1rem;
  }
}

/* -- Module cases --------------------------*/
.module-cases {
  position: relative;
  padding: 5rem 0;
}
.module-cases:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 49%;
  background: #18407a;
  z-index: 0;
}
.module-cases:after {
  content: "";
  position: absolute;
  top: -5%;
  left: 1px;
  height: 110%;
  width: 49%;
  background-image: url("../images/mask--left.svg");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}
.module-cases .container {
  position: relative;
  z-index: 1;
}

@media all and (min-width: 768px) {
  .module-cases:before {
    width: 42%;
  }
  .module-cases:after {
    width: 42%;
  }
}
/* -- Module galerij --------------------------*/
.module-galerij {
  position: relative;
  padding: 3rem 0;
}
.module-galerij:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 42%;
  background: #18407a;
  z-index: 0;
}
.module-galerij:after {
  content: "";
  position: absolute;
  top: -5%;
  left: 1px;
  height: 110%;
  width: 42%;
  background-image: url("../images/mask--left.svg");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}
.module-galerij .container {
  position: relative;
  z-index: 1;
}

.swiper-galerij a {
  display: block;
  overflow: hidden;
}

.swiper-galerij a img {
  transition: all .5s;
}

.swiper-galerij a:hover img {
  transform: scale(1.075);
}

@media all and (min-width: 992px) {
  .module-galerij {
    position: relative;
    padding: 5rem 0;
  }
}

/* -- Module clients --------------------------*/
.module-clients {
  position: relative;
  padding: 1.5rem 0;
}

.client {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  padding: 1.5rem;
  aspect-ratio: 16/9;
}

.client img {
  width: 100%;
  max-width: 240px;
}

/* -- Page ----------------------------*/
.overview-cases {
  padding: 0 0 2rem 0;
}

.overview-expertises {
  padding: 0 0 2rem 0;
}

.filters-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1.5rem;
  border-radius: 1.25rem;
  padding: 1.5rem 0;
  background: #ffffff;
}

.facetwp-facet + .facetwp-facet {
  border-top: 2px solid #ededed;
  padding-top: 1.5rem;
}

.facetwp-facet {
  padding: 0 1rem;
  margin: 0 !important;
  
}

.filter-dropdown {
  position: relative;
  font-family: "stratum1-700", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: left;
  color: #18407a;
  background: none;
  border: none;
  text-transform: uppercase;
  outline: none;
  padding-left: calc(38px + 0.5rem);
}
.filter-dropdown span {
  display: block;
  line-height: start;
}
.filter-dropdown:after {
  content: "\f078";
  font-family: "Font Awesome 6 Sharp";
  font-weight: 900;
  position: absolute;
  top: -3px;
  left: 0;
  display: inline-block;
  line-height: 28px;
  text-align: center;
  letter-spacing: 0;
  width: 32px;
  height: 32px;
  color: #d01041;
  background: none;
  border-radius: 100%;
  border: 2px solid #d01041;
}

.facetwp-facet .dropdown-menu {
  border-radius: 0;
  border: none;
  top: 22px !important;
  border-top: 2px solid #ededed;
  /*
  width: 100%;  
  */
  background: #fff;
  min-width: 220px;
}

.facetwp-facet .dropdown-menu a {
  font-family: "stratum1-700", sans-serif;
  font-weight: 700;
  color: #18407A;
  text-transform: uppercase;
  background: none;
  cursor: pointer;
}

.facetwp-facet .dropdown-menu a:hover {
  color: #18407A;
}

.facetwp-facet .dropdown-menu a.selected:hover,
.facetwp-facet .dropdown-menu a.selected {
  color: #D01041;
}

@media all and (min-width: 992px) {
  .overview-cases {
    padding: 0 0 5rem 0;
  }
  .overview-expertises {
    padding: 0 0 5rem 0;
  }

  
  .filters-wrapper {
    flex-direction: row;
    padding: 0 1.5rem;
    gap: 2rem;
    border-radius: 3rem;
  }
  .facetwp-facet {
    padding: 1.5rem 0;
  }
  .facetwp-facet + .facetwp-facet {
    border-top: none;
    border-left: 2px solid #ededed;
    padding-left: 1.5rem;
  }
  .filter-dropdown {
    position: relative;
    font-family: "stratum1-700", sans-serif;
    font-weight: 700;
    line-height: 38px;
    color: #18407a;
    background: none;
    border: none;
    text-transform: uppercase;
    outline: none;
    padding-left: calc(38px + 1rem);
  }
  .filter-dropdown span {
    display: inline;
  }
  .filter-dropdown:after {
    left: 0;
    top: 0;
    line-height: 34px;
    width: 38px;
    height: 38px;
  }
}

@media all and (min-width: 1920px) {
  .facetwp-facet .dropdown-menu {
    top: 25px !important;
  }
}


/* -- Footer ----------------------------------*/
.footer-upper {
  padding: 2.5rem 0 4rem 0;
}

.footer__logo-wrapper {
  position: relative;
}
.footer__logo-wrapper .footer__logo-textual {
  display: none;
}

.footer__logo {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.footer__logo:after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 30.5px;
  height: 4.5px;
  width: calc(100% - 20px);
  background: #d01041;
}

.footer__logo-brand img {
  max-height: 40px;
}

.footer__logo-slogan img {
  max-height: 35px;
}

.footer__logo-slogan {
  margin-top: 35.4px;
  margin-left: -100px;
}

.footer__disclaimer {
  margin: 0;
}

.footer__brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1.25rem;
}

.footer__brands img {
  max-height: 28px;
}

.footer-base {
  background: #18407a;
  padding: 3rem 0 0 0;
}
.footer-base span {
  display: block;
  color: #748caf;
}
.footer-base span a {
  color: #748caf;
}
.footer-base span a:hover {
  color: #ffffff;
}

.footer__socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: .5rem;
  justify-content: flex-start;
}
.footer-disclaimer{
  margin: 2.5rem 0 1.5rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

@media all and (min-width: 992px) {
  .footer-upper {
    padding: 4rem 0;
  }
  
  .footer__logo-wrapper {
    position: relative;
  }
  .footer__logo-wrapper .footer__logo-textual {
    font-size: 1.125rem;
    margin-top: 0.5rem;
    color: #d01041;
    display: block;
    position: absolute;
    margin-top: 0;
    left: 170px;
    top: 2px;
  }
  .footer__brands {
    justify-content: flex-end;
    gap: 1.5rem;
  }
  .footer__brands img {
    max-height: 37px;
  }
  .footer__socials {
    justify-content: flex-end;
  }
}

@media all and (min-width: 1200px) {
  .footer__logo:after {
    bottom: 37.5px;
    height: 5.6px;
  }
  .footer__logo-brand img {
    max-height: 49.8px;
  }
  .footer__logo-slogan {
    margin-top: 44.4px;
  }
  .footer__logo-slogan img {
    max-height: 43px;
  }
  .footer__logo-wrapper .footer__logo-textual {
    left: 210px;
    top: 3px;
  }
}

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