/* Schriften */
@font-face {
	font-family: 'Anton';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: local(''), url('/shared/fonts/anton-v15-latin-regular.woff2') format('woff2'), url('/shared/fonts/anton-v15-latin-regular.woff') format('woff');
}
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: local(''), url('/shared/fonts/source-sans-pro-v14-latin-regular.woff2') format('woff2'), url('/shared/fonts/source-sans-pro-v14-latin-regular.woff') format('woff');
}
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: local(''), url('/shared/fonts/source-sans-pro-v14-latin-700.woff2') format('woff2'), url('/shared/fonts/source-sans-pro-v14-latin-700.woff') format('woff');
}

/* Allgemein */
:root {
	--color-lime: #c7d300;
	--color-green: #a2c510;
	--color-blue: #0087c1;
	--color-grey: #707070;
}
body {
	font-family: "Source Sans Pro", var(--bs-font-sans-serif);
	color: var(--color-grey);
	font-size: 1.25rem;
	line-height: 1.5;
	-ms-hyphens: auto;
	-webkit-hyphens: auto;
	hyphens: auto;
}
::selection {
	background: var(--color-lime);
	color: #fff;
}
.mfp-title {
	font-size: 1.25rem;
	line-height: 1.5;
}
a {
	color: var(--color-blue);
	text-decoration: none;
	border-bottom: 1px solid var(--color-blue);
	transition: color .2s, border .2s;
}
a:hover, a:focus, a:active {
	color: var(--color-lime);
	border-color: var(--color-lime);
}
b, strong {
	font-weight: 700;
}
small {
	font-size: 1rem;
	line-height: 1.5;
}
.text-dark {
	color: var(--color-grey) !important;
}
main ul {
	list-style: none;
	margin-bottom: 2rem;
}
main li::before {
	content: "";
	width: 1rem;
	height: 1rem;
	margin-left: -2rem;
	margin-right: 1rem;
	display: inline-block;
	background: url(/shared/img/dot.png) left center / 1rem 1rem no-repeat;
}
#noscript {
	background: var(--color-lime);
	z-index: 1103;
	font-size: 1rem;
}

/* Tabelle */
.table {
	min-width: 1111px;
}
.table th {
	text-transform: uppercase;
	font-family: "Anton", var(--bs-font-sans-serif);
	font-weight: 400;
	font-size: 2.5rem;
	color: var(--color-blue);
	padding: 1rem;
}
.table td {
	color: var(--color-grey);
	padding: 1rem;
}
.table tr:last-child td {
	border-bottom: 0;
}

/* Schaltflächen */
.btn {
	background: var(--color-blue);
	transition: background .2s, border .2s;
	border-radius: 0;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25rem;
	box-shadow: none !important;
	border-color: var(--color-blue);
	padding: .575rem 1.25rem .75rem 1.25rem;
	font-family: "Anton", var(--bs-font-sans-serif);
}
.btn:hover, .btn:focus {
	background: var(--color-lime);
	color: #fff;
	border-color: var(--color-lime);
}
.btn.btn-secondary {
	background: none;
	border: 0;
	color: var(--color-blue);
	padding: 0;
	transition: color .2s;
}
.btn.btn-secondary:hover, .btn.btn-secondary:focus {
	color: var(--color-lime);
}
.btn.btn-secondary svg {
	fill: var(--color-lime);
	transform: translateY(-1px);
}
main .btn[aria-expanded="true"] {
	color: var(--color-lime);
}
main .btn svg {
	transition: transform .2s;
}
main .btn[aria-expanded="true"] svg {
	transform: rotate(90deg);
}

/* Überschriften */
h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
	text-transform: uppercase;
	font-family: "Anton", var(--bs-font-sans-serif);
	font-weight: 400;
	line-height: 1.25;
	margin-bottom: 1rem;
	color: var(--color-blue);
}
h1, .h1 {
	font-size: 4rem;
	margin-bottom: 2rem;
}
h2, .h2 {
	font-size: 2.5rem;
}
h3, .h3 {
	font-size: 1.75rem;
}
h4, .h4 {
	font-size: 1.5rem;
	color: var(--color-lime);
}

/* Formular */
.form-select:hover, .form-check-input:hover {
	cursor: pointer;
}
.form-control, .form-select, .form-check-input {
	border-color: var(--color-lime);
	transition: border .2s;
	font-size: 1rem;
	border-radius: 0;
}
.form-control:hover, .form-select:hover {
	border-color: var(--color-blue);
}
.form-control:focus, .form-select:focus, .form-check-input:focus {
	box-shadow: none;
	border-color: var(--color-blue);
}
.form-check .form-check-input {
	width: 1.5em;
	height: 1.5em;
	margin-left: -1.9em;
	border-radius: 0;
}
.form-check-input:checked {
	background: var(--color-blue);
	border-color: var(--color-blue);
	box-shadow: none;
}

/* Ladekreis */
#loader {
	height: 100vh;
	position: fixed;
	z-index: 1101;
	left: 0;
	top: 0;
	display: flex;
}
.no-js #loader {
	display: none;
}
#loader::after {
	border: .5rem solid #fff;
	border-top: .5rem solid var(--color-lime);
	border-radius: 50%;
	width: 4rem;
	height: 4rem;
	animation: spin 1s infinite;
	display: block;
	content: "";
	z-index: 1102;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Navigation */
#menu {
	z-index: 700;
}
#menu .navbar-brand {
	max-width: 15rem;
}
#menu a {
	color: var(--color-blue);
	border: none;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	font-size: 2rem;
}
#menu a:hover, #menu a:focus, #menu a:active, #menu a.active {
	color: #fff;
}

/* Kopfbereich */
header {
	padding-bottom: 8rem;
}
header .wave {
	height: 10rem;
}
.mask img {
	object-fit: cover;
	clip-path: url(#mask);
}
.mask video {
	object-fit: cover;
	clip-path: url(#videomask);
}
header .container.video {
	margin-top: -6rem
}
.mask.cta > div {
	background: linear-gradient(35deg, var(--color-lime), var(--color-green));
	clip-path: url(#mask);
	padding: 4rem;
	max-width: 40rem;
}
.iphone .mask img, .iphone .mask.cta > div {
	clip-path: none;
}
.mask.cta a:hover, .mask.cta a:focus {
	color: #fff;
}
#teaser {
	background: var(--color-blue);
}
header figure {
	position: relative;
	z-index: -1;
}
header figure:not(.video) {
	right: 5%;
	top: 0;
	width: 55%;
	position: absolute;
}

/* Kurse */
#courses a h4 {
	transition: color .2s;
	color: var(--color-blue);
}
#courses a:hover h4, #courses a:focus h4 {
	color: var(--color-lime);
}
#courses a img {
	max-width: 300px;
}
#courses .carousel-control-next, #courses .carousel-control-prev {
	width: 3rem;
	opacity: 1;
}
#courses .carousel-control-prev-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c7d300'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
#courses .carousel-control-next-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c7d300'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
#courses .modal-title {
	line-height: 1.25;
}
#courses .modal-content, #courses .modal-header, #courses .modal-body, #courses .modal-footer {
	background: var(--color-blue);
	border: 0;
	color: #fff;
}
#courses .modal-footer a.btn.btn-secondary {
	color: #fff;
}
#courses .modal-footer a.btn.btn-secondary:focus, #courses .modal-footer a.btn.btn-secondary:hover {
	color: var(--color-lime);
}
#courses .modal-header .btn-close {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
	opacity: 1;
	box-shadow: none;
}

/* Kontakt */
.contact {
	background: linear-gradient(135deg, var(--color-lime), var(--color-green));
	color: #fff;
}
.contact a {
	color: #fff;
}
.contact a:hover, .contact a:focus {
	color: var(--color-blue);
}
.contact .btn.btn-secondary:hover, .contact .btn.btn-secondary:focus {
	color: #fff;
}

/* Fußzeile */
.wave svg {
	height: 25rem;
	margin-bottom: -15rem;
}
footer {
	background: linear-gradient(to bottom, var(--color-lime), var(--color-green));
}
footer .wave {
	left: 0;
	bottom: 0;
	z-index: -1;
}
footer a {
	color: #fff;
}
footer img {
	max-width: 20rem;
}
footer .nav a {
	color: #fff;
	border: none;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 1.25rem;
}
footer .nav a:hover, footer .nav a:focus, footer .nav a:active, footer .nav a.active, footer a:hover, footer a:focus {
	color: var(--color-blue);
}

/* Media Queries */
@media (min-width: 576px) {
	.wave svg {
		height: 40rem;
		margin-bottom: -30rem;
	}
	header .container.video {
		margin-top: calc(-1 * clamp(9rem, 5.8975rem + 9.025vw, 20rem));
	}
}
@media (min-width: 768px) {
	header .wave {
		height: 12.5rem;
	}
	#menu .navbar-brand {
		max-width: 20rem;
	}
	.mask.cta > div {
		padding: 5rem;
	}
	.wave svg {
		height: 45rem;
	}
}
@media (max-width: 991.98px) and (max-height: 600px) {
	#menu a {
		padding: 0;
	}
}
@media (max-width: 991.98px) {
	#menu button {
		box-shadow: none;
		position: relative;
		z-index: 702;
	}
	#menu .navbar-nav {
		opacity: 0;
		visibility: hidden;
		left: 0;
		top: 0;
		height: 100vh;
		position: absolute;
		width: 100%;
		z-index: 701;
		background: linear-gradient(35deg, var(--color-lime), var(--color-green));
		transition: opacity .4s, visibility .4s;
	}
	#menu .is-active + div > .navbar-nav {
		opacity: 1;
		visibility: visible;
	}
}
@media (min-width: 992px) {
	body {
		font-size: 1.5rem;
	}
	.btn {
		font-size: 1.75rem;
	}
	h1, .h1 {
		font-size: 7.5rem;
		line-height: 1;
	}
	h2, .h2 {
		font-size: 5rem;
		line-height: 1;
	}
	h3, .h3 {
		font-size: 3rem;
	}
	h4, .h4 {
		font-size: 2rem;
	}
	#menu a, .nav a {
		font-size: 1.25rem;
	}
	main figure.float-lg-start {
		max-width: 50%;
		margin: .75rem 30px 3rem 0;
	}
	main figure.float-lg-end {
		max-width: 50%;
		margin: .75rem 0 3rem 30px;
	}
	main figure.float-lg-start + figure.float-lg-end {
		margin-left: 0;
	}
	main .clear {
		clear: both;
	}
	header .wave {
		height: 15rem;
	}
	header figure.video {
		right: unset;
		top: unset;
		width: 100%;
		position: relative;
		z-index: -1
	}
	#main figure {
		right: -5%;
		top: 30rem;
		width: 50%;
		position: absolute;
	}
	#main .mask.cta {
		left: 55%;
		top: 2rem;
		position: absolute;
		z-index: 1;
	}
	.form-check .form-check-input {
		margin-left: -2.25em;
	}
	article figure {
		left: -7.5%;
		top: 2rem;
		width: 40%;
		position: absolute;
	}
	article:nth-of-type(even) figure {
		right: -7.5%;
		left: auto;
	}
}
@media (min-width: 1280px) {
	header .wave {
		height: 17.5rem;
	}
	#menu .navbar-brand {
		max-width: 25rem;
	}
	#main figure {
		top: 20rem;
	}
}
@media (min-width: 1400px) {
	h1, .h1 {
		font-size: 10rem;
	}
	#menu .navbar-brand {
		max-width: 30rem;
	}
	header .wave {
		height: 20rem;
	}
	.carousel-control-prev {
		left: -4rem;
	}
	.carousel-control-next {
		right: -4rem;
	}
	footer {
		background: none;
	}

}
@media (min-width: 1680px) {
	#menu a, .nav a {
		font-size: 1.75rem;
	}
	header .wave {
		height: auto;
	}
}
@media (min-width: 1920px) {
	article figure {
		left: -5%;
		width: 42.5%;
	}
	article:nth-of-type(even) figure {
		right: -5%;
	}
	header .wave {
		margin-top: -3rem;
	}
	footer .wave {
		bottom: -10rem;
	}
}
@media (min-width: 2560px) {
	#menu .navbar-brand {
		max-width: 40rem;
	}
	#main figure {
		top: 10rem;
	}
	header figure {
		right: -10%;
		width: 60%;
	}
	footer .wave {
		bottom: -20rem;
	}
}

/* Hamburger-Icon */
.hamburger {
	padding: 10px;
	display: inline-block;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible; }
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
	background-color: var(--color-blue); }
.hamburger-box {
	width: 40px;
	height: 24px;
	display: inline-block;
	position: relative; }
.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -2px; }
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
	width: 40px;
	height: 4px;
	background-color: var(--color-blue);
	border-radius: 4px;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease; }
.hamburger-inner::before, .hamburger-inner::after {
	content: "";
	display: block; }
.hamburger-inner::before {
	top: -10px; }
.hamburger-inner::after {
	bottom: -10px; }
.hamburger--spin .hamburger-inner {
	transition-duration: 0.22s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spin .hamburger-inner::before {
	transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
.hamburger--spin .hamburger-inner::after {
	transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spin.is-active .hamburger-inner {
	transform: rotate(225deg);
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
.hamburger--spin.is-active .hamburger-inner::before {
	top: 0;
	opacity: 0;
	transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
.hamburger--spin.is-active .hamburger-inner::after {
	bottom: 0;
	transform: rotate(-90deg);
	transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }