body {
	text-rendering:optimizeLegibility;
	-moz-osx-font-smoothing:grayscale;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	scroll-behavior:smooth;
	color:#0020CB;
	background:#E8ECF9;
	min-height: 100vh;
}

a {
	color:#0020CB;
}

.ani {
	transition-duration:300ms;
}

.ani_slow {
	transition-duration:900ms;
}

.btn-menu {
	display:none;
}

.upper {
	text-transform:uppercase;
}

.background {
}

section {
}

.hyphen {
	word-break: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;	
}




header {
	position:fixed;
	display:flex;
	flex-direction:row;
	justify-content:center;
	padding-top:27px;
	width:100%;
	top:0;
	z-index:100000;
	padding-bottom:15px;
	border-bottom:1px solid transparent;
	background-color:transparent;
}

header.on {
	padding-bottom:15px;
	padding-top:27px;
	background-color:rgba(255,255,255,0.98);
	border-bottom:1px solid rgba(0,32,204,0.2);
}

header .wrapper {
	display:flex;
	flex-direction:row;
	justify-content:space-between;
	max-width:1320px;
	width:100%;
	padding: 0 20px;
}

header .logo {
	padding-top:2px;
	padding-left:25px;
	position:relative;
}

header .logo:after {
	position:absolute;
	left:0;
	top:-15px;
	content:' ';
	background-image:url(img/logo.svg);
	background-size:contain;
	background-repeat:no-repeat;
	width:20px;
	height:45px;
	display:block;
}

header.on .logo:after {
	background-image:url(img/logo.svg);
}

header .logo .sm {
	display:none;
}

header nav ul {
	display:flex;
	flex-direction:row;
	justify-content:flex-end;
}

header nav ul li {
	margin-right:10px;
	margin-left:10px;
	margin-top: 2px;
}

header nav ul li.social {
	margin-left:0;
	margin-right:0;
	padding:0;
}

header nav ul li.social svg {
	height:22px;
}

/* .template_home header nav ul li.social svg path {
	fill:#fff;
}

.template_home header.on nav ul li.social svg path {
	fill:#0020CB;
} */

header nav ul li a {
	opacity:.8;
	padding:4px 7px 4px;
	border-radius:10px;
}

header nav ul li.social a {
	padding:0;
}

header.on nav ul li a,.template_home header.on .logo {
	color:#0020CB;
}

header nav ul li a:hover,header nav ul li.on a {
	background-color:rgba(255,255,255,0.78);
	opacity:1;
}

header.on nav ul li a:hover,header.on nav ul li.on a {
	background-color:#E8ECF9;
	opacity:1;
}

section main {
	display:flex;
	flex-direction:column;
}

main section:last-child {
	padding-bottom: 80px;
}

/* HERO */
section.hero .hero-content {
	padding-top:200px;
	padding-bottom:30px;
	flex:1;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
}

section.hero .hero-content-logo {
	margin-bottom:30px;
}

section.hero .hero-content-headline {
	text-align:center;
	max-width:900px;

}

/* NEWS */
section.news {
	padding-top:30px;
	width: 100%;
}

section.news .news-teaser {
	border-radius:10px;
	background-color:rgba(0,32,204,1);
}

section.news .news-teaser a.news-teaser-wrapper {
	display:block;
	color:#fff;
	padding:30px 10px;
}

section.news .news-teaser .more {
	border-bottom:1px solid #fff;
	display:inline-block;
}

section.news .news-teaser .news-teaser-content p {
	display:inline-block;
}

/* CARDS */
section.cards {
	padding-bottom:20px;
}

section.cards .container .row {
	flex-flow:wrap;
}
section.cards .container .cards.row,
.matrix_cards {
	display: flex;
	flex-flow:wrap;
}

section.cards .cards-headline {
	text-align:center;
	padding-top:90px;
	padding-bottom:60px;
}

section.cards .card {
	margin-bottom:20px;
	padding-top:20px;
	padding-bottom:20px;
	border-radius:10px;
	display:block;
	max-width: 100%;
}

section.cards .card:hover {
	background-color:#fff;
	cursor:pointer;
}

section.cards .card.newsletter:hover {
	cursor:auto;
}

section.cards .card-image {
	width:100%;
	display:block;
	border-radius:3px;
}

section.cards .card-headline {
	padding-top:15px;
	padding-bottom:10px;
	padding-right:40px;
}

section.cards .card-wrapper:first-child {
	padding-right:10px;
}

section.cards .card-wrapper:last-child {
	padding-left:10px;
}
section.cards .card-image-wrapper {
	position: relative;
}

section.cards .card-status {
	position: absolute;
	bottom: 0;
	padding: 4px;
	background: red;
	color: white;
}

section.cards .card-date {
	margin-bottom:5px;
}

section.cards .card-summary {
	padding-right:40px;
}

section.cards .card-link {
	margin-top:20px;
}

section.cards .card-link span {
	padding:5px 15px;
	background:rgba(255,255,255,1);
	border-radius:10px;
	display:inline-block;
}

section.cards .card:hover .card-link span {
	background-color:#E8ECF9;
}

section.cards .card.newsletter .card-subscription {
	display:flex;
	flex-direction:column;
}

section.cards .card.newsletter .card-subscription {
	display:block!important;
	background:#ff0;
	width:200px;
	height:20px;
}

section.cards .card.newsletter form {
	margin-top:20px;
}

section.cards .card.newsletter form label {
	float:left;
	clear:left;
	display:block;
	max-width:360px;
	margin-bottom:20px;
}

section.cards .card.newsletter form #email {
	float:left;
	clear:left;
	display:block;
	padding:5px 15px;
	background:rgba(255,255,255,1);
	border-top-left-radius:10px;
	border-bottom-left-radius:10px;
	border:none;
	outline:none;
	width: 150px;
}

section.cards .card.newsletter:hover form #email {
	background-color:rgba(0,32,204,0.1);
}

section.cards .card.newsletter form button {
	float:left;
	display:block;
	padding:5px 15px;
	background-color:#0020CB;
	display:inline-block;
	color:#fff;
	border:none;
	outline:none;
	border-top-right-radius:10px;
	border-bottom-right-radius:10px;
	cursor:pointer;
}

section.cards .card.newsletter:hover form button {
	background-color:#0020CB;
	color:#fff;
}

section.cards .events-link {
	display:flex;
	justify-content:center;
	padding-bottom:30px;
	padding-top: 30px;
}

section.cards .events-link a {
	border-bottom:1px solid rgba(0,32,204,0.3);
}

section.cards .events-link a:hover {
	border-bottom:1px solid rgba(0,32,204,1);
}

/* CONTENT */
.matrix_item {
	padding-bottom:20px;
}

.template_event .sponsor {
	padding-bottom:30px;
}

.template_event .sponsor a {
	margin-right: 1rem;
	display: inline-block;
}

.images_single {
	padding-top:40px;
	margin-bottom:40px;
}

.images_single img {
	width:100%;
	display:block;
}

.images_single .images_description {
	position: absolute;
	display: flex;
	justify-content: center;
	width: 100%;
	bottom: 70px;

}
.images_single .images_description span {
	background: rgba(255, 255, 255, 0.60);
	padding: 3px;
	display: inline-block;
}

.matrix_item h3.matrix_item_headline {
	font-family:'BOLD';
	letter-spacing:1px;
	padding-top:15px;
}

.matrix_item h3 {
	font-family:'BOLD';
	padding-top:15px;
}

.matrix_item.text p {
	padding-bottom:10px;
}

.matrix_item > p:last-child,.matrix_item > ul:last-child {
	padding-bottom:0;
}

.matrix_item ul {
	padding-top:10px;
	padding-bottom:20px;
	display:flex;
	flex-flow:wrap;
}

.matrix_item ul li {
	list-style-type:none;
	list-style-position:inside;
	width: 100%;
	padding-left: 18px;
	position: relative;
	margin-bottom: 4px;
}
.matrix_item ul li:before {
	content:'○';
	position: absolute;
	left: 0;
	top: 0;
	font-weight: bold;
}
.text p strong {
	font-weight:700;
}

.text p img {
	display: inline-block;
}

.text p a {
	border-bottom:2px solid rgba(0,32,203,0.4);
	background-color:#E4F4E3;
	padding: 0 2px;
	border-radius: 3px;
	display: inline-block;
}

.text p em {
	font-style: italic;
}

.text p a:hover {
	border-bottom:2px solid #0020CB;
	background-color:white;

}

.text p em {
	font-style:italic;
}

.text #content-dse > details summary {
	background: white;
	color: #0020CB;
	font-weight: 400;
}

.text #content-dse > details > div {
	padding: 23px;
}

/* PARTNERS */
section.partners {
	padding-bottom:30px;
}

section.partners .partner-headline {
	text-align:center;
	padding-top:50px;
	padding-bottom:40px;
}

section.partners .partner-image {
}

section.partners .partner-image img {
	max-width:130px;
	max-height:50px;
}

section.partners .partner-wrapper {
	text-align:center;
}

section.partners .partner-wrapper a {
	display:inline-block;
	margin:0 20px 20px;
}

/* INFO-CARDS */
section.info.cards {
	background-color:#E4F4E3;
	padding-top:70px;
}

section.info-cards .info-card {
	margin-bottom:60px;
	padding-top:20px;
	padding-bottom:20px;
	border-radius:10px;
}

section.info-cards .info-card:hover {
	background-color:#fff;
	cursor:pointer;
}

section.cards.info .card:hover .card-link span,section.cards.info .card.newsletter:hover form #email {
	background-color:#E4F4E3;
}

/* FOOTER */
footer {
	background-color:#fff;
	padding-top:60px;
	padding-bottom:60px;
}

footer .container .row {
	flex-flow:wrap;
}

footer .footer-text-wrapper {
	padding-left:10px;
	padding-right:10px;
	padding-bottom:15px;
}
footer p a,footer ul li a {
	border-bottom:1px solid rgba(0,32,203,0.4);
}
footer p a:hover,footer ul li a:hover {
	border-bottom:1px solid rgba(0,32,203,1);
}

footer .footer-logo {
	display:flex;
	justify-content:flex-end;
}

footer .footer-logo svg {
	max-height:150px;
	opacity:.2;
}

footer p strong {
	font-weight: bold;
}


@media (max-width: 1280px) {
	header .logo:after {
		top:-14px;
	}
	
	header nav ul li {
		margin-right:2px;
		margin-left:2px;
	}
	
	header nav ul li.social {
		margin-left:3px;
		margin-right:0;
	}
}

@media (max-width: 992px) {
	header,
	header.on {
		padding-bottom:10px;
		padding-top:10px;
		background-color:rgba(255,255,255,0.98);
		border-bottom:2px solid #0020CB;
	}
	
	header .wrapper {
		padding: 0 15px;
		width: 100%;
	}
	
	header .logo {
		padding-left:30px; 
		display: flex;
	}
	
	header .logo:after {
		right: unset;
		top: unset;
		display: inline-block;
	}
	
	header .logo .lg {
		display:none;
	}
	
	header .logo .sm {
		display:block;
	}
	
	header nav {
		display:flex;
		position:fixed;
		width:100vw;
		height:0;
		top:64px;
		z-index:1000;
		right:-200vw;
		background: white;
		height: 100vh;
	}
	
	header nav.on {
		right:0;
		height:calc(100vh - 62px);
	}
	
	header nav ul {
		display:flex;
		flex-direction:column;
		padding-top:40px;
		justify-content:flex-start;
	}
	
	header nav ul li,
	header nav ul li.social {
		margin-left:24px;
		margin-bottom:20px;
	}
	
	header nav ul li.social a {
		margin-left: 5px;
	}
	
	header nav ul li.social svg {
		height: 44px;
		width: 44px;
	}
	
	header .btn-menu {
		display:block;
		flex-direction:column;
		position:absolute;
		top:20px;
		right:25px;
		width:30px;
		height:23px;
		overflow:hidden;
		cursor:pointer;
	}
	
	header .btn-menu.on {
		transform:rotate(90deg);
	}
	
	header .btn-menu div {
		display:block;
		height:4px;
		width:100%;
		background-color:#0020CB;
		margin-bottom:5px;
		border-radius:2px;
	}
	
	section.cards .cards-headline {
		padding-top:45px;
		padding-bottom:30px;
	}
	
	footer {
		padding-top:30px;
		padding-bottom:30px;
	}
	
	footer .container .row .footer-text:nth-child(3) {
	}
	
	footer .footer-text {
		padding-bottom:20px;
	}
	
	footer .container .row .footer-logo:nth-child(4) {
		justify-content:flex-start;
	}
}

@media (max-width: 748px) {


	header .btn-menu {
		right:15px;
	}

	header nav ul {
		padding-top: 0;
		display: block;
	}
	header nav ul li {
		margin-left: 0;
		margin-bottom: 6px;
		float: left;
		width: 100%;
	}
	header nav ul li a {
		padding: 10px;
		display: inline-block;
	}
	header nav ul li.social {
		margin-top: 20px;
		margin-left: 5px;
		height: 40px;
		width: 40px;
	}
	header nav ul li.social svg {
		width: 40px;
		height: 40px;
		display: inline-block;
	}
	
	section.hero .hero-content {
		padding-top: 90px;
		padding-bottom: 10px;
	}
	section.hero .hero-content-logo {
		display: none;
	}
	
	section.news {
		padding-top:0;
		border-radius:0;
	}
	
	section.news .container {
		padding:0;
	}
	
	section.news .news-teaser {
		border-radius:0;
	}
	
	section.news .news-teaser a.news-teaser-wrapper {
		padding:10px;
	}
	
	
	.news-teaser {
		padding-bottom:10px;
	}
	
	.news-teaser .news-teaser-content .wrapper {
		padding:5px 10px;
		background-color:rgba(0,32,204,1);
		overflow:auto;
		display:inline-block;
		border-radius:10px;
		color:#fff;
		width:100%;
	}
	
	section.cards .cards-headline {
		padding-top:30px;
		padding-bottom:10px;
	}
	
	section.info.cards {
		padding-top:0;
	}

	
	footer .footer-logo {
		display:none;
	}
}