
/*

font-family: "paralucent", sans-serif;
font-weight: 300/500/700/900;
font-style: normal;

ZWART: #3A3A39
GROEN 1: #008066 (0,128,102)
GROEN 2: #009F68
GROEN 3: #9BCC95
GEEL: #FFCA00

ROOD: #EE3124

*/

* { 
	border: 0;
	padding: 0;
	margin: 0; 
}

/* general */

body {
	font-family: "paralucent" ,sans-serif;
	font-weight: 300;
	font-size: 19px;
	color: #3A3A39;
	background: #fff;
}

br.clear {
	clear: both;
}

/* wrapper */

.wrapper {
	margin: 0 auto;
	max-width: 1440px;
	position: relative;
}

.wrapper1200 {
	margin: 0 auto;
	max-width: 1200px;
	position: relative;
}

.wrapper1040 {
	margin: 0 auto;
	max-width: 1040px;
	position: relative;
}

.wrapper960 {
	margin: 0 auto;
	max-width: 960px;
	position: relative;
}

.wrapper880 {
	margin: 0 auto;
	max-width: 880px;
	position: relative;
}

.wrapper800 {
	margin: 0 auto;
	max-width: 800px;
	position: relative;
}

.wrapper720 {
	margin: 0 auto;
	max-width: 720px;
	position: relative;
}

.wrapper640 {
	margin: 0 auto;
	max-width: 640px;
	position: relative;
}

/* header */

.header {
	float: left;
	width: 100%;
	position: relative;
}

/* lan switch */

.lan_switch {
	float: left;
	width: 100%;
	height: 45px;
	box-sizing: border-box;
	padding: 15px 0 0 0;
}

.lan_switch ul {
	float: right;
	text-align: right;
	list-style-type: none;
}

.lan_switch li {
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
	line-height: 1em;
	margin-left: 15px;
}

.lan_switch li a {
	float: left;
	vertical-align: top;
	text-decoration: none;
	text-transform: uppercase;
	color: #3A3A39;
}

.lan_switch li a:hover {
	text-decoration: underline;
}

.lan_switch li a.selected {
	font-weight: 700;
	text-decoration: none;
}

/* logo */

img.logo {
	float: left;
	width: 285px;
	margin-bottom: 55px;
}

/* controls */

.controls {
	float: right;
	box-sizing: border-box;
	width: calc(100% - 435px);
	padding-top: 10px;
}

/* header: links */

.header .links {
	float: right;
	padding-top: 8px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.header .links a {
	display: inline-flex;
	align-items: center;
	margin-left: 30px;
	font-size: 18px;
	font-weight: 300;
	color: #009F68;
	text-decoration: none;
	letter-spacing: 0.05em;
}

.header .links a img {
	width: 26px;
	margin-right: 7px;
}

.header .links a:hover {
	text-decoration: underline;
}

.header .links a.active {
	font-weight: 700;
	text-decoration: none;
}

/* search */

.search_form {
	float: left;
	position: relative;
}

.search_form input {
	float: right;
	box-sizing: border-box;
	width: 300px;
	height: 45px;
	padding: 0;
	padding-left: 25px;
	padding-right: 60px;
	color: #3A3A39;
	background: transparent;
	outline: none;
	font-family: "paralucent" ,sans-serif;
	font-weight: 300;
	font-size: 16px;
	line-height: 1em;
	letter-spacing: 0.05em;
	border: 1px solid #009F68;
	border-radius: 50px;
}

.search_form input::placeholder {
	color: #3A3A39;
}

.search_form button {
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 100%;
	z-index: 100;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background: none;
}

.search_form button img {
	width: 24px;
	transition: all 0.1s;
}

.search_form button:hover img {
	transform: scale(1.05);
}

/* hamburger */

.hamburger {
	float: right;
	margin: 0 !important;
	margin-top: 10px !important;
	margin-right: 5px !important;
	margin-left: 35px !important;
	outline: none;
	display: none !important;
}

/* nav */

ul.nav {
	float: left;
	width: 100%;
	list-style-type: none;
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

ul.nav li {
	display: inline-block;
	position: relative;
}

ul.nav li.with_subnav {
	padding-right: 20px;
}

ul.nav li.nav_home, 
ul.nav li.nav_blog, 
ul.nav li.nav_links, 
ul.nav li.nav_partners {
	display: none;
}

ul.nav li a {
	display: block;
	width: auto;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 300;
	line-height: 1em;
	letter-spacing: 0.05em;
	color: #3A3A39;
	position: relative;
	transition: all 0.1s;
	padding-bottom: 10px;
}

ul.nav li a:hover {
	text-decoration: underline;
}

ul.nav li:hover a, 
ul.nav li a.selected {
	color: #3A3A39;
}

ul.nav li a.selected {
	font-weight: 700;
	text-decoration: none;
}

ul.nav li.with_subnav a:after {	
	content: "\f078";
	font-family: "Font Awesome 6 Pro";
	font-weight: 900;
	font-size: 15px;
	color: #009F68;
	position: absolute;
	top: -1px;
	right: -25px;
	z-index: 1;	
}

ul.nav li.hover.with_subnav a:after {
	opacity: 1;
}

/* subnav rollover */

.subnav_rollover {
	position: absolute;
	top: 28px;
	left: -25px;
	z-index: 1000;
	width: 200px;
	box-sizing: border-box;
	padding: 15px 25px;
	color: #3A3A39;
	background: #FFF;
	text-align: left;
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
	opacity: 0;
	visibility: hidden;
	transition: all 0.1s;
}

.subnav_rollover.active {
	opacity: 1;
	visibility: visible;
}

ul.nav li .subnav_rollover a {
	display: inline-block;
	width: 100%;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.2em;
	letter-spacing: 0.05em;
	margin: 8px 0;
	padding: 0;
	text-transform: none; 
	text-decoration: none;
	border: 0;
	color: #3A3A39;
}

ul.nav li .subnav_rollover a:after {
	display: none;
}

ul.nav li .subnav_rollover a:hover {
	text-decoration: underline;
}

ul.nav li .subnav_rollover a.selected, 
ul.nav li .subnav_rollover a.selected:hover {
	color: #009F68;
	text-decoration: none;
}

/* crumb

.crumb {
	position: absolute;
	top: 25px;
	left: 0;
	width: 100%;
	z-index: 100;
	font-size: 13px;
	color: #FFF;
}

.crumb a {
	float: left;
	color: #FFF !important;
}

.crumb a:hover {
	color: #000 !important;
}

.crumb i {
	float: left;
	color: #FFF;
	font-size: 10px;
	margin: 0 8px;
	margin-top: 6px;
	margin-bottom: 10px;
	text-align: center;
}

/* sidebar */

.sidebar {
	float: left;
	width: 25%;
	margin-bottom: 25px;
}

/* main */

.main {
	float: right;
	width: 70%;
}

/* content */

.content {
	float: left;
	width: 100%;
	position: relative;
	overflow: hidden;
}

.content a {
	color: #009F68;
}

.content a:hover {
	color: #008066;
}

.content a.red {
	color: #EE3124;
}

.content a.red:hover {
	color: #3A3A39;
}

.content a.anchor {
	float: left;
	width: 100%;
	margin-top: -100px;
}

.content a.button {
	display: inline-block;
	color: #FFF;
	border: 0;
	border-radius: 100px;
	background: #009F68;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 300;
	letter-spacing: 0.05em;
	line-height: 1em;
	padding: 18px 20px;
	outline: none;
	position: relative;
	transition: 0;
}

.content a.button:hover {
	background: #FFCA00;
}

.content img.left {
	float: left;
	padding-right: 15px;
	margin-right: 15px;
}

.content img.right {
	float: right;
	padding-left: 15px;
	margin-left: 15px;
}

.content h1 {
	color: #FFCA00;
	font-weight: 900;
	font-style: normal;
	font-size: 50px;
	line-height: 1.2em;
	margin-top: 0;
	margin-bottom: 40px;
}

.content h1.small {
	font-size: 25px;
}

.content h1.center {
	text-align: center;
}

.content h1.extra_margin {
	margin-bottom: 60px;
}

.content h1.no_margin {
	margin-bottom: 10px;
}

.content h1.white {
	color: #fff;
}

.content h2 {
	color: #FFCA00;
	font-weight: 900;
	font-style: normal;
	font-size: 40px;
	line-height: 1.2em;
	margin-top: 0;
	margin-bottom: 30px;
}

.content h2.center {
	text-align: center;
}

.content h3 {
	color: #009F68;
	font-weight: 900;
	font-size: 25px;
	margin-bottom: 25px;
}

.content h3.center {
	text-align: center;
}

.content p {
	line-height: 1.6em;
	margin-bottom: 30px;
}

.content p.center {
	text-align: center;
}

.content p.lessmargin {
	margin-bottom: 15px;
}

.content p.nomargin {
	margin-bottom: 5px;
}

.content p strong {
	font-weight: 700;
}

.content p.red {
	color: #EE3124;
}

.content p.red a {
	color: #EE3124;
}

.content em.red {
	color: #EE3124;
}

.content span.red {
	color: #EE3124;
}

.content span.small {
	font-size: 12px;
}

.content ul {
	list-style-type: disc;
	margin-bottom: 25px;
	clear: both;
}

.content ol {
	list-style-type: decimal;
	margin-left: 10px;
	margin-bottom: 25px;
	padding-left: 15px;	
	clear: both;
}

.content li {
	margin-left: 25px;
	margin-bottom: 5px;
	line-height: 1.4em;
}

.content ol li {
	padding-left: 7px;
}

.content ul.check {
	list-style-type: none;
	margin-bottom: 25px;
}

.content ul.check li {
	margin-left: 0;
	padding-left: 26px;
	margin-bottom: 8px;
	position: relative;
}

.content ul.check li:after {
	content: "\f058";
    font-family: "Font Awesome 6 Pro";
    font-weight: 700;
    position: absolute;
    top: 1px;
    left: 0;
    font-size: 14px;
    color: #009F68;
    display: flex;
    align-items: center;
}

.content table {
	width: 100%;
	margin-bottom: 30px;
}

.content table tr:hover td {
	background: #F5F5F5;
}

.content th {
	color: #999;
	font-size: 13px;
	font-weight: 300;
	text-transform: uppercase;
	padding: 10px 5px 10px 5px;
	text-align: left;
	vertical-align: top;
}

.content td {
	padding: 10px 5px 7px 5px;
	vertical-align: top;
	line-height: 1.4em;
	border-bottom: 1px solid #ddd;
}

.content td.bg_green, 
.content th.bg_green {
	color: #FFF;
	background: #009F68 !important;
	border-bottom: 1px solid #ddd;
}

.content td.bg_brown, 
.content th.bg_brown {
	color: #FFF;
	background: #3A3A39 !important;
	border-bottom: 1px solid #ddd;
}

.content td.bg_yellow, 
.content th.bg_yellow {
	color: #FFF;
	background: #FFCA00 !important;
	border-bottom: 1px solid #ddd;
}

.content table.noborder td {
	border: 0;
	padding: 15px 0;
	padding-right: 25px;
}

.content td.label {
	font-weight: 700;
	width: 190px;
}

.content td ol {
	margin-left: 0;
	padding-left: 0;
}

.content td.right {
	text-align: right;
}

.content td.grey {
	color: #999;
	font-size: 16px;
}

.content table tr.strike td {
	color: #999;
}

.content table tr.strike td span {
	text-decoration: line-through;
}

.content table.list tr:first-child td {
	border-top: 1px solid #ddd;
}

.content table.list td {
	padding: 30px;
}

.content table.list tr:hover td {
	background: rgba(58,58,57,0.05);
}

.content td.bold {
	font-weight: 700;
}

em.hint {
	color: #999;
	font-style: normal;
	font-size: 15px;
}

em.remark {
	font-size: 16px;
	font-style: normal;
}

.content hr {
	float: left;
	width: 100%;
	border-bottom: 1px solid #ddd;
	margin-bottom: 25px;
}

hr.spacer1 {
	border-bottom: 0;
	margin-bottom: 0;
}

hr.spacer5 {
	float: left;
	width: 100%;
	background: none;
	border: 0;
	height: 1px;
	margin-bottom: 4px;
}

hr.spacer10 {
	float: left;
	width: 100%;
	background: none;
	border: 0;
	height: 1px;
	margin-bottom: 9px;
}

hr.spacer15 {
	float: left;
	width: 100%;
	background: none;
	border: 0;
	height: 1px;
	margin-bottom: 14px;
}

hr.spacer20 {
	float: left;
	width: 100%;
	background: none;
	border: 0;
	height: 1px;
	margin-bottom: 19px;
}

hr.spacer25 {
	float: left;
	width: 100%;
	background: none;
	border: 0;
	height: 1px;
	margin-bottom: 24px;
}

hr.spacer30 {
	float: left;
	width: 100%;
	background: none;
	border: 0;
	height: 1px;
	margin-bottom: 29px;
}

hr.spacer50 {
	float: left;
	width: 100%;
	background: none;
	border: 0;
	height: 1px;
	margin-bottom: 49px;
}

hr.spacer75 {
	float: left;
	width: 100%;
	background: none;
	border: 0;
	height: 1px;
	margin-bottom: 74px;
}

hr.spacer100 {
	float: left;
	width: 100%;
	background: none;
	border: 0;
	height: 1px;
	margin-bottom: 99px;
}

hr.spacer125 {
	float: left;
	width: 100%;
	background: none;
	border: 0;
	height: 1px;
	margin-bottom: 124px;
}

hr.spacer150 {
	float: left;
	width: 100%;
	background: none;
	border: 0;
	height: 1px;
	margin-bottom: 149px;
}

hr.spacer175 {
	float: left;
	width: 100%;
	background: none;
	border: 0;
	height: 1px;
	margin-bottom: 174px;
}

/* content blocks 

.grey_block {
	padding: 30px 20px;
	padding-bottom: 1px;
	background: rgba(81,66,74,0.1);
	margin-bottom: 25px;
	box-sizing: border-box;
	border-radius: 5px;
}

.blue_block {
	padding: 30px 20px;
	padding-bottom: 1px;
	background: rgba(145,175,162,0.1);
	margin-bottom: 25px;
	border-radius: 5px;
}

.red_block {
	padding: 25px 20px;
	color: #fff;
	background: #EE3124;
	margin-bottom: 25px;
	border-radius: 5px;
}

.red_block p:last-of-type {
	margin-bottom: 0;
}

.red_block ul:last-of-type {
	margin-bottom: 0;
}

.red_block a {
	color: #fff;
}

.red_block p {
	margin-bottom: 20px;
}

p.red {
	color: #EE3124;
}

/* iframe wrappers 

.responsive_iframe_wrapper {
    float: none;
    clear: both;
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}

.responsive_iframe_wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* text */

.text {
	float: left;
	width: 100%;
	padding: 50px 0 50px 0;
	box-sizing: border-box;
}

.bg_FFFFFF .text {
	padding: 0;
}

/* toggle text block */

.toggle_text_block {
	display: none;
}

/* page blocks */

.page_block {
	float: left;
	width: 100%;
	position: relative;
}

/* page block bg styles */

.bg_FFFFFF {
	background: #FFF;
}

/* green 1 */

.bg_008066 {
	color: #FFF;
	background: #008066;
}

.bg_008066 h1, 
.bg_008066 h2, 
.bg_008066 h3 {
	color: #FFF;
}

.bg_008066 a {
	color: #FFF;
}

.bg_008066 a:hover {
	color: #DDD;
}

.bg_008066 a.button {
	color: #FFF;
}

.bg_008066 .text {
	padding: 50px 0 25px 0;
} 

/* green 2 */

.bg_009F68 {
	color: #FFF;
	background: #009F68;
}

.bg_009F68 h1, 
.bg_009F68 h2, 
.bg_009F68 h3 {
	color: #FFF;
}

.bg_009F68 a {
	color: #FFF;
}

.bg_009F68 a:hover {
	color: #DDD;
}

.bg_009F68 a.button {
	color: #FFF;
	background: #008066;
}

.bg_009F68 .text {
	padding: 50px 0 25px 0;
} 

/* green 3 */

.bg_9BCC95 {
	color: #FFF;
	background: #9BCC95;
}

.bg_9BCC95 h1, 
.bg_9BCC95 h2, 
.bg_9BCC95 h3 {
	color: #FFF;
}

.bg_9BCC95 a {
	color: #FFF;
}

.bg_9BCC95 a:hover {
	color: #DDD;
}

.bg_9BCC95 a.button {
	color: #FFF;
}

.bg_9BCC95 .text {
	padding: 50px 0 25px 0;
} 

/* yellow */

.bg_FFCA00 {
	color: #FFF;
	background: #FFCA00;
}

.bg_FFCA00 h1, 
.bg_FFCA00 h2, 
.bg_FFCA00 h3 {
	color: #FFF;
}

.bg_FFCA00 a {
	color: #FFF;
}

.bg_FFCA00 a:hover {
	color: #DDD;
}

.bg_FFCA00 a.button {
	color: #3A3A39;
	background: #FFF;
}

.bg_FFCA00 a.button:hover {
	color: #FFF;
	background: #009F68;
}

.bg_FFCA00 .text {
	padding: 50px 0 25px 0;
} 

/* yellow (10%) */

.bg_FFF9E5 {
	background: #FFF9E5;
}

.bg_FFF9E5 .text {
	padding: 50px 0 25px 0;
} 

/* type 1: banner (large) */

.banner_wrapper {
	float: left;
	width: 100%;
	position: relative;
	background: #FFF;
}

.banner_slider {
	float: left;
	width: 100%;
}	
	
.banner_slide {
	float: left;
	width: 100%;
	height: 550px !important;
	background-size: cover !important;
	position: relative;
}

.banner_text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 500;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(255,202,0,0.15);
}

.banner_text_wrapper {
	float: left;
	width: 100%;
	box-sizing: border-box;
	padding: 40px;
	padding-bottom: 0;
}

.banner_text_wrapper.bg_008066 {
	background: rgba(0,128,102,0.85);
}

.banner_text_wrapper.bg_009F68 {
	background: rgba(0,159,104,0.85);
}

.banner_text_wrapper.bg_9BCC95 {
	background: rgba(0155,204,149,0.85);
} 

.banner_text_wrapper.bg_FFCA00 {
	background: rgba(255,202,0,0.85);
} 

.banner_text h1, 
.banner_text h2, 
.banner_text h3 {
	color: #FFF;
}

.banner_video {
	height: 550px;
    overflow: hidden;
    padding: 0;
    position: relative;
	background: #3A3A39;
}

.banner_video iframe {
	position: absolute;
	box-sizing: border-box;
	height: 56.25vw;
	left: 50%;
	min-height: 100%;
	min-width: 100%;
	transform: translate(-50%, -50%);
	top: 50%;
	width: 177.77777778vh;
}

/* type 1: banner (small) */

.small_banner_wrapper {
	float: left;
	width: 100%;
	position: relative;
	background: #FFF;
}

.small_banner_image {
	float: left;
	width: 100%;
	height: 400px;
	background-size: cover !important;
	position: relative;
}

.small_banner_image .cover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 400;
	background: rgba(255,202,0,0.15);
}

.small_banner_text {
	position: absolute;
	top: 0;
	left: 0;
	width: 40%;
	height: 100%;
	z-index: 500;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background: rgba(255,202,0,0.15);
	box-sizing: border-box;
	padding: 30px 50px 0 50px;
}

.small_banner_text.bg_008066 {
	background: rgba(0,128,102,0.85);
}

.small_banner_text.bg_009F68 {
	background: rgba(0,159,104,0.85);
}

.small_banner_text.bg_9BCC95 {
	background: rgba(0155,204,149,0.85);
} 

.small_banner_text.bg_FFCA00 {
	background: rgba(255,202,0,0.85);
} 

.small_banner_text h1, 
.small_banner_text h2, 
.small_banner_text h3 {
	color: #FFF;
}

/* page block type 6: small image + text */

.page_block_image {
	float: left;
	width: 250px;
}

.page_block_image img {
	float: left;
	width: 80%;
	margin: 0 10%;
}

.page_block_text {
	float: right;
	width: calc(100% - 325px);
}

/* page block type 5/6: text + slider (L/R) 

.page_block5 .page_block_text, 
.page_block6 .page_block_text {
	float: left;
	width: 55%;
	box-sizing: border-box;
	position: relative;
	padding: 25px 100px 50px 100px;
	z-index: 100;
}

.page_block5 .page_block_text {
	float: right;
}

.page_block6 .page_block_text.mobile_text {
	display: none;
}

.page_block5 .page_block_text h2, 
.page_block6 .page_block_text h2 {
	margin-left: -50px;
} 

.page_block5 .page_block_text h3, 
.page_block6 .page_block_text h3 {
	margin-left: 25px;
} 

.page_block6 .slick-dots {
	left: auto !important;
	right: 0 !important;
}

.page_block5 .page_block_images, 
.page_block6 .page_block_images {
	float: right;
	width: 40%;
	position: relative;
	z-index: 500;
}

.page_block5 .page_block_images {
	float: left;
}

.page_block5 .page_block_slider, 
.page_block6 .page_block_slider {
	float: left;
	width: 100%;
}

.page_block5 .page_block_slider .page_block_slide, 
.page_block6 .page_block_slider .page_block_slide {
	float: left;
	width: 100%;
	background-size: cover !important;
}

.page_block5 .page_block_slider .page_block_slide img, 
.page_block6 .page_block_slider .page_block_slide img {
	float: left;
	width: 100%;
}

.page_block5 .page_block_images .video_icon, 
.page_block6 .page_block_images .video_icon {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.page_block5 .page_block_images .video_icon img, 
.page_block6 .page_block_images .video_icon img {
	width: 75px;
	transition: all 0.2s ease;
}

.page_block5 .page_block_images .video_icon img:hover, 
.page_block6 .page_block_images .video_icon img:hover {
	transform: scale(1.1) rotate(2deg);
}

/* page block type 10: image album */

.image_album {
	float: left;
	width: 100%;
	margin-bottom: 50px;
}

.image_album .item {
	overflow: hidden;
	margin: 25px !important;
	box-sizing: content-box;
}

.image_album .item img {
	transition: all 0.2s;
}

.image_album .item:hover img { 
	transform: scale(1.03);
}

/* members */

.content a.filter {
	float: left;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 17px;
	color: #009F68;
	border: 1px solid #009F68;
	border-radius: 50px;
	padding: 15px 18px;
	margin: 0 15px 15px 0;
	text-decoration: none;
}

.content a.filter:hover {
	color: #FFF;
	background: #009F68;
}

.content a.filter.active {
	color: #FFF;
	background: #009F68;
}

.content a.filter.active:hover {
	text-decoration: line-through;
}

/* partners */

.partner_list {
	float: left;
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.partner_list .partner {
	float: left;
	width: 29.33%;
	margin-left: 2%;
	margin-right: 2%;
	box-sizing: border-box;
	border: 1px solid #CCC;
	margin-bottom: 40px;
	text-decoration: none !important;
}

.partner_list .partner:hover {
	border: 1px solid #009F68;
}

.partner_list .partner_image {
	float: left;
	width: calc(100% - 50px);
	margin: 30px 25px; 
	background-size: contain !important;
	margin-bottom: 30px;
}

.partner_list .partner_image img {
	float: left;
	width: 100%;
}

.partner_list .partner_text {
	float: left;
	width: 100%;
	box-sizing: border-box;
	padding: 0 20px;
	text-align: center;
}

.partner_list .partner_text strong {
	float: left;
	width: 100%;
	font-size: 22px;
	margin-bottom: 15px;
}

.partner_list .partner_text p {
	color: #3A3A39 !important;
}

/* team */

.team_wrapper {
	float: left;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	flex-wrap: wrap;
}

.team {
	float: left;
	width: 45%;
	margin-bottom: 75px;
	overflow: hidden;
}

.team img {
	float: left;
	width: 220px;
	border-radius: 220px;
	margin-bottom: 45px;
}

.team div.team_text {
	float: left;
	width: 100%;
	box-sizing: border-box;
	padding-left: 80px;
	padding-right: 20px;
}

.team div.team_text h3 {
	margin-bottom: 5px;
}

.team div.team_text span.function {
	float: left;
	width: 100%;
	line-height: 1.5em;
	margin-bottom: 25px;
	color: #009F68;
}

.team div.team_text p.contact {
	line-height: 2.5em;
}

.team div.team_text p.contact span {
	white-space: nowrap;
}

.team div.team_text p.contact i {
	display: inline-block;
	vertical-align: middle;
	border: 2px solid #3A3439;
	margin-right: 10px;
	border-radius: 50px;
	font-size: 18px;
	padding: 7px 4px;
	text-align: center;
}

/* page block type 20/22: events */

.event {
	float: left;
	width: 100%;
	box-sizing: border-box;
	padding: 30px 50px;
	background: rgba(255,202,0,0.1);
	margin-bottom: 20px;
}

.event:hover {
	background: rgba(255,202,0,0.2);
}

.event_info {
	float: left;
	width: calc(100% - 350px);
}

.event_info h3 {
	margin-bottom: 15px;
}

.event_image {
	float: right;
	width: 300px;
}

.event_image img {
	float: left;
	width: 100%;
}

/* page block type 22/23: blog */

.blog_list {
	float: left;
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.blog {
	float: left;
	width: calc(50% - 10px);
	box-sizing: border-box;
	padding: 30px 50px;
	background: rgba(255,202,0,0.1);
	margin-bottom: 20px;
	position: relative;
}

.blog:hover {
	background: rgba(255,202,0,0.2);
}

.blog_info {
	float: left;
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
}

.blog_info.wide {
	width: 100% !important;
	min-height: 50px !important;
}

.blog_info h3 {
	margin-bottom: 15px;
}

.blog_info span.date {
	float: left;
	width: 100%;
	border-bottom: 1px solid #FFCA00;
	padding-bottom: 10px;
	margin-bottom: 15px;
	text-transform: uppercase;
	color: #009F68;
	letter-spacing: 0.05em;
}

.blog_image {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 100;
	width: 35%;
	height: 100%;
	background: #FFCA00;
}

.blog_image_wrapper {
	position: absolute;
	top: 40px;
	left: 40px;
	width: calc(100% - 80px);
	height: calc(100% - 80px);
	z-index: 100;
	background-size: contain !important;
}

.blog.wide {
	width: 100%;
}

.blog.wide .blog_info {	
	width: 62%;
	min-height: 350px;
}

/* page block type 24/25: downloads */

.download_list {
	float: left;
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.download {
	float: left;
	width: 100%;
	box-sizing: border-box;
	padding: 30px 50px;
	background: rgba(255,202,0,0.1);
	margin-bottom: 20px;
	position: relative;
	text-decoration: none;
}

.download:hover {
	background: rgba(255,202,0,0.2);
}

.download_info {
	float: left;
	width: 62%;
	min-height: 350px;
	overflow: hidden;
	box-sizing: border-box;
}

.download_info.wide {
	width: 100% !important;
	min-height: 50px !important;
}

.download_info h3 {
	margin-bottom: 15px;
}

.download_info span.date {
	float: left;
	width: 100%;
	border-bottom: 1px solid #FFCA00;
	padding-bottom: 10px;
	margin-bottom: 15px;
	text-transform: uppercase;
	color: #009F68;
	letter-spacing: 0.05em;
}

.download_info u {
	display: inline-block;
	color: #FFF;
	border: 0;
	border-radius: 100px;
	background: #009F68;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 300;
	letter-spacing: 0.05em;
	line-height: 1em;
	padding: 18px 20px;
	outline: none;
	position: relative;
	transition: 0;
}

.download_info u:hover {
	background: #FFCA00;
}

.download_image {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 100;
	width: 35%;
	height: 100%;
	background: #FFCA00;
}

.download_image_wrapper {
	position: absolute;
	top: 40px;
	left: 40px;
	width: calc(100% - 80px);
	height: calc(100% - 80px);
	z-index: 100;
	background-size: contain !important;
}

/* page block type 26/27: links */

.link_list {
	float: left;
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.link {
	float: left;
	width: 100%;
	box-sizing: border-box;
	padding: 30px 50px;
	background: rgba(255,202,0,0.1);
	margin-bottom: 20px;
	position: relative;
	text-decoration: none;
}

.link:hover {
	background: rgba(255,202,0,0.2);
}

.link_info {
	float: right;
	width: 70%;
	overflow: hidden;
	box-sizing: border-box;
}

.link_info.wide {
	width: 100% !important;
}

.link_info h3 {
	margin-bottom: 15px;
}

.link_info u {
	display: inline-block;
	color: #FFF;
	border: 0;
	border-radius: 100px;
	background: #009F68;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 300;
	letter-spacing: 0.05em;
	line-height: 1em;
	padding: 18px 20px;
	outline: none;
	position: relative;
	transition: 0;
}

.link_info u:hover {
	background: #FFCA00;
}

.link_image {
	float: left;
	width: 25%;
}

.link_image img {
	float: left;
	width: 60%;
	margin: 10px 20%;
}

/* google maps

#google_maps_canvas {
	float: left;
	width: 100%;
	height: 500px;
}

/* search results */

ul.search_results {
	float: left;
	list-style-type: none;
	width: 100%;
}

ul.search_results li {
	float: left;
	width: 100%;
	box-sizing: border-box;
	padding: 25px;
	margin: 0;
	border-bottom: 1px solid rgba(58,58,57,0.1);
}

ul.search_results li:hover {
	background: rgba(58,58,57,0.05);
}

ul.search_results li strong {
	float: left;
	width: 100%;
	font-size: 20px;
	margin-bottom: 5px;
}

ul.search_results li a.url {
	float: left;
	width: 100%;
	font-size: 12px;
	margin-bottom: 6px;
}

/* sitemap */

ul#sitemap {
	font-size: 18px;
}

ul#sitemap li ul {
	list-style-type: disc;
	margin-top: 5px;
	padding-left: 15px;
}

ul#sitemap li ul li {
	font-size: 17px;
}

ul#sitemap li ul li ul {
	list-style-type: square;
	margin-top: 5px;
	padding-left: 15px;
}

ul#sitemap li ul li ul li {
	font-size: 16px;
}

/* form */

.form {
	float: left;
	width: 100%;
	box-sizing: border-box;
	padding: 30px 25px;
	background: rgba(58,58,57,0.05);
	margin-bottom: 25px;
}

.form.compact {
	padding: 15px 20px;
}

.form.border {
	padding: 30px 20px;
	border: 1px solid #afcae2;
	border-radius: 0;
}

.form h2 {
	margin-bottom: 25px;
}

/* form labels */

.form label {
	cursor: pointer;
}

.form span.label, 
.form span.hint {
	float: left;
	width: 100%;
	line-height: 1.3em;
}

.form span.label {
	font-weight: 700;
	margin-bottom: 2px;
}

.form span.label.error {
	color: #EE3124;
}

.form span.label strong, 
.form label strong {
	font-weight: 700;
}

.form span.label strong.blue, 
.form label strong.blue {
	color: #3A3A39;
}

.booking_form span.label, 
.booking_form label {
	color: #000;
}

.form span.hint {
	font-weight: normal;
	font-size: 15px;
	color: #999;
	margin-top: -5px;
	margin-bottom: 20px;
	line-height: 1.4em;
}

.form span.checkbox_hint {
	margin-top: 2px;
}

.form span.booking_hint {
	margin-bottom: 0;
}

.form span.booking_hint p {
	margin-bottom: 15px;
}

.form span.hint a {
	color: #999;
}

.form span.hint a:hover {
	color: #3A3A39;
}

.form span.hint u {
	cursor: pointer;
}

.form span.checkbox {
	float: left;
	width: 100%;
	margin-top: 5px;
	margin-bottom: 20px;
	font-size: 17px;
	line-height: 1.3em;
}

.form span.checkbox label {
	cursor: pointer;
}

.form span.checkbox.error {
	color: #EE3124;
}

.form span.checkbox.error a {
	color: #EE3124;
}

.form span.label b, 
.form span.checkbox b {
	color: #999;
	font-size: 12px;
	font-weight: 300;
}

.form span.label.error b, 
.form span.checkbox.error b {
	color: #EE3124;
	font-weight: 700;
}

.form span.form_block {
	float: left; 
	width: 100%; 
	margin-bottom: 15px;
	line-height: 1.3em;
}

.form span.form_block.error {
	color: #EE3124;
}

.form span.form_block_checkbox {
	float: left;
	width: 25%;
}

.form span.form_block_checkbox.large {
	width: 100%;
}

.form span.form_block_checkbox.error {
	color: #EE3124;
}

.form span.form_block_checkbox span.checkbox {
	margin-bottom: 8px;
}

.form_field {
	float: left;
	width: 49%;
}

.form_field.right {
	float: right;
}

.form_warning {
	float: left;
	width: 100%;
	font-weight: 700;
	color: #EE3124;
	margin-bottom: 15px;
}

img.lm_sticker {
	float: left;
	width: 250px;
	margin-top: 10px;
	margin-bottom: 10px;
}

/* form fields */

.form input.text {
	float: left;
	width: 100%;
	box-sizing: border-box;
	background: #fff;
	border: 1px solid #ddd;
	padding: 15px;
	margin-top: 3px;
	margin-bottom: 15px;
	color: #3A3A39;
	font-family: "paralucent" ,sans-serif;
	font-weight: 300;
	font-size: 18px;
	outline: none;
}

.form input.text.disabled {
	background: rgba(255, 255, 255, 0.5);
}

.form input.text:focus {
	border: 1px solid #999;
}

.form input.text.error {
	border: 1px solid #EE3124;
}

.form textarea {
	float: left;
	width: 100%;
	box-sizing: border-box;
	height: 100px;
	background: #fff;
	border: 1px solid #ddd;
	padding: 15px;
	margin-top: 3px;
	margin-bottom: 15px;
	color: #3A3A39;
	font-family: "paralucent" ,sans-serif;
	font-weight: 300;
	font-size: 18px;
	outline: none;
}

.form textarea:focus {
	border: 1px solid #999;
}

.form textarea.error {
	border: 1px solid #EE3124;
}

.form .select_wrapper {
	float: left;
	width: 49%;
	position: relative;
	margin-top: 3px;
	margin-bottom: 15px;
}

.form .select_wrapper.small {
	width: 25%;
	min-width: 250px;
	margin-right: 15px;
}

.form .select_wrapper.mini {
	width: 15%;
	min-width: 175px;
	margin-right: 15px;
}

.form .select_wrapper.medium {
	width: 25%;
	min-width: 255px;
	margin-right: 15px;
}

.form .select_wrapper.large {
	width: 100%;
}

.form .select_wrapper:after {
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    font-size: 15px;
	font-weight: 600;
    color: #3A3A39;
    right: 0;
    top: 0;
    width: 40px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
    position: absolute;
    pointer-events: none;
    background: transparent;
}

.form select {
	box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    display: inline-block;
    zoom: 1;
    color: #3A3A39;
    background-color: #fff;
    padding: 15px 40px 15px 15px;
    margin: 0 7px 0 0;
    border-radius: 0;
    color: #3A3A39;
    font-family: "paralucent" ,sans-serif;
	font-weight: 300;
	line-height: 1.3em;
	font-size: 18px;
    border: 1px solid #ddd;
    width: 100%;
	height: 50px;
    cursor: pointer;
    outline: none;
}

.form select::-ms-expand {
    display: none;
}

.form select:focus {
	border: 1px solid #999;
}

.form select.error {
	border: 1px solid #EE3124;
}

.form .select_wrapper.small select {
	padding-left: 7px;
}

.form input.checkbox {
	float: left;
	vertical-align: top;
	display: block;
	overflow: hidden;
	padding: 0; 
	border: 0;
	margin: 4px 6px 2px 0;
	width: 13px;
	height: 13px;
	line-height: 1em;
}

div.form_spacer {
	float: left;
	width: 100%;
	height: 10px;
}

div.form_title {
	float: left;
	width: 100%;
	color: #009F68;
	font-weight: 900;
	font-size: 25px;
	margin-bottom: 25px;
}

div.form_title span {
	font-weight: 500;
	font-size: 18px;
}

/* form link */

.form_link {
	float: left;
	width: 100%;
	margin-bottom: 20px;
}

.form_link label {
	float: left;
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}

.switch_block {
	float: left; 
	width: 100%; 
	display: none;
}

.switch_block.active {
	display: block;
}

/* checkbox block */

.form_checkbox_block {
	float: left;
	width: 100%;
	background: #fff;
	border: 1px solid #ddd;
	box-sizing: border-box;
	margin-top: 3px;
	margin-bottom: 20px;
}

.form_checkbox_block.error {
	border: 1px solid #EE3124;
}

.form_checkbox_block span.checkbox {
	float: left;
	width: 100%;
	padding: 10px 15px;
	box-sizing: border-box;
	border-bottom: 1px solid #ddd;
	margin-bottom: 0;
}

.form_checkbox_block span.checkbox:last-child {
	border-bottom: 0;
}

/* feedback */

div.feedback {
	float: left;
	width: 100%;
	box-sizing: border-box;
	padding: 25px 15px 22px 15px;
	font-size: 18px;
	line-height: 1.3em;
	font-weight: 500;
	text-align: center;
	color: #FFF;
	background: #009F68;
}

div.feedback.error {
	color: #FFF;
	background: #EE3124;
}

div.feedback a {
	color: #fff;
}

div.feedback a:hover {
	color: #eee;
}

/* button */

.form button::-moz-focus-inner { 
    border: 0;
    padding: 0;
}

.form button, 
.form input.button {
	display: inline-block;
	color: #FFF;
	border: 0;
	border-radius: 100px;
	background: #009F68;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 300;
	letter-spacing: 0.05em;
	line-height: 1em;
	padding: 18px 20px;
	outline: none;
	position: relative;
	transition: 0;
}

.form button:hover, 
.form input.button:hover {
	background: #FFCA00;
}

/* search results */

.content a.search_result {
	float: left;
	width: 100%;
	cursor: pointer;
	padding: 25px 20px;
	box-sizing: border-box;
	margin: 0;
	color: #3A3A39;
	text-decoration: none;
	border-bottom: 1px solid #ddd;
}

.content a.search_result strong {
	display: inline-block;
	color: #3A3A39;
	font-size: 20px;
	line-height: 1.6em;
	margin-bottom: 10px;
}

.content a.search_result img {
	float: left;
	width: 170px;
	margin: 0 20px 0 0;
}

.content a.search_result:hover {
	background: rgba(0,0,0,0.02);
}

/* footer */

.footer {
	float: left;
	width: 100%;
	color: #3A3A39;
	position: relative;
	font-size: 15px;
	line-height: 2.4em;
	padding-bottom: 25px;
}

.footer a {
	color: #3A3A39;
	text-decoration: none;
}

.footer a:hover {
	text-decoration: underline;
	color: #3A3A39;
}

img.footer_logo {
	float: left;
	height: 40px;
	margin-top: 40px;
	margin-bottom: 50px;
}

.footer_blocks {
	float: right;
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	box-sizing: border-box;
}

.footer_block {
	box-sizing: border-box;
}

.footer_block b {
	display: inline-block;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.footer_block img.icon {
	width: 20px;
	vertical-align: middle;
	margin-right: 10px;
}

/* social links */

.footer .social_links {
	position: absolute;
	top: -1px;
	right: 0;
	z-index: 100;
}

.footer .social_links a.social_link {
	float: left;
	width: 40px;
	position: relative;
	text-decoration: none;
	margin-right: 3px;
	transition: all 0.1s;
}

.footer .social_links a.social_link img {
	float: left;
	width: 100%;
}

.footer .social_links a.social_link:hover {
	transform: scale(1.1);
}

/* copyrights */

.copyrights {
	float: left;
	width: 100%;
	box-sizing: border-box;
	padding: 20px;
	font-size: 18px;
	line-height: 1.5em;
	text-align: center;
	border-bottom: 1px solid #FFCA00;
}

.copyrights a {
	color: #3A3A39;
	text-decoration: none;
	white-space: nowrap;
}

.copyrights a:hover {
	text-decoration: underline;
}

i.fa-linkedin {
	display: inline-block;
	vertical-align: middle;
	font-size: 25px;
	color: #0A66C2;
	margin-left: 12px;
}

i.fa-linkedin:hover {
	transform: scale(1.05);
}

/* quoted */

img.quoted {
	vertical-align: middle;
	height: 14px;
	margin-left: 10px;
	opacity: 1;
}

/* footer links */

.footer_links {
	float: left;
	width: 100%;
	padding: 25px 0;
	box-sizing: border-box;
	text-align: center;
}

.footer_links img {
	display: inline-block;
	vertical-align: top;
	height: 30px;
	margin: 0 15px;
}

/* tooltips */

.qtip-light .qtip-content{
	color: #3A3A39; 
    font-size: 14px;
    line-height: 1.3em;
}

/* accept cookies */

.accept_cookies_wrapper {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 50000;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s;
}

.accept_cookies {
	float: left;
	width: 500px;
	max-width: 90%;
	box-sizing: border-box;
	padding: 30px 40px;
	color: #fff;
	background: #FFCA00;
	font-size: 16px;
	line-height: 1.75em;
	text-align: left;
}

.accept_cookies a {
	color: #fff;
	transition: color 0.1s;
}

.accept_cookies a:hover {
	color: #009F68;
}

.accept_cookies a.accept_cookies_button {
	display: inline-block;
	color: #3A3A39;
	background: #fff;
	padding: 10px 20px;
	text-decoration: none;
	border-radius: 50px;
	margin-bottom: 15px;
}

.accept_cookies a.accept_cookies_button:hover {
	color: #FFF;
	background: #009F68;
}

/* popup 

.popup {
	position: fixed;
	right: 25px;
	bottom: 0;
	width: 450px;
	z-index: 500;
	box-sizing: border-box;
	padding: 30px;
	background: #FFF;
	box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
	border-radius: 4px;
	transform: translateY(-25px);
	opacity: 0;
	animation: load_popup 1s;
	animation-delay: 2s;
	animation-fill-mode: forwards;
	transition: all 0.3s;
	transition-timing: cubic-bezier(.17,.67,.83,.67);
}

@keyframes load_popup {
    from { 
	    opacity: 0;
	    transform: translateY(0);
	}
    to { 
	    opacity: 1; 
		transform: translateY(-25px);
	}
}

.close_popup {
	position: absolute;
	top: 5px;
	right: 12px;
	z-index: 100;
	font-size: 20px;
	color: #999 !important;
}
	
.popup_text {
	float: left;
	width: 100%;
	overflow: hidden;
}

.popup_text strong {
	float: left;
	width: 100%;
	font-family: "gin", serif;
	font-weight: 300;
	font-style: normal;
	text-transform: uppercase;
	font-size: 40px;
	line-height: 1.25em;
	margin-bottom: 20px;
}

.popup_text p {
	line-height: 1.6em;
	margin-bottom: 30px;
}

*/
