/************************************************************************************************************* Colours */

/*
light blue: #93e9ef
mid blue: #67b9ff
dark blue: #2295cf
font color: #222222;
*/

/*************************************************************************************************************** Fonts */

@font-face {
  font-family: "NoyhBold";
  src: url('webfonts/noyh-bold/font.woff2') format('woff2'),
       url('webfonts/noyh-bold/font.woff') format('woff');
}

@font-face {
  font-family: "NoyhRegular";
  src: url('webfonts/noyh-regular/font.woff2') format('woff2'),
       url('webfonts/noyh-regular/font.woff') format('woff');
}

/************************************************************************************************************** Reset */

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 0;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/******************************************************************************************************** Allgemeines */

/*
  Farben:
  Grün: #9cff00
  Magenta: #e5007d
  Violett: #9046cd
  Gelb: #f6ff00
*/

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html {
  font-size: 150%;
  overflow-x: hidden;
}
body {
  position: relative;
  font-family:  NoyhRegular, Arial, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 120px;
  left: 0;
  width: 340px;
  width: 80vw;
  max-width: 870px;
  height: 200px;
  height: 40vw;
  max-height: 440px;
  background: url(../img/background-shape-2.svg) center bottom no-repeat scroll transparent;
  background-size: contain;
  z-index: -1;
}

a img {
  border: none;
}
.left {
  float: left;
}
.right {
  float: right;
}
.clear {
  clear: both;
}
.lineBreak {
  display: none;
}
a:active, a:focus, input[type=radio] {
  outline: none;
}
#top {
  position: absolute;
  top: 0;
}
.noBorder {
  border: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  color: #222222;
}

h1 {
  font-family: NoyhBold, Arial, sans-serif;
  font-size: 3rem;
  font-weight: normal;
  margin: 0.8em 0 0.3em;
  line-height: 1;
  text-align: center;
}
h2 {
  font-family: NoyhBold, Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: normal;
  margin: 1.5em 0 0.3em;
  line-height: 1;
}
h2.h2-performances {
  font-size: 2.4rem;
}
h3 {
  font-family: NoyhBold, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
  margin: 2em 0 0.3em;
  line-height: 1;
}
h4 {
  font-size: 1.2rem;
  font-weight: normal;
  margin: 2em 0;
  line-height: 1.2;
}
.imprint h1,
.privacy h1 {
  margin-top: 1.2em;
}
.imprint h1,
.imprint h2,
.privacy h1,
.privacy h2 {
  font-family: NoyhBold, Arial, sans-serif;
  color: #000000;
  text-align: left;
  line-height: 1.2em;
}
p {
  font-size: 1rem;
  margin-bottom: 2em;
}
p a,
#content ul li a,
table a {
  color: #2295cf;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
p a:hover,
p a:focus,
#content ul li a:hover,
#content ul li a:focus,
table a:hover,
table a:focus {
  color: #ffffff;
  background-color: #2295cf;
}
.bold {
  font-family: NoyhBold, Arial, sans-serif;
}
.centered {
  text-align: center;
}
* {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
td,
p,
p span,
ul li,
ol li,
.teamText,
#contactForm * {
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  -o-user-select: text;
  user-select: text;
}
.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

.gh-btn {
  display: inline-block;
  color: #fff !important;
  background-color: #67b9ff;
  padding: 0.7em 1.6em;
  box-sizing: border-box;
}

.gh-btn:hover,
.gh-btn:focus {
  outline: 3px solid #2295cf;
  background-color: #67b9ff !important;
}

/**************************************************************************************************** Kontaktformular */

#contactFormContainer {
  position: fixed;
  height: 0;
  max-height: 100%;
  width: 100%;
  overflow: auto;
  background: #67b9ff;
  background: -webkit-linear-gradient(to bottom right, #67b9ff, #93e9ef);
  background: -moz-linear-gradient(to bottom right, #67b9ff, #93e9ef);
  background: -o-linear-gradient(to bottom right, #67b9ff, #93e9ef);
  background: linear-gradient(to bottom right, #67b9ff, #93e9ef);
  -webkit-transition: height 0.5s ease;
  -moz-transition: height 0.5s ease;
  -ms-transition: height 0.5s ease;
  -o-transition: height 0.5s ease;
  transition: height 0.5s ease;
  z-index: 11000;
}
.index #contactFormContainer,
.support #contactFormContainer {
  background-color: #9046cd;
}
.info #contactFormContainer {
  background-color: #9cff00;
}
#contactFormContainer h2 {
  width: 500px;
  margin: 20px auto 0;
  color: #000000;
  text-align: center;
  line-height: 1;
}
#contactForm {
  width: 500px;
  margin: 30px auto 30px;
}
#contactForm * {
  display: block;
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 20px;
  font-family:  NoyhRegular, Arial, sans-serif;
  font-size: 1em;
  border: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
#contactForm textarea {
  resize: none;
}
#submitButton {
  position: relative;
  width: 140px;
  margin: 0 auto;
  cursor: pointer;
  font-family: NoyhBold, Arial, sans-serif;
  background-color: #2295cf;
  color: #fff;
  z-index: 1;
}
#submitButton:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #67b9ff;
  z-index: -1;
  -webkit-transition: height 0.1s ease;
  -moz-transition: height 0.1s ease;
  -ms-transition: height 0.1s ease;
  -o-transition: height 0.1s ease;
  transition: height 0.1s ease;
}

#submitButton:hover {
  color: #222222;
}

#submitButton:hover:after,
#submitButton:active:after {
  height: 100%;
}
#closeContactForm {
  display: block;
  margin: 0 auto 30px;
  width: 62px;
  height: 33px;
  border: none;
  overflow: hidden;
  cursor: pointer;
  background: url(../img/up.svg) center 5px no-repeat scroll transparent;
  -webkit-transition: background-position 0.1s ease;
  -moz-transition: background-position 0.1s ease;
  -ms-transition: background-position 0.1s ease;
  -o-transition: background-position 0.1s ease;
  transition: background-position 0.1s ease;
}
#closeContactForm:hover {
  background-position: center 0;
}
#closeContactForm:before {
  content: "";
  display: block;
  height: 100%;
}

.gh-data-privacy-message {
	font-size: 12px;
}

.gh-data-privacy-message	input {
  display: inline;
  margin-right: 0.6em;
}
		
.gh-data-privacy-message	label {
  display: inline;
  cursor: text;
}

#data-privacy-checkbox {
  display: inline;
  width: auto;
  padding: 0;
  margin: 0 5px 0 0;
}

#contactForm .data-privacy-message {
  font-size: 0.75rem;
  line-height: 1.2;
}

#contactForm .data-privacy-message a {
  display: inline;
  margin: 0;
  padding: 0;
  color: #000;
}

fieldset.gh-data-privacy-message {
	border: none;
	margin: 0;
	padding: 0;
}


/********************************************************************************************************* Navigation */

#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #93E9EF;
  width: 100%;
  height: 62px;
  font-family: NoyhRegular, Arial, sans-serif;
  -webkit-transition: top 0.5s ease;
  -moz-transition: top 0.5s ease;
  -ms-transition: top 0.5s ease;
  -o-transition: top 0.5s ease;
  transition: top 0.5s ease;
  z-index: 10000;
}

@media screen and (min-width: 911px) {
  #mainNav {
    height: 53px;
  }
}

@media screen and (min-width: 1501px) {
  #mainNav {
    height: 65px;
  }
}

#logo {
  position: absolute;
  top: 0;
  left: 0;
  height: 100px;
  z-index: 112;
}
#logoBackground {
  position: absolute;
  top: 0;
  left: 0;
  height: 190px;
  width: 200px;
  background-color: #9cff00;
  -webkit-transform: rotate(8deg);
  -moz-transform: rotate(8deg);
  -ms-transform: rotate(8deg);
  transform: rotate(8deg);
  -webkit-transform-origin: top left;
  -moz-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  z-index: 99
}
.about #logoBackground {
  background-color: #f6ff00;
}
.info #logoBackground {
  background-color: #e5007d;
}
.application #logoBackground {
  background-color: #9046cd;
}
.support #logoBackground {
  background-color: #e5007d;
}
.imprint #logoBackground,
.privacy #logoBackground {
  background-color: #9046cd;
}
#mobileMenuWrapper {
  display: inline-block;
  margin-left: 230px;
}
#mainNav ul {
  display: inline-block;
  list-style: none;
}
#mainNav ul li {
  display: inline-block;
  padding: 20px 2em 20px 0;
}
#mainNav ul li a {
  color: #222222;
  text-decoration: none;
  font-size: 1.2rem;
  -webkit-transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -ms-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
/* .index #mainNav ul li a:hover {
  color: #9046cd;
}
.about #mainNav ul li a:hover,
.team #mainNav ul li a:hover,
.press #mainNav ul li a:hover,
.performances #mainNav ul li a:hover,
.ambassador #mainNav ul li a:hover,
.about #mainNav ul li a.active,
.team #mainNav ul li a.active,
.press #mainNav ul li a.active,
.performances #mainNav ul li a.active,
.ambassador #mainNav ul li a.active {
  color: #e5007d;
}
.info #mainNav ul li a:hover,
.info #mainNav ul li a.active {
  color: #9cff00;
}
.application #mainNav ul li a:hover,
.support #mainNav ul li a:hover,
.imprint #mainNav ul li a:hover,
.privacy #mainNav ul li a:hover,
.application #mainNav ul li a.active,
.support #mainNav ul li a.active {
  color: #ffffff;
} */

#mainNav ul li a:hover {
  color: #2295cf
}

#mainNav ul li a.active {
  font-family: NoyhBold, Arial, sans-serif;
}

#openMobileMenu {
  display: none;
  float: right;
  width: 32px;
  height: 32px;
  margin-top: 15px;
  margin-right: 25px;
}
#openMobileMenu img {
  width: 32px;
  height: 32px;
}
#langSelect {
  float: right;
  color: #222222;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.75em;
  line-height: 62px;
  margin-right: 20px;
}

/************************************************************************************************************* Header */

#pageHeader .gh-header-image {
  width: 100%;
  height: 520px;
  background: url(../img/header/yep-header-index.jpg) 27% center no-repeat scroll #fff;
  background-size: cover;
}
@media screen and (min-width: 1025px) {
  #pageHeader .gh-header-image {
    height: 750px;
    height: 100vh;
  }
}

.index #pageHeader .gh-header-image {
  background-position: -50px top;
}
@media screen and (min-width: 500px) {
  .index #pageHeader .gh-header-image {
    background-position: left top;
  }
}

.about #pageHeader .gh-header-image {
  background-image: url(../img/header/yep-header-about.jpg);
}

.press #pageHeader .gh-header-image {
  background-image: url(../img/header/yep-header-press.jpg);
}

.application #pageHeader .gh-header-image {
  background-image: url(../img/header/yep-header-application.jpg);
}

.team #pageHeader .gh-header-image {
  background-image: url(../img/header/yep-header-team.jpg);
}
@media screen and (min-width: 1025px) {
  .team #pageHeader .gh-header-image {
    background-position: 50% center;
  }
}

.support #pageHeader .gh-header-image {
  background-image: url(../img/header/yep-header-support.jpg);
  background-position: left 53px;
}

#contactButtonWrapper {
  position: fixed;
  top: 80px;
  right: 0px;
  width: 401px;
  height: 80px;
  z-index: 9999;
  overflow: hidden;
}
#contactButtonWrapper.hide {
  display: none;
}
#contactButton {
  position: absolute;
  right: -325px; /* [#78hfz5] */
  padding: 15px 0 22px 15px;
  background-color: #67b9ff;
  font-family: NoyhBold, Arial, sans-serif;
  text-decoration: none;
  color: #000000;
  font-size: 1rem;
  width: 400px;
  -webkit-transition: right 0.2s ease;
  -moz-transition: right 0.2s ease;
  -ms-transition: right 0.2s ease;
  -o-transition: right 0.2s ease;
  transition: right 0.2s ease;
}

@media only screen and (min-width: 1025px) {
  .js #contactButton:hover { 
    right: -140px !important;
  }
  .no-js #contactButton:hover {
    right: -90px;
  }
}
#contactButton img {
  height: 36px;
  width: auto;
  margin-bottom: -11px;
  margin-right: 15px;
}
#teaser {
  position: fixed;
  top: 40%;
  padding: 3px 0;
  max-width: 534px;
  z-index: 51;
  border-left: 40px solid #e5007d;
}
#teaser h1 {
  display: inline;
  font-family: NoyhBold, Arial, sans-serif;
  font-size: 1.5em;
  line-height: 1.3;
  text-align: left;
  color: #000;
  background-color: #e5007d;
  margin: 0;
  padding: 4px 0;
}
#teaser span {
  position: relative;
  left: -20px; 
}
.about #teaser {
  border-left: 40px solid #f6ff00;
}
.about #teaser h1,
.performances #teaser h1 {
  background-color: #f6ff00;
}
.application #teaser {
  border-left: 40px solid #9046cd;
}
.application #teaser h1 {
  background-color: #9046cd;
}
.team #teaser {
  top: 62%;
  right: 0;
  text-align: right;
  max-width: 400px;
  border-left: none;
  border-right: 40px solid #9cff00;
}
.team #teaser h1 {
  background-color: #9cff00;
}
.team #teaser span {
  position: relative;
  left: auto;
  right: -20px; 
}
.performances #teaser,
.ambassador #teaser {
  border-left: 40px solid #9cff00;
}
.performances #teaser h1,
.ambassador #teaser h1 {
  background-color: #9cff00;
}
.press #teaser {
  border-left: 40px solid #9cff00;
}
.press #teaser h1 {
  background-color: #9cff00;
  border-right: 40px solid #9cff00;
}
#headline {
  position: fixed;
  bottom: 25px;
  width: 100%;
  z-index: 50;
}
.index #headline {
  width: 80%;
  left: 50%;
  margin-left: -40%;
}
.about #headline {
  bottom: 75px;
}
.support #headline {
  bottom: 10px;
}
.ambassador #headline {
  width: 534px;
  top: 62%;
}
.team #headline {
  right: 0;
  width: 400px;
  bottom: 20px;
  top: auto;
}
#scrollDown {
  position: absolute;
  top: 88vh;
  left: 50%;
  width: 57px;
  height: 57px;
  margin-left: -27px;
  z-index: 110;
}
#scrollDown img {
  width: 57px;
  height: 57px;
  -webkit-animation-name: arrowAnimation;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-name: arrowAnimation;
  -moz-animation-duration: 0.5s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-direction: alternate;
  -moz-animation-timing-function: ease-in-out;
  -ms-animation-name: arrowAnimation;
  -ms-animation-duration: 0.5s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-direction: alternate;
  -ms-animation-timing-function: ease-in-out;
  -o-animation-name: arrowAnimation;
  -o-animation-duration: 0.5s;
  -o-animation-iteration-count: infinite;
  -o-animation-direction: alternate;
  -o-animation-timing-function: ease-in-out;
  animation-name: arrowAnimation;
  animation-duration: 0.5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes arrowAnimation {
  0% {
    margin-top: 0;
  }
  100% {
    margin-top: 8px;
  }
}
@-moz-keyframes arrowAnimation {
  0% {
    margin-top: 0;
  }
  100% {
    margin-top: 8px;
  }
}
@-o-keyframes arrowAnimation {
  0% {
    margin-top: 0;
  }
  100% {
    margin-top: 8px;
  }
}
@-ms-keyframes arrowAnimation {
  0% {
    margin-top: 0;
  }
  100% {
    margin-top: 8px;
  }
}
@keyframes arrowAnimation {
  0% {
    margin-top: 0;
  }
  100% {
    margin-top: 8px;
  }
}
#indexFeature {
  display: none;
  position: absolute;
  top: 170px;
  right: 30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: #e5007d;
  text-align: center;
  color: #000;
  text-decoration: none;
  -webkit-transform: rotate(4deg);
  -moz-transform: rotate(4deg);
  -ms-transform: rotate(4deg);
  -o-transform: rotate(4deg);
  transform: rotate(4deg);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: -webkit-transform 0.3s ease;
  -moz-transition: -moz-transform 0.3s ease;
  -ms-transition: -ms-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  transition: transform 0.3s ease;
  z-index: 10000;
}
#indexFeature2 {
  display: none;
  position: absolute;
  top: 290px;
  right: 30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: #9cff00;
  text-align: center;
  color: #000;
  text-decoration: none;
  -webkit-transform: rotate(4deg);
  -moz-transform: rotate(4deg);
  -ms-transform: rotate(4deg);
  -o-transform: rotate(4deg);
  transform: rotate(4deg);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: -webkit-transform 0.3s ease;
  -moz-transition: -moz-transform 0.3s ease;
  -ms-transition: -ms-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  transition: transform 0.3s ease;
  z-index: 10000;
}
.team #indexFeature {
  top: auto;
  right: auto;
  left: 30px;
  bottom: 30px;
  -webkit-transform: rotate(-4deg);
  -moz-transform: rotate(-4deg);
  -ms-transform: rotate(-4deg);
  -o-transform: rotate(-4deg);
  transform: rotate(-4deg);
}
.ambassador #indexFeature {
  top: auto;
  bottom: 30px;
}
#indexFeature:hover,
#indexFeature2:hover {
  -webkit-transform: scaleX(1.2) scaleY(1.2) rotate(0deg);
  -moz-transform: scaleX(1.2) scaleY(1.2) rotate(0deg);
  -ms-transform: scaleX(1.2) scaleY(1.2) rotate(0deg);
  -o-transform: scaleX(1.2) scaleY(1.2) rotate(0deg);
  transform: scaleX(1.2) scaleY(1.2) rotate(0deg);
}
#indexFeature img,
#indexFeature2 img {
  width: 100%;
  height: auto;
}
.index #indexFeature {
  background-color: #e5007d;
}
.support #indexFeature,
.performances #indexFeature {
  background-color: #9046cd;
}
.info #indexFeature {
  background-color: #9cff00;
}
@media only screen and (min-width: 910px) {
  #indexFeature,
  #indexFeature2 {
    display: none; /*block;*/
  }
}
@media only screen and (min-width: 1025px) {
  #indexFeature {
    position: fixed;
    top: 200px;
    width: 170px;
    height: 170px;
  }
  #indexFeature2 {
    position: fixed;
    top: 350px;
    width: 170px;
    height: 170px;
  }
}

/* Neuer Header */

.gh-header-container {
  position: relative;
  width: 100%;
  padding: 0 20px;
  margin: -120px 0 0 auto;
  max-width: 500px;
  box-sizing: border-box;
}

.gh-header-container-index {
  margin: -270px 0 0 auto;
}

.gh-header-container-index h1 {
  font-size: 3.2em;
}

.gh-header-container-index h1 span {
  display: block;
}

.gh-header-container-index h1 span:first-child {
  position: relative;
  left: 80px;
}

.gh-header-container-index h1 span:nth-child(3) {
  text-align: right;
}

.gh-header-container-index h1 span:nth-child(4) {
  position: relative;
  left: 30px;
}

@media screen and (min-width: 410px) {
  .gh-header-container-index h1 span:nth-child(3) {
    position: relative;
    left: 100px;
    text-align: left;
  }
}

.gh-header-container::before {
  content: "";
  display: block;
  position: absolute;
  top: -310px;
  left: -50px;
  width: 700px;
  height: 700px;
  background: url(../img/background-shape-1.svg) center center no-repeat scroll transparent;
  background-size: contain;
  z-index: 0;
}

.gh-header-container-index::before {
  top: -160px;
}

.gh-header-container h1 {
  position: relative;
  text-align: left;
  z-index: 1;
}

.gh-header-container p {
  position: relative;
  line-height: 1.3;
  margin-bottom: 0;
  z-index: 2;
}

.gh-header-container p + p {
  margin-top: 1.5em;
}

@media screen and (min-width: 768px) {

  .gh-header-container {
    position: absolute;
    top: 320px;
    right: 0;
    margin-top: 0;
  }

  .gh-header-container-index {
    top: 250px;
  }

  .gh-header-container::before {
    top: -240px;
  }

  .gh-header-container-index::before {
    top: -150px;
  }
}

@media screen and (min-width: 992px) {

  .gh-header-container {
    top: 250px;
  }

  .gh-header-container::before {
    top: -320px;
    left: -50px;
    width: 900px;
    height: 900px;
  }

  .gh-header-container-index::before {
    top: -250px;
  }
}

@media screen and (min-width: 1025px) {
  .gh-header-container-index {
    top: 40px;
  }
}

@media screen and (min-width: 1450px) {

  .gh-header-container {
    top: 460px;
    max-width: 620px;
    padding: 0 120px 0 0;
  }

  .gh-header-container-index {
    top: 30px;
  }

  .gh-header-container::before {
    top: -600px;
    left: -50px;
    width: 1200px;
    height: 1200px;
  }

  .gh-header-container-index::before {
    top: -360px;
  }

  .index .gh-header-container h1 {
    font-size: 4em;
  }
}

/************************************************************************************************************ Content */

#contentWrapper {
  position: relative;
  width: 100%;
  padding: 0 0 80px;
  margin-top: 130px;
  z-index: 60;
}

@media screen and (min-width: 768px) {
  #contentWrapper {
    margin-top: 0;
  }

  .index #contentWrapper {
    margin-top: 300px;
  }

  .support #contentWrapper {
    margin-top: 66px;
  }
}

@media screen and (min-width: 992px) {
  .index #contentWrapper {
    margin-top: 220px;
  }
}

@media screen and (min-width: 1025px) {
  .index #contentWrapper {
    margin-top: 80px;
  }
}

#content {
  margin: 0 auto;
  width: 960px;
}
#content p {
  line-height: 1.3;
}
.contentImage {
  display: block;
  max-height: 400px;
  max-width: 100%;
  margin: 0 auto 2em;
  -webkit-box-shadow: 5px 5px 25px #888;
  box-shadow: 5px 5px 25px #888;
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  transform: rotate(-3deg);
}
.contentImageFullWidth {
  margin: 4em auto 4em;
}
@media only screen and (min-width: 500px) and (max-width: 1350px) {
  .contentImage {
    float: left;
    width: 47.5%;
    max-width: none;
    max-height: none;
    margin-right: 5%;
    margin-bottom: 2em;
  }
  .contentImageFullWidth {
    float: none;
    display: block;
    width: 100%;
    margin: 4em auto 4em;
  }
}
@media only screen and (min-width: 1351px) {
  .contentImage {
    float: left;
    width: 30.8333333333%;
    max-width: none;
    max-height: none;
    margin-right: 5%;
    margin-bottom: 2em;
  }
  .contentImageFullWidth {
    float: none;
    display: block;
    width: 66.66666666666667%;
    margin: 4em auto 4em;
  }
}
#content ul {
  list-style: disc;
  padding-left: 18px;
  margin-bottom: 2em;
}
#content ul li {
  line-height: 1.3;
  margin-bottom: 1em;
}
.index #content p.centered {
  font-family: NoyhBold, Arial, sans-serif;
  font-size: 1.5em;
  line-height: 1.3;
}
.index #content p b,
.index #content ul b {
  font-family: NoyhBold, Arial, sans-serif;
}
.quote {
  text-align: center;
  font-size: 3.5em;
  font-family: NoyhBold, Arial, sans-serif;
  color: #2295cf;
  margin: 1.5em 0 0.4em;
}
.quoteSub {
  text-align: center;
  font-size: 0.75em;
  margin-bottom: 120px;
}

.teamItem {
  width: 100%;
  padding: 60px 0;
}
/* #teamItem1,
#teamItem3,
#teamItem5,
#teamItem7,
#teamItem9,
#teamItem11,
#teamItem13,
#teamItem15 {
  background-color: #93e9ef;
}
#teamItem2,
#teamItem4,
#teamItem6,
#teamItem8,
#teamItem10,
#teamItem12,
#teamItem14,
#teamItem16 {
  background-color: #ffffff;
} */
.articleWrapper {
  width: 960px;
  margin: 0 auto;
}
.teamImageWrapper {
  float: left;
  width: 46.875%;
}
.teamImage img {
  width: 100%;
}
.teamImage + .teamImage {
  margin-top: 40px;
}

.teamText {
  float: right;
  width: 46.875%;
  line-height: 1.3;
}
.team h3 {
  font-size: 2em;
  font-family: NoyhBold, Arial, sans-serif;
  text-align: left;
  line-height: 1.2em;
  text-transform: none;
  margin: 0 0 0.2em;
}
.team h4 {
  font-family: NoyhBold, Arial, sans-serif;
  text-align: left;
  margin: 0 0 1.7em;
}
.support #content {
  position: relative;
  text-align: right;
}
.support #content p {
  display: inline-block;
  width: 43%;
  font-family: NoyhBold, Arial, sans-serif;
  font-size: 2em;
  color: #2295cf;
  line-height: 1.2;
  margin-bottom: 1em;
  text-align: left;
}
#donationForm {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  transform: rotate(-3deg);
  -webkit-box-shadow: 5px 5px 25px #888888;
  -moz-box-shadow: 5px 5px 25px #888888;
  box-shadow: 5px 5px 25px #888888;
}
#donationFormDownload {
  display: table-cell;
  vertical-align: middle;
  width: 185px;
  height: 185px;
  background-color: #2295cf;
  color: #fff;
  padding-bottom: 12px;
  font-family: NoyhBold, Arial, sans-serif;
  font-size: 0.5em;
  line-height: 1.3em;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#donationFormDownload:hover {
  -webkit-transform: rotate(6deg);
  -moz-transform: rotate(6deg);
  -ms-transform: rotate(6deg);
  -o-transform: rotate(6deg);
  transform: rotate(6deg);
  background-color: #67b9ff;
}

@media screen and (min-width: 600px) {
  #donationFormDownload {
    width: 210px;
    height: 210px;
  }
}

@media screen and (min-width: 1025px) {
  #donationFormDownload {
    width: 250px;
    height: 250px;
  }
}

#toTop {
  display: none;
  position: relative;
  top: 20px;
  width: 57px;
  height: 57px;
  margin: 0 auto;
}
#toTop img {
  width: 57px;
  height: 57px;
  transform: rotate(180deg);
}
.openCourseInfo {
  font-family: NoyhBold, Arial, sans-serif;
  background-color: #9cff00;
  padding: 8px 10px;
  border: none;
  font-size: 1em;
  margin-bottom: 1em;
  cursor: pointer;
  outline: none;
  -webkit-transition: background-color 0.2s ease;
  -moz-transition: background-color 0.2s ease;
  -ms-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.openCourseInfo:hover {
  background-color: #e5007d;
}
.courseInfo {
  overflow: hidden;
  height: 0;
}
.h2MoreMarginTop {
  margin-top: 60px;
}
@media only screen and (min-width: 768px) {
  .h2MoreMarginTop {
    margin-top: 120px;
  }
}
.table {
  width: 100%;
  margin-bottom: 30px;
}
.table tr:nth-child(2n-1) {
  background-color: #ddd;
}
.table tr td {
  padding: 10px 5px 12px;
}

/************************************************************************************************************ Footer */

#pageFooter {
  position: relative;
  width: 100%;
  background-color: #cccccc;
  z-index: 61;
}

#secondaryNav {
  width: 100%;
  background-color: #93e9ef;
  padding: 74px 0 40px;
  text-align: center;
  min-height: 36px;
}

#facebookLink {
  position: relative;
  top: 16px;
  margin: 0 25px;
}
#facebookLink img {
  height: 43px;
  width: auto;
  opacity: 0.7;
}
#facebookLink img:hover {
  opacity: 1.0;
}
#secondaryNav a,
#openSponsorsList {
  color: #222222;
  text-decoration: none;
}
#secondaryNav a:hover,
#openSponsorsList:hover {
  color: #000000;
}
#sponsors {
  text-align: center;
}
#openSponsorsList {
  display: inline-block;
  padding: 15px;
}
#sponsorsList {
  height: 0;
  overflow: hidden;
  background-color: #ffffff;
  -webkit-transition: height 0.5s ease;
  -moz-transition: height 0.5s ease;
  -ms-transition: height 0.5s ease;
  -o-transition: height 0.5s ease;
  transition: height 0.5s ease;
}
#sponsorsList a {
  display: inline-block;
  text-decoration: none;
}
#sponsorsList.listIsOpen {
  height: 231px;
}
.sponsorLogo {
  display: inline-block;
  height: 60px;
  margin: 25px;
}
#privacyLink {
  margin-left: 1.3em;
}

/******************************************************************************************************* Mediaqueries */

/* Schriftgrößen */
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  html {
    font-size: 125%; /* 20px */
  }
  .quoteSub {
    font-size: 1em;
  }
}
@media only screen and (max-width: 599px) {
  html {
    font-size: 112.5%; /* 18px */
  }
  .quoteSub {
    font-size: 1em;
  }
}

/* Kontaktformular */
@media only screen and (max-width: 1024px) {
  #contactFormContainer {
    position: absolute;
    max-height: none;
    overflow: hidden;
  }
}
@media only screen and (max-width: 585px) {
  #contactFormContainer h2,
  #contactForm {
    width: 80%;
  }
}

/* Navigation kleiner */
@media only screen and (min-width: 911px) and (max-width: 1500px) {
  #mainNav ul li {
    padding: 14px 1.5em 14px 0;
  }
  #mainNav ul li a {
    font-size: 1.2rem;
  }
  #langSelect {
    font-size: 0.625em;
    line-height: 52px;
  }
}
@media only screen and (min-width: 911px) and (max-width: 1050px) {
  #mainNav ul li a {
    font-size: 1.2rem;
  }
}

@media only screen and (min-width: 1025px) {
  #mainNav ul li a {
    font-size: 1rem;
  }
}

/* Navigation verstecken (mobil) */
@media only screen and (max-width: 910px) {
  #mobileMenuWrapper {
    position: absolute;
    top: 120px;
    right: -241px;
    width: 240px;
    height: 360px;
    margin-left: 0;
    overflow-x: hidden;
    z-index: 103;
    transition: right 0.3s ease;
  }
  #mainNav ul {
    /* position: absolute;
    top: 0;
    right: -221px; */
    display: block;
    width: 100%;
    background-color: #93e9ef;
    padding-top: 11px;
    padding-bottom: 8px;
    -webkit-transition: right 0.2s ease;
    -moz-transition: right 0.2s ease;
    -ms-transition: right 0.2s ease;
    -o-transition: right 0.2s ease;
    transition: right 0.2s ease;
    z-index: 104;
  }
  #mobileMenuWrapper.open {
    right: -1px;
  }
  #mainNav ul li {
    display: block;
    padding: 0;
    line-height: 1.1;

    + li {
      margin-top: .3em;
    }
  }
  #mainNav ul li a {
    display: inline-block;
    font-size: 1.2rem;
    padding: 10px 0 10px 20px;
  }
  #openMobileMenu {
    display: block;
  }
}

/* Logo größer */
@media only screen and (min-width: 500px) {
  #logo {
    height: 120px;
  }
  #mobileMenuWrapper {
    margin-left: 160px;
  }
}

@media only screen and (min-width: 911px) {
  #mobileMenuWrapper {
    margin-top: 11px;
    margin-left: 250px;
  }
}

@media only screen and (min-width: 1000px) {
  #logo {
    height: 140px;
  }
  #mobileMenuWrapper {
    margin-left: 290px;
  }
}

/* Teaser */
@media only screen and (max-width: 1250px) {
  .team #teaser {
    max-width: 200px;
    top: 48%;
  }
  .info #teaser {
    max-width: 250px;
  }
  .about #teaser {
    max-width: 400px;
  }
  .support #teaser {
    max-width: 400px;
  }
  .performances #teaser {
    max-width: 340px;
  }
  .ambassador #teaser {
    max-width: 340px;
  }
  .team #headline {
    width: 300px;
  }
  .ambassador #headline {
    width: 340px;
  }
}
@media only screen and (max-width: 1024px) {
  #teaser {
    position: absolute;
  }
}
@media only screen and (max-width: 800px) {
  #teaser {
    display: none;
  }
}
@media only screen and (max-width: 650px) {
  .team #headline {
    bottom: 10px;
    top: auto;
  }
  .ambassador #headline {
    top: auto;
    bottom: 5px;
    width: 100%;
  }
}

/* Headline */
@media only screen and (max-width: 880px) {
  #headline {
    bottom: 70px;
  }
  .about #headline {
    bottom: 90px;
  }
  .press #headline {
    bottom: 25px;
  }
}
@media only screen and (max-width: 430px) {
  .team #headline {
    bottom: 10px;
    top: auto;
  }
}
@media only screen and (max-width: 1024px) {
  #headline {
    position: absolute;
  }
}
@media only screen and (min-width: 500px) {
  .index #headline {
    width: 40%;
    left: 50%;
    margin-left: -20%;
  }
}

/* Header */
@media only screen and (max-width: 1024px) {
  #contactButtonWrapper {
    position: absolute;
  }
  #teaser {
    padding: 4px 0 3px;
  }
  #scrollDown {
    display: none;
  }
  .index #headline,
  .performances #headline {
    bottom: 10px;
  }
  .about #headline {
    bottom: 0;
  }
  .info #headline {
    bottom: 5px;
  }
  .application #headline {
    bottom: 5px;
  }
  .support #headline {
    bottom: 5px;
  }
}
@media only screen and (max-width: 490px) {
  .application #headline {
    bottom: 5px;
  }
}
@media only screen and (max-width: 650px) {
  .info #headline {
    bottom: 5px;
  }
}

/* Content */
@media only screen and (min-width: 800px) and (max-width: 1350px) {
  #content {
    width: 700px; /* [#6764ref] */
  }
  #content p {
    line-height: 1.4em;
  }
}

@media only screen and (max-width: 1024px) {
  #content,
  .articleWrapper {
    width: 90%;
  }
  #toTop {
    display: block;
  }
}
@media only screen and (max-width: 410px) {
  .lineBreak {
    display: inline;
  }
}
@media only screen and (min-width: 360px) and (max-width: 540px) {
  h1 {
    font-size: 3em;
  }
}
@media only screen and (max-width: 359px) {
  h1 {
    font-size: 2.5em;
  }
}

/* Team */
@media only screen and (min-width: 1025px) and (max-width: 1350px) {
  .articleWrapper {
    width: 700px; /* [#6764ref] */
  }
  .teamImageWrapper {
    float: none;
    width: 100%;
  }
  .teamImage,
  .teamText {
    display: block;
  }
  .teamImage {
    margin-bottom: 30px;
  }
  .teamText {
    width: 100%;
  }
}
@media only screen and (max-width: 910px) {
  .teamImageWrapper {
    float: left;
  }
  .teamImage,
  .teamText {
    display: block;
  }
  .teamImage {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 660px) {
  .teamImageWrapper {
    float: none;
    width: 100%;
  }
  .teamImage,
  .teamText {
    display: block;
  }
  .teamImage {
    margin-bottom: 30px;
  }
  .teamText {
    width: 100%;
  }
}


/* Unterstützen */
@media only screen and (min-width: 520px) and (max-width: 1350px) {
  .support #content p {
    display: block;
    width: 100%;
  }
  #donationForm {
    position: relative;
    top: -210px;
  }
}
@media only screen and (max-width: 519px) {
  .support #content p {
    display: block;
    width: 100%;
  }
  #donationForm {
    display: none;
  }
}

/* Footer */
@media only screen and (min-width: 861px) and (max-width: 1330px) {
  #sponsorsList.listIsOpen {
    height: 360px;
  }
}
@media only screen and (min-width: 775px) and (max-width: 860px) {
  #sponsorsList.listIsOpen {
    height: 480px;
  }
}
@media only screen and (max-width: 774px) {
  #sponsorsList.listIsOpen {
    height: 1030px;
  }
  #sponsorsList a,
  #sponsorsList > img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 280px) {
  #facebookLink {
    top: 10px;
    margin: 0 15px;
  }
  #facebookLink img {
    height: 28px;
  }
}

/********************************************************************************************************* cookiebar */

#cookie-message {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0;
  text-align: center;
  color: #fff;
  background-color: transparent;
  font-family: inherit;
  font-size: 12px;
  line-height: 1.3;
  z-index: 10001;
  box-sizing: border-box;
}
#cookie-message form {
  border: 0;
  margin: 0;
  padding: 15px;
  background-color: #222;
  text-align: center;
}
#cookie-message form .cookie-buttons {
  display: block;
  margin-top: 15px;
}
#cookie-message form .cookie-button {
  display: inline-block;
  padding: 5px 10px;
  background-color: #f2e900;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  transition: background-color .3s ease, color .3s ease;
}
#cookie-message form .cookie-button:first-child {
  margin-right: 15px;
}
#cookie-message form .cookie-button:hover,
#cookie-message form .cookie-button:focus {
  background-color: #e5007d;
  color: #fff;
  text-decoration: none;
}

@media screen and (min-width: 930px) {
  #cookie-message {
    bottom: 15px;
    left: auto;
    right: 15px;
    width: 275px;
  }
}

/* height of footer on mobile devices */

.cookie-message-on #secondaryNav {
  padding-bottom: 185px;
}
@media screen and (min-width: 930px) {
  .cookie-message-on #secondaryNav {
    padding-bottom: 40px;
  }
}


/******************************************************************************************************* Print Styles */

@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important; /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
  * Don't show links that are fragment identifiers,
  * or use the `javascript:` pseudo protocol
  */
  a[href^="#"]:after,
  a[href^="javascript:"]:after,
  a[href="/de/"]:after,
  a[href="/en/"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group; /* h5bp.com/t */
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  #pageHeader,
  #langSelect,
  #mobileMenuWrapper,
  #openMobileMenu,
  #contactButtonWrapper,
  #pageFooter {
    display: none;
  }
  #mainNav {
    position: static;
    height: 200px;
  }
}