@charset 'UTF-8';

/* start 0 lijn */
html,
body,
header,
footer,
section,
div,
table,
tr,
td,
th,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
ol,
p,
span,
a,
img,
label,
fieldset {
	margin: 0;
	padding: 0;
	border: none;
	box-sizing: border-box;
	font-weight: 500;
	letter-spacing: 0;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
/* einde 0 lijn */

/* start algemeen */
html {
	background-color: #f4f4f4;
	height: 100%;
}

body {
	position: relative;
	min-height: 100%;
	text-align: center;
}

body,
input,
textarea {
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #666666;
}

input,
textarea {
	font-size: 16px;
}

.outerContainer {
	position: relative;
	min-height: 100vh;
	width: 100%;
	max-width: 1440px;
	text-align: left;
	margin: 0 auto;
	background-color: #fff;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1), 0px 0px 12px rgba(0, 0, 0, 0.1);
	padding-top: 1px;
	padding-bottom: 300px;
	overflow: auto;
}

.container {
	width: 100%;
	max-width: 1440px;
	padding: 0 30px;
	margin: 0 auto;
}

h1,
h2,
h3,
h4,
p,
li {
	max-width: 780px;
	margin: 0 auto;
}

h1 {
	color: #002940;
	font-weight: 500;
	font-size: 40px;
	line-height: 1.5;
	margin: 0 auto 45px;
}

h2 {
	color: #002940;
	font-size: 30px;
	line-height: 1.5;
	font-weight: 500;
	margin: 20px auto;
}

h3 {
	font-size: 20px;
	color: #000;
	margin: 25px auto;
	font-weight: 500;
	line-height: 1.5;
}

h4 {
	display: block;
	color: #002940;
	font-size: 20px;
	line-height: 1.5;
	font-weight: 500;
	margin: 20px auto;
	font-style: normal;
}

p {
	line-height: normal;
}

sup {
	font-size: 10px;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: #007ec3;
	text-decoration: none;
	transition: all 0.25s ease-in-out 0s;
}

a:hover {
	color: #011736;
	text-decoration: none;
}

a.button,
.btn:not(.secondary-button),
button:not(.close):not(.gm-ui-hover-effect):not(.mceButton):not(.hamburger):not(.joomla-alert--close),
.content .formResponsive input[type="submit"],
.content .formResponsive button[type="submit"],
a.arrowButton {
	display: inline-block;
	position: relative;
	border: none;
	border-radius: 0;
	cursor: pointer;
	font-size: 14px;
	text-align: left;
	line-height: 20px;
	padding: 10px 25px 10px 10px;
	min-height: 30px;
	text-decoration: none;
	color: #fff;
	background-color: #0079c2;
	background-image: none;
	-webkit-transition: all 0.25s ease-in-out 0s;
	transition: all 0.25s ease-in-out 0s;
	font-weight: 700;
	width: 240px;
	max-width: 100%;
	margin-bottom: 20px;
	margin-right: 20px;
	background-image: url(../images/triangle-arrow.png);
	background-repeat: no-repeat;
	background-size: 6px 8px;
	background-position: right 8px center;
}

a.button:hover,
.btn:not(.secondary-button):hover,
button:not(.close):not(.gm-ui-hover-effect):not(.mceButton):not(.hamburger):not(.joomla-alert--close):hover,
.content .formResponsive input[type="submit"]:hover,
.content .formResponsive button[type="submit"]:hover,
a.arrowButton:hover {
	background-color: #002940;
	animation-name: arrowBounce;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
}

@keyframes arrowBounce {
	0% {
		background-position: right 8px center;
	}
	50% {
		background-position: right 15px center;
	}
	100% {
		background-color: right 8px center;
	}
}

a.arrowButtonBefore {
	display: inline-block;
	padding-left: 36px;
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20viewBox%3D%220%200%2020.96%2020%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%0A%3Cpath%20transform%3D%22translate%28-.65%29%22%20d%3D%22M11.11%2C0A10.33%2C10.33%2C0%2C0%2C0%2C.68%2C8.89H13.4L10.1%2C5.61a.94.94%2C0%2C1%2C1%2C1.32-1.34l4.92%2C4.89h0a.94.94%2C0%2C0%2C1%2C0%2C1.33l-4.92%2C4.89a.94.94%2C0%2C1%2C1-1.32-1.34l3.3-3.28H.65A10.31%2C10.31%2C0%2C0%2C0%2C11.11%2C20a10.26%2C10.26%2C0%2C0%2C0%2C10.5-10A10.26%2C10.26%2C0%2C0%2C0%2C11.11%2C0Z%22%20fill%3D%22%230079c2%22/%3E%0A%3C/svg%3E%0A");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 22px 22px;
	line-height: 24px;
	margin-bottom: 15px;
}

a.phoneButtonBefore {
	display: inline-block;
	padding-left: 36px;
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20viewBox%3D%220%200%2021%2020%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%0A%3Cpath%20d%3D%22M10.5%2C0A10.26%2C10.26%2C0%2C0%2C0%2C0%2C10%2C10.26%2C10.26%2C0%2C0%2C0%2C10.5%2C20%2C10.26%2C10.26%2C0%2C0%2C0%2C21%2C10%2C10.26%2C10.26%2C0%2C0%2C0%2C10.5%2C0Zm6.19%2C14.44-1.14%2C1.14c-1.2%2C1.2-4.38-.12-7.2-2.93s-4.07-6-2.93-7.2L6.56%2C4.32a1.19%2C1.19%2C0%2C0%2C1%2C1.61%2C0L9.85%2C6a1.07%2C1.07%2C0%2C0%2C1%2C.28.45%2C1.11%2C1.11%2C0%2C0%2C1-.7%2C1.41%2C1.1%2C1.1%2C0%2C0%2C0-.72%2C1.32%2C5.23%2C5.23%2C0%2C0%2C0%2C3.12%2C3.12%2C1.15%2C1.15%2C0%2C0%2C0%2C1.32-.72%2C1.18%2C1.18%2C0%2C0%2C1%2C.28-.45%2C1.11%2C1.11%2C0%2C0%2C1%2C1.58%2C0l1.67%2C1.68A1.2%2C1.2%2C0%2C0%2C1%2C16.69%2C14.44Z%22%20fill%3D%22%230079c2%22/%3E%0A%3C/svg%3E%0A");
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 22px 22px;
	line-height: 24px;
	margin-bottom: 15px;
}

a.arrowButtonBefore:hover {
	color: #002940;
	background-position: 7px center;
}

a.phoneButtonBefore:hover {
	color: #002940;
	background-position: 7px top;
}

a:focus,
button:focus,
input:focus,
textarea:focus {
	outline-color: transparent !important;
}

input[type="text"],
input[type="search"],
input[type="password"],
input[type="email"],
input[type="tel"],
textarea {
	box-sizing: border-box;
	color: #666;
	background: #fafdff;
	border: none;
	border: 1px solid #007ec3;
	border-radius: 0;
	height: 30px;
	line-height: 20px;
	padding: 5px 8px;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 100%;
	max-width: 780px;
	outline: none;
}

textarea {
	border: 1px solid #c51634;
	min-height: 125px;
	max-width: 780px;
	line-height: normal;
	padding: 5px 8px;
}

strong {
	font-weight: 700;
}

.formRed {
	color: #b94a48;
	margin-bottom: 20px;
}

.formResponsive .formError {
	color: #b94a48;
	font-size: 18px;
	font-weight: 400;
	height: auto;
}

.sliderContent {
	display: none;
}

.clearfix {
	clear: both;
}

.iframeWrapper {
	position: relative;
	margin: 10px 0 50px;
	padding-bottom: 75%;
	padding-top: 5px;
	height: 0;
}

.videoWrapper {
	position: relative;
	margin: 10px 0 50px;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 5px;
	height: 0;
}

.iframeWrapper iframe,
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	border: none;
}

.jmoddiv.jmodinside {
	top: auto !important;
	left: auto !important;
}

.visually-hidden,
.input-password-toggle {
	display: none !important;
}

/* einde algemeen */

/* Main Classes */
.newline {
	clear: left;
}

.clear {
	clear: both;
}

.popover,
.tooltip,
.jmodedit,
.item-page > .icons {
	display: none !important;
}

#system-message .alert,
.fieldError,
.alertBoxInfo {
	padding: 10px 20px;
	background: #f9f9f9;
	border: 1px solid #ddd;
	margin-bottom: 20px;
}

#system-message .close {
	float: right;
	cursor: pointer;
}

#system-message .alert-heading {
	display: none;
}

.no-display,
span.optional {
	display: none !important;
}

/* End main classes */

/* HEADER */

header {
	position: relative;
	background: transparent;
	width: 100%;
	height: 101px;
	z-index: 3;
	transition: all 0.5s ease-in-out;
}

header .container {
	position: relative;
	max-width: 1440px;
	padding-top: 1px;
}

/* LOGO */

#main-logo {
	margin-top: 20px;
	display: inline-block;
	width: 300px;
	height: 66px;
}

#main-logo a {
	opacity: 1;
	transition: all 0.5s ease-in-out;
	display: block;
	width: 100%;
	height: 100%;
}

#main-logo a:hover {
	opacity: 0.5;
}

#main-logo a i {
	display: block;
	width: 100%;
	height: 100%;
}

/* TOP MENU */

#top-menu {
	position: absolute;
	right: 0;
	top: 0;
	margin-top: -1px;
}

#top-menu .moduletable {
	display: inline-block;
}

#top-menu li {
	list-style: none;
	display: inline-block;
	margin-left: 2px;
}

#top-menu .socials {
	font-size: 12px;
	line-height: 20px;
	color: #0079c2;
	margin-right: 20px;
}

#top-menu .socials a {
	margin-left: 12px;
}

#top-menu .socials svg {
	width: 20px;
	height: 20px;
	vertical-align: middle;
}

#top-menu .socials svg path {
	fill: #0079c2;
	transition: all 0.3s ease-in-out;
}

#top-menu .socials a:hover svg path {
	fill: #002940;
}

#top-menu .top-menu a,
#mobile-menu .mm-top a {
	display: block;
	font-size: 14px;
	line-height: 20px;
	font-weight: 700;
	color: #fff;
	background-color: #0079c2;
	padding: 10px;
	padding-left: 45px;
	text-align: left;
	background-repeat: no-repeat;
	background-size: 17px;
	width: 160px;
}

#top-menu li:first-of-type a {
	border-bottom-left-radius: 20px;
}

#top-menu a:hover {
	background-color: #002940;
}

#top-menu .socials a:hover {
	background-color: transparent;
}

a.members-area,
#top-menu .top-menu a.members-area,
#mobile-menu .mm-top a.members-area {
	width: 220px;
	background-image: url(../images/ico-person.svg);
	background-position: top 11px left 36px;
	padding-left: 22px;
	text-align: center;
}

#mobile-menu .mm-top a.members-area {
	background-position: top 11px left 23px;
	padding-left: 22px;
}

a.profile {
	background-image: url(../images/ico-person.svg);
	background-size: 14px;
	background-position: top 11px left 15px;
}

a.log-out,
#top-menu .top-menu a.log-out {
	background-image: url(../images/ico-exit.svg);
	background-position: top 10px right 15px;
	padding-left: 20px;
}

a.log-out:hover {
	background-color: #0c4038;
}

a.meetings {
	background-image: url(../images/ico-meetings.svg);
	background-position: top 10px left 15px;
}

/* MAIN MENU */

#main-menu {
	float: right;
	margin-top: 50px;
}

#main-menu li {
	list-style: none;
}

/* LEVEL 1 */

#main-menu ul.mod-menu > li {
	display: inline-block;
	position: relative;
}

#main-menu ul.mod-menu > li > a,
#main-menu ul.mod-menu > li > span {
	display: block;
	position: relative;
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	color: #002940;
	padding: 15px 10px;
	transition: all 0.3s ease-in-out;
}

#main-menu ul.mod-menu > li > a:hover,
#main-menu ul.mod-menu > li > span:hover,
#main-menu ul.mod-menu > li.active > a,
#main-menu ul.mod-menu > li.active > span {
	color: #0079c2;
}

#main-menu ul.mod-menu > li > a::before,
#main-menu ul.mod-menu > li > span::before {
	content: "";
	position: absolute;
	top: 10px;
	bottom: 10px;
	left: 0px;
	height: auto;
	width: 1px;
	background-color: rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease-in-out;
}

#main-menu ul.mod-menu > li.active:hover > a::before,
#main-menu ul.mod-menu > li.active > a::before,
#main-menu ul.mod-menu > li.active > span::before,
#main-menu ul.mod-menu > li.active:hover > span::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: -2px;
	height: auto;
	width: 5px;
	background-color: #0079c2;
}

#main-menu ul.mod-menu > li:hover > a::before,
#main-menu ul.mod-menu > li:hover > span::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: -1px;
	height: auto;
	width: 3px;
	background-color: #0079c2;
}

/* LEVEL 2 */

#main-menu ul.mod-menu > li > ul {
	display: none;
	position: absolute;
	top: 100%;
	left: -1px;
	width: 240px;
	border-top: 5px solid transparent;
	padding: 10px 0;
	background-color: #fff;
}

#main-menu ul.mod-menu > li.active > ul {
	left: -2px;
}

#main-menu ul.mod-menu > li:hover > ul {
	display: block;
}

#main-menu ul.mod-menu > li > ul > li > a {
	display: block;
	position: relative;
	font-size: 14px;
	line-height: 18px;
	font-weight: 400;
	color: #002940;
	padding: 5px 10px;
	text-align: left;
}

#main-menu ul.mod-menu > li > ul > li > a:hover,
#main-menu ul.mod-menu > li > ul > li.active > a {
	color: #fff;
	background-color: #007ec3;
}

/* MOBILE */

#mobile-menu-button,
#mobile-menu {
	display: none;
}

#mobile-menu-button {
	z-index: 4;
}

#mobile-menu-background {
	z-index: -1;
	opacity: 0;
	background-color: rgba(0, 0, 0, 0.7);
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	transition: opacity 0.5s ease-in-out;
}

body.mm-open #mobile-menu-background {
	z-index: 8;
	opacity: 1;
}

#mobile-menu {
	position: fixed;
	box-sizing: border-box;
	top: 0;
	bottom: 0;
	left: -375px;
	right: auto;
	width: 100%;
	max-width: 375px;
	clear: both;
	padding: 20px;
	overflow-y: auto;
	background-color: #fff;
	margin: 0;
	z-index: 9;
	transition: all 0.5s ease-in-out;
}

body.mm-open #mobile-menu {
	left: 0;
}

#main-logo-menu {
	width: 250px;
	margin-bottom: 10px;
	height: auto;
}

#mobile-menu a#menu-close {
	display: block;
	position: absolute;
	top: 18px;
	right: 20px;
	width: 20px;
	height: 20px;
	background-image: url(../images/menu-close.png);
	background-position: center center;
	background-size: 15px 15px;
	background-repeat: no-repeat;
	cursor: pointer;
}

.desktop #mobile-menu a#menu-close:hover {
	transform: scale(1);
	animation: pulse 1s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.4);
	}

	100% {
		transform: scale(1);
	}
}

#mobile-menu ul {
	list-style: none;
	margin: 0;
}

#mobile-menu li {
	display: block;
	margin-bottom: 10px;
}

#mobile-menu li a,
#mobile-menu li span {
	display: inline-block;
	font-size: 14px;
	position: relative;
	padding: 2px 1px 6px;
	margin-bottom: 0;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 1.2;
	color: #002940;
}

#mobile-menu .mm-main ul.mod-menu > li.active > a::before,
#mobile-menu .mm-main ul.mod-menu > li.active > span::before,
#mobile-menu .mm-main ul.mod-menu > li.opened > a::before,
#mobile-menu .mm-main ul.mod-menu > li.opened > span::before {
	content: "";
	position: absolute;
	bottom: 0px;
	left: 0;
	height: 3px;
	border-radius: 1px;
	width: 100%;
	background-color: #0079c2;
}

#mobile-menu .mm-top {
	margin-bottom: 25px;
	height: auto;
}

#mobile-menu .mm-top a {
	margin-left: -20px;
	border-top-right-radius: 7px;
	border-bottom-right-radius: 7px;
	margin-bottom: 10px;
	width: 220px;
}

#mobile-menu .mm-main ul.mod-menu li.parent > a::after,
#mobile-menu .mm-main ul.mod-menu li.parent > span::after {
	content: "";
	margin-bottom: -1px;
	margin-left: 8px;
	display: inline-block;
	height: 14px;
	width: 14px;
	background-image: url(../images/arrow-down.png);
	background-size: 100%;
	transition: all 0.5s ease-in-out;
}

#mobile-menu .mm-main ul.mod-menu li.opened > a::after,
#mobile-menu .mm-main ul.mod-menu li.parent.opened > span::after {
	-webkit-transform: scaleY(-1);
	transform: scaleY(-1);
}

#mobile-menu ul.mod-menu ul {
	display: none;
	padding: 10px 0;
}

#mobile-menu ul.mod-menu ul li {
	margin-bottom: 1px;
}

#mobile-menu ul.mod-menu li.active ul {
	display: block;
}

#mobile-menu ul.mod-menu ul a {
	display: block;
	padding: 7px 20px;
	color: #002940;
	text-transform: none;
}

#mobile-menu ul.mod-menu ul li.active a,
.desktop #mobile-menu ul.mod-menu ul li a:hover {
	color: #fff;
	background: #137dc2;
}

/* @jace mini-site Project START*/
/* layout */
.split-columns {
	display: flex;
	gap: 3rem;
	flex-wrap: wrap;
}
.grow-sibling + * {
	flex: 1;
}
/* nav */
@media (max-width: 980px) {
	.project-nav {
		width: 100%;
	}
}
.project-nav ul {
	margin: 0 !important;
	list-style: none !important;
}
.project-nav li {
	display: block;
	max-width: unset !important;
	margin: 0 !important;
	padding: 2px 0 !important;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.project-nav li:last-child {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.project-nav li::before {
	content: unset !important;
}
.project-nav a {
	display: block;
	width: 100%;
	padding: 1ch;
}
.project-nav a:is(:hover, :focus-visible),
.project-nav li.current a {
	color: white !important;
	background-color: #007ec3 !important;
}
/* overview */
.project-overview ul {
	margin: 0 !important;
}
.project-overview li {
	margin: 0 !important;
	padding: 0 !important;
}
.project-overview li::before {
	content: unset !important;
}
.project-overview li + li {
	margin-top: 2.5rem !important;
}
.project-item {
	display: block;
	position: relative;
	isolation: isolate;
	padding: 1.125rem;
	color: inherit !important;
	border-bottom: 2px solid #007ec3;
}
@media (min-width: 600px) {
	.project-item {
		display: grid;
		gap: 0 1.5rem;
		grid-template-columns: auto 1fr;
		grid-template-rows: auto 1fr;
	}
}
.project-item::after {
	content: ">";
	position: absolute;
	right: 0;
	bottom: 0;
	display: grid;
	place-content: center;
	width: 2em;
	padding-block: 0.25em 0;
	padding-inline: 0.75em 0;
	border-radius: 100% 0 0 0;
	aspect-ratio: 1;
	color: white;
	font-weight: 700;
	filter: brightness(120%);
	background: #007ec3;
}
.project-item:hover {
	--_veil: lightcyan;
	color: inherit;
	background-color: #f4f4f4;
}
.project-item picture {
	position: relative;
	isolation: isolate;
	grid-row: span 2;
	display: block;
	width: 130px;
	aspect-ratio: 10 / 8;
	border: 1px solid rgba(0, 0, 0, 0.1);
}
.project-item picture::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 0.2;
	background-color: var(--_veil, transparent);
}
.project-item picture img {
	display: block;
	width: 100%;
	max-width: 200px;
	height: 100%;
	object-fit: contain;
	object-position: center left;
}
.project-intro > :first-child {
	/* header */
	color: #0079c2 !important;
	font-size: 1.5rem !important;
	margin-bottom: 0.5rem !important;
	margin-top: 0 !important;
}
/* item-page */
.grow-sibling + div > :first-child {
	margin-top: 0 !important;
}
/* editor classes */
.image-grid {
	margin: 0 !important;
	padding: 0 !important;
	display: flex;
	flex-wrap: wrap;
	/* justify-content: space-between; */
	gap: 1.5rem;
}
.image-grid li {
	display: block !important;
	padding: 0 !important;
	margin: 0 !important;
	/* flex: 1; */
	width: 100%;
	max-width: 250px;
	aspect-ratio: 1;
	border: 2px solid rgba(0, 0, 0, 0.1);
}
.image-grid li::before {
	content: unset !important;
}
.image-grid img {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain;
	object-position: center;
}
/* @jace mini-site Project END */

.mm-socials {
	color: #0079c2;
	margin-top: 20px;
}

.mm-socials span {
	display: block;
	width: 100%;
	margin-bottom: 10px;
}

.mm-socials i svg {
	width: 40px;
	height: 40px;
	margin-right: 10px;
	border-radius: 3px;
}

/* BANNER */

#banner .se-banner {
	position: relative;
	margin-top: 0px;
	width: 100%;
	height: 480px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: left;
	background-color: #f2f2f2;
}

#banner .se-banner.small {
	height: 160px;
}
#banner .se-banner.medium {
	height: 260px;
}
#banner .se-banner.xl {
	height: 580px;
}

#banner .se-banner .banner-image {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 45%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	overflow: hidden;
}

#banner .se-banner .banner-image .banner-image-mask {
	position: absolute;
	left: -440px;
	top: 50px;
	bottom: 0;
	width: 600px;
	height: 400px;
	transform: rotate(75deg);
	background-color: #f2f2f2;
}

#banner .se-banner.xl .banner-image .banner-image-mask {
	position: absolute;
	left: -455px;
	top: 180px;
	bottom: 0;
	width: 700px;
	height: 400px;
	transform: rotate(75deg);
	background-color: #f2f2f2;
}

#banner .se-banner .banner-content {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	max-width: 940px;
	padding-right: 28%;
	display: flex;
	justify-content: center;
	/* //align-items: center; */
	flex-direction: column;
	text-align: left;
}

#banner h1 {
	color: #002940;
	font-weight: 800;
	font-size: 30px;
	line-height: 1.5;
	margin: 0 0 10px;
}

#banner h1 strong {
	font-weight: 800;
}

#banner .se-banner.small h1 {
	margin: 0;
}

#banner h2 {
	color: #002940;
	font-weight: 500;
	font-size: 25px;
	line-height: 1.5;
	margin: 0 0 15px;
}

#banner p {
	font-size: 16px;
	color: #666666;
	line-height: 1.6;
	max-width: 100%;
}

#banner a.button {
	position: absolute;
	right: 2.5%;
	bottom: 20px;
	width: 68%;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 300;
	padding: 25px;
	margin: 0;
	background-color: #01befe;
	background-image: none;
	border-radius: 10px;
	text-align: center;
	letter-spacing: 0.5px;
	box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.7);
	z-index: 5;
}

#banner a.button:hover {
	background-color: #0079c2;
}

/* SIDE MENU */

.sideMenu {
	width: 28%;
	float: left;
	margin-right: 4%;
	padding-top: 30px;
}

.content .sideMenu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sideMenu ul li::before {
	display: none;
}

.content .sideMenu ul li {
	list-style: none;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #dedada;
}

.sideMenu ul li:last-of-type {
	border-bottom: none;
}

.content .sideMenu ul li a {
	display: block;
	padding: 10px;
}

.content .sideMenu ul li.active a {
	color: #011736;
}

.menuContent {
	width: 68%;
	float: left;
}

/* HIGHLIGHTS */

#highlights {
	position: relative;
	width: 100%;
	padding: 50px 0 0;
	background-color: #fff;
}

#highlights .highlight-list {
	display: flex;
}

#highlights .highlight {
	position: relative;
	width: 33.33%;
	float: left;
	margin: 0;
	padding-bottom: 40px;
}

#highlights .highlight::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.1);
}

#highlights .highlight:first-of-type::after {
	display: none;
}

#highlights .highlight a {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
}

#highlights .highlight h3 {
	margin: 0 0 5px;
	color: #002940;
	font-weight: 800;
	font-size: 18px;
	padding: 0 20px;
	transition: all 0.5s ease-in-out;
}

#highlights .highlight:hover h3 {
	color: #0079c2;
}

#highlights .highlight .highlight-date {
	font-size: 16px;
	padding-left: 20px;
	color: #666666;
	margin-bottom: 10px;
}

#highlights .highlight .highlight-image {
	overflow: hidden;
	background-color: #000;
	margin-bottom: 20px;
}

#highlights .highlight .highlight-image img {
	opacity: 1;
	transition: all 0.5s ease-in-out;
	display: block;
}

#highlights .highlight:hover .highlight-image img {
	opacity: 0.5;
}

#highlights .highlight h4 {
	margin: 0 0 5px;
	font-weight: 500;
	font-style: normal;
	font-size: 16px;
	color: #666666;
	padding: 0 20px;
}

#highlights .highlight .highlight-readmore {
	position: absolute;
	bottom: 2px;
	right: 20px;
	font-size: 14px;
	line-height: 20px;
	color: #0079c2;
	padding-right: 30px;
}

#highlights .highlight .highlight-readmore svg {
	position: absolute;
	right: 0;
	top: 0;
	height: 20px;
	width: 20px;
	transition: all 0.5s ease-in-out;
}

#highlights .highlight:hover .highlight-readmore svg {
	right: -10px;
}

/* CONTENT */

.content {
	padding: 50px 0;
}

.content .container {
	max-width: 1000px;
	padding: 0 30px;
}

.content .container.wide-container {
	max-width: 1260px;
	padding: 0 30px;
}

.content p {
	line-height: 1.65;
	margin-bottom: 20px;
}

.content p.intro {
	font-style: italic;
	margin: 50px 0 100px;
}

.content ul,
.content ol {
	margin: 25px 5px;
}

.content ul li {
	list-style: none;
	position: relative;
	margin-bottom: 12px;
	padding-left: 30px;
}

.content ol li {
	list-style: outside;
	list-style-type: decimal;
	position: relative;
	margin-bottom: 12px;
	margin-left: 15px;
	padding-left: 15px;
}

.content ul li::before {
	content: "";
	position: absolute;
	left: 5px;
	top: 7px;
	height: 10px;
	width: 10px;
	border-radius: 50%;
	background-color: #007ec3;
}

.content ul.no-dots li::before {
	display: none;
}

div.leftStripe,
div.rightStripe {
	position: relative;
	max-width: 940px;
	margin: 100px auto;
}

div.leftStripe {
	padding-left: 50px;
}

div.rightStripe {
	padding-right: 50px;
}

div.leftStripe h2,
div.rightStripe h2 {
	margin-top: 0;
}

div.leftStripe img,
div.rightStripe img {
	margin-top: 10px;
}

div.leftStripe p:last-of-type,
div.rightStripe p:last-of-type {
	margin-bottom: 0px;
}

div.leftStripe:first-of-type {
	margin-top: 50px;
}

div.rightStripe:last-of-type {
	margin-bottom: 50px;
}

div.leftStripe::before,
div.rightStripe::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	background-color: #0079c2;
}

div.rightStripe::before {
	left: auto;
	right: 0;
}

table.fifty50 {
	width: 100%;
}

table.fifty50 td {
	width: 50%;
	vertical-align: top;
}

table.fifty50 td:first-of-type {
	padding-right: 2%;
}

table.fifty50 td:last-of-type {
	padding-left: 2%;
}

table.fullWidth {
	width: 100%;
	margin: 40px 0;
}

table.fullWidth h3 {
	margin-bottom: 10px;
	color: #000;
	font-weight: 700;
}

/* STATS */

table.stats td {
	//vertical-align: top;
}

table.stats td:first-of-type {
	width: 320px;
}

table.stats td:last-of-type {
	padding-left: 50px;
}

.stat1,
.stat2,
.stat3,
.stat4,
.stat5,
.stat6 {
	position: relative;
	padding-left: 30px;
	line-height: 1.2 !important;
}

.stat1::before,
.stat2::before,
.stat3::before,
.stat4::before,
.stat5::before,
.stat6::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 3px;
	width: 20px;
	height: 20px;
	background-color: #56c1fe;
}

.stat2::before {
	background-color: #1ca1fe;
}

.stat3::before {
	background-color: #1175b9;
}

.stat4::before {
	background-color: #084c7f;
}

.stat5::before {
	background-color: #043462;
}

.stat6::before {
	background-color: #011736;
}

/* SVG MEMBER MAP */

#country-list {
	display: none;
}

#country-active-content {
	float: right;
	margin: 0 0 30px;
	max-width: 300px;
}

#country-active-content .country-flag img {
	display: block;
	height: 60px;
	width: auto;
	margin-bottom: 20px;
	border: 1px solid #ddd;
}

#country-active-content .country-members td:first-of-type {
	display: none;
}

#country-active-content .country-members td {
	display: block;
	position: relative;
	font-size: 15px;
	line-height: 1.5;
	float: left;
	padding: 10px;
	background-color: #e6e6e6;
	width: 300px;
	min-height: 200px;
	max-width: 100%;
	margin-right: 20px;
	padding-bottom: 40px;
	margin-bottom: 10px;
}

#country-active-content .country-members td strong {
	font-size: 17px;
	display: inline-block;
	margin-bottom: 10px;
}

#country-active-content .country-members a {
	position: absolute;
	bottom: 10px;
	left: 10px;
	max-width: 280px;
}

#country-active-content .country-members td:last-of-type {
	margin-right: 0;
}

#svgmap {
	border: 1px solid #ccc;
	max-width: 610px;
}

#svgmap .country {
	cursor: pointer;
}

#svgmap .country:not(.inactive):hover {
	fill: #002940 !important;
}

#svgmap .country.active,
#svgmap .country.active:hover {
	fill: #2ab580 !important;
}

/* PROJECTS */

.project {
	position: relative;
	width: 100%;
	padding: 30px 20px;
	border: 1px solid #ccc;
	padding-left: 240px;
	margin-bottom: 30px;
}

.project .project-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	position: absolute;
	left: 20px;
	top: 5px;
	bottom: 5px;
}

.project .project-image img {
	max-height: 100%;
	max-width: 100%;
	width: auto;
	height: auto;
}

.project .project-content {
	border-left: 5px solid #0079c2;
	padding-left: 15px;
	font-size: 16px;
}

.project .project-content h3 {
	margin: 0 0 15px;
	font-weight: 700;
}

.project a.visit-website {
	display: block;
	height: 30px;
	line-height: 30px;
	padding-right: 40px;
	position: absolute;
	bottom: -1px;
	right: -1px;
	font-size: 16px;
}

.project a.visit-website span {
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 0px;
	height: 0px;
	border-bottom: 30px solid;
	border-left: 30px solid transparent;
	color: #007ec3;
	transition: color 0.25s ease-in-out;
}

.project a.visit-website:hover span {
	color: #011736;
}

.project a.visit-website span::after {
	content: "";
	display: block;
	position: absolute;
	top: 17px;
	right: 5px;
	width: 6px;
	height: 8px;
	background-image: url(../images/triangle-arrow.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center center;
}


/* TABLE PROJECTS */

table.projectBlocks,table.projectBlocks tbody {
	display:block;
	width:100%;
}

table.projectBlocks tbody {
	display:flex;
	width:100%;
	flex-direction: column;
	gap:20px;
}

table.projectBlocks tr {
	display:flex;
	flex-wrap: nowrap;
	border:1px solid #ccc;
	gap:20px;
}

table.projectBlocks tr td:first-of-type {
	width:150px;
	position:relative;
}

table.projectBlocks tr td:first-of-type img {
	display:block;
	width:150px;
	height:150px;
	object-fit: contain;
	margin:auto;
}

table.projectBlocks tr td:last-of-type {
	width:calc(100% - 150px);
	position:relative;
	padding:20px 15px 35px;
}

table.projectBlocks tr td:last-of-type a:last-of-type {
	display: block;
	height: 30px;
	line-height: 30px;
	padding-right: 40px;
	position: absolute;
	bottom: -1px;
	right: -1px;
	font-size: 16px;
}

table.projectBlocks tr td:last-of-type a:last-of-type::before {
	content:"";
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 0px;
	height: 0px;
	border-bottom: 30px solid;
	border-left: 30px solid transparent;
	color: #007ec3;
	transition: color 0.25s ease-in-out;
	z-index:2;
}

table.projectBlocks tr td:last-of-type a:last-of-type:hover::before {
	color: #011736;
}

table.projectBlocks tr td:last-of-type a:last-of-type::after {
	content: "";
	display: block;
	position: absolute;
	top: 17px;
	right: 5px;
	width: 6px;
	height: 8px;
	background-image: url(../images/triangle-arrow.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center center;
	z-index:3;
}

table.projectBlocks tr td:last-of-type h3 {
	margin:0 0 20px;
	border-left: 5px solid #0079c2;
    padding-left: 15px;
    font-size: 20px;
    color: #000;
    font-weight: 700;
    line-height: 1.5;
}



/* PERSONS */

table.person {
	width:100%;
}

table.person tr {
	width: 100%;
	display: block;
	overflow: auto;
	display: flex;
	flex-flow: row wrap;
}

table.person td {
	width: 20%;
	display: block;
	float: left;
	border-collapse: collapse;
	margin: 0 0 50px;
	border-right: 1px solid rgba(0, 0, 0, 0.1);
}

table.person td:nth-child(5n) {
	border-right: none;
}

table.person h3 {
	margin: 0 0 5px;
	color: #002940;
	font-size: 18px;
	font-weight: 700;
	padding-left: 20px;
}

table.person h4 {
	margin: 0 0 12px;
	color: #666666;
	font-size: 14px;
	line-height: 20px;
	min-height: 62px;
	padding-left: 20px;
}

table.person p {
	margin: 0;
	padding-left: 5px;
}

table.person a {
	font-size: 16px;
	width: 100%;
}

table.person a.arrowButtonBefore {
	margin-bottom: 5px;
}

table.person a.phoneButtonBefore {
	margin-bottom: 0px;
}

/* Bottom Banner */

.bottom-banner {
	width: 100%;
	height: 480px;
	background-size: cover;
	background-position: center center;
}

/* google map */

#map {
	position: relative;
}

#map iframe,
#map {
	width: 100% !important;
	height: 400px;
}

.gm-svpc,
.gmnoprint,
.gm-fullscreen-control {
	display: none !important;
}

#map h2 {
	padding: 0;
	margin: 0 0 5px;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.2;
	text-align: center;
}

#map p {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.2;
	text-align: center;
}

/* Publications & event overview */

#publications-list h2,
#publications-list p {
	max-width: 100%;
}

.publications-year,
.events-year {
	display: block;
	position: relative;
	width: 100%;
	background-color: transparent;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	margin-bottom: 25px;
	padding-bottom: 5px;
	cursor: pointer;
	color: #0079c2;
	font-size: 18px;
	max-width: 100%;
}

.publications-year i {
	content: "";
	position: absolute;
	top: -2px;
	right: -33px;
	width: 22px;
	height: 22px;
	transform: rotate(-90deg);
	transition: all 0.5s ease-in-out;
}

.publications-year i svg path {
	fill: #0079c2;
	transition: all 0.5s ease-in-out;
}

.publications-year:hover i {
	transform: rotate(-90deg);
}

.publications-year:hover i svg path {
	fill: #011736;
}

.publications-year.active i {
	content: "";
	transform: rotate(90deg);
}

.publications-year.active i svg path {
	fill: #cccccc;
}

.publications-year.active:hover i svg path {
	fill: #999999;
}

.publications-category-list {
	padding-bottom: 10px;
	padding-right: 33px;
}

.publications-category-list:last-of-type {
	border-bottom: 0;
}

.publications-year-list {
	display: none;
}

.publications-year-list.active {
	display: block;
}

.publication {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}

.publication:last-of-type {
	margin-bottom: 30px;
}

.publication a {
	display: block;
	position: relative;
	width: 100%;
	height: auto;
	padding: 0;
	padding-left: 125px;
	background-color: #fff;
}

.publication .linkReplacer {
	display: block;
	position: relative;
	width: 100%;
	height: auto;
	padding: 0;
	padding-left: 125px;
	background-color: #fff;
	transition: all 0.3s ease-in-out;
}

/*
.publication .publication-image {
  position:absolute;
  left:0;
  top:0;
  height:140px;
  width:100px;
  overflow:hidden;
  background-color: #007EC3;
  background: transparent linear-gradient(90deg, #007EC3 0%, #008FDB 18%, #007EC3 59%, #006DA8 100%) 0% 0% no-repeat padding-box;
}

.publication .publication-image img {
  position:absolute;
  z-index:1;
  left:0;
  top:0;
  width:100px;
  height:auto;
}

.publication .publication-image span {
  position:absolute;
  z-index:1;
  left:10px;
  top:45px;
  color:#fff;
  font-size:14px;
  font-weight:700;
  text-transform: uppercase;
}

.publication .publication-image::before {
  content:"";
  display:block;
  z-index:2;
  position:absolute;
  right:0;
  top:0;
  width:25px;
  height:25px;
  background-color: #F2F2F2;
}

.publication .publication-image::after {
  content:"";
  display:block;
  position:absolute;
  z-index:3;
  right:0;
  top:0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 0 25px;
  border-color: transparent transparent transparent #fff;
  filter: drop-shadow(0px 5px 5px rgba(0,0,0,0.45));
}

.publication a span.triangle {
  display:block;
  position:absolute;
  right:0;
  bottom:0;
  width: 0px;
  height:0px;
  border-bottom: 30px solid;
  border-left: 30px solid transparent;
  color:#007EC3;
  transition: color 0.25s ease-in-out;
}

.publication a:hover span.triangle {
  color:#011736;
}

.publication a span.triangle::after {
  content:"";
  display:block;
  position:absolute;
  top:17px;
  right:5px;
  width: 6px;
  height:8px;
  background-image:url(../images/triangle-arrow.png);
  background-repeat: no-repeat;
  background-size:100% 100%;
  background-position: center center;
}

*/

.publication i {
	position: absolute;
	left: 0;
	top: 0px;
	display: block;
	width: 26px;
	height: 26px;
}

.publication i svg {
	width: 26px;
	height: 26px;
}

.publication i svg path,
.publication i svg circle {
	fill: #0079c2;
	transition: all 0.3s ease-in-out;
}

.publication.event i svg g g path {
	fill: #fff;
}

.publication .publication-date {
	position: absolute;
	left: 33px;
	top: 0px;
	display: block;
	font-size: 14px;
	line-height: 26px;
	color: #002940;
}

.publication .publication-title {
	display: inline-block;
	font-size: 16px;
	line-height: 26px;
	color: #0079c2;
	transition: all 0.3s ease-in-out;
}

.publication .linkReplacer .publication-title {
	color: #002940;
}

.publication a:hover i svg path,
.publication a:hover i svg circle {
	fill: #002940;
}

.publication a:hover .publication-title {
	color: #002940;
}

.event-page h1 {
	margin-bottom: 0;
}

.event-page h2.event-date {
	margin-top: 0;
	color: #666666;
	font-size: 24px;
	padding-bottom: 10px;
}

/* LOGIN & REGISTRATION */

.login-description {
	max-width: 780px;
	margin: 0 auto 30px;
}

.control-label {
	margin-bottom: 5px;
	font-size: 16px;
}

.control-group {
	max-width: 780px;
	margin: 0 auto 15px;
}

.login .controls {
	position: relative;
}

.reveal-pass {
	display: block;
	position: absolute;
	right: 8px;
	top: 5px;
	width: 20px;
	height: 20px;
	background-image: url(../images/ico-eye.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	cursor: pointer;
}

.cg-button {
	margin-top: 30px;
	margin-bottom: 0;
}

ul.login-actions li {
	padding-left: 0;
}

ul.login-actions li::before {
	display: none;
}

.register-button {
	margin-top: 30px;
}

fieldset {
	padding-bottom: 30px;
	max-width: 780px;
	margin: 0 auto;
}

legend {
	padding-bottom: 30px;
	font-size: 20px;
	color: #000;
}

#system-message-container {
	margin-bottom: 30px;
}

#system-message-container .alert {
	position: relative;
	padding: 20px;
	color: #d8000c;
	border: 1px solid;
	background: #ffbaba;
	max-width: 780px;
	margin: 0 auto;
	padding-right: 50px;
}

#system-message-container .close {
	position: absolute;
	top: 0;
	right: 0;
	background: none;
	border: none;
	-webkit-appearance: none;
	color: #d8000c;
	font-size: 30px;
	cursor: pointer;
}

#system-message-container h4 {
	margin: 0;
}

/* footer */

footer {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%;
	padding: 100px 0 50px;
	min-height: 300px;
	background: #fff;
	color: #002940;
	font-size: 14px;
}

footer .container {
	max-width: 940px;
}

footer .footer-logo {
	width: 200px;
	margin-bottom: 20px;
}

footer p {
	line-height: 20px;
	max-width: 100%;
}

footer ul.mod-menu {
	list-style: none;
	padding: 0;
	margin-bottom: 20px;
}

footer table {
	width: 100%;
}

footer table td {
	width: 50%;
	vertical-align: top;
}

footer table td:first-of-type {
	padding-right: 2%;
	border-right: 1px solid rgba(0, 0, 0, 0.1);
}

footer table td:last-of-type {
	padding-left: 2%;
	text-align: right;
}

footer a {
	line-height: 20px;
	color: #002940;
}

footer a:hover {
	color: #007ec3;
}

/* einde footer */

/*** HAMBURGER MENU ***/

.hamburger {
	position: absolute;
	right: 5%;
	top: 20px;
	box-sizing: border-box;
	width: 40px;
	height: 40px;
	padding: 8px;
	display: inline-block;
	cursor: pointer;
	transition-property: opacity, -webkit-filter;
	transition-property: opacity, filter;
	transition-property: opacity, filter, -webkit-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;
	border-radius: 40px;
}

.hamburger:focus {
	outline: none;
}

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

.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: 0px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
	width: 28px;
	height: 2px;
	background-color: #0079c2;
	border-radius: 2px;
	position: absolute;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
	content: "";
	display: block;
}
.hamburger-inner::before {
	top: -8px;
}
.hamburger-inner::after {
	bottom: -8px;
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
	transition-duration: 0.3s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
	transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
	transition: bottom 0.1s 0.34s ease-in, -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
	transition-delay: 0.14s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
	top: 0;
	opacity: 0;
	transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
	bottom: 0;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	transition: bottom 0.1s ease-out, -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* ADJUSTMENTS FOR RESPONSIVE */

@media only screen and (max-width: 1400px) {
	header {
		height: 141px;
	}

	#main-logo {
		width: 270px;
	}

	#main-menu {
		float: none;
		margin-top: 0;
		text-align: right;
	}

	#banner .se-banner .banner-content {
		padding-right: 36%;
	}

	table.person td {
		width: 25%;
	}

	table.person td:nth-child(5n) {
		border-right: 1px solid rgba(0, 0, 0, 0.1);
	}

	table.person td:nth-child(4n) {
		border-right: none;
	}
}

@media only screen and (max-width: 1100px) {
	.container,
	.content .container,
	.content .container.wide-container {
		padding: 0 3%;
	}

	#main-menu ul.mod-menu > li > a,
	#main-menu ul.mod-menu > li > span {
		padding: 15px 7px;
		font-size: 15px;
	}

	#svgmap {
		width: 620px;
		max-width: 100%;
	}

	#country-active-content {
		float: none;
		max-width: 100%;
		margin-top: 20px;
	}

	#banner .se-banner .banner-content {
		padding-right: 45%;
	}
}

@media only screen and (max-width: 980px) {
	header {
		height: 91px;
	}

	.outerContainer {
		padding-bottom: 300px;
	}

	#main-menu,
	#top-menu {
		display: none;
	}

	#mobile-menu-button,
	#mobile-menu {
		display: block;
	}

	#banner .se-banner {
		height: auto !important;
	}

	#banner .se-banner .banner-image {
		position: relative;
		width: 100%;
		height: 200px;
	}

	#banner a.button {
		bottom: 20px;
		right: auto;
		left: 50%;
		margin-left: -200px;
		width: 400px;
	}

	#banner .se-banner .banner-image-mask {
		display: none;
	}

	#banner .se-banner .banner-content {
		padding: 30px 3%;
	}

	#banner .se-banner.small {
		height: auto;
	}

	#banner .se-banner.small .banner-image {
		display: none;
	}

	#banner .se-banner.small h1 {
		text-align: left;
		width: 100%;
	}

	.bottom-banner {
		height: 300px;
	}

	footer {
		padding: 40px 0;
	}

	table.person td {
		width: 33.33%;
	}

	table.person td:nth-child(5n),
	table.person td:nth-child(4n) {
		border-right: 1px solid rgba(0, 0, 0, 0.1);
	}

	table.person td:nth-child(3n) {
		border-right: none;
	}
}

@media only screen and (max-width: 800px) {
	#highlights {
		padding: 30px 0;
	}

	#highlights .container {
		padding: 0;
	}

	#highlights .highlight-list {
		display: block;
	}

	#highlights .highlight {
		width: 100%;
		float: none;
		padding: 20px 0 40px;
	}

	#highlights .highlight::after {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 1px;
	}

	#highlights .highlight .highlight-image img {
		width: 100%;
	}

	#highlights .highlight .highlight-readmore {
		bottom: 18px;
	}

	table.person td {
		width: 50%;
	}

	table.person td:nth-child(5n),
	table.person td:nth-child(4n),
	table.person td:nth-child(3n) {
		border-right: 1px solid rgba(0, 0, 0, 0.1);
	}

	table.person td:nth-child(2n) {
		border-right: none;
	}

	table.fullWidth td {
		display: block;
		width: 100%;
		margin-bottom: 20px;
	}

	.sideMenu {
		width: 100%;
		float: none;
		margin-right: 0;
		padding: 0;
	}

	.menuContent {
		width: 100%;
		float: none;
	}

	footer table td:first-of-type {
		width: 40%;
	}

	footer table td:last-of-type {
		width: 60%;
	}
}

@media only screen and (max-width: 600px) {
	.outerContainer {
		padding-bottom: 350px;
	}

	header {
		height: 80px;
	}

	#main-logo {
		width: 200px;
	}

	.hamburger {
		top: 10px;
	}

	table.fifty50 td {
		display: block;
		width: 100%;
		padding: 0 !important;
		margin-bottom: 20px;
	}

	div.leftStripe {
		padding-left: 8%;
	}

	div.rightStripe {
		padding-right: 8%;
	}

	a.arrowButton {
		width: 100%;
	}

	table.person td {
		width: 100%;
	}

	table.person td {
		border-right: none !important;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	table.person td img {
		max-width: 250px;
	}

	table.stats td {
		display: block;
		width: 100% !important;
		padding-left: 10px !important;
		margin-bottom: 25px;
	}

	table.stats td:first-of-type img {
		max-width: 320px;
	}

	.project {
		padding-left: 20px;
	}

	.project .project-image {
		position: relative;
		text-align: center;
		width: 100%;
		top: auto;
		left: auto;
		bottom: auto;
		margin-bottom: 10px;
	}

	.project .project-image img {
		max-width: 200px;
		max-height: 200px;
		height: auto;
		width: auto;
	}

	table.projectBlocks tr  {
		flex-direction: column;
		gap:0;
	}

	table.projectBlocks td  {
		width:100% !important;
	}

	table.projectBlocks td:first-of-type  {
		text-align:center !important;
	}

	.publication a,
	.publication .linkReplacer {
		padding: 24px 0 5px 33px;
	}

	.publication {
		border-bottom: 1px solid #e5e5e5;
	}

	.publication:last-of-type {
		border-bottom: none;
	}

	footer {
		padding: 30px 0;
	}

	footer table td,
	footer table td:first-of-type,
	footer table td:last-of-type {
		display: block;
		width: 100%;
		text-align: left;
		padding: 0;
		border: none;
	}

	footer table td:first-of-type {
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 480px) {
	#banner a.button {
		margin-left: -140px;
		width: 280px;
	}
}

@media only screen and (max-width: 360px) {
	#main-logo-menu img {
		width: 200px;
	}
}
