/* @group Clear Stylesheet */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;outline:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline;background-image:none;}body{line-height:1;color:black;background:white;text-align:left;}ol,ul{list-style:none}table{border-collapse:collapse;border-spacing:0;}caption,th,td{text-align:left;font-weight:normal;}blockquote:before,blockquote:after,q:before,q:after{content:""}blockquote,q{quotes:"" "";}
/* @end */

body {
	font-size: 18px;
	font-family: var(--font-default-family);
	font-weight: var(--font-default-weight-regular);
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	min-width: var(--responsive-min-width);
}

.width,
.width-wide {
	box-sizing: border-box;
	padding-left: 20px;
	padding-right: 20px;
	margin-left: auto;
	margin-right: auto;
}

	.width {
		max-width: 1020px;
	}

	.width-wide {
		max-width: 1280px;
	}

strong,b {
	font-weight: var(--font-default-weight-bold);
}

h1, h2, h3, h4, h5, h6 {
	font-weight: var(--font-default-weight-bold);
}

.screen-reader-text {
	display: none;
}

.special-font {
	font-weight: var(--font-default-weight-extrabold);
}

a.anchor {
	position: absolute;
	margin-top: -100px !important;
}

center {
	text-align: center;
}

input,
button,
textarea,
.button {
	box-sizing: border-box;
	font-size: 18px;
	font-family: var(--font-default-family);
	font-weight: var(--font-default-weight-regular);
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	background: transparent;
	color: var(--color-black);
	padding: 5px 15px;
	border: 5px solid var(--color-black);
	border-radius: 0;
}

.button {
	border: 5px solid var(--color-black);
	color: var(--color-block);
	padding: 10px 20px;
	text-align: center;
	display: inline-block;
	cursor: pointer;
	text-decoration: none;
	box-sizing: border-box;
	position: relative;
	z-index: 5;
}

	button,
	input[type="submit"] {
		cursor: pointer;
	}

	button:hover,
	input[type="submit"]:hover,
	.button:hover,
	.button-wrapper:hover .button {
		background: var(--color-yellow);
	}

.content {
	line-height: 1.3;
}

	.content p {
		margin-top: 1em;
	}

	.content h2 {
		font-size: 1.7em;
		margin-top: 2em;
		text-transform: uppercase;
		font-weight: var(--font-default-weight-regular);
	}

		.content h2 strong,
		.content h2 b {
			font-weight: var(--font-default-weight-bold);
		}

	.content h3 {
		font-size: 1.5em;
		margin-top: 1.5em;
		font-weight: var(--font-default-weight-regular);
	}

		.content h3 strong,
		.content h3 b {
			font-weight: var(--font-default-weight-bold);
		}

	.content h4,
	.content h5,
	.content h6 {
		font-size: 1.3em;
		margin-top: 1.5em;
		font-weight: var(--font-default-weight-regular);
	}

		.content h4 strong,
		.content h4 b,
		.content h5 strong,
		.content h5 b,
		.content h6 strong,
		.content h6 b {
			font-weight: var(--font-default-weight-bold);
		}

	.content ul,
	.content ol {
		margin-top: 0.5em;
	}

	a {
		color: var(--color-pink);
		text-decoration: underline;
	}

		a:hover {
			color: var(--color-blue);
		}

.tns-controls button {
	display: block;
	width: 30px;
	height: 37px;
	cursor: pointer;
	border: 0;
	padding: 0;
	background: transparent no-repeat center center / contain;
	color: transparent;
}

	.tns-controls button[data-controls=prev] {
		background-image: url(../img/icons/arrow-left.svg);
	}

	.tns-controls button[data-controls=next] {
		background-image: url(../img/icons/arrow-right.svg);
	}

.header {
	background: #fff;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 100;
	width: 100%;
	height: 60px;
	box-shadow: 0 0 10px rgba(0,0,0,.2);
	display: flex;
	align-items: center;
	min-width: var(--responsive-min-width);
}

	.header.scrolled {
		top: -60px;
	}

		.header.scrolled:after {
			content: "";
			display: block;
			width: 100%;
			height: 20px;
			position: absolute;
			bottom: -20px;
			left: 0;
			background: transparent;
			z-index: 100;
		}

	body.transition .header {
		-webkit-transition: height 200ms ease-in-out, top 200ms ease-in-out;
		-moz-transition: height 200ms ease-in-out, top 200ms ease-in-out;
		-o-transition: height 200ms ease-in-out, top 200ms ease-in-out;
		-ms-transition: height 200ms ease-in-out, top 200ms ease-in-out;
		transition: height 200ms ease-in-out, top 200ms ease-in-out;
	}

	@media ( min-width: 783px ) {

		.header.top {
			height: 100px;
		}

	}

	body.admin-bar .header.top {
		top: 46px;
	}

		@media ( min-width: 601px ) {

			body.admin-bar .header {
				top: 46px;
			}

		}

		@media ( min-width: 783px ) {

			body.admin-bar .header,
			body.admin-bar .header.top {
				top: 32px;
			}

		}

	.header .width {
		width: 100%;
		height: 100%;
	}

	.header .logos-wrapper {
		position: relative;
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		height: 100%;
		padding-top: 0;
		color: inherit;
		text-decoration: none;
	}

	.header .logo-archive-wrapper {
		width: 120px;
	}

		@media ( min-width: 783px ) {

			.header.top .logo-archive-wrapper {
				width: 200px;
			}

		}

		body.transition .logo-archive-wrapper {
			-webkit-transition: width 200ms ease-in-out;
			-moz-transition: width 200ms ease-in-out;
			-o-transition: width 200ms ease-in-out;
			-ms-transition: width 200ms ease-in-out;
			transition: width 200ms ease-in-out;
		}

		.header .logo-archive {
			width: 100%;
			height: 0;
			overflow: hidden;
			line-height: 2;
			display: block;
			padding-top: 34%;
			background: url(../img/logo-archive.svg) no-repeat left center / contain;
		}

	.header .logo-new-wrapper {
		width: 100px;
		margin-right: -10px;
		text-align: center;
		font-size: 12px;
		position: relative;
		padding-right: 30px;
		background: url(../img/icons/arrow-right_thin.svg) no-repeat right 10px center / auto 100%;
	}

		.header a:hover .logo-new-wrapper {
			background-position: right 0px center;
		}

		@media ( min-width: 783px ) {

			.header.top .logo-new-wrapper {
				width: 220px;
				font-size: 16px;
				padding-right: 50px;
			}

		}

		body.transition .logo-new-wrapper {
			-webkit-transition: all 200ms ease-in-out;
			-moz-transition: all 200ms ease-in-out;
			-o-transition: all 200ms ease-in-out;
			-ms-transition: all 200ms ease-in-out;
			transition: all 200ms ease-in-out;
		}

		.header .logo-new,
		.footer-cta .logo-new {
			width: 100%;
			height: 0;
			overflow: hidden;
			line-height: 2;
			display: block;
			padding-top: 24%;
			background: url(../img/logo-new.svg) no-repeat center center / contain;
		}

.footer-cta {
	background: #75F0FD;
	display: block;
	padding: 40px 0;
	box-sizing: border-box;
	width: 100%;
	color: var(--color-black);
	text-decoration: none;
	text-align: center;
}

	.footer-cta .width {
		width: 100%;
		display: block;
		background: url(../img/icons/arrow-right_thin.svg) no-repeat right 30px center / auto 100%;
	}

		body.transition .footer-cta .width {
			-webkit-transition: all 200ms ease-in-out;
			-moz-transition: all 200ms ease-in-out;
			-o-transition: all 200ms ease-in-out;
			-ms-transition: all 200ms ease-in-out;
			transition: all 200ms ease-in-out;
		}
	
		.footer-cta:hover .width {
			background-position: right 20px center;
		}

	.footer-cta:hover {
		color: var(--color-black);
	}

	.footer-cta-headline {
		display: block;
		font-size: 4em;
		text-transform: uppercase;
		vertical-align: middle;
	}

		.footer-cta-headline .logo-new-wrapper {
			width: 300px;
			display: inline-block;
			vertical-align: middle;
			margin-top: -13px;
		}

	.footer-cta-description {
		display: block;
		margin-top: 40px;
		font-size: 1.3em;
	}

	@media ( max-width: 970px ) {

		.footer-cta .width {
			background-position: right 15px center;
		}

			.footer-cta:hover .width {
				background-position: right 5px center;
			}

		.footer-cta-headline {
			font-size: 3em;
		}

			.footer-cta-headline .logo-new-wrapper {
				width: 200px;
				margin-top: -8px;
			}

		.footer-cta-description {
			font-size: 1em;
			margin-top: 20px;
		}

	}

	@media ( max-width: 740px ) {

		.footer-cta-headline {
			font-size: 2em;
			line-height: 1.1;
		}

			.footer-cta-headline .logo-new-wrapper {
				width: 160px;
				margin-top: -4px;
			}

		.footer-cta-description {
			padding: 0 30px;
			text-wrap: balance;
			line-height: 1.2;
		}

	}

	@media ( max-width: 470px ) {

		.footer-cta-description,
		.footer-cta-headline {
			padding: 0 30px 0 0;
		}

		.footer-cta .width {
			background-position: right 5px center;
		}

	}

	@media ( max-width: 400px ) {

		.footer-cta-description,
		.footer-cta-headline {
			padding: 0 0 0 0;
		}

		.footer-cta .width {
			background: none;
		}

	}

.footer {
	background: var(--color-black);
	color: var(--color-white);
	text-align: center;
	padding: 20px 0;
	font-size: 12px;
	text-transform: uppercase;
	min-width: var(--responsive-min-width);
}

	.footer a {
		color: inherit;
		text-decoration: none;
		display: inline-block;
		padding: 7px;
	}

		.footer a:hover,
		.footer .current-menu-item a {
			color: var(--color-cyan);
		}

	.footer .menu {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.footer .menu li {
		display: inline;
	}

	@media ( min-width: 680px ) {

		.footer {
			padding: 40px 0;
		}

		.footer a {
			padding: 10px;
		}

	}

.main {
	padding: 60px 0 80px;
	box-sizing: border-box;
	min-height: calc(100vh - var(--footer-height) - var(--topbar-height));
}

	@media ( min-width: 680px ) {

		.main {
			padding: 90px 0 80px;
		}

	}

	@media ( min-width: 783px ) {

		.main {
			padding: 130px 0 80px;
		}

	}

.embed-container {
	display: block;
	position: relative;
	padding-bottom: 56.25%;
	overflow: hidden;
	max-width: 100%;
	height: auto;
	background: var(--color-grey-light) url(../img/icons/loading.svg) no-repeat center center / 40px auto;
}

	.embed-container iframe,
	.embed-container object,
	.embed-container embed {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

.block.index-error {
	text-align: center;
}

.page-title {
	font-size: 2em;
}

.form-error {
	border: 1px solid var(--color-red);
	padding: 20px;
	display: block;
	text-align: center;
	color: var(--color-re);
}

.main.error-404 {
}

	.main.error-404 .content {
		text-align: center;
	}

		.main.error-404 h1 {
			font-size: 2em;
			margin-bottom: 1em;
		}
