:root {
    --base-color: #393633;
    --base-color-rgb: 57,54,51;
    --base-color-lighter: #57534f;
    --dark: #000;
    --dark-rgb: 0,0,0;
    --light: #fff;
    --light-rgb: 255,255,255;
    --gray: #595959;
    --gray-rgb: 89,89,89;
    --main-text-color: var(--gray);
    --red: #af0b27;
    --red-rgb: 175,11,39;
    --blue: #004588;
    --blue-rgb: 0,69,136;
    --main-font: 'Source Sans 3';
    --highlight-font: 'Encode Sans';
    --shadow: 0 0 10px rgba(0,0,0,0.6);
    --padding: 40px;
    --base-pspacing: .5rem;
    --base-word-spacing: 0.005em;
    --base-letter-spacing: 0;
    --base-font-size: 18px;
    --font-weight: 400;
    --transition-time: 0s;
    --border-radius: 1.5rem;
}
*::-webkit-scrollbar {
  width:8px;
  height:100%
}
*::-webkit-scrollbar:disabled {
  display:none
}
*::-webkit-scrollbar-button {
  display:none
}
*::-webkit-scrollbar-thumb {
  border-radius:4px;
  scrollbar-color:rgba(0,0,0,.2)
}
*::-webkit-scrollbar-track {
  background-color:transparent
}
* {
  scrollbar-width:thin;
  scrollbar-color:transparent transparent
}

html {
    margin: 0;
    padding: 0;
    max-width: 100%;
    scrollbar-width: thin;
    overflow-x: hidden;
    max-width: 100vw;
}
body{
	margin: 0;
	padding: 0;
    min-height: 100%;
    min-width: 300px;
    max-width: 100vw;
    height: auto;
    position: relative;
    overflow: hidden;
	font-family: var(--main-font);
	font-weight: var(--font-weight);
	line-height: 1.5em;
	color: var(--main-text-color);
	background: #fff;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-appearance: none;
}
body, body * {
    box-sizing: border-box
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
    font-weight: calc(1.75 * var(--font-weight));
    page-break-inside: avoid;
	font-family: ;
}

h1, h2 {
	line-height: 1.2em;
	font-size: 1.8em;
}

h3{
  line-height: 1.5em;
  font-size: 1.3em;
}

h4{
  font-size: 1em;
}
p {
    line-height: 1.6em;
}
a {
    text-decoration: none;
    transition: color var(--transition-time) ease-in;
    color: var(--red);
}

hr {
	height: 2px;
	width: 100%;
	background-color: var(--red);
	color: var(--red);
}
.showmoretext {
    cursor: pointer;
}
.showmoretext span:first-of-type, .showmoretext.smtopen span:last-of-type {
    display: block;
}
.showmoretext.smtopen span:first-of-type, .showmoretext span:last-of-type {
    display: none;
}
.moretext {
    overflow: hidden;
    height: auto;
    max-height: 0;
    transition: max-height var(--transition-time) linear;
}
.moretext.smt {
    max-height: 5000px;
}

ul {
	padding: 0px;
}

li {
	list-style: none;
}

#main ul {
	padding-left: 25px;
}

#main ul li {
	position: relative;
}

#main ul li p {
	margin: 0px;
} 

#main ul li:before {
	position: absolute;
	content: "";
	border-radius: 100%;
	width: 5px;
	height: 5px;
	background-color: var(--blue);
	display: block;
	margin-left: -25px;
	margin-top: 7px;
}

#main ul li ul li:before {
	position: absolute;
	content: "";
	width: 10px;
	height: 2px;
	margin-top:9px;
	background-color: var(--blue);
	display: block;
}

#main .teamtxt ul {
	padding:0px;
}

#main .teamtxt li:before {
	height: 0px;
	width: 0px;
	opacity: 0;
}

.heading h3 {
	color: var(--red);
}

.wrapper {
    padding: 0px;
	max-width: 1920px;
	margin: 0 auto;
	position: relative
}
.slogan {
	top: 55%;
}
.flex {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
}
.box1 {flex: 1 1 150px;}
.box2 {flex: 2 1 300px;}
.box3 {flex: 3 1 450px;}
.box4 {flex: 4 1 600px;}
.box5 {flex: 5 1 750px;}
.box5 {flex: 6 1 900px;;}
.boxfull {flex: 1 1 100%;}
.box1, .box2,.box3,.box4,.box5, .boxfull {padding: var(--padding);max-width: 100%;}

.teaser {
	position: relative;
	width: calc(100% - 150px);
	margin: -100px auto 0px;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	border-radius: var(--border-radius);
	min-height: 200px;
	
}

.menu {
    transition: background var(--transition-time) ease-in,max-width 0.2s ease-in;
    position: absolute;
    z-index: 1000;
    width: auto;
    max-width: calc(100% - 400px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row wrap;
    right: 0px;
    top: 35px;
}

.mopen .menu {
	background-color: #f4f4f4 !important;
}

.navbutton {
    width: 1.8rem;
    height: 1.8rem;
    position: absolute;
    margin: 0;
    z-index: 220;
    cursor: pointer;
    top: calc(.5 * var(--padding));
    right: var(--padding);
}
.sticked .navbutton, .mopen .navbutton {
    position: fixed;
}
.sticked:not(.mopen) .navbutton:before {
    content: '';
    position: absolute;
    width: calc(100% + 2 * var(--padding));
    height: calc(100% + 2 * var(--padding));
    top: calc(-1 * var(--padding));
    left: calc(-1 * var(--padding));
    background-color: var(--red);
    border-bottom-left-radius: 1em;
}
#menubutton {
    position: absolute;
    width: 270%;
    height: 250%;
    top: -79%;
    left: -93%;
    right: -40%;
    transform: translate3d(0, 0, 0);
    pointer-events: none;
}
#menubutton path {
    fill: none;
    -webkit-transition: stroke-dashoffset var(--transition-time) cubic-bezier(.25, -.25, .75, 1.25), stroke-dasharray var(--transition-time) cubic-bezier(.25, -.25, .75, 1.25), stroke var(--transition-time) ease-in;
    -moz-transition: stroke-dashoffset var(--transition-time) cubic-bezier(.25, -.25, .75, 1.25), stroke-dasharray var(--transition-time) cubic-bezier(.25, -.25, .75, 1.25), stroke var(--transition-time) ease-in;
    -o-transition: stroke-dashoffset var(--transition-time) cubic-bezier(.25, -.25, .75, 1.25), stroke-dasharray var(--transition-time) cubic-bezier(.25, -.25, .75, 1.25), stroke var(--transition-time) ease-in;
    -ms-transition: stroke-dashoffset var(--transition-time) cubic-bezier(.25, -.25, .75, 1.25), stroke-dasharray var(--transition-time) cubic-bezier(.25, -.25, .75, 1.25), stroke var(--transition-time) ease-in;
    transition: stroke-dashoffset var(--transition-time) cubic-bezier(.25, -.25, .75, 1.25), stroke-dasharray var(--transition-time) cubic-bezier(.25, -.25, .75, 1.25), stroke var(--transition-time) ease-in;
    stroke-width: 40px;
    stroke-linecap: round;
    stroke: var(--light);
    stroke-dashoffset: 0px;
}
.mopen #menubutton path {
    stroke: var(--blue)
}
#menubutton path#top,
#menubutton path#bottom {
    stroke-dasharray: 240px 950px;
}
#menubutton path#middle {
    stroke-dasharray: 240px 240px;
}
.mopen #menubutton path#top,
.mopen #menubutton path#bottom {
    stroke-dashoffset: -650px;
    stroke-dashoffset: -650px;
}
.mopen #menubutton path#middle {
    stroke-dashoffset: -115px;
    stroke-dasharray: 1px 220px;
}
nav, .iconnav, .footernav {
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 1.2rem;
    position: relative;
}
nav.mainnav {
    padding: calc(.5 * var(--padding)) var(--padding);
	margin: 0px;
}
nav ul {
    list-style: none;
    padding: 0;
}
nav.mainnav > ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
nav ul.subnavi {
    flex-flow: row wrap;
}
nav ul li > a, nav ul li > button {
    color: var(--light)
}
nav ul li > a, nav ul li > button {
    transition: height var(--transition-time) ease-in;
    display: block;
    margin: 26px 15px;
    color: #fff;
} 
nav ul li.active > a, nav ul li.active > span {
    font-weight: calc(1.5 * var(--font-weight));
}
nav > ul li {
    cursor: pointer;
	position: relative;
}

nav.mainnav > ul > li > a,
nav.mainnav > ul > li > button {
    display: block;
    text-transform: uppercase;
    padding: calc(.5 * var(--padding));
    margin: 0;
    line-height: 1 !important;
}

@keyframes dd {
    0%{top:-60px}
    100%{top: 0}
}
@keyframes dd2 {
    0%{top:-60px}
    100%{top: 0}
}
/* Normales Menü */
nav .navbutton {
    display: none;
}   
nav .navi {
    display: flex;
    flex-flow: row;
    margin: 0 auto;
} 
nav > ul li .subnavi {
    position: absolute;
    height: auto;
    z-index: 2;
    transition: all var(--transition-time) ease-in;
    padding: 0 18px;
    background-color: #fff;
    width: max-content;
    top: 99%;
    margin-left: -20px;
} 
.sticked nav > ul li .subnavi {
    top: calc(100% + 10px);
    width: calc(100% + 150px);
} 
nav > ul li .subnavi li {
    height: auto;
    max-height: 0px;
    opacity: 0;
    transition: max-height var(--transition-time) ease-in, opacity var(--transition-time) ease-in;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 1.2em;
}
    nav > ul li .subnavi li.subback {
        display: none
    }
nav > ul li .subnavi.sopen, nav > ul li:hover .subnavi {
    padding: 10px 18px;
    z-index: 3;
}
.sticked nav > ul li .subnavi.sopen, .sticked nav > ul li:hover .subnavi {
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
} 
nav > ul li .subnavi.sopen li, nav > ul li:hover .subnavi li {
    max-height: 1.9rem;
    opacity: 1;
}
nav > ul li .subnavi li a {
	color: var(--red);
	transition: color var(--transition-time) ease-in;
}
nav > ul li .subnavi li a:hover {
	color: var(--blue);
}
nav:not(.footernav, .iconnav) ul li:after {
	position: absolute;
	content: '';
	opacity: 0;
	background-color: #fff;
	height: 5px;
	display: block;
	transition: opacity var(--transition-time) ease-in;
	bottom: 0px;
	width: 100%;
}
.sticked nav:not(.footernav, .iconnav) ul li:after {
	bottom: -10px;
}

nav:not(.footernav, .iconnav) ul li:hover::after {
	opacity: 1;
}

header {
    position: relative;
    color: #fff;
    height: 70vh;
    min-height: 600px;
    display: flex;
    flex-flow: column;
}

.preheader {
	width: 100%;
	min-height: calc(4rem + 1.5 * var(--padding));
    background-color: var(--red);
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	position: relative;
}

header.large {
    height: 90vh;
    min-height: 850px;
    max-height: 1200px;
}
header  > * {
    width: 100%;
}
header > .menu {
    flex: 0 0 75px;
}

header > .headerimg {
    flex: 1 1 calc(70% - 75px);
	position: relative;
    z-index: 0;
    background-image: linear-gradient(to bottom, rgba(var(--blue-rgb),0.2) 0%, transparent 100%);
}
header > .headerimg .slogan h1 {
	position: absolute;
    z-index: 1;
	left: 0px;
    padding-left: var(--padding);
    text-align: left;
	text-shadow: 0 0 10px rgba(0,0,0,0.5);
    font-weight: calc(1.25 * var(--font-weight));
    font-family: var(--highlight-font);  
    background-color: rgba(var(--red-rgb),.6);
    backdrop-filter: blur(5px);
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}
header > .headerimg img {
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    max-width: 1920px;
}
header > .headerimg:before {
	content: '';
	position: absolute;
	width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    max-width: 1920px;
    background-image: linear-gradient(to top right, rgba(0,0,0,0.2) 42%, transparent 60%);
	z-index: 1;
}
header > .headerimg .slogan h1 span {
    display: block;
    padding: 5px 30px;
	margin-bottom: 5px;
	margin-left: 25px;
}
header > .headerimg .slogan h1 {
    font-size: 2rem;
}
header > .headerimg .slogan h1 span:first-child {
    font-size: 2em;
	line-height: 1.5em;
    font-weight: calc(1.25 * var(--font-weight));
}
header > .headerimg .slogan h1 span:last-child {
    text-transform: uppercase;
	font-weight: calc(.75 * var(--font-weight));
}


header > .headerimg .jobteaserbutton {
	background-color: rgba(var(--blue-rgb), 0.7);
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	border-radius: 25px 0px 0px 25px;
	position: absolute;
    font-weight: calc(1.25 * var(--font-weight));
    font-family: var(--highlight-font);
    font-size: 1.5rem;
    right: 0px;
    padding: calc(.5 * var(--padding)) var(--padding);
	top: 60px;
    z-index: 1
}
header.large > .headerimg .jobteaserbutton {
	top: 50px;
}

header > .headerimg .jobteaserbutton p {
	margin: 0px 0px 10px 0px;
	padding: 0px;
}

header > .headerimg .jobteaserbutton a {
	background-color: #fff;
	color: var(--red);
	text-align: center;
	padding: 10px;
	text-transform: uppercase;
	font-size: 0.8rem;
	width: 100%;
	display: block;
	border-radius: 10px;
}
header > .headerimg .jobteaserbutton a:hover {
	background-color: var(--red);
	color: #fff;
	transition: all var(--transition-time) ease-in;
}


header .tools {
    position: absolute;
    top: 5px;
    right: 5px;
    width: auto;
    z-index: 1004;
    display: flex;
	padding: calc(.5 * var(--padding)) var(--padding);
}
.mopen header .tools {
    z-index: 0
}
header .tools > * {
    padding: 0px 10px;
    margin: 0px 10px;
    display: flex;
    align-items: baseline;
}
header .tools .cfs {
    font-size: 1.3rem;
    font-weight: calc(1 * var(--font-weight));
}
header .tools .cfs span {
    cursor: pointer;
    transition: color var(--transition-time) ease-in;
}
header .tools a:hover, header .tools span:hover {
    color: rgba(255,255,255,0.7);
}
header .tools .cfs span:nth-child(2) {
    font-size: 1.2em;
}
header .tools .cfs span:nth-child(3) {
    font-size: 1.3em;
}
header .tools .sbx, header .tools .userlog {
    display: flex;
    align-items: baseline;
}
header .tools a,
header .tools button {
	color: #fff;
	font-size: 1rem;
}

header .logo {
	position: absolute;
	z-index: 2;
	width: 400px;
	height: 400px;
	background-color: #fff;
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	transform: translateY(-50%);
	margin: 0px 30px;
	padding: 20px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;	
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

#logo img {
    width: 100%;
	min-width: 150px;
	margin-top: 50%;
	max-width: 230px;
}

#logo {
	width: 100%;
	text-align: center;
	display: block;
	position: relative;
}
/* BREADCRUMBS */
.breadwrapper > .wrapper {
    background-color: var(--blue);
}

nav#breadcrumbs {
    color: #fff;
    position: relative;
    padding: 5px 30px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    font-size: 1rem;
    width: 100%;
    margin: 0;
}
nav#breadcrumbs a {
    color: #fff;
    font-weight: calc(1.5 * var(--font-weight));
}
nav#breadcrumbs .ssm {
    font-size: 1.4em;
    cursor: pointer;
}
/* Content */

.content > * {
    position: relative;
}
.content > #main {
    margin-top: 45px;
}
.home .content > #main, .home .content > #member {
    margin-top: 95px;
	margin-bottom: 100px;
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
}
.contentimg {
    width: 100%;
    height: auto;
	display:flex;
	align-items: stretch;
}


.img {
	object-fit: cover;
}
section img {
    max-width: 100%;
    height: auto
}

.contentimg img {
    width: 100%;
 	min-width: 250px;
	min-height: 250px;
    box-sizing: border-box;
	object-fit: cover;
	object-position: center;
}

#top, #bottom {
	width: 100%;
    margin: 0px 60px 0px 0px;
	max-width: 1000px;
	margin-bottom: 40px;
}
.stellenwrapper, .newsteaser {
	margin-left: -30px;
}

.stellenwrapper .stelle {
	margin-bottom: 50px;
	display: flex;
    align-items: flex-start;
    flex-flow: column;
    justify-content: space-between;
}

.stellenwrapper .stelle h3 {
	color: var(--red);
}

table {
	width: 100%;
}

tr {
	vertical-align: top;
}

td {
	min-width: 100px;
}

iframe {
    width: 100%;
}
span.table {
    display: block;
    max-width: 430px;
	margin-bottom: 15px;
}
span.table.cont {
    max-width: 100%;
}
span.table > span{
    display: flex;
    flex-flow: row wrap;
}
span.table > span > * {
    flex: 1 1 90px;
}

span.table > span > *:first-child {
    flex: 1 1 95px;
}
span.table > span > *:last-child {
    flex: 3 1 100px;
}
span.table.cont > span > *:first-child {
    flex: 0 1 100px;
}
span.table.cont > span > *:last-child {
    flex: 4 1 240px;
}


.pagetitle h2, .pagetitle h1, .fullinfoteaser h2, .infotxtbox h2, .fullmemberteaser h2 {
    font-weight: calc(1.25 * var(--font-weight));
    font-family: var(--highlight-font);
    padding: 0px;
    margin: 0px;    
}

.pagetitle h2 span, .pagetitle h1 span {
    display: block;
	margin-bottom: 5px;
}
.pagetitle h2 span:first-child, .pagetitle h1 span:first-child {
    font-size: 4rem;
	line-height: 1em;
	color: var(--red);
	margin-bottom: 15px;
}
.pagetitle h2 span:last-child, .pagetitle h1 span:last-child {
    font-size: 1.6rem;
    text-transform: uppercase;
    color: var(--main-text-color);
	font-weight: calc(.75 * var(--font-weight));
}

.stelle .pagetitle h2 span:first-child, .pagetitle h1 span:first-child {
    font-size: 2rem;
    line-height: 3rem;
    color: var(--red);
}

strong {
	color: var(--blue);
}

.bannerteaser {
	display: flex;
	box-sizing: border-box;
    flex-flow: row wrap;
	width: 100%;
	min-height: 200px;
	padding: calc(.5 * var(--padding)) calc(1 * var(--padding));
	background-color: var(--red);
	position: relative;
}
.infocontbox {
    margin-left: calc(1 * var(--padding));
    margin-right: calc(1 * var(--padding));
}

.iconnav {
	white-space: normal;
	text-transform: none;	
	padding: 0px !important;
}

.iconnavi {
    margin: 0 auto;
    width: 100%;	
}
.iconnavi > * {
    flex: 1 1 max(100px, 20%);
}
.iconnavwrapper {
	display: flex;
	align-items: baseline;
	padding: 30px 10px;
    text-align: left;
}

.iconnavwrapper span:first-child {
	color: var(--red);
}
.iconnavwrapper span:last-child {
	color: var(--main-text-color);
	font-size: 1rem;
}
.teasermenu {
    position: absolute;
    background-color: var(--red);
    left: 0;
    right: 0;
    white-space: normal;
    top: calc(100% - var(--padding));
    z-index: 1;
    padding: calc(.5 * var(--padding));
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-time) ease-in-out
}
.iconnavwrapper[aria-expanded="true"] + .teasermenu {
    opacity: 1;
    pointer-events: all;
}
.iconnavwrapper {
	display: flex;
	align-items: baseline;
	padding: 30px 10px;
}
.iconnavi nav:after {
	content: "";
	position: absolute;
	left: 0px;
	background-color: #b9b9b9;
	height: calc(100% - 60px);
	width: 2px;
	top: 35px;
	opacity: 1
}
.iconnavi nav:first-of-type:after {
	display: none
}



nav.iconnav > ul li .subnavi {
	position: absolute;
	height: auto;
	z-index: 2;
	transition: all var(--transition-time) ease-in;
	padding: 20px;
	background-color: #f4f4f4;
	width: calc(100% - 60px);
	top: calc(50% - 80px);
	left: 20px;
	opacity: 0;
}
.iconnavwrapper .icon {
	color: var(--red);
	font-size: 2rem;
	padding: 20px;
	position: absolute;
	top: 20px;
	right: 0px;
}

nav.iconnav > ul li .sub:hover {
	opacity: 1;
}

nav.iconnav ul li > a, nav.iconnav ul li > button {
    transition: height var(--transition-time) ease-in;
    display: block;
    margin: 0 15px;
    color: var(--red);
	font-size: 1.0rem;
}

.infowrapper {
	flex: 3 1 300px;
}

.teaserwrapper {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	Text-align: left;	
	margin: 60px 0px;
}

.smallteasers {
	display: flex;
	align-items: flex-start;
	justify-content: end;
	position: relative;
	max-height: 180px;
}

.smallteasers a {
	color: #fff;
	font-weight: calc(1.25 * var(--font-weight));
	font-size: 1.5rem;
}
.smallteasers a:after {
	position: relative;
	margin-top: 10px;
	display: block;
	content: "";
	height: 2px;
	opacity: 0;
	background-color: #fff;
	width: 100%;
	transition: all var(--transition-time) ease-in;
}

.smallteasers a:hover::after {
	opacity: 1;
}

.smallteasers i {
	color: #fff;
	font-size: 2rem;
}
.smallteasers p {
	color: #fff;
}

.smallteasers:after {
	content: "";
	position: absolute;
	background-color:#b9b9b9;
	height: 100%;
	width: 2px;
	opacity: 1;
	right: 0px;
}
.smallteasers:last-child:after {
	opacity: 0;
}

.teasericon {
	position: relative;
	left: -40px;
	padding: 20px;
}

.fullinfoteaser h2 span {
    display: block;
	margin-bottom: 5px;	
}

.fullinfoteaser h2 span:first-child {
    font-size: 4rem;
	line-height: 6rem;
	color: #fff;
	text-align: center;
}
.fullinfoteaser h2 span:last-child {
    font-size: 1.6rem;
    text-transform: uppercase;
    color: #fff;
	text-align: center;
	font-weight: calc(.75 * var(--font-weight));

}

.infocontbox {
	display: flex;
	flex: 1 1 350px;
	border-radius: 25px;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	margin-top: -45px;
	margin-bottom: -45px;
	overflow: hidden;
	max-height: 600px;
}

.infocontwrapper {
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	align-items: stretch;
	align-content: stretch;
}
.infotxtbox {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	padding: 20px;
	width: calc(100% - 40px);
	margin: 0 auto;
	text-align: center;
	min-height: 200px;
	flex: 1 1 100%;
	
}
.infotxtbox h2 span {
    display: block;
	margin-bottom: 5px;
}

.infotxtbox h2 span:first-child {
    font-size: 4rem;
	line-height: 6rem;
	color: var(--red);
}
.infotxtbox h2 span:last-child {
    font-size: 1.6rem;
    text-transform: uppercase;
    color: var(--blue);
	font-weight: calc(.75 * var(--font-weight));

}

.columnwrapper {
	flex: 1 1 100%;
}

.infojobbox {
	background-color: var(--blue);
	padding: 20px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-flow: column;
	flex: 1 1 50%;
}

.infoimgbox {
	display: flex;
	align-items: stretch;
	flex: 1 1 50%;
}

.infoimgbox img {
	width: 100%;
	height: 100%;
	object-fit: cover;	
}

.infojobbox a {
	text-transform: uppercase;
	font-size: 1.3rem;
	color: #fff;
	padding: 10px 0px;
	text-align: left;
}

.infojobbox a:after {
	position: relative;
	margin-top: 10px;
	display: block;
	content: "";
	height: 2px;
	opacity: 0;
	background-color: #fff;
	width: 100%;
	transition: all var(--transition-time) ease-in;
}
.infojobbox a:hover:after {
	opacity: 1;
}

.memberteaser {
	display: flex;
	align-items: flex-start;
}

.fullmemberteaser {
	box-sizing: border-box;
	width: 100%;
	min-height: 200px;
	margin: 100px auto;
	padding: 0px 60px;
}
.fullmemberteaser h2 span {
    display: block;
	margin-bottom: 5px;
}
.fullmemberteaser h2 span:first-child {
    font-size: 4rem;
	line-height: 6rem;
	color: var(--red);
}
.fullmemberteaser h2 span:last-child {
    font-size: 1.6rem;
    text-transform: uppercase;
    color: var(--main-text-color);
	font-weight: calc(.75 * var(--font-weight));
}

.memberbuttonwrapper {
	margin: 50px -15px;
}

.memberbutton {
	background-color: var(--blue);
	color: #fff;
	border-radius: 10px;
	text-transform: uppercase;
	transition: all var(--transition-time) ease-in;
	text-align: center;
	margin: 15px;
}

.memberbutton:hover {
	background-color: var(--red);
	color: #fff !important;
}

.memberbutton a {
	color: #fff;
}
.team {
	margin: 0px;
}

.teamtxt ul {
	margin: 0px;
	list-style: none;
}

.teamwrapper {
	width: 100%;
}
.teamwrapper ul li {
	background: none;
}

.teamwrapper h4 {
	color: var(--red);
    font-weight: calc(1.25 * var(--font-weight));
    font-family: var(--highlight-font);	
}
.teamsubbox {
	display: flex;
	margin: 10px 0;
	box-sizing: border-box;
	flex-flow: row wrap;
}
.teamsubbox > div {
	display: flex;
	flex: 1 1 400px;
	align-items: flex-start;
    flex-flow: row wrap;
    margin: 0 calc(-.25 * var(--padding))
}
.teamsubbox > div > * {
    padding: calc(.25 * var(--padding))
}
.teamsubbox > div > .teampic {
    flex: 1 1 100px;
    margin-bottom: 1rem
}
.teamsubbox > div > .teamtxt {
    padding-top: 1rem;
    flex: 2 1 200px;
}
.teamsubbox > div img {
	display: block;
	width: 100%;
    min-height: 9rem;
    object-fit: cover;
}

@media(min-width:601px){
.teamtxt h5 {
	color: var(--red);
	font-size: 1.7rem;
	transition: all var(--transition-time) ease-in;
}
}
.teamsubbox  h5 {
    margin-top: 0;
	font-size: 1.3rem;
}
.swrapper .teamsubbox > div img {
	display: block;
	width: 150px;
}
.swrapper .teamsubbox h5 {
	font-size: 1.2rem;
}


.teamsubbox > div .teamitem {
	padding: 10px 0 10px;
}
.teamsubbox > div.empty {
    margin-bottom: 0;
    margin-top: 0;
}

/* Sidebar */

.right {
	background-color: #f4f4f4;
}

.subnav .heading h2, .subnav .heading a {
	color: var(--red);
	transition: color var(--transition-time) ease-in;
	font-weight: calc(1 * var(--font-weight));
}
.subnav .heading a:hover {
	color: var(--blue);
}
.swrapper .subnav li:not(:first-child) {
	padding-left: 15px;
}

.swrapper .subnav li:not(:first-child):before {
	position: relative;
	content: "";
	border-radius: 100%;
	width: 5px;
	height: 5px;
	background-color: var(--main-text-color);
	display: block;
	top: 12px;
	left: -15px;
}

.subnav li a {
	color: var(--blue);
	transition: color var(--transition-time) ease-in;
}

.subnav li a:hover {
	color: var(--red);
	font-weight: calc(1 * var(--font-weight));
}

.subnav a.active, .subnav a.active:hover {
    font-weight: calc(1.5 * var(--font-weight));
}

.newsitem h2, .newsitem h2 a {
	color: var(--red);
	font-weight: calc(1 * var(--font-weight));
	transition: color var(--transition-time) ease-in;
}

.newsitem h3 {
	font-size: 1rem;
}


/* Formular */
button {
    appearance: none;
    background: transparent;
    border: none;
    font: unset;
}
form {
    text-align: left;
    display: flex;
    flex-flow: row wrap;
    width: auto;
    padding: 0px;
	margin-left: -20px;
}
.formbox {
    margin: 0px;
    position: relative;
}
p + .formbox {
    margin-top: 1.5em
}
form .form-field, form .form-spacer, .form-actions.secondary-accent, form > label {
    display: block;
    width: 100%;
    margin: 0px 0px 20px;
    padding: 0px 20px;
}
form .form-field.empty {
    margin-bottom: 0;
    margin-top: 0;
    padding-bottom: 0;
    padding-top: 0;
}
form .form-spacer {
    margin-top: 10px;
}
form .form-field {
    box-sizing: border-box;
}
form .form-field.half {
    flex: 1 1 350px;
}
form .form-field.full {
    flex: 1 1 100%;
}
form .form-field .form-label {
    margin-bottom: 5px;
}
form .form-field.default .form-data {
    display: none;
}
.form-input-wrapper, .form-input-wrapper input, form-select-wrapper, select  {
    width: 100%;
    max-width: none;
}
form .checkboxes {
    display: block;
}
form .checkboxes > label {
    padding: 0;
    margin: 0;
}
.button, .dz-button {
	background-color: var(--blue);
	color: #fff;
	border-radius: 15px;
    font-weight: calc(1.25 * var(--font-weight));
	font-family: var(--main-font);
    font-size: 1rem;
    padding: 10px 30px;
	cursor: pointer;
    transition: background-color var(--transition-time) ease-in;
	border: none;
}

.button:hover, .dz-button:hover {
	background-color: var(--red);
}

.dz-button strong {
	color: #fff;
}

.buttons {
    flex: 1 1 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    box-sizing: border-box;
    align-self: flex-end;
    margin: 40px 0;
}
.buttons button, .buttons .button {
    flex: 1 1 150px;
    margin: 10px;
	border: none;
}
a.buttonbox, p.buttonbox, span.buttonbox {
    text-transform: uppercase;
    display: flex;
    margin: 20px 0;
    justify-content: flex-start;
    align-items: center;
}
a.buttonbox > span:not(.button), p.buttonbox > span:not(.button), span.buttonbox > span:not(.button) {
    background-color: var(--blue);
    color: #fff;
    padding: 0.7em 1em;
    margin-left: -0.5em;
    margin-right: -30px;
    z-index: 0;
    position: relative;
    flex: 1 1;
}
a.buttonbox > .button, p.buttonbox > .button, span.buttonbox > .button {
    z-index: 1;
    margin-left: -0.4em;
}
.form-textarea-wrapper, .form-textarea-wrapper textarea {
    width: 100%;
}
.form-textarea-wrapper textarea {
    min-width: 100%;
    max-width: 100%;
    min-height: 200px;
    resize: none;
}
input, textarea, button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	font-family: var(--main-font);
	cursor: pointer;
} 
input, textarea, .trysubmit .touched:required:valid, select {
    border: none;
    padding: 10px;
    font-size: 1rem;
    box-sizing: border-box;
    font-weight: calc(.75 * var(--font-weight));
    background-color: #ddd;
    border-radius: 0px;
    color: inherit;
    transition: background-color var(--transition-time) ease-in, color var(--transition-time) ease-in;
    box-shadow: none;
	border: 1px solid #ddd;
}
.trysubmit :required:invalid {
    background-color: #b83838;
}
form.trysubmit input[type='checkbox']:required:invalid + label,
form.trysubmit input[type='radio']:required:invalid +label {
    color: #f83838;
}
input:focus, textarea:focus {
    background-color: #fff;
	border: 1px solid var(--main-text-color);
}
input[readonly="readonly"] {
    cursor: not-allowed;
    background-color: rgba(255,255,255,0.1);
    color: var(--red);
}
.radio {
	display: block;
}
form input[type='checkbox'],
form input[type='radio'] {
  width:auto;
  float:left;
  margin-right: .75em;
  background:transparent;
  border:none;
}

form input[type='checkbox']:checked,
form input[type='checkbox']:not(:checked),
form input[type='radio']:checked,
form input[type='radio']:not(:checked) {
  background: transparent;
  position: absolute;
  visibility: hidden;
  margin:0;
  padding:0;
}

form input[type='checkbox'] + label,
form input[type='radio'] + label {
    cursor: pointer;
    display: block;
}

form input[type='checkbox']:checked + label::before,
form input[type='checkbox']:not(:checked) + label::before,
form input[type='radio']:checked + label::before,
form input[type='radio']:not(:checked) + label::before {
    content: '' !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 17px;
    height:17px;
    border-radius: 50%;
    position: relative;
    top:.08em;
    background-color: #a6a5a5;
    background-image: url(../images/general/check.png);
    margin-right: 0.3rem;
    background-size: 0%;
    background-repeat: no-repeat;
    background-position: center;
    transition: all .2s ease-in;
    text-align: center;
    font-size: 2rem;
    line-height: 0.5em;
    text-indent: 0px;
    border: none;
}

form input[type=radio]:checked + label::before,
form input[type=radio]:not(:checked) + label::before {
  border-radius: 50%;
}

form input[type='checkbox']:hover  + label::before,
form input[type='radio']:hover  + label::before {
    background-color: var(--blue);
    background-size: 65%;
    background-repeat: no-repeat;
    background-position: center;
    transition: all .2s ease-in;
}

form input[type='checkbox']:checked  + label::before,
form input[type='radio']:checked  + label::before {
    background-color: var(--blue);
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center;
    transition: all .2s ease-in;
}
form .stsel > .form-data {
    -webkit-columns: 130px;
    -moz-columns: 130px;
    columns: 130px;
    column-count: auto;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    column-fill: balance;
}
form .stsel > .form-data label {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    display: inline-block !important;
    padding-left: 21px;
}
form .checkboxes label {
    margin-right: 1em;
}
div.notices {
    position: relative;
    height: 100px;
    padding: 0;
    margin: 0;
    z-index: 2000;
    width: calc(100% - 20px);
    background-color: transparent;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
}
div.notices p > i {
    display: block;
    font-size: 4em;
    margin: -0.3em 0 0.3em;
}
#form-result.shownotice div.notices p > i.fa-check-circle {
    animation: bubb 5s linear;
}

#form-result.shownotice div.notices p > i.fa-circle-notch {
    animation: turn 1s linear infinite;
}
#form-result.shownotice div.notices p > i.fa-times-circle {
    animation: bubb2 3s linear infinite;
}
@keyframes bubb {
    0% {transform: scale(1);}
    7% {transform: scale(1);}
    10% {transform: scale(1.1);}
    13% {transform: scale(1);}
    16% {transform: scale(1.1);}
    19% {transform: scale(1);}
    100% {transform: scale(1);}
}
@keyframes bubb2 {
    0% {transform: translate(0);}
    7% {transform: translate(0);}
    10% {transform: translate(1rem,0rem);}
    12% {transform: translate(-1rem,0rem);}
    13% {transform: translate(0);}
    16% {transform: translate(2rem, 0);}
    18% {transform: translate(-2rem, 0);}
    19% {transform: translate(0);}
    20% {transform: scale(1);}
    35% {transform: scale(1.2);}
    40% {transform: scale(1);}
    100% {transform: translate(0);}
}
@keyframes turn {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}
body #form-result {
    background: rgba(255, 255, 255, 0.9);
}
body #form-result div.notices {
    background: transparent;
}
#closeform {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 10000;
    cursor: pointer;
    font-size: 3rem;
}
div.notices.yellow {
    border-left: 0px solid #ba9800 !important;
    color: #d89b26 !important;
}
div.notices.red {
    border-left: 0px solid #f14101 !important;
    color: #a72525 !important;
}
div.notices.blue {
    border-left: 0px solid #005498 !important;
    color: #2572a7 !important;
}
div.notices.green {
    border-left: 0px solid #1d4774 !important;
    color: #a9ca32 !important;
}
div.notices p {
    margin: 0 !important;
}

/* Lightbox */
img.pu {
    cursor: zoom-in;
	border: 2px solid #fff;
	transition: all var(--transition-time) ease-in;
	min-width: 250px;
	width: 48%;
}

img.pu.large {
    cursor: zoom-in;
	border: 2px solid #fff;
	transition: all var(--transition-time) ease-in;
	min-width: 250px;
	width: 100%;
}

img.pu:hover {
	border: 2px solid var(--red);

}

.pu-imagebox {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    max-width: 100vw;
    max-height: 100vh;
    background-color: rgba(0,0,0,0.7);
    z-index: 2000;
    width: auto;
    height: auto;
    padding: 40px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-time) ease-in;
}
.pu-imagebox.pu-show {
    pointer-events: all;
    opacity: 1;
    transition: opacity var(--transition-time) ease-in;
}
.pu-sign {
    color: #fff;
    cursor: pointer;
    font-size: 3rem;
    position: absolute;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none; 
    opacity: 0.7;
    transition: opacity var(--transition-time) ease-in;
}
.pu-sign:hover {
    opacity: 1;
}
.pu-arr {
    top: 0;
    bottom: 0;
    margin: auto;
    height: 1em;
}
.pu-arr#pu-left {
    left: 20px;
}
.pu-arr#pu-right {
    right: 20px;
}
.pu-close {
    top: 15px;
    right: 20px;
}
.pu-imagewrapper {
    position: relative;
    height: calc(100% - 80px);
    width: calc(100% - 80px);
    margin: 0 auto;
}
.pu-imagewrapper img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    animation: pu-fadein var(--transition-time) ease-in;
}
@keyframes pu-fadein {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
.pu-text {
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
}

/* FOOTER */
.prefooter {
	position: relative;
	display: flex;
	box-sizing: border-box;
    flex-flow: row wrap;
	width: 100%;
	min-height: 200px;
	margin-bottom: 100px;
	padding: 0px var(--padding);
	background-color: #e5e5e5;
}
.fullfooternav {
	display: flex;
	width: 100%;
	padding: var(--padding);
	justify-content: center;
	align-items: stretch;
}

.footerwrapper {
	flex: 3 1 350px;
	display: block;
}

.footernav {
	display: block;
	font-size: 0.8rem;
	padding: 0px;
}
.footernav > ul > li > * {
    text-transform: uppercase;
}
.footernav ul > li > * {
    color: var(--dark);
    font-size: .9rem;
    padding: calc(.125 * var(--padding)) 0;
}
.footernav ul {
    list-style: none;
}
.footernav ul li > a, .footernav ul li > button {
    transition: color var(--transition-time) ease-in;
    display: block;
    margin: 0;
}
.footernav ul li > a:hover {
    transition: color var(--transition-time) ease-in;
    display: block;
    color: var(--red);
    font-weight: calc(1 * var(--font-weight));
}

nav.footernav .footernavi {
    text-align: left;
    -webkit-columns: 250px;
    -moz-columns: 250px;
    columns: 250px;
 	width: 100%;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    -webkit-column-count: auto;
    -moz-column-count: auto;
    column-count: auto;
    column-fill: balance;
} 
nav.footernav .footernavi > li {
	break-inside: avoid;
}


nav.footernav > ul li .subnav {
    display: block;
    position: relative;
    padding: 0 1em;
} 

nav.footernav > ul li .subnav li {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
	text-transform: none;
	font-weight: calc(.75 * var(--font-weight));
}

.footernav .subnav li:before {
	position: absolute;
	content: "";
	border-radius: 100%;
	width: 5px;
	height: 5px;
    left: -1em;
	background-color: var(--main-text-color);
	display: block;
}

.footercontbox {
	display: flex;
	flex: 1 1 350px;
	justify-content: flex-start;
	align-items: center;
    background-image: url('../images/general/kontakt.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	border-radius: 25px;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	margin-top: -65px;
	margin-bottom: -65px;
	width: 100%;
}

.footercontwrapper {
	border-radius: 0px 25px 25px 0px;
	width: 50%;
	min-width: 300px;
}

.footertxtbox {
	background-color: var(--blue);
	color: #fff;
	padding: 20px;
	border-radius: 0px 25px 0px 0px;
}
.footertxtbox a {
	color: #fff;
	transition: all var(--transition-time) ease-in;
}
.footertxtbox a:hover {
	color: rgba(255,255,255,0.8);
	transition: all var(--transition-time) ease-in;
}
.footercontbutton {
	background-color: var(--red);
	padding: 20px;
	border-radius: 0px 0px 25px 0px;
	text-align: center;
	transition: all var(--transition-time) ease-in;
}

.footercontbutton a {
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	transition: all var(--transition-time) ease-in;
}
.footercontbutton a:hover  {
	color: rgba(255,255,255,0.7);
}


footer p {
    text-align: center;
    padding: calc(.5 * var(--padding)) calc(4 * var(--padding))
}

@media(min-width:1500px) and (max-width:1669px) {
    .preheader {
        min-height: calc(2rem + 2 * var(--padding) + 150px);
    }
    .menu {
        top: 185px;
        max-width: 100%;
    }
    .slogan {
        top: calc(55% - 185px);
    }
}
@media(max-width:1499px) {
    :root {
        --padding: 20px;
        --base-font-size: 16px;
    }
.preheader {
	min-height: calc(2rem + 4 * var(--padding));
}
.sticked #logo {
    left: 0;
    padding: 10px;
}
.sticked #logo img {
	width: auto;
	min-width: 20px;
	height: 35px;
	object-fit: contain;
	min-height: 0px;
}
nav.mainnav {
	padding: 0;
}
.sticked section .menu nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    animation-fill-mode: forwards;
    animation-delay: var(--transition-time);
    width: 100%;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    padding-top: 0;
    padding-bottom: 0;
    background-color: #f4f4f4;
} 
.sticked section .menu nav ul {
    justify-content: center;
}
.sticked section .menu nav .navbutton span {
	color: var(--red);
	transition: color var(--transition-time) ease-in;
}
header .tools {
	padding: 0px;
}
.menu {
    background-color: transparent;
}  
body header {
    height: 65vh;
}
nav.wrapper.mainnav {
	display: flex;
    padding: 10px 18px;
    justify-content: center;
	align-items: flex-start;
	margin: 0px;
}
.menu nav ul li > a, .menu nav ul li > button {
    color: var(--red);
    transition: color var(--transition-time) ease-in;
}

.menu nav ul li > a:hover, .menu nav ul li > button:hover {
    color: var(--blue);
}
    nav > ul li.showsub .subnavi li, 
    nav > ul li:hover .subnavi li {
}

nav, .iconnav, .footernav {
	white-space: normal;
	font-size: 20px;
}
section.menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: block;
}
.sticked section.menu nav {
    position: fixed
    top: -100%;
    animation-fill-mode: forwards;
    animation-delay: var(--transition-time);
}
.sticked section.menu {
    position: fixed;
    top: 83px;
}    
nav .navbutton {
    display: block;
} 
.sticked nav .navbutton span {
    margin-top: 0;
    margin-bottom: 0;
    transition: margin-bottom var(--transition-time) ease-in;
}

.sticked .open nav .navbutton span {
    margin-bottom: 15px;
} 
    nav.mainnav {
        z-index: 1000
    }
nav.mainnav ul.navi, nav.mainnav > ul li .subnavi {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--light);
    opacity: 0;
    pointer-events: none
} 
.mopen nav.mainnav ul.navi, .mopen nav.mainnav ul.sopen.subnavi {
    opacity: 1;
    pointer-events: all;
    z-index: 100;
} 

nav ul li > a:hover, nav ul li > button:hover {
	color: var(--red);
}  
nav > ul > li.sbx{
    position: absolute;
    top: 0;
    right: 0;
    margin: -15px 0;
} 
nav > ul li.showsub .sub{
    padding: 0;
} 
nav > ul li.showsub .subnavi li{
    max-height: 60px;
    opacity: 1;
    padding: 4px 10px;
}
.teaser {
    position: relative;
    width: calc(100% - 20px);
    margin: -100px auto 0px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    border-radius: 25px;
    min-height: 200px;
}
.contentimg {
    width: 100%;
    height: auto;
    margin: 0px;
    display: flex;
    align-items: stretch;
}
}

@media(max-width:1250px)  {
.footercontbox {
    padding: var(--padding) 0px;
    margin-top: calc(4 * var(--padding))
}
.footernav {
	display: flex;
    flex-flow: row wrap;
	font-size: 0.8rem;
	padding: 0px;
}
.fullfooternav {
    display: block;
}
}

/* TABLET */
@media only screen 
    and (max-width : 1194px) 
    and (-webkit-min-device-pixel-ratio: 1),
    only screen 
    and (max-width : 1194px) 
    and (-webkit-min-device-pixel-ratio: 2),
    (max-width: 1194px){

header > .headerimg .slogan h1 {
    font-size: 1.7rem;
    padding: var(--padding)
}
header > .headerimg .slogan h1 span {
	padding: 0px;
}

.fullinfoteaser h2 span:first-child {
	font-size: 3rem !important;
}
.teaserwrapper {
    display: block !important;
}
.smallteasers {
	display: flex;
}
.smallteasers:after {
	content: "";
	position: absolute;
	background-color: #fff;
	height: 2px !important;
	width: 100% !important;
	opacity: 1;
    bottom: 0;
}	
.teasericon {
	top: 0;
    left: 0;
}
header .logo {
	transform: translateY(-32%);
	margin-left: -35px;
}
header .logo {
	width: 300px;
	height: 300px;
}
#logo img {
	max-width: 200px;
	margin-top: 20%;
}
header .tools {
    padding: 10px;
}
header .tools > * {
    padding: 0px;
    display: flex;
    align-items: baseline;
}
.slogan {
	top: 70%;
}

header > .headerimg .slogan h1 {
    top: -80px;
}
header > .headerimg .slogan h1 span:first-child {
    font-size: 2rem;
	line-height: 4rem;
}
header > .headerimg .slogan h1 span:last-child {
    font-size: 1.5rem;
    text-transform: uppercase;
	font-weight: calc(.75 * var(--font-weight));
}
header.large > .headerimg .jobteaserbutton {
    top: -330px;
    background-color: rgba(var(--blue-rgb), 0.7);
    border-radius: 25px 0px 0px 25px;
    position: absolute;
    font-weight: calc(1.25 * var(--font-weight));
    font-family: var(--highlight-font);
    font-size: 1.2rem;
    right: 0px;
    padding: 10px 40px 30px 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

header {
    position: relative;
    color: #fff;
    height: 70vh;
    min-height: 450px;
    display: flex;
    flex-flow: column;
}
header > .headerimg .jobteaserbutton {
    top: -15px;
}

.iconnavi > * {
    flex: 1 1 max(100px, 33%);
}
.iconnavi > *:nth-child(3n+1):after {
    display: none;
}
.footerwrapper {
    margin-bottom: 25px;
}
}
@media only screen  
    and (max-width: 667px) 
    and (-webkit-min-device-pixel-ratio: 3), 
    only screen 
    and (max-width: 667px) 
    and (-webkit-min-device-pixel-ratio: 2),
    (max-width: 667px)
{ 
.iconnavwrapper {
	min-width: 250px;
	width: 100%;
}
.iconnavwrapper .icon {
	color: var(--red);
	font-size: 2rem;
	padding: 20px;
	position: absolute;
	top: 0px;
	right: 0px;
}
.footernav {
	display: block !important;
	height: auto !important;
    margin-bottom: 165px !important;
}
header .tools p {
	/*! display: none !important; */
}
header > .headerimg .slogan h1 {
    top: -120px !important;
}

.iconnavi > *:after {
    display: none;
}
.infojobbox a {
	font-size: 1rem !important;
}
nav, .iconnav, .footernav {
    white-space: normal;
    font-size: 14px;
}
#top, #bottom {
    margin: 0px;
}
.contentimg {
	padding: 30px 0px;
}
.kuratorium .teamsubbox > div img {
	width: 140px;
	transition: all var(--transition-time) ease-in;
}
.kuratorium .teamsubbox .teamitem .teamtxt {
	min-width: 100px;
}
.teamsubbox > div img {
    width: 140px;
	transition: all var(--transition-time) ease-in;
}
.teamtxt h5 {
	color: var(--red);
    font-size: 1.2rem;
	transition: all var(--transition-time) ease-in;
}

footer {
    margin: 30px;
    text-align: center;
}
.box1, .box2, .box3, .box4, .box5, .boxfull {
    padding: var(--padding);
} 
header .logo {
	width: 200px;
	height: 200px;
}
#logo img {
    max-width: 140px !important;
	min-width: 140px !important;
}
.preheader {
	min-height: 100px;
	transition: all var(--transition-time) ease-in;
}

header > .headerimg .slogan h1 span:first-child {
    font-size: 2rem;
	line-height: 2rem;
}
.menu {
	top: 40px;
	transition: all var(--transition-time) ease-in;
}
.home .content > #main, .home .content > #member {
     margin-top: 35px !important;
}
.contentimg {
	width: 100%;
}
.pagetitle h2 span:first-child, .pagetitle h1 span:first-child {
    font-size: 2rem !important;
    line-height: 2rem !important;
}
.pagetitle h2 span:last-child, .pagetitle h1 span:last-child {
    font-size: 1.1rem !important;
}
header.large {
    height: 60vh;
    min-height: 600px;
}
	
.iconnavi .box1 {
	padding: 10px;
	flex: 1 1 100%;
}
ul.teasermenu li a {
    display: block;
    padding: calc(.5 * var(--padding))
}
nav.iconnav ul li > a, nav.iconnav ul li > button {
    transition: height var(--transition-time) ease-in;
    display: block;
    margin: 0;
    color: var(--red);
    font-size: 1.0rem;
}
.home .content > #main, .home .content > #member {
	margin-bottom: 0px;
}

.bannerteaser {
    margin-bottom: 0px;
    /*! padding: 0px 15px; */
}
.fullfooternav {
    padding: 0px !important;
}
body.mac .modal.sharebuttons {
    height: 45vh;
}
}
/* POPUPS */
dialog {
    border: none;
    outline: none;
}
.modal {
    -webkit-appearance: none;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    height: max-content;
    max-width: 800px;
    max-height: 95vh;
    margin: auto;
    display: block;
    background-color: var(--light);
    opacity: 0;
    box-shadow: 0 0 100vh 100vh rgba(var(--blue-rgb),.7);
    pointer-events: none;
    z-index: 2100;
    border-radius: var(--border-radius);
    transition: opacity var(--transition-time) ease-in-out;
    padding: var(--padding)
}
.mac .modal {
    height: 85vh;
}
.mac .modal.sharebuttons {
    height: 25vh;
}
.searchoverlay {
    max-width: calc(100% - 2 * var(--padding))
}
.modal[open] {
    opacity: 1;
    pointer-events: all;
}
.searchoverlay[open] {
    height: auto
}
.sharebuttons .shbox, #form-result div.notices, #form-result p, dialog.modal > div {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: var(--padding);
    background-color: transparent;
    max-height: 100%;
    overflow: scroll;
}
#form-result p span {
    display: block;
    margin-bottom: .5em
}
.modal .close {
    position: absolute;
    z-index: 3000;
    cursor: pointer;
    top: calc(.5 * var(--padding));
    right: calc(.5 * var(--padding));
    height: 3rem;
    width: 3rem;
    font-size: 2rem;
    margin: 0;
    text-align: center;
    line-height: 1;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none; 
}
.sharebuttons {
    text-align: center;
}
.sharebuttons .shariff ul {
    justify-content: center;
    margin-top: 1rem
}
.sharebuttons .shariff .orientation-horizontal li, .sharebuttons .shariff .orientation-horizontal li a i {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    overflow: visible;
}
.sharebuttons .tosoc {
    font-size: .7rem;
    line-height: 1.2em;
}
.jspu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    background-color: rgba(255,255,255,0.5);
    z-index: 100000;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-time) ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}
@media(max-height: 1000px) and (orientation: landscape){
.jspu {
    overflow-y: scroll;
    scrollbar-width: thin;
}
}
.jspuopen .jspu {
    opacity: 1;
    pointer-events: all;
}
.jspu .jspu-box {
    width: 70%;
    height: auto;
    max-width: 900px;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    padding: 20px;
    background-color: rgb(175,12,38);
    border-radius: 10px;
    z-index: 1000;
}
.jspu .jspu-box .jspu-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    padding-bottom: calc(3rem + 20px);
    background-color: rgba(130, 187, 37,0.6);
    width: 100%;
}
.jspu .jspu-box .jspu-content > * {
    margin-top: 0;
    color: rgb(175,12,38);
}
.jspu .jspu-box img {
    display: block;
    width: 100%;
    height: auto;
}
.jspu .jspu-button {
    display: block;
    position: absolute;
    color: #fff;
    text-transform: uppercase;
    padding: 10px;
    background-color: var(--blue);
    border: 5px solid rgb(175,12,38);
    border-radius: 3px;
    font-size: 1.4rem;
    bottom: 30px;
    left: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5)
}
.jspu .jspuclose {
    position: absolute;
    right: 0px;
    top: 0px;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: #fff;
    background-color: var(--red);
    padding: 10px;
    width: calc(1em + 10px);
    height: calc(1em + 10px);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

.empty {
	min-height: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	margin-top: 0 !important;
	opacity: 0 !important;
	margin-bottom: 0 !important;
}
@font-face {
  font-family: 'Encode Sans';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/encode-sans.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: italic;
  font-weight: 200 900;
  font-display: swap;
  src: url(../fonts/source-sans-italic.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url(../fonts/source-sans.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
body.loaded {
    opacity: 1;
    --transition-time: .5s;
}