@import url('https://fonts.googleapis.com/css?family=Work+Sans:300,400,500,600,700|Oswald:600,700&display=swap');

:root {
	--cd-color-green: #71be0e;
	--cd-color-red: #e3000f;
	--cd-color-darkblue: #16005e;
	--cd-color-purple: #980267;
	--cd-color-lightblue: #00B4CC;
	--cd-color-darkred: #B61C3E;
	--cd-color-orange: #ff9900;
}

* {
	outline: none;
	box-sizing: border-box;
	-webkit-appearance: none !important;
}

.preload {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}

body {
	padding: 0px;
	padding-bottom: 0px;
	margin: 0px;
	font-family: 'Work Sans', 'Work+Sans', 'WorkSans';
	background-color: #fff;
	position: relative;
	display: block;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* ############################################ */
/* ############################################ */
/* Header */
/* ############################################ */
/* ############################################ */

header {
	width: 100%;
	height: 90px;
	display: block;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 2;
	background-color: transparent;
	transition: 300ms all;
}

header.menu-is-open {
	height: 90px !important;
	background-color: transparent !important;
}

header.menu-is-open #logo {
	top: 10px !important;
}
header.menu-is-open #logo-link {
	font-size: 45px !important;
}
header.menu-is-open #logo-gliederung {
	top: 25px !important;
}

header.menu-is-open #overlay_btn {
	top: 28px !important;
}

header.menu-is-open #action-bar {
	top: 20px !important;
	box-shadow: 0px 5px 25px rgba(40, 40, 40, 0.5) !important;
}

header::before {
	position: fixed;
	display: none;
	content: "";
	top: -50px;
	left: 0px;
	width: 100%;
	height: 50px;
	box-shadow: 0px 20px 120px #2d2d2d;
}

.logo {
	position: fixed;
	display: block;
	top: 10px;
	left: 35px;
	font-size: 45px;
	font-family: 'Oswald';
	font-weight: 700;
	text-decoration: none;
	letter-spacing: 0.5px;
	z-index: 3;
	transition: 300ms;
}

.logo a {
	text-decoration: none;
	color: #fff;
}
.logo a .logo-gliederung {
	font-family: 'Work Sans';
	font-weight: 600 !important;
	font-size: 20px;
	margin-left: 15px;
	position: absolute;
	min-width: 200px;
	top: 25px;
}

/* ############################################ */
/* Menu Overlay */
/* ############################################ */

.menu_overlay {
	position: fixed;
	display: block;
	top: 0px;
	left: 0px;
	width: 100vw;
	height: 100vh;
	margin-top: -100vh;
	background-color: #2f2f2f;
	border: 0px;
	box-sizing: border-box;
	z-index: 2;
    transition: all 150ms linear;
}

.menu_overlay.visible {
	display: block;
	margin-top: 0px;
	box-shadow: inset 0 0 0 10px var(--cd-color-lightblue);
}

.overlay_content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.overlay_content ul {
	padding: 0px;
	margin: 0px;
}

.menu_overlay li {
	position: relative;
	margin-bottom: 20px;
	width: auto;
	display: block;
	text-align: center;
	transition: all 200ms;
	z-index: 5;
}

.menu_overlay a {
	position: relative;
	margin-bottom: 20px;
	width: auto;
	color: #fff;
	font-size: 40px;
	font-weight: 600;
	border-radius: 0px;
	transition: all 150ms;
	z-index: 5;
}
.menu_overlay a:hover {
	text-decoration: none;
}
.menu_overlay a::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
	width: 0%;
	height: 4px;
	background-color: var(--cd-color-red);
	transition: all 150ms;
	z-index: 4 !important;
}
.menu_overlay a:hover::after {
	width: 100%;
}

.menu_overlay a:last-of-type {
	margin-bottom: 0px;
}

/* ############################################ */
/* ############################################ */
/* User Menu */
/* ############################################ */
/* ############################################ */

.user__menu {
	position: fixed;
	right: 0px;
	bottom: 0px;
	margin-right: 35px;
	margin-bottom: 30px;
	z-index: 3;
	cursor: pointer;
}

.user__avatar {
	width: 50px;
}

.user__avatar:hover {
	padding-top: 16px;
}

.user__menu__links {
	display: none;
	position: fixed;
	bottom: 95px;
	right: 35px;
	min-width: 150px;
	background-color: #fff;
	padding: 7px 0px;
	cursor: default;
}

.user__menu__links a {
	color: #000;
	display: block;
	padding: 12px 60px 12px 19px;
}
.user__menu__links a:hover {
	background-color: #eee;
	text-decoration: none;
}

.user__menu__links a:last-of-type {
	margin-bottom: 0px;
}
.user__menu__links.visible {
	display: block;
}

/* ############################################ */
/* ############################################ */
/* Hero */
/* ############################################ */
/* ############################################ */

.hero {
	position: relative;
	display: block;
	width: 100vw;
	height: 100vh;
	background-color: var(--cd-color-orange);
	background-color: transparent;
}

.hero__content {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	text-align: center;
	z-index: 1;
}

.hero-heading__kicker {
	position: relative;
	display: block;
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	color: #ffffff;
}

.hero-heading__title {
	position: relative;
	display: block;
	text-align: center;
	font-size: 6vw;
	font-weight: 700;
	color: #fff;
}

.hero-link {
	position: relative;
	display: inline-block;
	padding: 10px 25px;
	margin-top: 20px;
	text-align: center;
	font-size: 19px;
	font-weight: 500;
	color: #e3000f;
	text-decoration: none !important;
	border-radius: 100px;
	border: 1.5px solid #fff;
	transition: 300ms;
	background-color: #fff;
}
.hero-link:hover {
	background-color: transparent;
	border-color: #fff;
	color: #fff;
}

#canvas-hero {
    position: absolute;
    display: block;
    width: 100vw;
    height: 100vh;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* ############################################ */
/* ############################################ */
/* Mitmachen Form */
/* ############################################ */
/* ############################################ */

.mitmachen-form {
	width: 100%;
	background-color: #ddd;
	padding: 60px 0px;
	color: #333;
}

.mitmachen-form h1 {
	margin: 0px;
	margin-bottom: 10px;
	font-size: 45px;
}

.mitmachen-form .form__info {
	display: block;
	margin-bottom: 35px;
	font-size: 18px;
}

.mitmachen-form form input {
	display: block;
	width: 50%;
	margin: 0px;
	margin-bottom: 15px;
	padding: 13px;
	padding-top: 14px;
	border: none;
	border-bottom: 2px solid #fff;
	font-size: 17px;
	font-family: 'Work Sans';
}
.mitmachen-form form input:hover {
	border-bottom-color: var(--cd-color-red);
}

.mitmachen-form form input:focus {
	border-bottom: 2px solid var(--cd-color-red)
}

.mitmachen-form form input[type=submit] {
	cursor: pointer;
	color: #fff;
	background-color: var(--cd-color-red);
	border: none;
	border-radius: 50px;
	margin-top: 25px;
	margin-bottom: 0px;
	padding: 13px 25px;
	font-weight: 500;
	font-size: 19px;
	width: auto;
	transition: 250ms;
}
.mitmachen-form form input[type=submit]:hover {
	color: #fff;
	background-color: var(--cd-color-darkblue);
}

/* ############################################ */
/* ############################################ */
/* Social Bar */
/* ############################################ */
/* ############################################ */

.social-bar {
	padding: 50px 0px;
	background-color: #303030;
	color: #fff;
}

.social-bar h1 {
	margin-top: 0px;
	font-size: 45px;
}
.social-bar .info {
	display: block;
	margin-bottom: 35px;
	font-size: 18px;
}

.social-bar a {
	display: inline-block;
	background-color: #444;
	width: 60px;
	height: 60px;
	padding: 12px;
	margin-right: 15px;
	border-radius: 100%;
	vertical-align: middle;
}
.social-bar a:last-of-type {
	margin-right: 0px;
}

.social-bar .instagram_glyph {
	background-color: #ff0099;
}
.social-bar .facebook_glyph {
	padding: 10px;
	background-color: #1877F2;
}

/* ############################################ */
/* ############################################ */
/* Main */
/* ############################################ */
/* ############################################ */

main {
	z-index: 1;
}

.main__block__text {
	padding-left: 20%;
	padding-right: 20%;
	padding-top: 100px;
	padding-bottom: 100px;
	line-height: 27px;
	font-size: 18px;
	background-color: #16005e;
	color: #fff;
}

.main__block__text h1 {
	margin-bottom: 35px;
	font-size: 35px;
	text-align: center;
	line-height: 40px;
}

/* ############################################ */
/* ############################################ */
/* Bubble Box */
/* ############################################ */
/* ############################################ */

.bubble-box__container {
	padding: 30px 30px;
}

.bubble-box {
	position: relative;
	display: block;
	min-height: 470px;
	width: 100%;
	margin-bottom: 30px;
	border-radius: 50px;
	text-align: center;
	text-decoration: none !important;
	color: #fff;
	background-color: #555;
	transition: 300ms;
}
.bubble-box:last-of-type {
	margin-bottom: 0px;
}

.bubble-box:hover {
	transform: scale(1.02);
}

.bubble-box .bubble-box__content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.bubble-box .bubble-box__heading {
	display: block;
	margin: 0px;
	margin-bottom: 20px;
	font-size: 65px;
}

.bubble-box .bubble-box__info {
	display: block;
	font-size: 20px;
	line-height: 30px;
}

.bubble-box .bubble-box__button {
	display: inline-block;
	margin-top: 25px;
	padding: 10px 7px 10px 25px;
	font-size: 19px;
	font-weight: 500;
	border-radius: 30px;
	border: 1px solid #fff;
	background-color: #fff;
	color: #555;
	transition: 200ms;
}
.bubble-box .bubble-box__button::after {
	content: '→';
	color: #fff;
	margin-left: 0px;
	margin-bottom: -5px;
	transition: 200ms;
}

/* Color Variants */

.bubble-box.red {
	background-color: var(--cd-color-red);
}
.bubble-box.red .bubble-box__button {
	color: var(--cd-color-red);
}

.bubble-box.green {
	background-color: var(--cd-color-green);
}
.bubble-box.green .bubble-box__button {
	color: var(--cd-color-green);
}

.bubble-box.blue {
	background-color: var(--cd-color-darkblue);
}
.bubble-box.blue .bubble-box__button {
	color: var(--cd-color-darkblue);
}


/* Hover */

.bubble-box:hover .bubble-box__content {
	transition: 300ms;
}

.bubble-box:hover .bubble-box__button {
	border: 1px solid #fff;
	padding-right: 24px;
	background-color: transparent;
	color: #fff;
	transform: scale(1.06);
}
.bubble-box:hover .bubble-box__button::after {
	display: inline-block !important;
	margin-left: 13px;
}

/* ############################################ */
/* ############################################ */
/* Footer */
/* ############################################ */
/* ############################################ */

footer {
	padding: 50px;
	border-top: 1px solid #000;
}

.footer__menu {
	padding: 0px;
	margin: 0px;
	margin-left: 25px;
	display: inline-block;
}

.footer__menu li {
	list-style: none;
	display: inline-block;
	margin-right: 15px;
}

.footer__menu li a {
	color: #000;
}

.footer__menu li a:hover {
	color: #000;
	text-decoration: none;
	border-bottom: 1px solid #000;
}

@media screen and (max-width:850px) {
	.action-bar {
		display: none !important;
	}
	.overlay_content {
		left: 50%;
		transform: translate(-50%,-50%);
	}

}

@media screen and (max-width:500px) {
	.hero-heading__title {
		font-size: 10vw;
	}
}
