
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  background: #fff;
  color: #333333;
  font-family: "Raleway";
  position: relative;
}

a {
  color: #f82249;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #ff9966;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "IMPACT";
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
  color: #ff9966;
}

.wow {
  visibility: hidden;
}




/*
    Zurueck nach oben (Button)
 */

.back-to-top{
  position: fixed;
  display: none;
  background: #ff6699;
  color: #fff;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s ease-in-out;
}

.back-to-top i{
  font-size: 24px;
  padding-top: 6px;
}

.back-to-top:focus{
  background: #ff9966;
  color: #fff;
  outline: none;
}

.back-to-top:hover{
  background: #ff9966;
  color: #fff;
}


                                                /* Header mit Logo */

#header{
  height: 90px;
  padding: 25px 0;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled,
#header.header-fixed{
  background: #333333;
  height: 80px;
  padding: 15px 0;
  transition: all 0.5s;
}

#header #logo{
  position: fixed;
}
/*
#header #logo img{
  padding: 0;
  margin: 0;
  max-height: 100px;
  max-width: 500px;
}

/* Für textbasiertes "logo" */
#header #logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-family: "Impact";
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;

}

#header #logo h1 a span {
  color: #ff6699;
}

#header #logo h1 a{
  color: #ff9966;
}

#header #logo h1 a:hover{
  color: #ff6699;
}

                                                /* Header section */

.section-header{
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}

.section-header::before{
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background: #ff6699;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-header h2{
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.section-header p{
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 20px;
  font-weight: 550;
  color: #996699;
}

                                                /* Navbar */

.nav-menu,
.nav-menu *{
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul{
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li{
  position: relative;
  white-space: nowrap;
}

.nav-menu > li{
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul{
  display: block;
}

.nav-menu ul ul{
  top: 0;
  left: 100%;
}

.nav-menu ul li{
  min-width: 180px;
}


#nav-container{
  float: right;
  margin-right: 100px;
}

/* Steiling */

.nav-menu a{
  padding: 8px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  outline: none;
}

.nav-menu .nav-active a,
.nav-menu a:hover{
  color: #ff9966;
}

.nav-menu > li{
  margin-left: 8px;
}

.nav-menu > li > a:before{
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ff6699;
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover > a:before,
.nav-menu .nav-active > a:before{
  visibility: visible;
  width: 100%;
}

.nav-menu li.spenden a{
  color: #fff;
  background: #212121;
  padding: 8px 22px;
  border-radius: 50px;
  border: 2px solid #ff6699;
  transition: all ease-in-out 0.3s;
  font-weight: 500;
  margin-left: 8px;
  margin-top: 2px;
  line-height: 1;
  font-size: 13px;
}

.nav-menu li.spenden a:hover{
  background: none;
  color: #ff6699;
  border-color: #ff9966;
}

.nav-menu li.spenden:hover a:before,
.nav-menu li.spenden.menu-active a:before{
  visibility: hidden;
}


/* Mobile Nav Toggle */

#mobile-nav-toggle{
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 15px 15px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i{
  color: #ff6699;
}


/* Mobile Nav menue steiling */

#mobile-nav{
  position: fixed;
  top: 80px;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(255, 204, 153, 0.80);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul{
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li{
  position: relative;
}

#mobile-nav ul li a{
  color: #333333;
  font-size: 20px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  font-weight: 600;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover{
  color: #ff6699;
}

#mobile-nav ul li li{
  padding-left: 30px;
}


#mobile-nav ul .menu-item-active{
  color: #ff9966;
}

#mobile-body-overly{
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(255, 204, 153, 0.20);
  display: none;
}

/* Mobile Nav body classe */

body.mobile-nav-active{
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav{
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle{
  color: #fff;
}


                                                /* Vollscreen Bild/Video */



#intro-sec{
  width: 100%;
  height: 100vh;
  background: url("../img/cover.jpg") top center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

#intro-sec:before{
  content: "";
  background: rgba(51, 51, 51, 0.2);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#intro-sec .intro-container{
  position: absolute;
  bottom: 0;
  left: 0;
  top: 90px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;

}

#titeltext{
  max-width: 60%;

}

#intro-sec h1{
  color: #fff;
  font-family: "IMPACT", sans-serif;
  font-size: 85px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 2px 0 #333333;
}

#intro-sec h2{
  color: #fff;
  font-family: "IMPACT", sans-serif;
  font-size: 44px;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 2px 0 #333333;
}


#intro-sec p{
  color: #ebebeb;
  font-weight: 700;
  font-size: 20px;
  padding-top: 3%;
}

#intro-sec .about-btn{
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #ff6699;
  background-color: #333333;
}

#intro-sec .about-btn:hover{
  background: #333333;
  color: #ff6699;
  border-color: #ff9966;
}

#progrmain{
  height: 4vh;
  border: 2px solid #333333;
}

#progr1{
  background-color: #ffcc99;

}

#progr2{
  background-color: #ff6699;

}

#progr3{
  background-color: #996699;

}

#progr4{
  background-color: #ffcc99;

}

#progr4 p{
  margin: 0;
  padding: 0;
  color: #333333;
}

#progr2 p{
  margin: 0;
  padding: 0;
  color: #333333;
}

#progr3 p{
  margin: 0;
  padding: 0;
  color: #333333;
}


                                                /* About bereich */

#about-sec{
  background: url("../img/Backgroundbild1.jpg") center no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
  color: #fff;
  padding: 60px 0 40px 0;
  border-top: 1px solid #333333;
}

#about-sec:before{
  content: "";
  background: rgba(255, 204, 153, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#about-sec .section-header h2{
  color: #333333;
}

#about-sec h3{
  font-size: 26px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #333333;
  letter-spacing: 2px;
}

#about-sec h4{
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #333333;
  letter-spacing: 1.5px;
}

#about-sec .row p{
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #333333;
}

#about-sec .about-sec-btn{
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px 10px 30px 0;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 3px solid #ff6699;
  background-color: rgba(51, 51, 51, 0.8);
}

#about-sec .about-sec-btn:hover{
  background: #333333;
  color: #ff6699;
  border-color: #ff9966;
}



                                                /* Team bereich */




#team-sec{
  padding: 60px 0 30px 0;
  background-color: #333333;
}

#team-sec .team{
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

#team-sec .section-header h2{
letter-spacing: 1px;
}

#team-sec .team .details{
  background: rgba(255, 204, 153, 0.8);
  position: absolute;
  left: 0;
  bottom: -30px;
  right: 0;
  text-align: center;
  padding-top: 10px;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

#team-sec .team .details h3{
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: 2px;
}

#team-sec .team .details p{
  color: #333333;
  font-size: 15px;
  margin-bottom: 10px;
  font-style: italic;
  font-weight: 600;
}

#team-sec .team .details a{
  color: #333333;
}

#team-sec .team .details a:hover{
  color: #ff6699;
}

#team-sec .team:hover .details{
  bottom: 0;
}

#team-sec-details{
  padding: 60px 0;
}

                                  /* XXXXXXXX-- Derfilm bereich --XXXXXXX */
#derfilm{
background: url("../img/Backgroundbild2.jpg") center no-repeat;
padding: 60px 0 40px 0;
background-attachment: fixed;
color: #fff;
background-size: cover;
overflow: hidden;
position: relative;

}

#derfilm:before{
content: "";
background-color: rgba(255, 102, 153, 0.9);
position: absolute;
bottom: 0;
top: 0;
left: 0;
right: 0;
}


#derfilm p{
color: #996699;
}

#derfilm .section-header h2{
color: #333333;
letter-spacing: 1px;
}

#derfilm .section-header::before{
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background: #333333;
  bottom: 0;
  left: calc(50% - 25px);
}



#derfilm h3{
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 1px 0 black;
}


#derfilm .row p{
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #333333;
}

                                /* XXXXXXXX-- Newsletter bereich --XXXXXXX */

#finanzierung{
  padding: 60px 0 30px 0;
  background-color: #333333;
}

#finanzierung p{
color: #ff6699;
}

#finanzierung .section-header h2{
  color: #ff9966;
  letter-spacing: 1px;
}

#finanzierung h3 {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 2px;
  color: #ff9966;
}

#finanzierung .row p {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #fff;
}

#finanzierung .tbodyfin{
  color: #fff;
}
#finanzierung .mainth{
  color: #ff9966;
}

#finanzierung .testtr{
  background-color: #333333;
  color: #fff;
}

#finanzierung .fin-sec-btn{
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 3px solid #ff6699;
  background-color: rgba(51, 51, 51, 0.8);
}

#finanzierung .fin-sec-btn:hover{
  background: #333333;
  color: #ff6699;
  border-color: #ff9966;
}

#finanzierung .mitte a{
  margin-left: 42.5%;
}

                                    /* XXXXXXXX-- Zeitplan bereich --XXXXXXX */



#zeitplan{
padding: 60px 0 40px 0;
background: url("../img/Backgroundbild3.jpg") center no-repeat;
background-attachment: fixed;
background-size: cover;
overflow: hidden;
position: relative;
color: #fff;
}

#zeitplan:before {
content: "";
background-color: rgba(255, 102, 153, 0.9);
position: absolute;
bottom: 0;
top: 0;
left: 0;
right: 0;
}

#zeitplan .section-header h2{
color: #333333;
}

#zeitplan .section-header p{
color: #996699;
}

#zeitplan .section-header::before{
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background: #333333;
  bottom: 0;
  left: calc(50% - 25px);
}

#zeitplan .row h3,h4,h5{
  color: #333333;

}

#zeitplan .table1 th{
  text-align: center;
  color: #ff9966;
  border: 1px solid black;
}

#zeitplan .table1 tr{
  border: 1px solid black;
}

#zeitplan .table1{
  position: relative;
  background-color: #333333;
}

#zeitplan .fix h5{
  margin-bottom: 29px;
}

#zeitplan .littlebalken{
  width: 880px;
  height: 24px;
  background-color: #996699;
  margin-bottom: 2px;
}

#zeitplan .littlebalken2{
  width: 200px;
  height: 24px;
  background-color: #996699;
}

#zeitplan .littlebalken3{
  width: 842px;
  height: 24px;
  background-color: #996699;
  margin-left: 180px;
}

#zeitplan .fin h4{
  margin-left: 180px;
}

#zeitplan .table2 th{
  text-align: center;
  color: #ff9966;
  border: 1px solid black;
}

#zeitplan .table2 tr{
  border: 1px solid black;
}

#zeitplan .table2{
  position: relative;
  background-color: #333333;
}

#zeitplan .littlebalken4{
  width: 900px;
  height: 24px;
  background-color: #996699;
  margin-bottom: 2px;
}

#zeitplan .littlebalken5{
  width: 200px;
  height: 24px;
  background-color: #996699;
  margin-left: 10px;
}

#zeitplan .fix2 h5{
margin-bottom: 28px;
margin-left: 10px;
}

#zeitplan .rowmain{
  margin-bottom: 5%;
}



                                                /* Partner bereich XXXXXXXXXX */

#partner{
  padding: 60px 0 30px 0;
  background-color: #333333;
}


#partner .partner-wrap{
  border-top: 1px solid #e0e5fa;
  border-left: 1px solid #e0e5fa;
  margin-bottom: 30px;
}

#partner .partner-logo{
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid #212121;
  border-bottom: 1px solid #212121;
  overflow: hidden;
  background: -moz-linear-gradient(top, rgba(255,102,153,1) 0%, rgba(255,204,153,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,102,153,1)), color-stop(100%, rgba(255,204,153,1)));
  background: -webkit-linear-gradient(top, rgba(255,102,153,1) 0%, rgba(255,204,153,1) 100%);
  background: -o-linear-gradient(top, rgba(255,102,153,1) 0%, rgba(255,204,153,1) 100%);
  background: -ms-linear-gradient(top, rgba(255,102,153,1) 0%, rgba(255,204,153,1) 100%);
  background: linear-gradient(to bottom, rgba(255,102,153,1) 0%, rgba(255,204,153,1) 100%);
  height: 160px;
}

#partner .partner-logo:hover img{
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

#partner img{
  transition: all 0.4s ease-in-out;
}


/*--------------------------------------------------------------
                                        XXXXXXXX-- contact bereich --XXXXXXX
--------------------------------------------------------------*/
#contact{
padding: 60px 0;
background: url("../img/Backgroundbild4.jpg") center no-repeat;
background-attachment: fixed;
background-size: cover;
overflow: hidden;
position: relative;
color: #fff;
}

#contact:before{
content: "";
background-color: rgba(255, 204, 153, 0.8);
position: absolute;
bottom: 0;
top: 0;
left: 0;
right: 0;
}

#contact .section-header h2{
  color: #333333;
}

#contact .contact-info{
  margin-bottom: 20px;
  text-align: center;
}


#contact .contact-info address,
#contact .contact-info p{
  margin-bottom: 0;
  color: #333333;
}

#contact .contact-info h3{
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #333333;
  letter-spacing: 1px;
}

#contact .contact-info a{
  color: #333333;
}

#contact .contact-info a:hover{
  color: #ff6699;
}

#contact .form-group{
    position: relative;
    background-color: #333333;
    border: 1px solid #333333;
}

#contact .contact-adresse,
#contact .contact-handy,
#contact .contact-email{
  margin-bottom: 20px;
}

#contact .form #sendmessage{
  color: #333333;
  position: relative;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage{
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show{
  display: block;
}

#contact .form .validation{
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input,
#contact .form textarea{
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#contact .form button[type="submit"]{
  background: #ff9966;
  border: 0;
  padding: 10px 40px;
  color: #333333;
  transition: 0.4s;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
}

#contact .form button[type="submit"]:hover{
  background: #ff6699;
}

#contact .hinweis{
  position: relative;
}

#datens{
  position: relative;
}

#contact .hinweis p{
  color: #333333;
  position: relative;
}



/*--------------------------------------------------------------
                                        XXXXXXXX-- Footer bereich --XXXXXXX
--------------------------------------------------------------*/


#footer{
  background: #212121;
  padding: 0 0 25px 0;
  color: #eee;
  font-size: 14px;
}


#footer .footer-top{
  background: #333333;
  padding: 60px 0 0 0;
}

#footer .footer-top .social-links a{
  font-size: 18px;
  display: inline-block;
  background: #212121;
  color: #eee;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover{
  background: #ff9966;
  color: #333333;
}

#footer .footer-top h4{
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 2px solid #ff9966;
  letter-spacing: 2px;
  font-family: "Raleway", sans-serif;
}

#footer .footer-top .footer-links{
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i{
  padding-right: 5px;
  color: #ff9966;
  font-size: 18px;
}

#footer .footer-top .footer-links ul li{
  border-bottom: 1px solid #212121;
  padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child{
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #eee;
}

#footer .footer-top .footer-links ul a:hover{
  color: #ff9966;
}

#footer .footer-top .footer-contact{
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p{
  line-height: 26px;
}

#footer .copyright{
  text-align: center;
  padding-top: 30px;
}

#footer .credits{
  text-align: center;
  font-size: 13px;
  color: #ddd;
}

#footer .credits a{
  color: #ff6699;
  font-weight: 600;
}

.credits i:hover{
  color: #ff6699;
}

/*--------------------------------------------------------------
# Teamseite CSS ANFANG
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Header & Nav
--------------------------------------------------------------*/

#tnav-container{
  float: right;
  margin: 0 300px 0 0;
}


/*--------------------------------------------------------------
# Bla
--------------------------------------------------------------*/

#teamssec{
  width: 100%;
  height: 45vh;
  background: url("../img/cover.jpg") top center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

#teamssec:before{
  content: "";
  background: rgba(51, 51, 51, 0.1);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#teamssec .intro-container{
  position: absolute;
  bottom: 0;
  left: 0;
  top: 90px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;

}

#teamssec .section-header{
  padding-top: 5vh;
}

#teamssec .section-header h2{
  color: #fff;
  font-family: "IMPACT", sans-serif;
  font-size: 85px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 2px 0 #333333;
}







/*--------------------------------------------------------------
# Teambereich Media Queries
--------------------------------------------------------------*/

#nummer2{
  padding: 0 0 0 0;
  background-color: #333333;
  background-image: linear-gradient(to top, rgba(255, 0, 0, 0),
  rgba(255, 102, 153, 0.7));
  border-bottom: 1px solid #212121;
}

#nummer2 .containerX{
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
  background: rgba(255, 102, 153, 0.9);
  box-shadow: 0 0 10px black;
}

#nummer2 #jascha{
  margin: 0;
}

#nummer2 .section-header h2{
letter-spacing: 1px;
}

#nummer2 .beschreibung h2{
  font-size: 46px;
  padding-top: 25px;
  color: #996699;
  text-shadow: 1px 0 black;
}

#nummer2 .beschreibung h3{
  color: #333333;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 5px;
}

#nummer2 .beschreibung h4{
  color: #333333;
  font-size: 22px;
  font-weight: 500;
}

#nummer2 .beschreibung span{
  color: #fff;
  text-shadow: 1px 0 black;
}

#nummer2 .beschreibung p{
  color: #fff;
  font-size: 18px;
  margin-bottom: 40px;
  margin-top: 10px;
  font-style: italic;
  font-weight: 600;

}


#erstes{
  box-shadow: 0px 0px 5px black;
  margin: 0;
}

/*--------------------------------------------------------------
# Responsive Media Queries Team
--------------------------------------------------------------*/

@media (max-width: 1264px){
  #nummer2 .row{
    display: block;
    margin: 0;
  }
}

@media (max-width: 768px){
  #footer .row{
    display: block;
  }
  #footer .col-4{
    min-width: 100%;
    text-align: center;
  }
  #footer .col-3{
    min-width: 100%;
    text-align: center;
  }
  #footer .col-lg-6{
    min-width: 100%;
    text-align: center;
  }
  #footer .col-lg-6{
    min-width: 100%;
    text-align: center;
  }
  #footer .social-links{
    padding: 0 0 15px 0;
  }
  #nummer2 .beschreibung h2{
    font-size: 36px;
    padding-top: 10px;
  }
  #nummer2 .beschreibung h3{
    font-size: 26px;
  }
  #nummer2 .beschreibung h4{
    font-size: 18px;
  }
  #nummer2 .beschreibung p{
    font-size: 14px;
    margin-bottom: 15px;
  }
}






/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 767px) {
}

@media (min-width: 768px) {
  #contact .contact-adresse,
  #contact .contact-handy,
  #contact .contact-email {
    padding: 20px 0;
  }

  #contact .contact-handy {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }

}
/*
@media (min-width: 991px) {
  #schedule .sub-heading {
    width: 75%;
  }
}
*/
@media (min-width: 1024px) {
  #intro-sec {
    background-attachment: fixed;
  }

  #about-sec {
    background-attachment: fixed;
  }

  /*#subscribe {
    background-attachment: fixed;
  }*/
}

@media (max-width: 1199px) {
  #header .container {
    max-width: 100%;
  }

  .nav-menu a {
    padding: 8px 4px;
  }

  #zeitplan .littlebalken{
    width: 720px;
  }
  #zeitplan .littlebalken2{
    width: 190px;
  }
  #zeitplan .fix{
    margin-left: 10px;
  }
  #zeitplan .littlebalken3{
    width: 700px;
    margin-left: 150px;
  }
  #zeitplan .littlebalken4{
    width: 750px;
  }
  #zeitplan .littlebalken5{
    width: 170px;
  }
  #zeitplan .fin h4{
    margin-left: 150px;
  }

  #finanzierung .mitte a{
    margin-left: 41.5%;
  }
}

@media (max-width: 991px) {
  #header {
    background: #333333;
    height: 70px;
    padding: 15px 0;
    transition: all 0.5s;
  }
  #nav-container {
    display: none;
  }
  #tnav-container {
    display: none;
  }
  #mobile-nav-toggle {
    display: inline;
  }
  #intro-sec .intro-container {
    top: 70px;
  }
  #intro-sec h1 {
    font-size: 50px;
  }
  #intro-sec h2 {
    font-size: 35px;
  }
  #intro-sec p {
    font-size: 16px;
  }

  /* Finanzbereich media Querie 991px */
  #finanzierung .mitte a{
    margin-left: 38.5%;
  }

  /* Team media Querie 991px */
  #teamssec .section-header h2 {
    font-size: 55px;
  }

  #teamssec .section-header{
    padding-top: 5vh;
  }

  #teamssec{
    height: 30vh;
  }

  /* Zeitplan media Querie 991px */
  #zeitplan .littlebalken{
    width: 560px;
  }
  #zeitplan .rowsecond h3{
    margin-bottom: 40px;
    margin-top: 10px;
  }
  #zeitplan .littlebalken2{
    width: 120px;
  }
  #zeitplan .rowsecond h5{
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 31px;
  }
  #zeitplan .fix{
    margin-left: 0;
  }

  #zeitplan .littlebalken3{
    width: 520px;
    margin-left: 93px;
  }
  #zeitplan .fin h4{
    margin-left: 93px;
  }
  #zeitplan .littlebalken4{
    width: 570px;
  }
  #zeitplan .littlebalken5{
    width: 100px;
    margin-left: 0;
  }
  #zeitplan .fix2 h5{
    margin-left: 0;
  }
}

@media (max-width: 769px) {
  #titeltext{
    max-width: 90%;
  }
  #intro-sec h2{
    font-size: 24px;
  }
  /* Zeitplan media Querie 768px */
  #zeitplan .littlebalken{
    width: 420px;
  }
  #zeitplan .rowsecond h3{
    margin-bottom: 20px;
    margin-top: 30px;
  }
  #zeitplan .littlebalken2{
    width: 90px;
  }
  #zeitplan .rowsecond h5{
    font-size: 16px;
    margin-top: 25px;
    margin-bottom: 20px;
  }
  #zeitplan .fix{
    margin-left: 0;
    padding-left: 0;
  }
  #zeitplan .fix2{
    margin-top: 22px;
    margin-left: 10px;
    padding: 0;
  }
  #zeitplan .littlebalken3{
    width: 395px;
    margin-left: 54px;
  }
  #zeitplan .fin h4{
    margin-left: 54px;
  }
  #zeitplan .littlebalken4{
    width: 450px;
  }
  #zeitplan .littlebalken5{
    width: 50px;
    margin-left: 20px;
  }
  #zeitplan .fix2 h5{
    font-size: 16px;
    margin-top: 25px;
    margin-bottom: 20px;
    margin-left: 10px;
  }

  #finanzierung .mitte a{
    margin-left: 34.5%;
  }

}

@media (max-width: 574px) {

  /* Zeitplan media Querie 574px */
  #zeitplan .littlebalken{
    width: 400px;
  }
  #zeitplan .littlebalken2{
    width: 110px;
  }
  #zeitplan .littlebalken3{
    width: 280px;
    margin-left: 47px;
  }
  #zeitplan .fin h4{
    margin-left: 47px;
  }
  #zeitplan .rowsecond h5{
    font-size: 16px;
    margin-top: 47px;
    margin-bottom: 17px;
  }
  #zeitplan .fix{
    margin-left: 15px;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  #finanzierung .mitte a{
    margin-left: 30.5%;
  }
  /* Zeitplan media Querie 574px */
  #zeitplan .littlebalken{
    width: 330px;
  }
  #zeitplan .littlebalken2{
    width: 80px;
  }
  #zeitplan .littlebalken3{
    width: 230px;
    margin-left: 27px;
  }
  #zeitplan .fin h4{
    margin-left: 27px;
  }
  #zeitplan .rowsecond h5{
    font-size: 16px;
    margin-top: 47px;
    margin-bottom: 17px;
  }
  #zeitplan .fix{
    margin-left: 5px;
    padding-left: 0;
  }
}

@media (max-width: 450px) {
  /* Zeitplan media Querie 574px */
  #zeitplan .littlebalken{
    width: 300px;
  }
  #zeitplan .littlebalken2{
    width: 80px;
    float: right;
  }
  #zeitplan .littlebalken3{
    width: 200px;
    margin-left: 20px;
  }
  #zeitplan .fin h4{
    margin-left: 20px;
  }
  #zeitplan .rowsecond h5{
    font-size: 16px;
    margin-top: 47px;
    margin-bottom: 17px;
    float: right;
  }
  #zeitplan .fix{
    margin-left: 5px;
    padding-left: 0;
  }
}

@media (max-width: 368px) {
  #titeltext{
    max-width: 100%;
  }
  #intro-sec h2{
    font-size: 18px;
  }
  #teamssec h2{
    font-size: 36px;
  }
  #teamssec .section-header h2{
    font-size: 36px;
  }
  #teamssec .section-header{
    padding-top: 0;
  }
  #zeitplan .littlebalken{
    width: 240px;
  }
  #zeitplan .littlebalken2{
    width: 80px;
    float: right;
  }
  #zeitplan .littlebalken3{
    width: 190px;
    margin-left: 8px;
  }
  #zeitplan .fin h4{
    margin-left: 8px;
  }
  #zeitplan .rowsecond h5{
    font-size: 14px;
    float: right;
  }
}

@media (max-width: 365px){

  #zeitplan .fix{

  }
}
/*
@media (max-width: 520px){
  #zeitplan .rowsecond h3{
    margin-left: 1%;
  }
  #zeitplan .littlebalken{
    width: 390px;
  }
  #zeitplan .littlebalken3{
    margin-left: 43px;
  }
  #zeitplan .fin h4{
    margin-left: 43px;
  }
}
/*
@media (max-width: 480px) {
  #schedule .nav-tabs a {
    padding: 8px 30px;
  }
}
*/
@media (max-width: 460px) {
  #finanzierung .row a{
    margin-left: 25%;
  }
}
