/* 
-----------------------------------------
BASE
-----------------------------------------
*/

::selection {
	background-color: #000000;
	color: #ffffff;
}

.bg-gray {
    background-color: #F2F3F4 !important;
}

a, a:link, a:active {
    color: #C0172C;
    text-decoration: none;
    transition: 0.2s;
}

a:hover {
    color: #C0172C;
    text-decoration: none;
}

img {
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

body, p, li {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #000000;
    line-height: 1.4;
}

b, strong {
    font-weight: 500;
}

p:last-child {
    margin-bottom: 0;
}

p.ingress {
    font-size: 1.25rem ;
}

@media screen and (min-width: 1700px) {

    p, li {
        font-size: 1.125rem;
    }

    p.ingress {
        font-size: 1.375rem;
    }
}

/* ---------- Headlines ---------- */

h1, h2, h3, h4 {
	font-family: 'Archivo', sans-serif;
	line-height: 1.15;
}

h1 {
    font-weight: 300;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

h2,
h1.headline-underline {
    font-size: 1.5rem;
	text-transform: uppercase;
	font-weight: 700;	
	position: relative;
	margin-bottom: 1.75rem;
}

h2::after,
h1.headline-underline::after {
	content: "";
	display: block;
	position: absolute;
	background-color: #C0172C;
	height: 3px;
	width: 64px;
	bottom: -0.875rem;
	left: 0;
}

.text-center h2::after,
.text-center h1.headline-underline::after {
	left: calc(50% - 32px);
}

@media screen and (min-width: 1400px) {

    h1 {
        font-size: 1.875rem;
        margin-bottom: 1.25rem;
    }
}

@media screen and (min-width: 1700px) {

    h2,
    h1.headline-underline {
		font-size: 1.75rem;
        margin-bottom: 2rem;
	}

    .text-center h2::after,
    .text-center h1.headline-underline::after {
        bottom: -1rem;
    }
}

/* ---------- Article typography ---------- */

article h2 {
	font-weight: 300;
    font-size: 1.5rem;
	text-transform: none;
	margin-bottom: 0.5rem;	
}

article h2::after {
	display: none;
}

article p + h2 {
    margin-top: 2.5rem;
}

article figure + h2 {
    margin-top: 1.5rem;
}

article a.btn {
    margin-top: 1rem;
}

article hr {
    border-top: 1px solid rgba(183, 186, 190, 0.7);
    margin: 2rem 0 1.5rem;
}

@media screen and (min-width: 1200px) {

    article hr {
        margin: 2.5rem 0 2rem;
    }
}

/* ---------- Padding x space ---------- */

.padding-x-space {
	padding-left: 15px;
	padding-right: 15px;
}

@media (min-width: 768px) {
	.padding-x-space {
	    padding-left: 2rem;
	    padding-right: 2rem;
	}
}

@media (min-width: 1200px) {
	.padding-x-space {
	    padding-left: 5rem;
	    padding-right: 5rem;
	}
}

@media (min-width: 1400px) {
	.padding-x-space {
	    padding-left: calc(50% - 580px);
	    padding-right: calc(50% - 580px);
	}
}

@media (min-width: 1700px) {
	.padding-x-space {
	    padding-left: calc(50% - 800px);
	    padding-right: calc(50% - 800px);
	}
}

.scroll-to {
	display: block;
	position: relative;
	top: -60px;
	visibility: hidden;
}

@media screen and (min-width:992px) {

	.scroll-to {
		top: -87px;
	}
}

@media screen and (min-width:1700px) {

	.scroll-to {
		top: -112px;
	}
}

/* ---------- Padding y space ---------- */

.padding-y-space {
	padding-top: 2rem;
	padding-bottom: 2rem;
	transition: .5s;
}

@media (min-width: 768px) {
	.padding-y-space {
	    padding-top: 2.5rem;
	    padding-bottom: 2.5rem;
	}
}

@media (min-width: 1200px) {
	.padding-y-space {
	    padding-top: 3.5rem;
	    padding-bottom: 3.5rem;
	}
}

@media (min-width: 1700px) {
	.padding-y-space {
	    padding-top: 5rem;
	    padding-bottom: 5rem;
	}
}

/* ---------- Button ---------- */

a.btn {
    display: inline-block;
    font-size: 0.875rem;
    text-transform: uppercase;
    background-color: transparent;
    border-radius: 2rem;
    border: 1px solid #000000;
    padding: 0.625rem 1.5rem;
    color: #000000;
    font-weight: 600;
    transition: all ease 0.2s;
}

a.btn:hover,
a.btn:focus,
a.btn:active {
    color: #C0172C;
    border-color: #C0172C;
    outline: none;
    box-shadow: none;
}

a.btn-white {
    color: #FFFFFF;
    border-color: #FFFFFF;
}

[type="button"] {
    -webkit-appearance: none;
}

@media screen and (min-width: 1200px) {

    a.btn {
        padding: 0.75rem 1.75rem;
    }
}

@media screen and (min-width: 1700px) {

    a.btn {
        padding: 1rem 2.25rem;
    }
}

/* ---------- Read more ---------- */


a.read-more {
    font-family: 'Archivo', sans-serif;
    color: #000000;
    font-weight: 500;
    text-transform: uppercase;
}

a.read-more::before {
    content: url(/media/knvoivfl/red-arrow.svg);
    margin-right: 0.25em;
    width: 10px;
    height: auto;
    line-height: 1;
    display: inline-block;
    filter: grayscale(100%) brightness(0);
}

a.read-more:hover {
    color: #C0172C;
}

a.read-more:hover::before {
    filter: grayscale(0%) brightness(100%);
}

@media screen and (min-width: 1700px) {

    a.read-more::before {
        width: 12px;
    }
}

/* ---------- Breadcrumb ---------- */


.breadcrumb {
    margin-top: 60px;
    margin-bottom: 0;
    background-color: #FFFFFF;
}

.breadcrumb li {
    font-size: 0.875rem;
}

.breadcrumb a {
    color: rgba(0,0,0,0.6);
}

.breadcrumb .divider {
    margin: 0 0.375rem;
}

@media screen and (min-width: 992px) {

    .breadcrumb {
        margin-top: 87px;
    }
}

@media screen and (min-width: 1700px) {

    .breadcrumb {
        margin-top: 112px;
        padding-top: 1rem;
        paddin-bottom: 1rem;
    }
}

/* ---------- Subpage header ---------- */

.subpage-header {
    height: 40vw;
    background-size: cover;
    background-position: center;
}

@media screen and (min-width: 1200px) {

    .subpage-header {
        height: 25vw;
    }
}

/*
-----------------------------------------
NAVBAR
-----------------------------------------
*/

.navbar {
    justify-content: space-between;
    align-items: initial;
    padding-top: 0;
    padding-bottom: 0;
    z-index: 4;
    top: 0;
    transition: all ease 0.4s;
    height: 60px;
}

.navbar-light {
    background-color: #FFFFFF;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.navbar-show {
    transform: none;
}

@media screen and (min-width: 992px) {

    .navbar {
        height: 87px;
    }
}

@media screen and (min-width: 1700px) {
    
    .navbar {
        height: 112px;
    }
}
    
/* ---------- Logo ---------- */

.navbar-brand {
    padding: 0;
    display: flex;
}

.navbar-brand img {
	width: 150px;
	height: auto;
	transition: 0.15s;
}

.navbar-dark .logo-dark {
    display: block;
    opacity: 1;
}

.navbar-dark .logo-light {
    display: none;
    opacity: 0;
}

.navbar-light .logo-light {
    display: block;
    opacity: 1;
}

.navbar-light .logo-dark {
    display: none;
    opacity: 0;
}

@media screen and (min-width: 768px) {
	
	.navbar-brand img {
		width: 180px;
		height: auto;
	}
}

@media screen and (min-width: 1200px) {
    
    .navbar-brand img {
        width: 200px;
        height: auto;
    }
}

@media screen and (min-width: 1700px) {
	
	.navbar-brand img {
		width: 228px;
		height: auto;
	}
}

/* ---------- Mobile menu button ---------- */

.navbar-toggler:focus {
    outline: none;
}

.navbar .navbar-toggler {
    width: 35px;
    height: 22px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
    padding: 0;
    outline: none !important;
    box-shadow: none !important;
    border: none;
    z-index: 1032;
}

.navbar-toggler {
    position: relative;
    width: 30px;
    height: 22px;
    border: none;
}

.navbar-toggler span {
    display: block;
    position: absolute;
    height: 2px;
    width: 30px;
    background: #000000;
    opacity: 1;
    left: 0;
}

.navbar-dark .navbar-toggler span {
    background: #FFFFFF;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    border: none;
    outline: none;
    box-shadow: none;
}

.navbar-toggler span:nth-child(1) {
    top: 0;
}

.navbar-toggler span:nth-child(2) {
    top: 10px;
}

.navbar-toggler span:nth-child(3) {
    top: 20px;
}

@media screen and (min-width: 992px) {

    .navbar-toggler {
        display: none;
    }
}

/* ----- Offcanvas mobile menu ----- */

.offcanvas-collapse {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    overflow-y: auto;
    transition: -webkit-transform .4s ease-in-out;
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .3s ease-in-out;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    z-index: 1032;
    overflow-x: hidden;
}

.offcanvas-collapse.open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    box-shadow: 0 0 40px rgba(0,0,0,0.1);
}

#mob-nav {
    padding: 0;
    background-color: #FFFFFF;
}

@media screen and (min-width: 400px) {

    .offcanvas-collapse {
        width: 380px;
        right: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    .offcanvas-collapse.open {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

#mobileMenu .nav-item {
    border-bottom: 1px solid #D4D4D6;
}

#mobileMenu .nav-link {
    color: #000000;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
    font-family: 'Archivo', sans-serif;
}

/* Mobile menu close button */

.close-button {
    cursor: pointer;
    font-size: 36px;
    padding: 0 0.25rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    color: #000000;
    height: 30px;
    width: 30px;
    margin-right: 0.75rem;
}

.main-menu-mobile .top-nav-item {
    height: 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.main-menu-mobile .top-nav-item span {
    display: block;
    position: absolute;
    height: 2px;
    width: 30px;
    background: #000000;
    opacity: 1;
    right: 0;
}

.main-menu-mobile .top-nav-item span:nth-child(1) {
    top: 15px;
    transform: rotate(45deg);
}

.main-menu-mobile .top-nav-item span:nth-child(2) {
    top: 15px;
    transform: rotate(-45deg);
}

#mobileMenu #language-menu .nav-link {
    font-weight: 400;
    opacity: 0.8;
}

/* Mobile submenu */

.main-menu-mobile .offcanvas-submenu-collapse {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    transition: all .3s ease-in-out;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    z-index: 10;
    padding: 0;
    opacity: 0;
    background-color: #FFFFFF;
}

.main-menu-mobile .offcanvas-submenu-collapse.open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
}

.main-menu-mobile .offcanvas-submenu-collapse .top-nav-item {
    justify-content: space-between;
}

.main-menu-mobile .back-button {
    justify-content: flex-start;
    font-size: 30px;
    margin-left: 1rem;
    color: #000000;
}

.main-menu-mobile .submenu {
    list-style: none;
    padding-left: 0;
}

.main-menu-mobile .offcanvas-submenu-collapse .submenu:first-child .nav-item:first-child .nav-link {
    border-top: none;
}

.main-menu-mobile .submenu-submenu {
    list-style: none;
    padding-left: 0;
}

#mobileMenu .main-menu-mobile .submenu-submenu .nav-item .nav-link {
	text-transform: none;
    font-weight: 400;
    white-space: initial;
    font-family: 'Roboto', sans-serif;
}

.main-menu-mobile .submenu-submenu .nav-item:first-child .nav-link {
    border-top: none;
}

.main-menu-mobile .submenu-submenu .nav-item:first-child .nav-link {
    border-top: none;
}

.main-menu-mobile .submenu-submenu > .nav-item:last-child {
    border-bottom: 1px solid #A1B7B6;
}

.main-menu-mobile .submenu .submenu .nav-item:last-child .nav-link {
    border-bottom: none;
}

/* ---------- Desktop menu ---------- */

#desktopMenu {
	display: none;
}

@media screen and (min-width: 992px) {

	#desktopMenu {
		display: flex;
	}
}

#main-menu {
	flex-direction: row;
	align-items: center;
}

#main-menu .nav-item {
    position: relative;
}

#main-menu .nav-link {
	font-size: 0.875rem;
	text-transform: uppercase;
	font-weight: 500;
	color: #000000;
	padding: 0.5rem 0;
	transition: all ease 0.15s;
}

#main-menu > .nav-item > .nav-link {
    margin-right: 1.5rem;
}

#main-menu > .nav-item:last-child > .nav-link {
    margin-right: 0;
}

.navbar-dark #main-menu .nav-link {
	color: #FFFFFF;
}

@media screen and (min-width: 1200px) {

    #main-menu .nav-link {
        font-size: 1rem;
    }
}

@media screen and (min-width: 1700px) {

    #main-menu > .nav-item > .nav-link {
        margin-right: 2rem;
    }
}

/* Desktop dropdown menus */

#main-menu .dropdown-toggle::after {
    display: none;
}

#main-menu .dropdown:hover .dropdown-menu {
    display: block;
}

#main-menu .dropdown-menu {
    background-color: #FFFFFF;
    border: none;
    border-radius: 0;
    position: absolute;
    top: calc(100% - 2px);
    padding: 0;
    border: 1px solid #D4D4D6;

}

#main-menu .dropdown-menu .nav-link {
    color: #000000;
    text-transform: none;
    font-size: 0.875rem;
    font-weight: 300;
    padding: 0.75rem;
    border-bottom: 1px solid #D4D4D6;
}

#main-menu .dropdown-menu .nav-item:last-child .nav-link {
    border-bottom: none;
}

@media screen and (min-width: 1200px) {

    #main-menu .dropdown-menu .nav-link {
        font-size: 1rem;
    }
}

/*
-----------------------------------------
FOOTER
-----------------------------------------
*/

footer {
    background-color: #000000;
}

footer > div {
    flex-basis: 100%;
    flex-grow: 0;
    flex-shrink: 0;
    margin-bottom: 2rem;
}

footer > div:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 600px) {

    footer > div {
        flex-basis: calc(50% - 1rem);
    }

    footer > div:nth-child(2) {
        flex-basis: 100%;
        order: 1;
    }

    footer > div:nth-child(1) {
        order: 2;
    }

    footer > div:nth-child(3) {
        order: 3;
    }
}

@media screen and (min-width: 950px) {

    footer > div {
        flex-basis: calc(33.33% - 1rem);
    }

    footer > div:nth-child(2) {
        flex-basis: calc(33.33% - 1rem);
        order: 2;
    }

    footer > div:nth-child(1) {
        order: 1;
    }
}

@media screen and (min-width: 1200px) {

    footer > div {
        flex-basis: calc(33.33% - 1.5rem);
    }

    footer > div:nth-child(2) {
        flex-basis: calc(33.33% - 1.5rem);
    }
}


footer h3,
footer p,
footer li,
footer a, footer a:link, footer a:active {
    color: #FFFFFF;
}

footer a:hover {
    color: #C0172C;
}

footer h3 {
    margin: 0 0 1rem;
    padding-top: 1rem;
    border-top: 1px solid #FFFFFF;
    font-weight: 500;
    text-transform: none;
    font-size: 1.375rem;
}

footer ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

footer p {
    margin-bottom: 0;
    font-size: 1rem;
}

footer > div:nth-child(2) p {
    margin-bottom: 0.75rem;
}

footer > div:nth-child(2) p:last-child {
    margin-bottom: 0;
}

footer li {
    font-size: 1rem;
}

.footer-contact-box {
    display: flex;
    margin-bottom: 1.5rem;
}

.footer-contact-box:last-child {
    margin-bottom: 0;
}

.footer-contact-box > div:first-child {
    flex-basis: 36px;
    border-right: 1px solid #FFFFFF;
    flex-shrink: 0;
    flex-grow: 0;
    padding-right: 0.5rem;
    text-align: right;
}

.footer-contact-box > div:last-child {
  flex-basis: calc(100% - 30px);
  padding-left: 0.5rem;
  flex-shrink: 0;
  flex-grow: 0;
}

footer div:nth-child(2) h3 {
    margin-bottom: 0.875rem;
}

.footer-contact-box svg {
    font-size: 1.25rem;
    margin-top: 3px;
}

.sm-icons > a {
    display: inline-flex;
    border-radius: 50%;
    border: 1px solid #FFFFFF;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    margin-right: 0.75rem;
}

.sm-icons > a:hover {
    color: #;
    border-color: #C0172C;
}

/* 
-----------------------------------------
START PAGE
-----------------------------------------
*/

/* ---------- Hero section ---------- */

.hero-section {
    min-height: 100vh;
    background-position: top center;
    background-size: cover;
    padding-top: calc(56px + 2rem);
    position: relative;
    overflow: hidden;
}

@media screen and (min-width: 768px) {

    .hero-section {
        padding-top: calc(56px + 2.5rem) ;
    }
}

@media screen and (min-width: 992px) {

    .hero-section {
        padding-top: calc(76px + 3.5rem) ;
    }
}

@media screen and (min-width: 1700px) {

    .hero-section {
        padding-top: calc(100px + 6rem) ;
        padding-bottom: 6rem;
    }
}

/* Single hero image */

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
}

/* Animated carousel */

.animated-hero-images {
    position: absolute;
    overflow: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.animated-hero-images .hero-image {
	opacity: 0;
	animation-duration: 18s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	animation-fill-mode: both;
    animation-name: fading, sliding-right;
}

@keyframes fading {
    0% {opacity: 0;}
    12% {opacity: 1}
    33% {opacity: 1}
    45.33% {opacity: 0}
    100% {opacity: 0;}
}

@keyframes sliding-right {
    0% {
        transform: scale(1) translate(0, 0);
        transform-origin: 84% 50%;
    }
    100% {
        transform: scale(1.25) translateX(-20px);
        transform-origin: right;
    }
}

/* Hero caption */

.hero-caption {
    border-left: 2px solid #C0172C;
    padding-left: 1rem;
    z-index: 1;
}

.hero-caption h1 {
	color: #FFFFFF;
	font-weight: 300;
    font-size: 2rem;
    max-width: 600px;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.hero-caption p {
	color: #FFFFFF;
	margin-bottom: 0;
	font-weight: 400;
	font-size: 1.125rem;
	width: 100%;
	max-width: 600px;
}

@media screen and (min-width: 576px) {
        
    .hero-caption h1 {
        font-size: 2.5rem;
    }

    .hero-caption p {
        font-size: 1.25rem;
    }
}

@media screen and (min-width: 992px) {
        
    .hero-caption {
    	border-left: 3px solid #C0172C;
    	padding-left: 1.5rem;
    }

    .hero-caption h1 {
        font-size: 3rem;
        max-width: 550px;
    }
}

@media screen and (min-width: 1200px) {
        
    .hero-caption {
        padding-left: 1.5rem;
    }

    .hero-caption h1 {
        font-size: 3rem;
        max-width: 650px;
        font-weight: 200;
    }

    .hero-caption p {
        font-weight: 300;
    }
}

@media screen and (min-width: 1700px) {
        
    .hero-caption {
        padding-left: 2rem;
    }

    .hero-caption h1 {
        font-size: 3.875rem;
        max-width: 820px;
    }

    .hero-caption p {
        font-size: 1.75rem;
        max-width: 820px;
    }
}

/* Hero video */

.hero-video video {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
}

/* Arrow down */

.hero-section .arrow-down {
	display: flex;
	width: 100%;
	bottom: 1rem;
	left: 0;
	right: 0;
	color: #FFFFFF;
	font-size: 2.25rem;
	justify-content: center;
	align-items: center;
}

.hero-section .arrow-down:hover {
    color: #C0172C;
}

@media screen and (min-width: 1200px) {

    .hero-section .arrow-down {
        bottom: 2rem;
    }
}

@media screen and (min-width: 1700px) {

    .hero-section .arrow-down {
        font-size: 2.5rem;
        bottom: 4rem;
    }
}

/* ---------- Intro text ---------- */

.intro-text p {
	margin: 0 auto;
	width: 100%;
	max-width: 650px;
}

@media screen and (min-width: 576px) {

    .intro-text p {
        font-size: 1.125rem;
    }
}

@media screen and (min-width: 1200px) {

    .intro-text {
        padding-bottom: 3rem;
    }    
}

@media screen and (min-width: 1700px) {

    .intro-text p {
        font-size: 1.25rem;
        max-width: 748px;
    }    
}

/* ---------- Services section ---------- */

ul.services-links {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

ul.services-links a {
    display: flex;
    align-items: center;
    color: #000000;
    text-transform: uppercase;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    padding: 0.5rem 0;
}

ul.services-links a svg {
    margin-right: 0.5em;
}

ul.services-links a:hover {
    color: #C0172C;
}

@media screen and (min-width: 600px) {

    ul.services-links {
        column-count: 2;
        column-gap: 50px;
    }
}

@media screen and (min-width: 992px) {

    ul.services-links {
        column-count: 3;
    }
}

@media screen and (min-width: 1200px) {

    .services-section {
        padding-top: 2.5rem;
    }

    ul.services-links {
        max-width: 880px;
        margin: 0 auto;
    }
}

@media screen and (min-width: 1700px) {

    .services-section {
        padding-top: 3rem;
        padding-bottom: 3.5rem;
    }

    ul.services-links {
        max-width: 1030px;
    }

    .services-links ul a {
        padding: 0.75rem 0;
        font-size: 1.125rem;
    }
}

/* ---------- Projects section ---------- */

.projects-section .projects-text {
    margin-bottom: 2rem;
}

.projects-section .projects-text p {
    margin: 0 auto;
    width: 100%;
    max-width: 650px;
}

@media screen and (min-width: 576px) {

    .projects-section .projects-text p {
        font-size: 1.125rem;
    }
}

@media screen and (min-width: 768px) {

    .projects-section .projects-text {
        margin-bottom: 2.5rem;
    }
}

@media screen and (min-width: 1200px) {

    .projects-section .projects-text {
        margin-bottom: 3rem;
    }
}

@media screen and (min-width: 1700px) {

    .projects-section .projects-text p {
        font-size: 1.25rem;
        max-width: 748px;
    }
}

@media screen and (min-width: 576px) {

    .projects-section .project-item:last-child {
        flex-basis: 100%;
    }

    .projects-section .project-item:last-child figure::after {
        padding-bottom: 50%;
    }
}

@media screen and (min-width: 900px) {

    .projects-section .project-item:last-child {
        flex-basis: calc(33% - 1rem);
        margin: 0 0.5rem 1rem;
    }

    .projects-section .project-item:last-child figure::after {
        padding-bottom: 100%;
    }
}

@media screen and (min-width: 1200px) {

    .projects-section .project-item:last-child {
        flex-basis: calc(33.33% - 1.5rem);
        margin: 0 0.75rem 2rem;
    }
}

@media screen and (min-width: 1700px) {

    .projects-section .project-item:last-child {
        flex-basis: calc(33.33% - 2rem);
        margin: 0 1rem 2rem;
    }
}

.project-page-link {
    text-align: right;
}

.project-page-link a {
    text-transform: uppercase;
    color: #000000;
    font-family: "Archivo", sans-serif;
    font-weight: 500;
}

.project-page-link a:hover {
    color: #C0172C;
}

.project-page-link a svg {
    margin-left: 0.25em;
}

@media screen and (min-width: 1700px) {

    .project-page-link a {
        font-size: 1.125rem;
    }
}

/* ---------- Linkedin section ---------- */

.linkedin-section > div {
    flex-basis: 100%;
    flex-grow: 0;
    flex-shrink: 0;
}

.linkedin-section > div.linkedin-image {
    order: 1;
    margin-bottom: 1.5rem;
}

.linkedin-section > div.linkedin-text {
    order: 2;
}

@media screen and (min-width: 768px) {

    .linkedin-section > div.linkedin-text {
        flex-basis: calc(100% - 250px);
        padding-right: 2rem;
        order: 1;
    }

    .linkedin-section > div.linkedin-image {
        flex-basis: 250px;
        order: 2;
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1200px) {

    .linkedin-section {
        padding-left: calc(50% - 440px);
        padding-right: calc(50% - 440px);
    }    

    .linkedin-section > div.linkedin-text {
        flex-basis: calc(100% - 280px);
        padding-right: 3rem;
    }

    .linkedin-section > div.linkedin-image {
        flex-basis: 280px;
    }
}

@media screen and (min-width: 1700px) {

    .linkedin-section {
        padding-left: calc(50% - 515px);
        padding-right: calc(50% - 515px);
    }    

    .linkedin-section > div.linkedin-text {
        flex-basis: calc(100% - 329px);
        padding-right: 6rem;
    }

    .linkedin-section > div.linkedin-image {
        flex-basis: 329px;
    }
}

.linkedin-text {
    align-items: center;
    text-align: center;
}

.linkedin-text h2::after {
    left: calc(50% - 32px);
}

.linkedin-text p {
    max-width: 650px;
}

@media screen and (min-width: 576px) {

    .linkedin-text p {
        font-size: 1.125rem;
    }
}

@media screen and (min-width: 768px) {

    .linkedin-text {
        align-items: flex-start;
        text-align: left;
    }

    .linkedin-text .btn {
        margin-top: 0.5rem;
    }

    .linkedin-text h2::after {
        left: 0;
    }
}

@media screen and (min-width: 1700px) {

    .linkedin-text p {
        font-size: 1.25rem;
    }
}

.linkedin-image figure {
    margin: 0;
}

.linkedin-image img {
    display: block;
    width: 260px;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {

    .linkedin-image img {
        width: 100%;
        height: auto;
    }
}

/* ---------- Contact banner section ---------- */

.contact-banner-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

@media screen and (min-width: 1200px) {

    .contact-banner-section {
        padding-left: calc(50% - 440px);
        padding-right: calc(50% - 440px);
    }    
}

@media screen and (min-width: 1700px) {

    .contact-banner-section {
        padding-left: calc(50% - 515px);
        padding-right: calc(50% - 515px);
    }    
}

.contact-banner-section > div {
    flex-basis: 100%;
    flex-grow: 0;
    flex-shrink: 0;
}

.contact-banner-section > div.contact-banner-image {
    margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {

    .contact-banner-section > div.contact-banner-image {
        flex-basis: 280px;
        margin-bottom: 0;
    }

    .contact-banner-section > div.contact-banner-text {
        flex-basis: calc(100% - 280px);
        padding-left: 3rem;
    }
}

@media screen and (min-width: 1700px) {

    .contact-banner-section > div.contact-banner-image {
        flex-basis: 332px;
    }

    .contact-banner-section > div.contact-banner-text {
        flex-basis: calc(100% - 332px);
        padding-left: 4rem;
    }
}

.contact-banner-image figure {
    position: relative;
    max-width: 280px;
    margin: 0 auto;
}

.contact-banner-image figure::after {
    content: '';
    display: block;
    padding-bottom: 100%;
}

.contact-banner-image figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

@media screen and (min-width: 1700px) {

    .contact-banner-image figure {
        max-width: 332px;
    }
}

.contact-banner-text {
    text-align: center;
}

.contact-banner-text h2::after {
    left: calc(50% - 32px);
}

.contact-banner-text p {
    max-width: 650px;
    margin: 0 auto 1rem;
}

.contact-banner-text .btn {
    margin-top: 0.5rem;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}

@media screen and (min-width: 576px) {

    .contact-banner-text p {
        font-size: 1.125rem;
    }
}

@media screen and (min-width: 768px) {

    .contact-banner-text {
        text-align: left;
    }

    .contact-banner-text h2::after {
        left: 0;
    }

    .contact-banner-text p {
        margin: 0 0 1rem;
    }

    .contact-banner-text .btn {
        margin-right: 0;
        margin-left: 0;
    }

    .contact-banner-text .btn:first-of-type {
        margin-right: 1rem;
    }
}

@media screen and (min-width: 1700px) {

    .contact-banner-text p {
        font-size: 1.25rem;
    }

    .contact-banner-text .btn {
        margin-top: 1rem;
    }

    .contact-banner-text .btn:first-of-type {
        margin-right: 1.5rem;
    }

}


/*
-----------------------------------------
SUBPAGE
-----------------------------------------
*/

/* ---------- Menu ---------- */

.subpage-menu li a {
    color: #000000;
    margin: 0 0.5rem;
    font-weight: 400;
}

.subpage-menu li a.active {
    color: #C0172C;
}

@media screen and (min-width: 1200px) {

    .subpage-menu li a {
        margin: 0 1rem;
    }
}

/* ---------- Article ---------- */

@media screen and (min-width: 768px) {

    .subpage-article {
        padding-left: calc(50% - 350px);
        padding-right: calc(50% - 350px);
    }
}

@media screen and (min-width: 1700px) {

    .subpage-article {
        padding-left: calc(50% - 424px);
        padding-right: calc(50% - 424px);
    }
}

/*
-----------------------------------------
SERVICES PAGE
-----------------------------------------
*/

.services-menu ul {
    list-style: none;
    margin: 0;    
    padding: 0;
}

.services-menu li a {
    display: block;
    color: #000000;
    text-transform: uppercase;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    padding: 0.5rem 0;
}

.services-menu li a:hover {
    color: #C0172C;
}

.services-menu li a.active {
    color: #C0172C;
}

.services-menu li a svg {
    margin-right: 0.25em;
    width: 16px;
}

/* Mobile */

.services-menu-mobile button {
    padding: 0;
    border: none;
    border-radius: 0;
    width: 100%;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    padding: 1rem;
    text-align: left;
    color: #000000;
}

.services-menu-mobile button:focus,
.services-menu-mobile button:active {
    border: none;
    outline: none;
    box-shadow: none;
}

.services-menu-mobile button svg {
    margin-right: 0.375em;
    width: 16px;
    color: #C0172C;
}

.services-accordion-content {
    padding: 0;
}

.services-accordion-content ul {
    padding: 1rem 1rem 1.5rem;
    border-top: 1px solid #C9CBCE;
}

.services-menu-mobile li a {
    display: block;
    color: #000000;
    padding: 0.5rem 0;
}

.services-menu-mobile li:last-child a {
    padding-bottom: 0;
}

@media screen and (min-width: 450px) {

    .services-accordion-content ul {
        column-count: 2;
    }
}

@media screen and (min-width: 576px) {

    .services-menu-mobile button {
        font-size: 1.125rem;
    }
}

@media screen and (min-width: 768px) {

    .services-menu-mobile button {
        padding: 1rem 2rem;
    }

    .services-accordion-content ul {
        padding: 1rem 2rem 2rem;
        column-count: 3;
    }
}

@media screen and (min-width: 992px) {

    .services-menu-mobile {
        display: none;
    }
}

.services-menu-desktop {
    display: none;
}

@media screen and (min-width: 992px) {

    .services-menu-desktop {
        display: flex;
        justify-content: center;
    }

    .services-menu-desktop .services-menu-headline {
        flex-basis: 250px;
    }

    .services-menu-desktop .services-menu-link {
        flex-basis: calc(100% - 250px);
    }

    .services-menu-desktop .services-menu-link  ul {
        column-count: 2;
    }
}

@media screen and (min-width: 1200px) {

    .services-menu-desktop {
        justify-content: flex-start;
    }

    .services-menu-desktop .services-menu-headline {
        flex-basis: 230px;
    }

    .services-menu-desktop .services-menu-link {
        flex-basis: 930px;
    }

    .services-menu-desktop .services-menu-link  ul {
        column-count: 3;
    }
}

@media screen and (min-width: 1700px) {

    .services-menu-desktop .services-menu-headline {
        flex-basis: 376px;
    }

    .services-menu-desktop .services-menu-link {
        flex-basis: 1244px;
    }
}


/* ---------- Contact persons ---------- */

.article-contact-persons h2 {
    margin-top: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

@media screen and (min-width: 1700px) {

    .article-contact-persons h2 {
        margin-top: 4rem;
    }
}

/* ---------- Related projects ---------- */

.article-related-projects h2 {
    margin-top: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

@media screen and (min-width: 1700px) {

    .article-related-projects h2 {
        margin-top: 4rem;
    }
}


@media screen and (min-width: 576px) {

    .article-projects-wrap {
        margin: 0 -0.5rem;
    }
}

@media screen and (min-width: 900px) {

    .article-projects-wrap {
        margin: 0 -1rem;
    }

    .article-projects-wrap .project-item {
        flex-basis: calc(50% - 2rem);
        margin: 0 1rem 2rem;
    }
}

/*
-----------------------------------------
PROJECTS PAGE
-----------------------------------------
*/

.projects-page .projects-intro-text {
    width: 720px;
    max-width: 100%;
}

@media screen and (min-width: 500px) {

    .projects-page .projects-intro-text {
        font-size: 1.125rem;
    }
}
@media screen and (min-width: 1700px) {

    .projects-page .projects-intro-text {
        font-size: 1.25rem;
        width: 800px;
    }
}

.projects-page .project-items {
    margin-top: 2rem;
}


@media screen and (min-width: 1200px) {

    .projects-page .project-items {
        margin-top: 2.5rem;
    }    
}

@media screen and (min-width: 1700px) {

    .projects-page .project-items {
        margin-top: 4.375rem;
    }    
}

/* ---------- Project box ---------- */

.project-item {
    flex-basis: 100%;
    flex-grow: 0;
    flex-grow: 0;
    position: relative;
    margin-bottom: 1rem;
}

@media screen and (min-width: 576px) {

    .project-items {
        margin: 0 -0.5rem;
    }

    .project-item {
        flex-basis: calc(50% - 1rem);
        margin: 0 0.5rem 1rem;
    }
}

@media screen and (min-width: 900px) {

    .project-items {
        margin: 0 -0.5rem;
    }

    .project-item {
        flex-basis: calc(33.33% - 1rem);
        margin: 0 0.5rem 1rem;
    }
}

@media screen and (min-width: 1200px) {

    .project-items {
        margin: 0 -0.75rem;
    }

    .project-item {
        flex-basis: calc(33.33% - 1.5rem);
        margin: 0 0.75rem 2rem;
    }
}

@media screen and (min-width: 1700px) {

    .project-items {
        margin: 0 -1rem;
    }

    .project-item {
        flex-basis: calc(33.33% - 2rem);
        margin: 0 1rem 2rem;
    }
}

.project-item figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    background-color: #F8F9FA;
}

.project-item figure::after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.project-item figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: scale ease 0.5s;
}

.project-item:hover figure img {
    scale: 1.2;
}

.project-item-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem;
}

.project-item-caption p {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 1.125rem;
    margin: 0;
}

.project-item-caption p span {
    display: block;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-top: 4px;
}

@media screen and (min-width: 1400px) {

    .project-item-caption {
        padding: 0.75rem;
    }
}

@media screen and (min-width: 1700px) {

    .project-item-caption {
        padding: 1.25rem 1.75rem;
    }

    .project-item-caption p {
        font-size: 1.5rem;
    }

    .project-item-caption p span {
        font-size: 1rem;
    }
}

.project-item-ongoing {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 1rem;
    background-color: #000000;
    padding: 0.5rem;
    color: #FFFFFF;
    text-transform: uppercase;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
}

@media screen and (min-width: 1200px) {

    .project-item-ongoing {
        top: 1.5rem;
        font-size: 0.875rem;
        padding: 0.625rem 0.875rem;
    }    
}

@media screen and (min-width: 1700px) {


    .project-item-ongoing {
        top: 2rem;
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }    
}

/*
-----------------------------------------
PROJECT PAGE
-----------------------------------------
*/


.project-facts {
    margin: 0 -15px;
}

@media screen and (min-width: 768px) {

    .project-facts {
        margin: 0
    }
}

.project-facts > div {
    flex-basis: 100%;
    flex-grow: 0;
    flex-shrink: 0;
}

@media screen and (min-width: 768px) {

    .project-facts > div {
        flex-basis: 50%;
    }
}

/* Single image */

.project-facts .project-image figure {
    margin: 0;
    position: relative;
    background-color: #F8F9FA;
}

.project-facts .project-image figure::after {
    content: "";
    display: block;
    padding-bottom: 69%;
}

.project-facts .project-image figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media screen and (min-width: 768px) {

    .project-facts .project-image figure {
        height: 100%;
    }
}

/* Image slider */

#project-slider {
    position: relative;
    background-color: #F8F9FA;
    min-height: 100%;
}

#project-slider::after {
    content: "";
    display: block;
    padding-bottom: 69%;
}

#project-slider .carousel-inner {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

#project-slider .carousel-item {
    height: 100%;
}

#project-slider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

#project-slider .carousel-control-next,
#project-slider .carousel-control-prev {
    color: #FFFFFF;
    font-size: 2rem;
    opacity: 1;
    width: 10%;
}

#project-slider .carousel-indicators {
    z-index: 3;
}

#project-slider .carousel-indicators li {
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #FFFFFF;
    opacity: 1;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.75);
    margin: 0 5px;
}

#project-slider .carousel-indicators li.active {
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

.project-facts .project-fact-list {
    padding: 1.5rem 1rem;
}

.project-facts .project-fact-list ul {
    list-style: none;
    margin: 2.25rem 0 0;
    padding: 0;
}

.project-facts .project-fact-list li {
    font-family: 'Archivo', sans-serif;
    margin-bottom: 0.75rem;
}
.project-facts .project-fact-list li:last-child {
    margin-bottom: 0;
}

.project-facts .project-fact-list li strong {
    margin-right: 0.5rem;
    text-transform: uppercase;
}

.project-facts .project-fact-list a {
    text-decoration: underline;
    color: #000000;
}

span.facts-person:not(:last-child)::after {
    content: ', ';
}

@media screen and (min-width: 768px) {

    .project-facts .project-fact-list {
        padding: 1.5rem;
    }
}

@media screen and (min-width: 1200px) {

    .project-facts .project-fact-list {
        padding: 2rem;
    }
}

@media screen and (min-width: 1700px) {

    .project-facts .project-fact-list {
        padding: 4rem;
    }

    .project-facts .project-fact-list li {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
}

/*
-----------------------------------------
CONTACT PAGE
-----------------------------------------
*/

/* ---------- Menu ---------- */

.contact-menu {
    display: flex;
    flex-wrap: wrap;
}

.contact-menu > div {
    flex-basis: 100%;
    flex-grow: 0;
    flex-shrink: 0;
}

@media screen and (min-width: 992px) {

    .contact-menu > div.contact-menu-headline {
        flex-basis: 250px;
    }

    .contact-menu > div.contact-menu-link {
        flex-basis: calc(100% - 250px);
    }
}
@media screen and (min-width: 1700px) {

    .contact-menu > div.contact-menu-headline {
        flex-basis: 376px;
    }

    .contact-menu > div.contact-menu-link {
        flex-basis: calc(100% - 376px);
    }
}

.contact-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-menu li a {
    display: block;
    color: #000000;
    text-transform: uppercase;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    padding: 0.5rem 0;    
    position: relative;
    padding-left: 22px;
}

.contact-menu li a svg {
    position: absolute;
    left: 0;
    top: 0.75em;
}

.contact-menu li a:hover {
    color: #C0172C;
}

@media screen and (min-width: 576px) {

    .contact-menu ul {
        column-count: 2;
        column-width: 200px;
    }
}

@media screen and (min-width: 992px) {

    div.contact-menu-headline h1 {
        margin-bottom: 1rem;
    }

    .contact-menu li a svg {
        top: 0.625em;
    }
}

@media screen and (min-width: 1700px) {

    .contact-menu li a {
        padding-left: 25px;
    }
}

/* ---------- Contact info ---------- */

svg.fa-phone {
    transform: scaleX(-1);
}

.contact-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-info > div {
    flex-basis: 100%;
    flex-grow: 0;
    flex-shrink: 0;
}

@media screen and (min-width: 768px) {

    .contact-info > div {
        flex-basis: calc(50% - 1rem);
    }
}

.contact-info-text h2 {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-info-text ul + h2 {
    border-top: 1px solid rgba(183, 186, 190, 0.7);
    padding-top: 1.25rem;
    margin-top: 1rem;    
}

.contact-info-text ul {
    list-style: none;
    padding: 0;
}

.contact-info-text li {
    font-family: 'Archivo', sans-serif;
    line-height: 1.5;
}

.contact-info-map {
    display: none;
}

@media screen and (min-width: 768px) {

    .contact-info-map {
        display: block;
    }
}

/* ---------- Contact persons ---------- */

.contact-persons-headline h2 {
    margin-bottom: 2.5rem;
}

@media screen and (min-width: 1200px) {

    .contact-persons-headline h2 {
        margin-bottom: 3rem;
    }
}

/* ---------- Contact person box ---------- */

.contact-person-item {
    border: 1px solid rgba(183, 186, 190, 0.69);
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    background-color: #FFFFFF;
}

.contact-person-item > div {
    flex-basis: 100%;
    flex-grow: 0;
    flex-shrink: 0;
    width: 100%;
}

@media screen and (min-width: 576px) {

    .contact-person-item > div.contact-person-image {
        flex-basis: 240px;
        width: 240px;
    }

    .contact-person-item > div.contact-person-text {
        flex-basis: calc(100% - 240px);
        width: calc(100% - 240px);
    }
}

.contact-person-image figure {
    position: relative;
    margin: 0;
    background-color: #F8F9FA;
}

/* 

.contact-person-image figure::after {
    content: '';
    display: block;
    padding-bottom: 64%;
}
*/
.contact-person-image figure img {
/*  position: absolute;
    top: 0;
    left: 0;
*/
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media screen and (min-width: 576px) {

    .contact-person-image figure {
        height: 100%;
    }
}

.contact-person-text {
    padding: 0.75rem;
}

.contact-person-text h3 {
    font-size: 1.375rem;
    margin-bottom: 0.25rem;
}

.contact-person-text p.contact-person-title {
    font-weight: 400;
}

.contact-person-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-person-text ul li {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
    line-height: 1.5;
}

.contact-person-text ul li a {
    color: #000000;
}

.contact-person-text ul li a:hover {
    color: #C0172C;
}

.contact-person-text ul li svg {
    color: #C0172C;
    margin-right: 0.25em;
}

@media screen and (min-width: 768px) {

    .contact-person-text {
        padding: 1rem;
    }
}

/* ---------- Contact persons on contact-page ---------- */

.contact-page .contact-person-item {
    flex-basis: 100%;
    flex-grow: 0;
    flex-shrink: 0;
    width: 100%;
}

@media screen and (min-width: 1200px) {

    .contact-page .contact-persons {
        margin: 0 -1rem;
    }

    .contact-page .contact-person-item {
        flex-basis: calc(50% - 2rem);
        width: calc(50% - 2rem);
        margin: 0 1rem 2rem;
    }
}

.contact-persons-link a {
    text-transform: uppercase;
    color: #000000;
    font-family: "Archivo", sans-serif;
    font-weight: 500;
}

.contact-persons-link a svg {
    margin-left: 0.25em;
}

.contact-persons-link a:hover{
    color: #C0172C;
}

@media screen and (min-width: 1700px) {

    .contact-persons-link a {
        font-size: 1.125rem;
    }    
}

/*
-----------------------------------------
CONTACT PERSONS PAGE
-----------------------------------------
*/

/* ---------- Filter menu ---------- */

/* Mobile */

.filter-header-mobile button {
    padding: 0;
    border: none;
    border-radius: 0;
    width: 100%;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    padding: 1rem;
    text-align: left;
    color: #000000;
}

.filter-header-mobile button:focus,
.filter-header-mobile button:active {
    border: none;
    outline: none;
    box-shadow: none;
}

.filter-header-mobile button svg {
    margin-right: 0.375em;
    width: 16px;
    color: #C0172C;
}

.filter-header-mobile li a {
    display: block;
    color: #000000;
    text-transform: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    padding: 0.5rem 0;
}

.filter-header-mobile li:last-child a {
    padding-bottom: 0;
}

@media screen and (min-width: 450px) {

    .filter-accordion-content ul {
        column-count: 2;
    }
}

@media screen and (min-width: 576px) {

    .filter-header-mobile button {
        font-size: 1.125rem;
    }
}

@media screen and (min-width: 768px) {

    .filter-header-mobile button {
        padding: 1rem 2rem;
    }

    .filter-accordion-content ul {
        padding: 0 2rem 2rem;
        column-count: 4;
    }
}

@media screen and (min-width: 992px) {

    .filter-header-mobile {
        display: none;
    }
}

/* Desktop */

.filter-header-desktop {
    display: none;
}

@media screen and (min-width: 992px) {

    .filter-header-desktop {
        display: flex;
        justify-content: center;
    }

    .filter-header-desktop .filter-headline {
        flex-basis: 250px;
        flex-grow: 0;
        flex-shrink: 0;
    }

    .filter-header-desktop .filter-choices {
        flex-basis: calc(100% - 300px);
    }

    .filter-header-desktop .filter-choices ul.filter-category-list {
        column-count: 3;
    }
}

@media screen and (min-width: 1400px) {

    .filter-header-desktop {
        justify-content: flex-start;
    }

    .filter-header-desktop .filter-choices ul.filter-category-list {
        column-count: 5;
    }
}

@media screen and (min-width: 1700px) {

    .filter-header-desktop .filter-headline {
        flex-basis: 376px;
    }

    .filter-header-desktop .filter-choices {
        flex-basis: calc(100% - 376px);
    }

    .filter-header ul.filter-category-list li label {
        padding-left: 32px;
    }

    .filter-header input[type=checkbox] {
        height: 22px;
        width: 22px;
    }

    .filter-header input[type=checkbox]::before {
        height: 22px;
        width: 22px;
    }
}

.filter-header ul {
    list-style: none;
    margin: 0;    
    padding: 0;
}

.filter-header li {
    margin-bottom: 0.5rem;
}

.filter-header ul.filter-category-list li label {
    display: block;
    color: #000000;
    font-weight: 400;
    position: relative;
    padding-left: 30px;
    display: inline-flex;
    align-items: center;
    margin: 0;
    text-transform: capitalize; 
}

.filter-header input[type=checkbox] {
    -webkit-appearance: none;
    appearance: none;
    background-color: #FFFFFF;
    margin: 0;
    font: inherit;
    width: 20px;
    height: 20px;
    border: 1px solid #C9CBCE;
    border-radius: 0;
    padding: 0 !important;
    position: absolute;
    top: 0;
    left: 0;
}

.filter-header input[type=checkbox]::before {
    content: "";
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: inset 1em 1em #000000;
    transform: scale(0);
    transform-origin: center;
    clip-path: polygon(37% 65%, 85% 12%, 95% 21%, 38% 81%, 0 48%, 8% 39%);
}

.filter-header input[type="checkbox"]:checked::before {
    transform: scale(0.7);
}

.filter-header ul.filter-letter-list {
    display: block;
    color: #000000;
    font-weight: 400;
    display: flex;
    flex-wrap: wrap;
}

.filter-header hr {
    border-top: 1px solid rgba(183, 186, 190, 0.69);
    margin: 1.25rem 0 1.5rem;
}

.filter-header label {
    cursor:pointer;
}

.filter-search input {
    border-radius: 0;
    border: 1px solid #c9cbce;
    padding: 1.5rem 1rem;
    width: 100%;
    max-width: 500px;
    color: #000000;
}

.filter-search input:hover,
.filter-search input:focus {
    border: 1px solid #c9cbce;
    outline: none;
    box-shadow: none;
}

@media screen and (min-width: 992px) {

    .filter-menu-mobile {
        display: none;
    }
}

@media screen and (min-width: 1700px) {

    .filter-search input {
        font-size: 1.125rem;
    }

    .filter-header input[type=checkbox] {
        height: 22px;
        width: 22px;
    }

    .filter-header input[type=checkbox]::before {
        height: 22px;
        width: 22px;
    }
}

/* 
-----------------------------------------
HOAB GRUPPEN
-----------------------------------------
*/

.hoab-page {
    min-height: 100vh;
    position: relative;
}

.hoab-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.hoab-bg-desktop {
    display: none;
    background-attachment: fixed;
}    

@media screen and (min-width: 768px) {

    .hoab-bg-mobile {
        display: none;
    }    

    .hoab-bg-desktop {
        display: block;
    }    
}

.hoab-page-content {
    position: relative;
    height: 100%;
    width: 100%;
    min-height: 100vh;
    background-image: linear-gradient(124deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hoab-navbar-brand img {
    width: 120px;
    height: auto;
}

@media screen and (min-width: 768px) {

    .hoab-navbar-brand img {
        width: 114px;
        height: auto;
    }
}

@media screen and (min-width: 1200px) {

    .hoab-navbar-brand img {
        width: 134px;
        height: auto;
    }
}

@media screen and (min-width: 1400px) {

    .hoab-navbar-brand img {
        width: 144px;
        height: auto;
    }
}

.hoab-page .intro-caption-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.hoab-page .intro-caption {
    border-left: 2px solid #C0172C;
    padding-left: 1.5rem;
}

.hoab-page .intro-caption h1 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.hoab-page .intro-caption p {
    font-size: 1.125rem;
}

.hoab-page .intro-caption a.btn {
    min-width: 160px;
}

@media screen and (min-width: 768px) {

    .hoab-page .intro-caption-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .hoab-page .intro-caption {
        border-left: 3px solid #C0172C;
        width: 75%;
    }
}

@media screen and (min-width: 1200px) {

    .hoab-page .intro-caption-section {
        padding-left: calc(50% - 500px);
    }

    .hoab-page .intro-caption {
        width: 60%;
    }

    .hoab-page .intro-caption h1 {
        font-size: 2.5rem;
    }

    .hoab-page .intro-caption p {
        font-size: 1.25rem;
    }

    .hoab-page .intro-caption a.btn {
        min-width: 200px;
        margin-top: 0.5rem;
    }
}

@media screen and (min-width: 1400px) {


    .hoab-page .intro-caption h1 {
        font-size: 2.75rem;
    }

    .hoab-page .intro-caption p {
        font-size: 1.375rem;
    }
}

@media screen and (min-width: 1700px) {

    .hoab-page .intro-caption-section {
        padding-left: calc(50% - 736px);
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .hoab-page .intro-caption {
        width: 50%;
        padding-left: 2rem;
    }

    .hoab-page .intro-caption h1 {
        font-size: 3.875rem;
    }

    .hoab-page .intro-caption p {
        font-size: 1.75rem;
    }

    .hoab-page .intro-caption a.btn {
        min-width: 230px;
    }
}

.company-boxes > a {
    flex-basis: 100%;
    flex-grow: 0;
    flex-shrink: 0;
    display: block;
}

@media screen and (min-width: 768px) {
    
    .company-boxes > a {
        flex-basis: calc(33.33% - 0.75rem);
    }    
}

.company-box {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 2rem 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.company-box:last-child {
    margin-bottom: 0;
}

.company-box:hover {
    background-color: rgba(255, 255, 255, 1);
}

@media screen and (min-width: 768px) {

    .company-box {
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1400px) {

    .company-box {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media screen and (min-width: 1700px) {

    .company-box {
        padding: 2rem;
    }
}

.company-box figure {
    margin-bottom: 1.5rem;
}

.company-box figure img {
    height: 54px;
    width: auto
}

.company-box p.company-box-link {
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    position: absolute;
    text-align: center;
    bottom: 1.5rem;
    left: 0;
    right: 0;
}

.company-box:hover p.company-box-link {
    color: #C0172C;
}

.company-box p.company-box-link svg {
    margin-right: 0.25em;
}

@media screen and (min-width: 1400px) {

    .company-box figure img {
        height: 64px;
    }
}

@media screen and (min-width: 1700px) {

    .company-box figure {
        margin-bottom: 1.75rem;
    }

    .company-box p.company-box-link {
        bottom: 2.25rem;
    }
}