/*
Typical Breakpoints:
Mobile: Max 600;
Small devices, portrait modes: 768px;
medium devices, tablets: 992
*/

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

body {
	font-family: 'Open Sans', sans-serif;
	color: #000000;
	background-color: #ffffff;
	font-size: 16px;
	word-wrap: break-word;
}

h1, header, .teaseritem h2, .teaser2 > b, footer, div.result-half, div.navcontent a, .heading {
	font-family: 'Montserrat', sans-serif;
}

h1 {
	font-weight: bold;
	font-size: 24px;
}

h2 {
	font-weight: bold;
	font-size: 20px;
	line-height: 28px;
}

a {
	text-decoration: none;
	font-weight: 600;
	color: #4b9eae;
}

a:hover {
	text-decoration: underline;
}

img {
	max-width:100%;
	max-height:100%;
	/*vertical-align: middle;*/
	vertical-align: text-bottom;
	width: auto;
	height: auto;
	align-self: center;
	flex: 0 0 auto;
}

a img {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

a:hover img {
	filter: brightness(70%);
}

img.line-height {
	height: 20px;
}

img.img-shadow {
	/*box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.3);*/
	box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
}

input:focus-visible {
	outline: none;
}

[class*="col-"] {
  width: 100%;
}

.col-6m {
	width: 50%;
	float: left;
}

div.wrapper {
	padding: 0px 7%;
	max-width: 1400px;
	margin: auto;
}

sup {
	vertical-align: top; font-size: 12px;
}

li {
	list-style-position: outside;
}

hr {
	width: 100%;
	margin-bottom: 20px;
	color: #e4e4e4;
	background-color: #e4e4e4;
	height: 1px;
	border: none;
	display: flex;
}

/* Stop the padding from extending which causes the content to get smaller */
@media (min-width: 1202px) {
	div.wrapper {
		padding: 0px 98px;
	}
}

/* PC Layout */
@media (min-width: 992px) {
	h1 {
		font-size: 36px;
	}
	
	/* column layout */

	.col-1 {width: 8.33%;}
	.col-2 {width: 16.66%;}
	.col-3 {width: 25%;}
	.col-3m {width: 25%;}
	.col-4 {width: 33.33%;}
	.col-5 {width: 41.66%;}
	.col-6 {width: 50%;}
	.col-7 {width: 58.33%;}
	.col-8 {width: 66.66%;}
	.col-9 {width: 75%;}
	.col-10 {width: 83.33%;}
	.col-11 {width: 91.66%;}
	.col-12 {width: 100%;}

	[class*="col-"] {
		float: left;
	}
	
	.pos-left {
		text-align: left;
	}
	
	.pos-right {
		text-align: right;
	}
	
	p, hr {
		flex-basis: 100%;
	}
	
	.row {
		width: 100%;
	}

	.row::after, menu::after {
		content: "";
		clear: both;
		display: table;
	}
}

/* horizontal menu on top */
div.placeholder {
	display: none;
	height: 69px;
	width: 100%;
}

header {
	background-color: #19717f;
	width: 100%;
	color: #f9fafc;
	box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
	z-index: 4;
}

header h1 {
	font-weight: bold;
	font-size: 24px;
	padding: 20px 0px;
}

header a {
	color: #f9fafc;
}

header h1 a {
	color: #f9fafc;
	font-weight: 700;
}

.menu {
	margin-left: 15px;
	font-size: 20px;
	font-weight: 600;
	line-height: 69px;
}

menu {
	list-style: none;
	display: none;
}

ul.dropdown {
	background-color: #4b9eae;
	font-weight: 600;
	list-style: none;
	padding: 10px 10px 5px;
	margin: 0px;
	line-height: normal;
	font-size: 18px;
}

.menu:hover, .menu:active, .menu a:hover {
	color: #cdd5d4;
	text-decoration: none;
}

ul.dropdown li a {
	color: #f9fafc;
}

ul.dropdown li a:hover {
	color: #c7d8d7;
	text-decoration: none;
}

ul.dropdown li {
	text-align: left;
	border-bottom: 1px solid #e6eeee;
	padding: 10px;
}

ul.dropdown li:last-child {
	border-bottom: 0px;
}

.menu:last-child {
	padding-bottom: 20px;
}

/* Menu Spinner Mobile */

input#openMainMenu {
	transition: all 0.3s;
    box-sizing: border-box;
    display: none;
}

input#openMainMenu:checked ~ .sidenav_toggle > .horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    opacity: 0;
}
input#openMainMenu:checked ~ .sidenav_toggle > .diagonal-part-1 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(135deg);
    margin-top: 8px;
}
input#openMainMenu:checked ~ .sidenav_toggle > .diagonal-part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-top: -9px;
}

input#openMainMenu:checked ~ menu {
	display: block;
}

.sidenav_toggle {
	display: block; 
	position: absolute; 
	top: 27px;
	right: 22px;
	cursor: pointer;
	color: black;
	box-sizing: border-box;
	cursor: pointer;
	height: 22px;
	width: 22px;
}

.spinner {
	box-sizing: border-box;
	position: absolute;
	height: 3px;
	width: 100%;
	background-color: #ffffff;
}

.horizontal {
	transition: all 0.3s;
	box-sizing: border-box;
	position: relative;
	float: left;
	margin-top: 3px;
}

.diagonal-part-1 {
	transition: all 0.3s;
	position: relative;
	transition: all 0.3s;
	box-sizing: border-box;
	float: left;
}

.diagonal-part-2 {
	transition: all 0.3s;
	box-sizing: border-box;
	position: relative;
	float: left;
	margin-top: 3px;
}

.horizontal.rotate {
	transition: all 0.3s;
	box-sizing: border-box;
	opacity: 0;
}

.diagonal-part-1.rotate {
	transition: all 0.3s;
	float: left;
	transform: rotate(135deg);
	margin-top: 8px;
}

.diagonal-part-2.rotate {
	transition: all 0.3s;
	float: left;
	transform: rotate(-135deg);
	margin-top: -9px;
}



@media (min-width: 992px) {
	header {
		position: fixed;
		top: 0px;
		left: 0px;
	}
	
	div.placeholder {
		display: block;
	}
	
	.sidenav_toggle {
		display: none;
	}
	
	menu {
		display: block;
	}

	menu .menu {
		/*cursor: pointer;*/
		display: inline-block;
	}
	
	span.drlink {
		display: block;
	}
	
	ul.dropdown {
		display: none;
		position: absolute;
		float: left;
		z-index: 3;
		padding: 0px;
		box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
	}
	
	.menu:hover ul.dropdown {
		display: block;
	}
	.menu:last-child {
		padding-bottom: 0px;
	}
}

div.breadcrumbs {
	margin-top: 25px;
	margin-bottom: 40px;
	font-size: 12px;
	flex-basis: 100%;
}

div.breadcrumbs, div.breadcrumbs a, div.breadcrumbs a:hover {
	color: #c4d3d3;
}

div.breadcrumbs span.current {
	color: #cacaca;
	font-weight: 600;
}

div.pad-left {
	padding-top: 15px;
}

div.pad-right {
	padding-bottom: 15px;
}

div.pad-both {
	padding: 15px 0px;
}

div.pad-all-left {
	padding: 0px 0px 0px 10px;
}
	
div.pad-all-right {
	padding: 0px 10px 0px 0px;
}


/* Main content */
div.maincontent, div.teaser, div.teaser2, footer {
	padding: 20px 0px;
}

div.maincontent div.wrapper p {
	font-size: 15px;
	margin-bottom: 10px;
}

div.maincontent div.wrapper p:last-child {
	margin-bottom: 0px;
}

div.maincontent div.wrapper p.prespan {
	font-weight: bold;
	font-size: 18px;
}

div.maincontent div.wrapper p.big {
	font-weight: bold;
	font-size: 20px;
}

div.maincontent div.wrapper p.small {
	font-size: 12px;
}

div.teaser {
	background-color: #f9fafc;
}

div.teaser div.teaseritem {
	background-color: #ffffff;
	box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
	padding-bottom: 20px;
}

div.teaser div.teaseritem h2, div.teaser div.teaseritem p {
	padding: 0px 20px;
}

div.teaser div.teaseritem p {
	font-size: 15px;
}

div.teaser div.teaseritem img {
	padding-bottom: 15px;
}

div.maincontent h1, div.maincontent h2, div.maincontent section {
	padding-bottom: 10px;
}

div.maincontent section:last-child h1 {
	margin-top: 20px;
}

div.maincontent section:first-child h1 {
	margin-top: 0px;
}

div.maincontent section:last-child {
	padding-bottom: 0px;
}

div.maincontent section ol {
	padding: 10px 0px 10px 40px;
	font-size: 15px;
}

div.maincontent section ol li {
	padding-left: 10px;
	margin-bottom: 2px;
}

div.maincontent section ol li::marker {
	padding-right: 10px;
}

div.maincontent ul.inside, div.maincontent ol.inside {
	padding: 10px 0px 10px 40px;
	font-size: 15px;
}

div.maincontent img.img-padding-full {
	margin: 20px 0px 20px;
}

div.maincontent img.img-padding-full-description {
	margin: 20px 0px 10px;
}

div.maincontent img.img-padding-bottom {
	margin: 0px 0px 10px;
}

div.maincontent img.img-padding-right {
	margin-bottom: 10px;
}

div.maincontent div.img-desc {
	font-size: 11px;
	margin-bottom: 20px;
	flex-basis: 100%;
}

div.maincontent span.block {
	display: block;
}

div.maincontent span.pad-right {
	padding-right: 20px;
}

div.teaser2 {
	background-color: #e6eeee;
	color: #19717f;
}

div.teaser2 b {
	font-size: 20px;
}

div.searchcontent {
	background-color: #e6eeee;
	margin: 40px 0px 60px;
	padding: 20px 0px 40px;
}

div.searchcontent div.row:last-child {
	padding-bottom: 0px;
}

div.search {
	width: 100%;
	padding: 40px 0px 0px;
}

div.search h1 {
	padding-bottom: 0px;
	line-height: 100%;
}

div.search p.big {
	margin: 20px 0px;
}

div.search div.dropdowns {
	background-color: #f9fafc;
	width: 100%;
	padding: 20px;
	margin-top: 30px;
}

div.search div.dropdowns div {
	position: relative;
}

div.search div.dropdowns select, div.search div.dropdowns input[type="text"] {
	width: 100%;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	/*background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mP8nwYAAmoBZ0eMiB8AAAAASUVORK5CYII=) repeat;*/
	background-color: transparent;
	border: none;
	border-radius: 3px;
	box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
	cursor: pointer;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	height: 40px;
	outline: none;
	padding: 0px 25px 0px 10px;
	width: 100%;
	color: #4b9eae;
	font-weight: bold;
	z-index: 2;
	position: relative;
}

div.search div.dropdowns select option {
	font-weight: normal;
	color: #565656;
}

div.search div.dropdowns select option.title,div.search div.dropdowns select option.title:hover {
	color: #4b9eae;
	font-weight: bold;
}

div.search div.dropdowns div.triangle {
	color: #4b9eae;
	position: absolute;
	top: 25px;
	right: 15px;
}

div.search div.dropdowns div.pad-right div.triangle {
	top: 10px;
}

div.search div.dropdowns input[type="submit"] {
	background-color: #4b9eae;
	box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
	color: #ffffff;
	width: 100%;
	border: 0px;
	font-weight: bold;
	cursor: pointer;
	border-radius: 3px;
	height: 40px;
	font-size: 16px;
}

div.search div.dropdowns input[type="submit"]:hover {
	background-color: #19717f;
}

div.result {
	background-color: #ffffff;
	padding: 20px;
	box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
	display: flex;
	flex-wrap: wrap;
}

div.result-half {
	float: left;
	width: 50%;
	color: #cacaca;
	align-self: flex-end;
	font-size: 15px;
	font-weight: 600;
}

div.result-half a {
	font-size: 15px;
}

div.result-half img {
	width: 33%;
	padding-bottom: 5px;
	max-width: 50px;
}

.heading {
	color: #cacaca !important;
}

div.maincontent div.wrapper div.result-text, div.searchcontent div.wrapper div.result-text {
	padding: 10px 0px;
}

div.maincontent div.wrapper div.result-text p, div.searchcontent div.wrapper div.result-text p {
	font-weight: 600;
	padding: 0px;
	margin: 0px;
}

div.maincontent div.wrapper div.navcontent p {
	padding: 15px 0px;
	border-bottom: 1px solid #e4e4e4;
	margin: 0px;
}

div.maincontent div.wrapper div.navcontent p:first-child {
	padding: 0px 0px 15px;
	border-bottom: none;
}

div.maincontent div.wrapper div.navcontent p:last-child {
	padding: 15px 0px 0px;
	border-bottom: none;
}

div.navcontent img.img-shadow {
	margin-top: 10px;
	vertical-align: unset;
}

div.text-right {
	text-align: right;
}

div.map {
	margin: 30px 0px;
	box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
	position: relative;
}

label.pin {
	display: block;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

div.pinwrapper {
	position: absolute;
	width: 1.2%;
	height: 2%;
	background-color: #4b9eae;
	border-radius: 50%;
	cursor: pointer;
}

div.pinwrapper div.explanation {
	display: none;
	position: fixed;
	box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
	background-color: #ffffff;
	white-space: nowrap;
	padding: 10px;
	z-index: 3;
	bottom: 0;
	left: 0;
	width: 100%;
}

div.pinwrapper div.explanation label {
	color: #cacaca;
	display: block;
	position: absolute;
	right: 10px;
	top: 10px;
	font-weight: bold;
}

div.pinwrapper div.explanation label:hover {
	color: #000000;
}

div.pinwrapper input {
	display: none;
}

div.pinwrapper input:checked ~ div.explanation {
	display: block;
}

div.framework {
	background-color: #f9fafc;
	width: 100%;
	padding: 20px;
	margin: 30px 0px;
}

div.framework div.framework_inner {
	position: relative;
}

div.framework input[type="radio"] {
	display: none;
}

div.framework img {
	filter: brightness(70%);
}

div.framework input[type="radio"]:checked ~ img, div.framework_inner:hover img {
	filter: none;
}

div.framework label {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

div.framework input[type="submit"] {
	background-color: #4b9eae;
	box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
	color: #ffffff;
	width: 100%;
	border: 0px;
	font-weight: bold;
	cursor: pointer;
	border-radius: 3px;
	height: 40px;
	margin-top: 20px;
	font-size: 16px;
}

div.framework input[type="submit"]:hover {
	background-color: #19717f
}

div.framework .nowrap {
	display: flex;
	flex-wrap: nowrap !important;
}

div.framework .pad-right {
	padding-bottom: 5px;
}

div.casestudy {
	background-color: #f9fafc;
	padding: 40px 0px 0px;
	margin: 20px 0px 0px;
}

div.casestudy div.space {
	width: 100%;
}

div.casestudy h2 {
	color: #19717f;
	margin-bottom: 10px;
}

div.casestudy h3 {
	color: #19717f;
	margin: 10px 0px;
}

div.casestudy ul {
  list-style: none; /* Remove default bullets */
}

div.casestudy ul li {
	margin-left: 2em;
}

div.casestudy ul li::before {
  content: "";
  background-color: #19717f;
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  margin-left: -2em;
  margin-right: 1.25em;
}

div.casestudy p.download {
	margin-top: 30px;
}

div.casestudy p.download a {
	font-weight: bold;
	font-size: 16px;
}

div.casestudy p.download a img {
	transform: rotate(-90deg);
}

div.casestudy div.sidebar p {
	margin: 20px 0px 0px 0px;
}

div.casestudy div.sidebar p:first-child {
	margin: 0px;
}

div.casestudy div.sidebar b {
	font-size: 16px;
	color:  #19717f;
}
div.casestudy img.flag {
	float: left;
	height: 30px;
	margin: 5px 10px 0px 0px;
	display:inline-block;
	vertical-align:bottom;
}

.highlight {
	color: #d65a41;
}

p.highlight {
	border-left: 2px solid #d65a41;
	padding-left: 10px;
	margin-left: 10px;
	font-size: 16px !important;
	font-weight: 600;
}

iframe {
	width: 83vw;
	height: 47vw;
	border: 0px;
}

.no-mobile {
	display: none;
}

/* only first level p! */
div.teaser2 > .wrapper > p {
	font-weight: 600;
}

div.teaser2 > .wrapper > b {
	padding-top: 20px;
}

footer {
	background-color: #4b9eae;
	color: #ffffff;
}

footer a, footer a.hover {
	color: #ffffff;
}

footer a.big {
	font-size: 20px;
	font-weight: 600;
	line-height: 150%;
}

footer img {
	width: 33%;
	padding: 10px 4% 0px;
	float: left;
}

footer div.sublinks {
	padding-top: 20px;
	line-height: 150%;
}

footer div.logos {
	overflow: hidden;
}

@media (min-width: 992px) {
	div.wrapper {
		display: flex;
		flex-wrap: wrap;
	}
	
	div.breadcrumbs {
		margin-bottom: 50px;
	}
	
	div.maincontent {
		padding: 0px 0px 50px;
	}
	
	footer, div.teaser, div.teaser2 {
		padding: 50px 0px;
	}
	
	div.searchcontent {
		padding: 50px 0px;
		margin: 60px 0px;
	}
	
	div.maincontent h1, div.maincontent h2, div.maincontent section {
		padding-bottom: 20px;
	}
	
	div.maincontent div.wrapper [class*="col-"], div.searchcontent div.wrapper [class*="col-"] {
		display: flex;
		flex-wrap: wrap;
	}
	
	div.maincontent img.img-padding-right {
		margin-right: 20px;
		margin-bottom: 10px;
	}
	
	div.teaser div.teaseritem {
		height: 100%;
	}
	
	div.search {
		padding: 0px;
	}
	
	div.search div.dropdowns {
		display: flex;
	}
	
	div.search div.dropdowns div.triangle {
		top: 10px !important;
	}
	
	div.search div.dropdowns div.pad-right div.triangle {
		right: 25px;
	}
	
	div.search div.dropdowns div.pad-both div.triangle {
		right: 15px;
	}
	
	div.searchcontent div.row {
		padding-bottom: 20px;
		display: flex;
	}
	
	div.result {
		align-content: space-between;
	}

	div.pad-left {
		padding: 0px 0px 0px 40px;
	}
	
	div.pad-all-left {
		padding: 0px 0px 0px 20px;
	}
	
	div.pad-right {
		padding: 0px 40px 0px 0px;
	}
	
	div.pad-all-right {
		padding: 0px 20px 0px 0px;
	}
	
	div.pad-both {
		padding: 0px 20px;
	}
	
	div.search div.pad-left {
		padding: 0px 0px 0px 20px;
	}
	
	div.search div.pad-right {
		padding: 0px 20px 0px 0px;
	}
	
	div.search div.pad-both {
		padding: 0px 10px;
	}
	
	div.pinwrapper div.explanation {
		display: none !important;
	}
	
	div.pinwrapper:hover div.explanation {
		display: block !important;
		position: absolute;
		bottom: auto;
		width: auto;
		margin-left: -120px;
	}
	
	div.pinwrapper div.explanation label {
		display: none;
	}
	
	div.border-left {
		border-left: 1px solid #e4e4e4;
		align-self: flex-start;
	}
	
	/*div.border-right {
		border-right: 1px solid #c4d5c4;
	}*/
	
	div.border-left a {
		font-weight: bold;
	}
	
	div.bottomtext {
		align-self: flex-end;
	}
	
	div.casestudy {
		padding: 60px 0px;
		margin: 60px 0px 0px;
	}
	
	div.casestudy div.space {
		width: 100%;
		height: 40px;
	}
	
	#ref-01, #ref-02, #ref-03, #ref-04, #ref-05, #ref-06, #ref-07, #ref-08, #ref-09, #ref-10, #ref-11, #ref-12, #ref-13, #ref-14, #ref-15, #ref-16, #ref-17, #results {
		display: block;
		visibility: hidden;
		height: 0px !important;
		position: absolute;
		margin: -69px;
	}
	
	iframe {
		width:100%;
		height: 100%;
		border: 0px;
	}
}

.nodot {
	display: none;
}
