* {
	box-sizing:border-box;
}

:root {
	--bluecolor:#195088;
	--basecolor:#536726;
	--basecolor:#222;
	--backgroundcolor:#fff;
	--topmenucolor:#fff;
	--mobilemenucolor:#fff;
	color:var(--basecolor);
	
	--fontsizenormal:1.5em;
	--fontsizequotes:1.2em;
	--fontsizeh1titles:2.5em;
	--fontsizeh2titles:1.5em;
	--fontsizetopmenu:0.6em;
	--fontsizemobilemenu:1.2em;

	font-size:var(--fontsizenormal);
	font-family: 'PT Sans', sans-serif;
		
	--sitecontainermaxwidth:1920px;
	--sitecentermaxwidth:1100px;
	--contentpaddingh:20px;

}

html {
	scroll-behavior: smooth;
}

div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p {
	margin: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: top;
}

.bluetexts {
	color: var(--bluecolor);
	font-weight:bold;
}

.skiplink {
	position: fixed;
	top:0; left:0; right:0;
	text-align: center;
	padding: 10px;
	background-color: black;
	color: white;
	transform: translateY(-100%);
	transition: transform 250ms ease-in-out;
	z-index: 10;
}

.skiplink:focus {
	transform: translateY(0);
}

.isrelative {
	position: relative;
}

#sitecontainer {
	max-width:var(--sitecontainermaxwidth);
	margin-left:auto; margin-right:auto;
}

.site_center {
	max-width:var(--sitecentermaxwidth);
	margin-left:auto; margin-right:auto;
	padding:0px var(--contentpaddingh);
}

#datopline {
	padding-top:15px;
	padding-bottom:20px;
	background-color: var(--bluecolor);
}

#datopline > div {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#datoplogo {
	color: white;
	font-size: 0.8em;
}

#datoplogo p {
	font-weight: bold;
}

#datoplogo p:first-child {
	font-size: 2em;
}

#datoplogo a {
	color:white;
}

#datoplogo a:hover {
	text-decoration: none;
}

#datopbuttons {
	float:right;
	text-align:right;
}

#datopbuttons img {
	margin:0px 5px;
}

#damenubutton {
	display:none;
	text-align:right;
	margin-right:10px;
	cursor:pointer;
	position: fixed;
	top:10px; right: 10px;
	z-index: 110;
}

#topmenu {

}

#damenu ul {
	list-style-type:none;
	padding:0px;
	margin:0px;
	display: -webkit-flex;
	display:flex;
}

#damenu ul li {
	list-style-type:none;
	padding:0px;
	margin:0px;
}

#damenu ul li a {
	display:block;
	text-transform:uppercase;
	color:var(--topmenucolor);
	font-size:var(--fontsizetopmenu);
	margin-right:30px;
}

#damenu ul li.active a, #damenu ul li a:hover {
}

#damenu ul li a:hover {
	text-decoration:none;
}


#damobilemenu {
	background-color: rgba(25,80,136,0.95);
	position: fixed;
	top:0px; left:0px; bottom:0px; right:0px;
	z-index: 100;
	transition: all 0.5s;
	padding-top: 80px;
	overflow: hidden;
}

#damobilemenu.hidemenu {
	transform: translateX(-100%);
}

#damobilemenu ul {
	display: -webkit-flex;
	display:flex;
	flex-direction:column;
	align-items:flex-start;
}

#damobilemenu ul li {
	width: 100%;
	list-style-type:none;
	padding:0px;
	margin:0px;
}

#damobilemenu ul li a {
	display: block;
	position: relative;
	font-size: var(--fontsizemobilemenu);
	padding:10px 10px 10px 60px;
	margin: 0px;
	border-bottom: 1px solid #ddd;
	color: var(--mobilemenucolor);
	text-transform: uppercase;
}

#damobilemenu ul + ul li:last-child a {
	border-bottom: 0px;
	margin-top: 40px;
}

#damobilemenu ul li.active a::before, #damobilemenu ul li a:hover::before {
	content: '⏵';
	position: absolute;
	left:30px; top:6px;
}


#daheader {
	min-height:400px;
	width:100%;
	position: relative;
	border-top: 2px solid white;
}

#daheader::before {
	content: '';
	width:100%;
	position: absolute;
	top:-6px; left:0px;
	border-top: 1px solid white;
}


#dacontent {
	padding:30px 0px;
	position:relative;
}


#dafooter {
	padding-top:30px;
	padding-bottom:30px;
	position:relative;
	background-color: var(--bluecolor);
	font-size:0.6em;
	color:white;
}

.page-header {
	text-align: center;
}

.page-header > h1 {
	display:inline-block;
	font-weight:bold;
	text-transform:uppercase;
	font-size:var(--fontsizeh2titles);
	border-bottom:5px solid var(--bluecolor);
	margin-bottom:30px;
	padding: 0px 10px;
}

/* ###################### OVERALL SETTINGS ###################### */
HTML {
}

BODY {
	background-color:var(--backgroundcolor);
}

h1 {
	font-size:var(--fontsizeh1titles);
	letter-spacing:1px;
	color:var(--basecolor);
	margin:15px 0px 80px;
	position: relative;
	text-align: center;
	line-height:1em ;
}

h2 {
	font-size:var(--fontsizeh2titles);
	letter-spacing:1px;
	color:var(--basecolor);
	margin:10px 0px;
	font-weight: bold;
}

hr {
	border: 0;
	height:0px;
	border-top: 10px solid var(--bluecolor);
	position: relative;
}

/* ###################### LINKS ###################### */
a:link, a:visited {
  font-weight	   : bold;
  text-decoration  : none;
}

a:hover, a:active {
	text-decoration:underline;
}

img {
	border:none;
	max-width:100%;
}

td {
	vertical-align:top;
}

.clearit {
	clear:both;
}

#dacontent img, #datopline img {
	max-width:100% !important;
	height:auto;
}

#daparallax1 {
	
}

.pcontainer {
	box-sizing:border-box;
	-webkit-align-items: center;
	align-items: center;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0;
	padding: 15px;
	position: relative;
	width: 100%;
	min-height: 600px;
}

.pcontainer .pcontent {
	box-sizing:border-box !important;
	width:100%;
	text-align:center;
}

.parallax__container {
	clip: rect(0, auto, auto, 0);
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -100;
}
.parallax__container .parallax {
	/* can be put in a seperate class for better control */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	/* --------------------------- */
	position: fixed;
	top: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	width: 100%;
}

.pcontainer .pcontent p {
	display:inline-block;
	padding:20px 40px;
	text-align:center;
	font-size:45px !important;
	color:#fff !important;
	background-color:rgba(0,0,0,0.6);
	margin:200px 0px;
}


#footertable, #footertable tbody, #footertable tr, #footertable td {
	display:block;
}

#footertable a {
	color:#fff;
	text-decoration:none;
	font-weight:normal;
}

#footertable img {
	margin-left:10px;
	margin-right:10px;
	margin-bottom:10px;
}

#footertable tr {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(3,1fr);
	gap: 1em;
}

#footertable td {
	padding: 1em;
}

#footertable td:nth-child(3) {
}


.blogreferences {
	display: grid;
	gap: 2em;
	width: 100%;
	grid-template-columns: repeat(3,1fr);
}

.blogreferences .row-separator {
	display: none;
}

.blogreferences .items-row > *, .blogreferences .items-row > * > * {
	height: 100%;
}

.blogreferences .items-row .item {
	display: grid;
	height: 100%;
	width: 100%;
	grid-template-rows: 1fr auto;
	gap: 4px;
}

.blogreferences .items-row .item h3 {
	background-color: var(--bluecolor);
	margin: 0px;
	text-align: center;
	font-size: 1em;
}

.blogreferences .items-row .item h3 a {
	display: flex;
	color: white;
	justify-content: center;
	align-items: center;
	height: 100%;
	font-size: 0.9em;
	padding: 6px;
}

.blogreferences .items-row .item h3 a:hover {
	text-decoration: none;
}

.blogreferences .danewsimage {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background-color: white;
}

.blogreferences .danewsimage img {
	width: 100%;
	height: 100%;
	object-fit: cover; 
	object-position: center center;
	transition: transform 1s;
}

.blogreferences .danewsimage:hover img {
	transform: scale(1.5);
}


/* =========================== switch < 1100px ================================= */
@media screen and (max-width: 1100px) {

:root {
	--sitecentermaxwidth:95%;
}

iframe {
	width:100% !important;
}

}



@media screen and (max-width: 800px) {

	#daheader {
		min-height:300px;
	}

	#daheader .custom p {
		font-size:1em;
	}

	#daheader .custom p:first-child {
		font-size:1.22em;
	}

	#damenu ul {
		display: none;
	}

	#damenubutton {
		display:block;
	}

	.pcontainer .pcontent p {
		padding:20px 40px;
		font-size:25px !important;
		margin:100px 0px;
	}
	
	#footertable tr {
		grid-template-columns: 1fr;
	}
	
	#footertable td {
		text-align:center;
	}
	
	.blogreferences {
		grid-template-columns: repeat(2,1fr);
	}
}
	
@media screen and (max-width: 500px) {

	#datoplogo {
		float:none;
		text-align:center;
	}

	#datopbuttons {
		float:none;
		text-align:center;
		margin-top:10px;
	}

	#daheader {
		padding-top:220px;
	}
	
	#daheader .custom {
		width:100%;
	}

	#daheader .custom p {
		font-size:0.8em;
	}

	#daheader .custom p:first-child {
		font-size:1em;
	}
	
	.blogreferences {
		grid-template-columns: 1fr;
	}

}

