/*
Theme Name: stadtbus-theme 
Author: Stadtwerke Emmendingen GmbH - Ivo Frank
Version: 1.0
*/

/*Layout*/

body{
    margin:0;
    font-size: 100%;
    overflow-x:hidden;
    font-family: myriad-pro, sans-serif;
}

.wrapper{
    width:1100px;
    margin:0 auto;
}

.center{
    width:100%;
    text-align:center;
}


/*Header*/

.header_startseite{
    margin:0;
    width:100%;
    /*height:1050px;*/
    height:1500px;
    background-image: linear-gradient(to top,#67c5d9, #0099d1); 
}
.header_allgemein{
    margin:0;
    width:100%;
    height:500px;
    background-image: linear-gradient(to top, #67c5d9, #0099d1);  
}
.header_welle{
  background-image: url(img/header_welle.svg);
  width:100%;
  min-height:170px;  
  background-size: cover;
  margin-top:-5px;

}


#info { 
    text-align: center;
    /*margin-top:-480px;*/
    margin-top:-900px;
}

#info h3{
    margin-top:15px;
}
.auskunft{
    display: inline-block;
    width:100%;
    height:300px;
    box-sizing: border-box;
    margin:50px auto;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.2);
    background-color:white;
}
/*News-Ticker*/
.marquee {
	 width: 100%;
	 overflow: hidden;
	 white-space: nowrap;
}
 .marquee:hover .marquee__item {
	 animation-play-state: paused;
}
 .marquee__seperator {
	 margin: 0 2rem;
}
 .marquee__item {
	 display: inline-block;
	 will-change: transform;
	 animation: marquee 25s linear infinite;
}
 @keyframes marquee {
	 0% {
		 transform: translateX(0);
	}
	 100% {
		 transform: translateX(-100%);
	}
}
 .marquee {
	 background-color: #005ca9;
	 padding: 1rem 0;
	 color: #fff;
     position: relative;
     box-shadow: 3px 3px 8px rgb(0 0 0 / 20%);
}
 /*News-Ticker-ENDE*/
.info_box_1 { 
    display: inline-block;
    width:333.333px;
    height:300px;
    background-image: url(img/Freibad_oeffnungszeiten_start.svg);
    box-sizing: border-box;
    margin:50px auto;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.2);
  }
.info_box_1 p{
    color:#0098d1;
    margin-top:160px;
}
.info_box_2 { 
    display: inline-block;
    width:333.333px;
    height:300px;
    background-image: url(img/Freibad_wetter_start.svg);
    box-sizing: border-box;
    margin-top: 0px;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.2);
  
} 
.info_box_3 { 
    display: inline-block;
    width:333.333px;
    height:300px;
    background-image: url(img/Freibad_wassertemp._start.svg);
    box-sizing: border-box;
    margin-top: 50px;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.2);
  
} 
.info_box_2 p {
    color:#0098d1;
    margin-top:180px;
    font-size:25pt;
}
.info_box_3 p {
    color:#0098d1;
    margin-top:180px;
    font-size:25pt;
}


/*Navigations_Leiste*/
.nav {
  background-color: rgba(0,0,0,0.7);
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
  position:absolute;
  width: 100%;
  height:100px;
  z-index: 1000;
}

.nav ul {
  margin:0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  font-weight:600;
  font-size:16pt;
}
.nav li{
    padding-top:50px;
    
}
.nav li a {
  display: block;
  margin-left:50px;  
  text-decoration: none;
  color:white;
  text-align: center;
    border-bottom:3px solid rgba(0,0,0,0.0);
    text-transform: uppercase;
}

.nav li a:hover{
  border-bottom: 3px solid white;
}

/*Logo-Slider*/
.logo-slider{
    width:300px;
    height:100px;
    overflow:hidden;
    position: absolute;
}

.logo-slider div {
  width: 300px;
  height: 100px;
  position: relative;
  -webkit-animation-name: logoslide; /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 4s; /* Safari 4.0 - 8.0 */
  -webkit-animation-iteration-count: infinite; /* Safari 4.0 - 8.0 */
  animation-name: logoslide;
  animation-duration: 10s;
  animation-iteration-count: infinite;

}
@keyframes logoslide {
  0%   {top:0px;}
  25%  {top:0px;}
  50%  {top:-150px;}
  75%  {top:-150px;}
  100% {top:-300px;}
}
/* menu */

.nav .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}
.menu-wrapper{
    width:1100px;
    margin:0 auto;
}
/* menu icon */

.nav .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 36px 20px;
  position: relative;
  user-select: none;
  margin-top:25px;
}

.nav .menu-icon .navicon {
  background: #fff;
  display: block;
  height: 3px;
  position: relative;
  transition: background .2s ease-out;
  width: 30px;
}

.nav .menu-icon .navicon:before,
.nav .menu-icon .navicon:after {
  background: #fff;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
  
}

.nav .menu-icon .navicon:before {
  top: 8px;
}

.nav .menu-icon .navicon:after {
  top: -8px;
}

/* menu btn */

.nav .menu-btn {
  display: none;
}

.nav .menu-btn:checked ~ .menu {
  max-height: 450px;
}

.nav .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.nav .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.nav .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.nav .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.nav .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

.logo {
  float: left;
    margin-top:20px;
}

/*Footer*/
footer{
    background-color:#0077ad; 
    height:500px;
    bottom:0; 
    width:100%;
}
.footer-welle{
    background-image: url(img/footer.svg);
    background-repeat: repeat-x;
    margin-top:50px;
    margin-bottom:-20px;
    height:220px;
    width:100%;
}
.footer-box{
    width:27.27%;
    float:left;
    margin-top:25px;
    margin-left:50px;
}


.footer-box p{
    color:white;
    font-size:21px;
}

.footer-box a{
    color:white;
    font-weight: 600; 
}
.footer-box a:hover{
    border-bottom:1px solid white;
}

.footer_icon{
    float:left; 
    height:50px;
    width:50px;
    background-color:white; 
    border-radius: 12px;
    margin-right:15px;
}
.footer_icon a:hover{
    border-bottom:0;
}
/*Typographie*/
h1{
    font-family: ff-market-web, sans-serif;
    font-weight:400;
    font-size:9em;
    color:white;
    margin-bottom:30px;
    text-align:center;
    text-shadow: 3px 3px rgba(0,0,0,0.2);
    line-height: 120pt;
    transform: rotate(-2deg);
}

h2{
    font-weight: 400;
    font-size:2.6em;
    color:white;
    margin:0;
    text-align:center;
    text-transform: uppercase;
}

h3{
    font-weight: 700;
    font-size:25pt;
    color:#0098d1;
    margin:0;
}

h4{
    font-weight: 700;
    font-size:20pt;
    color:black;
}

h5{
    font-weight: 700;
    font-size:18pt;
    color:white;
}

h6{
    font-weight: 700;
    font-size:16pt;
    color:white; 
    text-transform: uppercase;
}

p{
    font-weight: 400;
    font-size:18pt ;
    color:black;
    
}
/*Unordered List*/
ul{
    margin:0;
    font-weight: 400;
    font-size:18pt ;
    color:black;
    padding-left:20px;
    }

ul li{
    padding-top:5px;
    padding-bottom:5px;
}
/*Ordered-List*/
ol{
    font-weight: 400;
    font-size:18pt ;
    color:black;    
}
.ol-abc{
    list-style-type: lower-alpha;
}

ol li{
    padding:5px;
}

address{
    font-weight: 400;
    font-size:18pt;
    color:black; 
    font-style:normal;
}
/*Typographie-Klassen*/
.p_gross{
    font-size:40pt;   
}
.p_kleingedruckt{
    font-size:14pt;
}
.main_headline{
    color:white;
    padding:25px 0 0 0px;
}

.main_headline_rechts{
    color:white;
    padding:25px 0 0 0px;
}

.main_text{
    color:white;
    
}
.black{
    color:black;
}
.blue{
    color:#0098d1;
}
.headline{
    width:99%;
    top:70px;
    position:absolute;
    margin-left:auto;
    margin-right:auto;
    left:0;
    right:0;
}
.headline_unterseite{
    top:150px;
    width:100%;
    position:absolute;
}
.datum_center{
    text-align:center;
    text-transform:uppercase;
}
.nospam {
    display: inline;
}
.antispam {
    display: none;
}
/* Buttons*/
.back-to-top {
    background:#8fbc13;
    position: fixed;
    bottom:20px;
    padding:1em;
    border-radius:100px;
    font-family: myriad-pro, sans-serif;
    font-weight: 700;
    font-size:14pt;
    color:white;
    text-decoration: none;
    width:100px;
    right:50%;
    margin-right:-68px;
    text-align: center;
}

.back-to-top:hover{
    background:#85af1f;
    border-bottom:0px;
}

/*Horizontale Linie*/
.hr_blue{
    border:1px solid #0099d1;
    margin-top:50px;
    margin-bottom:50px;
}

.beitrag_divider{
    border:0;
    border:1.5px solid #0099d1;
    width:100%;
    margin-top:100px;
    margin-bottom:100px;
}

/*Links*/
a{
    text-decoration: none;
    color:#0099d1;
}
a:hover{
    border-bottom: 1px solid #0099d1;
}
.link_weiterlesen{   
    color:#0098d1;
    font-weight: 700;
    border: 1px solid #0098d1;
    text-decoration:none;
    padding:6px 12px 10px 12px;
    margin-left:0px;
}
.link_weiterlesen:hover {
    color:gray;
    border:1px solid gray;
    text-decoration: none;
}
.link_neuigkeiten{
    
}
.link_neuigkeiten a{
    color:#0098d1;
    font-weight: 700;
    border: 1px solid #0098d1;
    text-decoration:none;
    padding:6px 12px 10px 12px;
    margin-left:0px;
}
/*Abstände*/

.margin-top-half{
    margin-top:25px;
}

.margin-top-full{
    margin-top:50px;
}
.margin-top-double{
    margin-top:100px!important;
}
.margin-left-15px{
    margin-left:15px;
}
.margin-left-half{
    margin-left:25px;
}
.margin-left-full{
    margin-left:50px;
}
.margin-right-full{
    margin-right:50px;
}

.margin-left-double{
    margin-left:100px;
}
.margin-bottom-half{
    margin-bottom:25px;
}
.padding-left-full{
    padding-left:50px;
}
.padding-left-half{
    padding-left:25px;
}
.no-margin-bottom{
    margin-bottom:0px;
}
/*Responsive Margins*/
.margin-left-4-5-prozent{
    margin-left:4.5%;
}
.margin-4-5-prozent{
    margin-left:4.5%;
    margin-right:4.5%;
}
.margin-top-triple{
    margin-top:150px;
}
 .label-margin-left-full{
        margin-left:50px;
    }
.margin-left-full-responsive{
    margin-left:50px;
}
.margin-full-responsive{
    margin-left:50px;
    margin-right:50px;
}
.flexbox-margin-right-full{
    margin-right:50px;
}
.phone-margin-left-full{
    margin-left:0px;
}
.flexbox-margin-left-full{
    margin-left:50px;
}

/*negative margin*/
.margin-minus-100{
    margin-top:-100px;
}

/*Boxen*/
.box_container{
    width:100%;
    background-color:#7acded;
}
.text_box_links{
    width: 43.18%;
    float:left;
    margin-left:4.5%;
}

.text_box_rechts{
    width: 43.18%;
    float:left;
    margin-left:4.5%;
    margin-right:4.5%;
}
.welle_oben{
  background-image: url(img/welle_oben.svg);
  background-repeat: repeat-x;
  width: 100%;
  min-height:400px;
  margin-top:-260px;
  background-size: cover;
}
.welle_unten{
  background-image: url(img/welle_unten.svg);
  background-repeat: repeat-x;
  width:100%;
  min-height:300px;  
  background-size: cover;
  margin-top:-5px;
}
/*Neuigkeiten*/
.beitrag_img{
    width:100%;
    max-width:1050px;
    max-height:700px;
}
.neuigkeiten div{
    width:1100px;
    margin:0 auto;
}
.neuigkeiten p{
    text-align: left;
    margin-top:25px;
     margin-left:4.5%;
    margin-right:4.5%
   
}
.neuigkeiten h4{
    text-align: left;
    margin-top:50px;
    margin-left:4.5%;
    margin-right:4.5%; 
    font-size:22pt;
}

.neuigkeiten img{
    margin-top:50px;
}
.neuigkeiten iframe{
    height:700px;
}
.size-full{
    height: auto!important;
    width:100%!important;
}

/*Info*/
.info_img{
    height:220px;
    width:220px;
    display:block;
    margin-left:auto;
    margin-right:auto; 
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/*Jobs*/
.jobs_img{
    display:block;
    height:180px;
    margin-left:auto;
    margin-right:auto;
    margin-top:50px;
}
/*Flex-Boxen*/
.flex-container {
  clear:both;
  display: flex;
  flex-wrap: nowrap;
  background-color: ;
}

.flexbox_blau{
     background-image: linear-gradient(to top, #0099d1, #67c5d9); 
}

.flexbox_blau p{
    color:white;
    text-align:center;
}
.flex-container h3{
    color:black;
    font-size:20pt;
    margin-left:50px;
    margin-top:50px;
    margin-right:50px;
}
.flex-container p{
    padding-left:50px;
    padding-right:50px;
}
.flex-container ul{
    margin-left:50px;
}

.flex-container > div {
  background-color: #f1f1f1;
  width: 47.74%;
  text-align: ;
  min-height:450px;
  font-family: myriad-pro, sans-serif;
  font-size:16pt;
    margin-top:50px;
}

.flex-container div h4 {
    margin-left:50px;
}

.flex_box_icon_link{
    height:220px;
    width:220px;
    margin-left:auto;
    margin-right:auto; 
    display:block;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.flex_box_icon_link:hover{
    border-bottom:0px;
}
/*Preise*/
.partner{
    height:100px;
}

.partner_box1{
    float:left;
    width:200px;
}
.partner_box2{
    padding-left:16.6%;
    float:left;
    width:200px;
}
.partner_box3{
    padding-left:16.6%;
    float:left;
    width:200px;
    box-sizing:content-box;
}

.flex-container_preise {
  clear:both;
  display: flex;
  flex-wrap: nowrap;
}

.flex-container_preise > div {
  background-color: #f1f1f1;
  width: 47.74%;
  min-height:200px;
  font-family: myriad-pro, sans-serif;
  font-size:16pt;
  margin-top:50px;
}
.flex-container_preise img{
    margin-top:40px;
    margin-left:9.53%;
    float:left;
    height:120px;
}

.flex-container_preise p{
    margin-top:0px;
    font-size:25px;
    color:#0098d1;
    font-weight: 900;
}
.text_box_preise{
    float:left;
    margin-left:20px;
    margin-top:40px;
    
}
/*Startseite*/
.praktikum-img{
    background-image: url(img/praktikum_jobs.jpg);
    background-size: cover;
    background-position: center;
    width:100%;
    height:100%;
}
.neuigkeiten-img{
    background-size: cover;
    background-position: center;
    width:100%;
    height:100%;
}
/*Jobs*/
.rettungsschwimmer-img{
    background-image: url(img/jobs_rettungsschwimmer.jpg);
    background-size: cover;
    background-position: center;
  
}
.papiersammler-img{
    background-image: url(img/jobs_papiersammler.jpg);
    background-size: cover;
    background-position: center;
}

.flex-container2 {
  display: flex;
  flex-wrap: nowrap;
  background-color: #7acded;
  margin-top:-100px;    
}

.flex-container2 > div {
  min-height:450px;
}
.flex-container-page{
  display: flex;
  flex-wrap: nowrap;
  margin-top:0px; 
}
.flex-container_preise {
  clear:both;
  display: flex;
  flex-wrap: nowrap;
  background-color: ;
}

.flex-container_preise > div {
  background-color: #f1f1f1;
  width: 47.74%;
  text-align: ;
  min-height:200px;
  font-family: myriad-pro, sans-serif;
  font-size:16pt;
    margin-top:50px;
}

/*Attraktionen-Image-Flip*/
.animation {
  -webkit-transition: all 6s ease;
  -moz-transition: all 6s ease;
  -ms-transition: all 6s ease;
  -o-transition: all 6s ease;
  transition: all 6s ease;
}

.wrapper.cards {
  background: 0;
  width: 100%;
  height:350px;
}

.card-container {
  float: left;
  width:47.47%;
  height: 300px;
  margin: 50px 0 0px 4%;
  
  
  /* Set the depth of the elements */
  -webkit-perspective: 800px;
  -moz-perspective: 800px;
  -o-perspective: 800px;
  perspective: 800px;
}

.card-container:first-child {
  margin-left: 0;
}

.card-container h3{
    color:white;
    font-size:25pt;
    text-align:center;
    margin-top:50px;
    line-height:35px;
}
.card-container p{
    color:white; 
    text-align:center;
    margin-top:25px;
    line-height: 30px;
}

.card {
  width: 100%;
  height: 100%;
  cursor: pointer;
  
  
  /* Set the transition effects */
  -webkit-transition: -webkit-transform 1s;
  -moz-transition: -moz-transform 1s;
  -o-transition: -o-transform 1s;
  transition: transform 1s;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.card.flipped {
  -webkit-transform: rotateY( 180deg );
  -moz-transform: rotateY( 180deg );
  -o-transform: rotateY( 180deg );
  transform: rotateY( 180deg );
}

.card .front,
.card .back {
  display: block;
  height: 100%;
  width: 100%;
  line-height: 300px;
  color: white;
  text-align: center;
  font-size: 4em;
  position: absolute;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;  
}

.card .back {
  width: 94%;
  padding-left: 3%;
  padding-right: 3%;
  font-size: 16px;
  text-align: left;
  line-height: 25px;
 
}

.card .back {
  background: #0077ad;
  -webkit-transform: rotateY( 180deg );
  -moz-transform: rotateY( 180deg );
  -o-transform: rotateY( 180deg );
  transform: rotateY( 180deg );
}

/*Attraktionen-Image*/

.breitwellenrutsche_img{
    background-image: url(img/attraktionen/breitwellenrutsche.jpg);
    background-size:cover;
    background-position: center;
    }
.sprungturm_img{
    background-image: url(img/attraktionen/sprungturm.jpg);
    background-size:cover;
    background-position: center;
    }
.schwallduschen_img{
    background-image: url(img/attraktionen/schwallduschen.jpg);
    background-size:cover;
    background-position: center;
    }
.wellenbucht_img{
    background-image: url(img/attraktionen/bild_folgt.svg);
    background-size:cover;
    background-position: center;
    }
.wasserschleier_img{
    background-image: url(img/attraktionen/wasserschleier.jpg);
    background-size:cover;
    background-position: center;
    }
.rutsche_img{
    background-image: url(img/attraktionen/grosse_rutsche.jpg);
    background-size:cover;
    background-position: center;
    }
.wasserspiele_img{
    background-image: url(img/attraktionen/wasserspiele.jpg);
    background-size:cover;
    background-position: center;
    }
.kleinkinderbereich_img{
    background-image: url(img/attraktionen/kleinkinderbereich.jpg);
    background-size:cover;
    background-position: center;
    }
.trampolin_img{
    background-image: url(img/attraktionen/trampolin.jpg);
    background-size:cover;
    background-position: center;
    }
.spielplatz_img{
    background-image: url(img/attraktionen/spielplatz.jpg);
    background-size:cover;
    background-position: center;
    }
.volleyballfeld_img{
    background-image: url(img/attraktionen/volleyballfeld.jpg);
    background-size:cover;
    background-position: center;
    }
.gastro_img{
    background-image: url(img/attraktionen/gastro.jpg);
    background-size:cover;
    background-position: center;
    }
.nichtschwimmerbecken_img{
    background-image: url(img/attraktionen/nichtschwimmerbecken.jpg);
    background-size:cover;
    background-position: center;
    }
.mehrzweckbecken_img{
    background-image: url(img/attraktionen/mehrzweckbecken.jpg);
    background-size:cover;
    background-position: center;
    }
.liegewiese_img{
    background-image: url(img/attraktionen/Liegewiese.jpg);
    background-size:cover;
    background-position: center;
    }
.sportwiese_img{
    background-image: url(img/attraktionen/sportwiese.jpg);
    background-size:cover;
    background-position: center;
    }
.wlan_img{
    background-image: url(img/attraktionen/wlan.jpg);
    background-size:cover;
    background-position: center;
    }
.wickelstation_img{
    background-image: url(img/attraktionen/wickelstation.jpg);
    background-size:cover;
    background-position: center;
    }
.sandkasten_img{
    background-image: url(img/attraktionen/sandkasten.jpg);
    background-size:cover;
    background-position: center;
    }
.klettergeruest_img{
    background-image: url(img/attraktionen/klettergeruest.jpg);
    background-size:cover;
    background-position: center;
    }
.tischtennis_img{
    background-image: url(img/attraktionen/tischtennis.jpg);
    background-size:cover;
    background-position: center;
    }
.wasserlift_img{
    background-image: url(img/attraktionen/wasser_lift.jpg);
    background-size:cover;
    background-position: center;
    }
.durchschreitebecken_img{
    background-image: url(img/attraktionen/durchschreitebecken.jpg);
    background-size:cover;
    background-position: center;
    }

.parkplatz_img{
    background-image: url(img/attraktionen/parkplatz.jpg);
    background-size:cover;
    background-position: center;
    }
.bushaltestelle_img{
    background-image: url(img/attraktionen/bushaltestelle.jpg);
    background-size:cover;
    background-position: center;
    }
.wohnmobilstellplatz_img{
    background-image: url(img/attraktionen/wohnmobilstellplatz.jpg);
    background-size:cover;
    background-position: center;
    }
.bahnhof_img{
    background-image: url(img/attraktionen/bild_folgt.svg);
    background-size:cover;
    background-position: center;
    }

.barrierefreie_dusche_img{
    background-image: url(img/attraktionen/barrierefreie_dusche.jpg);
    background-size:cover;
    background-position: center;
}
/*Ausstattung-Animation*/
.img_shake:hover{
  animation: shake linear 1s;
  animation-iteration-count: 1;
  transform-origin: 50% 50%;
  -webkit-animation: shake linear 1s;
  -webkit-animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: shake linear 1s;
  -moz-animation-iteration-count: 1;
  -moz-transform-origin: 50% 50%;
  -o-animation: shake linear 1s;
  -o-animation-iteration-count: 1;
  -o-transform-origin: 50% 50%;
  -ms-animation: shake linear 1s;
  -ms-animation-iteration-count: 1;
  -ms-transform-origin: 50% 50%;
}

@keyframes shake{
  0% {
    transform:  translate(0px,0px)  rotate(0deg) ;
  }
  15% {
    transform:  translate(-3px,0px)  rotate(-1deg) ;
  }
  30% {
    transform:  translate(2px,0px)  rotate(2deg) ;
  }
  45% {
    transform:  translate(-1px,0px)  rotate(0deg) ;
  }
  60% {
    transform:  translate(1px,0px)  rotate(1deg) ;
  }
  75% {
    transform:  translate(0px,0px)  rotate(0deg) ;
  }
  100% {
    transform:  translate(0px,0px)  rotate(0deg) ;
  }
}

@-moz-keyframes shake{
  0% {
    -moz-transform:  translate(0px,0px)  rotate(0deg) ;
  }
  15% {
    -moz-transform:  translate(-3px,0px)  rotate(-1deg) ;
  }
  30% {
    -moz-transform:  translate(2px,0px)  rotate(2deg) ;
  }
  45% {
    -moz-transform:  translate(-1px,0px)  rotate(0deg) ;
  }
  60% {
    -moz-transform:  translate(1px,0px)  rotate(1deg) ;
  }
  75% {
    -moz-transform:  translate(0px,0px)  rotate(0deg) ;
  }
  100% {
    -moz-transform:  translate(0px,0px)  rotate(0deg) ;
  }
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform:  translate(0px,0px)  rotate(0deg) ;
  }
  15% {
    -webkit-transform:  translate(-3px,0px)  rotate(-1deg) ;
  }
  30% {
    -webkit-transform:  translate(2px,0px)  rotate(2deg) ;
  }
  45% {
    -webkit-transform:  translate(-1px,0px)  rotate(0deg) ;
  }
  60% {
    -webkit-transform:  translate(1px,0px)  rotate(1deg) ;
  }
  75% {
    -webkit-transform:  translate(0px,0px)  rotate(0deg) ;
  }
  100% {
    -webkit-transform:  translate(0px,0px)  rotate(0deg) ;
  }
}

@-o-keyframes shake {
  0% {
    -o-transform:  translate(0px,0px)  rotate(0deg) ;
  }
  15% {
    -o-transform:  translate(-3px,0px)  rotate(-1deg) ;
  }
  30% {
    -o-transform:  translate(2px,0px)  rotate(2deg) ;
  }
  45% {
    -o-transform:  translate(-1px,0px)  rotate(0deg) ;
  }
  60% {
    -o-transform:  translate(1px,0px)  rotate(1deg) ;
  }
  75% {
    -o-transform:  translate(0px,0px)  rotate(0deg) ;
  }
  100% {
    -o-transform:  translate(0px,0px)  rotate(0deg) ;
  }
}

@-ms-keyframes shake {
  0% {
    -ms-transform:  translate(0px,0px)  rotate(0deg) ;
  }
  15% {
    -ms-transform:  translate(-3px,0px)  rotate(-1deg) ;
  }
  30% {
    -ms-transform:  translate(2px,0px)  rotate(2deg) ;
  }
  45% {
    -ms-transform:  translate(-1px,0px)  rotate(0deg) ;
  }
  60% {
    -ms-transform:  translate(1px,0px)  rotate(1deg) ;
  }
  75% {
    -ms-transform:  translate(0px,0px)  rotate(0deg) ;
  }
  100% {
    -ms-transform:  translate(0px,0px)  rotate(0deg) ;
  }
}
/*404-Fehler-Seite*/
.fehlerseite{
    background-image: url(img/404.svg);
    background-repeat:no-repeat;
    background-size: cover;
    background-position: top right;
    height:1800px;
    width:100%;
    margin-top:200px;
    overflow:hidden;
}
.fehlerseite_text{
    height:300px;
}
.fehlerseite_text h3{
    padding-top:210px;
   
    font-size:25pt;
    color:black;
}
.fehlerseite_text a:hover{
    color:#7FCBE4;
}
.fehlerseite h1{
   position: absolute; 
   margin-top:550px; 
   margin-left:300px; 
   font-size:300px;
}
.wasser_404{
background-image: url(img/wasser_404.svg);
    background-repeat:no-repeat;
    background-size:cover;
    width:100%;
    height:1700px;
    margin-top:350px;
  position: relative;
  -webkit-animation-name: wasser; /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 4s; /* Safari 4.0 - 8.0 */
     animation-iteration-count: 1;
  animation-name: wasser;
  animation-duration: 6s;
  animation-fill-mode: forwards;
   
}
@-webkit-keyframes wasser {
  0%   {left:0px; top:0px;}
  25%  {left:0px; top:100px;}
  50%  {left:0px; top:200px;}
  75%  {left:0px; top:300px;}
  100% {left:0px; top:400px;}
}

/*Countdown*/
#countdown{
    font-size:35pt;
    display: block;
    position: relative;
    top: 15%;
}
/*Music-Player*/
#audioplayer{
    margin: 30px auto auto auto;
    text-align:center;
}

#pButton{
    height:300px; 
    width: 50%;
    border: none;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    outline: none;
    cursor: pointer;
}


.play{background:url(img/play_button.svg) ;}
.pause{background: url(img/pause_button.svg) ;}

#timeline{
    margin:0 auto;
	width: 80%;
	margin-top: 30px;
	border-radius: 15px;
	background: rgba(255,255,255,.3);
    cursor:pointer;
  
}

#playhead{
	width: 18px;
	height: 18px;
	border-radius: 50%;
	margin-top: 1px;
	background: rgba(255, 255, 255,1);

}

/*TICKET-SHOP Button*/
    .ticket-button{
        background-color: #ee7f00!important;
        box-shadow: 3px 3px 8px rgba(0,0,0,0.2);
        min-height: 200px!important;
        max-height: 200px!important;
    }
    .ticket-button:hover{
        background-color:#dd7601!important;
    }
    .ticket-button h3{
        color:white;
        margin-left:0px;
        margin-right:0px!important;
    }
    .ticket-button img{
        padding-top:30px;
        height:75px;
        width:60%
    }
/*TICKETSHOP*/
  
    .shop{
        display:block; 
        max-width:1100px; 
        border:none;
    }
    .shop-wrapper{
        width:1100px;
        margin:0 auto;
        padding-top:100px;
        height:1200px;
    }
    .shop-footer{
        background-color:#0077ad;
        height:50px; 
        bottom:0px;
        color:white;
        padding-top:20px;
        text-align: right;
      
    }

    .shop-footer a{
        color:white;
        font-family: myriad-pro, sans-serif;
        font-weight: 700;
        font-size: 21px;
    }
    .shop-footer p{
        color:white;
        padding:0px;
        margin:0px;
    }
    

/*CORONA-Info Button*/
  .corona-info{
        background-color: #0098d1!important;
        box-shadow: 3px 3px 8px rgba(0,0,0,0.2);
         min-height: 200px!important;
        max-height: 200px!important;
    }
    .corona-info:hover{
        background-color:#0088bb!important;
    }
    .corona-info h3{
        color:white;
        margin-left:0px;
        margin-right:0px!important;
    }
    .corona-info img{
        padding-top:30px;
        height:75px;
        width:60%
    }

/*---Stadtbus-Styles----------------------------------------------*/
/*General*/
    .stadtbus h3{
        color:#005ca9;
        text-align: left;
    }
    .stadtbus a {
        text-decoration: none;
        color: #005ca9;
    }
    .stadtbus a:hover {
        border-bottom: 1px solid #005ca9;
    }
    .stadtbus .back-to-top {
        background: #fdc300;
        color: black;
        z-index:1000;
        bottom:100px;
    }
    .stadtbus .back-to-top:hover{
        background: #ffc91a;
        border-bottom:3px solid #333333;
    }

    .separator{
        display:flex;
        align-items: center;
        margin-top:100px;
        margin-bottom:100px;
    }

    .separator .line{
        height: 3px;
        flex: 1;
        background-color: #005ca9;
        z-index:11;
    }

    .separator h3{
        padding: 0 2rem;
        z-index:11;
        color:#005ca9; 
        padding-bottom:5px;
    }
    .stadtbus .beitrag_divider{
        border:1.5px solid #005ca9; 
    }
    .stadtbus table {
      border-collapse: collapse;
      width: 100%;
        font-size:18pt;
    }
    
    .stadtbus td, th {
      border-bottom: 1px solid #dddddd;
      text-align: left;
      padding: 8px;
    }
    .stadtbus th{
        font-weight:400;
    }
    .stadtbus tr td:nth-child(1){
        font-weight:600!important;
        width:30%;
        padding-right:25px;
    }

    .stadtbus tr:nth-child(even) {
      background-color: #fafafa;
    }
    .stadtbus-info_blau{
      background-image: linear-gradient(to top, rgb(0,92,169),rgb(1,159,227));
      padding:25px;
      text-align:left;
      margin-top:100px;
    }
    .stadtbus-info_blau h3, .stadtbus-info_blau p{
        color:white!important;
    }
/*Accessability*/
    .accessibility-bar{
        background-color: #fdc300;
        height:50px;
        display: flex;
        align-items: center;
    }
    .accessibility-bar div{
        font-weight:600;
        display:flex;
        align-items: center;
    }
    .accessibility-text{
        display:inline-block;
        padding-left:5px;
    }
    .accessibility-text a{
        color:black;
        border-bottom: 1px solid transparent;
        font-size:16px;
    }
    .accessibility-text a:hover{
       border-bottom: 1px solid black;
    }
    .high-contrast{
        background-image: url(img/high-contrast-icon.svg);
        width:20px;
        height:20px;
        background-repeat: no-repeat;
        background-position: bottom;
        display: inline-block;
    }  
    .font-size{
        background-image: url(img/font-size-standard.svg);
        width:15px;
        height:15px;
        background-repeat: no-repeat;
        background-position: bottom;
        display: inline-block;
    }
    .help{
        background-image: url(img/help-icon.svg);
        width:20px;
        height:20px;
        background-repeat: no-repeat;
        background-position: bottom;
        display: inline-block;
    }

    img.wp_user_stylesheet_switcher_icon {
        border: none;
        padding: 0px;
        margin: 0px;
        width: 10px;
        height: 10px;
        vertical-align:middle;
    }

    button.wp_user_stylesheet_switcher_button:active {
        padding: 0;
        margin: 1px;
    }

    button.wp_user_stylesheet_switcher_active_option {
        padding-bottom: 1px;
        border-bottom: 3px rgb(185, 50, 7) solid;
        border-radius: 0px;
    }
/*Header*/
/*--Header-Startseite*/
    .stadtbus .header_startseite{
        background-image:url(img/bg_stadtbus_start.svg),linear-gradient(to top, rgb(0,92,169),rgb(1,159,227));
    }
    .stadtbus .header_startseite img{
        margin-top:70px;
    }
    .stadtbus .headline{
        top:150px;
    }
    .stadtbus h1{
        line-height:110pt;
        transform: rotate(-5deg);
    }
    .rounded-bg{    
        display: block;
        overflow: hidden;
        margin-top:-250px;
        margin-left: -30%;
        width: 170%;
        height: 1010px;
        background-color:white;
        border-top-left-radius: 100%;
        border-top-right-radius: 100%;
    }
    .stadtbus .info_box_1{
        width:330.333px;
        background-image: url(img/stadtbus_header_square_white.svg);
    }
    .stadtbus .info_box_2{
        width:330.333px;
        background-image: url(img/stadtbus_header_square_white.svg);
    }
    .stadtbus .info_box_3{
        width:330.333px;
        background-image: url(img/stadtbus_header_square_white.svg);
    }
    .stadtbus .info_box_1 p{
        color:#005ca9;
    }
    .stadtbus .info_box_2 p{
        color:#005ca9;
    }
    .stadtbus .info_box_3 p{
        color:#005ca9;
    }
    .stadtbus .headline{
        top:170px;
    }
/*--Header-Allgemein*/
    .stadtbus .header_allgemein{
        background-image:url(img/bg_stadtbus_start.svg),linear-gradient(to top, rgb(0,92,169),rgb(1,159,227));
        height:1000px;
    }
    .allgemein-content{
        margin-top:-1190px;
        
    }
/*Size-Up letters in h1*/
    .stadtbus h1 span{
        font-size:124%;
    }
    .stadtbus .headline img{
        width:300px;
        margin-left:46%;
        margin-top:-6%;
    }

/*Startseite*/
    .stadtbus .flex-container2{
        background-color:transparent;
        margin-top:-720px;
        margin-bottom:100px;
    }
    .liniennetzplan{
        background-image: url(img/Liniennetzplan2020.jpg);
        background-position: center;
    }
    .gute-fahrt{
        margin-bottom:-874px;
    }
    .gute-fahrt div{
        background-color:transparent;
        margin-bottom:30px;
        text-align:left;
    }
    .gute-fahrt div p{
        font-family: ff-market-web, sans-serif;
        font-weight:400;
        font-size: 1.7em;
        transform: rotate(-4deg);
         background-image:linear-gradient(90deg,rgb(0,92,169),rgb(1,159,227));
         -webkit-background-clip: text;
         -webkit-text-fill-color: transparent;
        margin-top:100px;
    }
    .gute-fahrt div img{
        height:400px;
    }
    .stadtbus #info h3{
        text-align: center;
    }
/*PAGE*/
    .flex-container-page h3{
        margin-left: 4.5%;
        margin-right: 4.5%;
        margin-bottom:25px;
    }
    .stadtbus .flex-container-page{
        font-size:18pt;
    }
    .corona-aha-img{
        width:150px;
        margin-top:25px;
    }
/*Liniennetzplan-MAP ZOOM*/
 .Container {
	 width: 1100px;
	 height: 1100px;
	 display: flex;
	 place-content: center;
	 place-items: center;
}
 .Container .ImageWrapper {
	 width: 1100px;
	 height: 1100px;
	 overflow: hidden;
}
 .Container .ImageWrapper .AnimatedImage {
	 width: 100%;
	 height: 100%;
	 transform: scale(1);
	 background:url(img/Liniennetzplan2020-gross.jpg) transparent no-repeat center;
	 background-size: contain;
	 transition: transform 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
	 transform-origin: 50% 50%;
	 pointer-events: none;
}
 .Container .ImageWrapper:hover {
	 cursor: crosshair;
}
 .Container .ImageWrapper:hover .AnimatedImage {
	 transform: scale(2);
}
 
/*Flexbox-main*/
    .stadtbus .flexbox_blau{
        background-image:linear-gradient(to top, rgb(0,92,169),rgb(1,159,227));
    }
    .stadtbus .flex-container h3 {
        color: #005ca9;
    }
    .stadtbus .link_weiterlesen {
        color: #005ca9;
        border: 1px solid #005ca9;
    }
    .stadtbus .link_weiterlesen:hover {
        color: gray;
        border: 1px solid gray;
        text-decoration: none;
    }
    .small{
        font-size:16px;
    }
/*Informationen*/
    .stadtbus-info-img{
        background-image: url(img/stadtbus-info-img.jpg);
        background-position: center;
        background-size:cover;
    }
    .stadtbus-werbung-img{
        background-image: url(img/stadtbus-werbung.jpg);
        background-position: center;
        background-size:cover;
    }
    .fahrplan-img{
        background-image:url(img/Fahrplanheft_web.jpg);
        background-position: center;
        background-size:cover;
    }
/*Linienfahrpläne & Fahrplanheft*/
    .linienplaene p{
        font-size:16px;
        color:black;
    }
    .linienplaene a{
        font-size:25px;
    }
/*Kontakt*/
    .kontaktformular{
        z-index: 11;
        position:relative;
        font-size:18pt!important;
        text-align: left;
    }
    .kontaktformular .text_box_links{
        margin-left:0;
        width:47.5%;
    }
    .kontaktformular .text_box_rechts{
        margin-right:0;
        width:47.5%;
        margin-left:5%;
    }

    .kontaktformular input[type=text], input[type=tel], input[type=email], select{
        background-color:#f2f2f2;
        border: 1px solid transparent;
        width: 100%;
        height:50px;
        outline: none;
        font-size:18pt!important;
        font-family: myriad-pro, sans-serif;
        color:#4d4d4d;
        text-indent: 2%; 
        box-sizing:border-box;
    }

     .kontaktformular input[type=text]:focus {
        border: 1px solid #005ca9;
    }
     .kontaktformular input[type=tel]:focus {
        border: 1px solid #005ca9;
    }
    .kontaktformular input[type=email]:focus {
        border: 1px solid #005ca9;
    }
    .kontaktformular textarea:focus {
        border: 1px solid #005ca9;
    }
    .kontaktformular select:focus {
        border: 1px solid #005ca9;
    }
    .kontaktformular input[type=submit]{
        background-color:transparent;
        border: none;
        height:50px;
        float:right;
        border: 1px solid #005ca9;
        color: #005ca9;
        font-weight: 700;
        padding: 6px 12px 10px 12px;
        font-family: myriad-pro, sans-serif;
        font-size:18pt;
        cursor: pointer;
    }
    .kontaktformular textarea{
        background-color:#f2f2f2;
        width:98%;
        outline: none;
        font-size:18pt!important;
        font-family: myriad-pro, sans-serif;
        color:#4d4d4d;
        padding:1%;
        border: 1px solid transparent;
    }
    .wps-form {
        width: 100%;
        margin: 0 auto;
    }

    .wps-form-row {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .wps-form-row .wpcf7-form-control {
        width: 100%;
    }

    .wps-form-column {
        flex: 1;
        width: 47.5%;
    }
    .captcha{width:40%;}
    .captcha img{padding-top:10px; height:50px;}

    /* Notebook / Desktop */
    @media only screen and ( min-width: 768px ) { 
        .wps-form-row {
            flex-direction: row;
        }
        .wps-form-column {
        width: 100%;
    }
    }
/*Preise*/
    .stadtbus .flex-container_preise > div {
        z-index:11;

    }
    .stadtbus .flex-container_preise p{
        font-weight: 400;
        color:#005ca9;
    }
    .blue-bg .text_box_preise p{
        color: white!important;
        
    }
    .blue-bg{
        background-image:linear-gradient(to top, rgb(0,92,169),rgb(1,159,227));
        
    }
    .rounded-bg-bottom-preise{
        margin-top:-600px!important;
    }
    .rounded-bg-bottom-start{
        margin-top:-430px!important;
    }
    .ebike{
        z-index: 11;
        position: absolute;
        width: 550px;
        left: 50%;
        margin-top: -180px;
        transform: rotate(-2deg);
    }
/*Neuigkeiten*/
    .stadtbus .neuigkeiten h3{
        margin-left:4.5%;
        margin-right:4.5%;
    }
/*404-Seite-Stadtbus*/
    .stadtbus-404-bg{
        clear: both;
        background-color: #f2e5d4;
        width: 100%;
        height: 600px;
        position: relative;
    }
    .stadtbus-404-man{
        height:400px;
        position: absolute;
        top:30%;
        left:10%;
    }
    .stadtbus-404-bg-2{
        background-color: #d9c4b0;
        width: 100%;
        height: 50px;
        position: relative;
    }
    .rounded-bg-bottom-404{
        background-image: linear-gradient(to bottom, #e3d4bf,#e3d4bf)!important;
        margin-top:-280px!important;
    }
    .stadtbus-404-red{
        font-family: ff-market-web, sans-serif;
        font-weight: 400;
        color:#e53329;
        transform:rotate(-4.5deg);
        font-size: 35px;
        margin: 0px;
        position: absolute;
        margin-left: 80px;
    }
    .stadtbus-404-big{
        font-family: ff-market-web, sans-serif;
        font-weight: 400;
        color:#005ca9;
        transform:rotate(-4deg);
        font-size: 100px;
        margin: 0px;

    }
    .stadtbus-404-normal{
        font-family: ff-market-web, sans-serif;
        font-weight: 400;
        color:#005ca9;
        transform:rotate(-4.5deg);
        font-size: 50px;
        margin:0px;
        margin-left: 30px;
        margin-bottom: 50px;
    }
    .stadtbus-404-text{
        left:60%;
        position:absolute;
        top: 25%;
    }
    .bus-404-img{
        background-image:url(img/404-bus.svg);
        position: absolute;
        height:1500px;
        z-index: 10000;
        width: 100%;
        background-repeat: no-repeat;
        top: 171px;
        left:0%;
 
        -webkit-animation-name: bus-404; 
        -webkit-animation-duration: 4s; 
        animation-iteration-count: 1;
        animation-name: bus-404;
        animation-duration: 8s;
        animation-fill-mode: forwards;
    }

    @-webkit-keyframes bus-404 {
      0%   {left:-50%;}
      10%   {left:-50%;}
      25%  {left:50%;}
      35%  {left:50%;}
      50%  {left:150%;}
      75%  {left:150%;}
      100% {left:150%;}
    }

/*Footer*/
    .rounded-bg-top-margin{
        margin-top:-450px!important;
    }
    .rounded-bg-bottom{
        display: block;
        overflow: hidden;
        margin-top:-250px;
        margin-left: -30%;
        width: 170%;
        height: 760px;
        background-color:white;
        border-bottom-left-radius: 100%;
        border-bottom-right-radius: 100%;
        z-index: 1;
        position: relative;
    }

    .stadtbus footer{
        background-image:linear-gradient(to top, rgb(0,92,169),rgb(1,159,227));
        margin-top: -250px;
        position: relative;
        padding-top:250px;
        height:675px;
    }
    .overlay{
        z-index:10;
        position: relative;
    }
    .stadtbus .footer-box:nth-child(1){
        width:40%;
    }
    .stadtbus .footer-box:nth-child(2){
        width:50%;
        text-align:right;
    }
    .stadtbus .footer-box i{
        display:block;
    }
    .stadtbus .footer_icon{
        margin-top:52px;
    }
    .footer-bottom{
        background-color: rgba(0,0,0,0.7);
        min-height:40px;
        text-align: center;
        color:white;
        padding-top:20px;
        bottom: 0;
        position: absolute;
        width: 100%;
        font-size:16px;
    }
    .footer-bottom a{
        color:white;
    }
    .flex{
        display:flex;
        justify-content: space-between;
    }
    .kontakt-footer footer{
        margin-top:84px!important;
    }

/*----Responsive-Design-------------------------------------------*/
@media only screen and (max-width: 479px) {
    body{
        font-size:40%;
    }
    h1{
        line-height:normal;
        margin-top:100px;
    }
    h2{
        font-size:4em;
    }
  
    .wrapper{
        width:90%;
    }
       .menu-wrapper{
        width:100%;
    }
    .logo-slider{
        margin-left:10px;
    }
     .nav .menu-icon .navicon {
        margin-right:0px;
    }
     .nav ul {
        background-color: rgba(0,0,0,0.8)
            
    }
     .nav li {
    padding-top: 20px;
    padding-bottom: 20px;
    } 
    .nav li:hover{
        background-color: rgba(0,0,0,0.5)
    }
    .nav li a{
        margin-left:0px;
        border-bottom:0px;
    }
    .nav li a:hover{
        border-bottom:0px;
    }
    .text_box_links{
        width:90%;
        float:none;
    }
     .text_box_rechts{
        width:90%;
        float:none;
    }
    #info{
        margin-top:-2000px;
    }
     .header_startseite{
         height:2500px;
    }
       .header_allgemein{
        height:300px;
    }
    .flex-container {
        flex-wrap: wrap;
        margin:0 auto;
        width:100%;
        margin-top:50px;
    }
     .flex-container .margin-top-full{
        margin-top:15px;
    }
    .flex-container > div {
        width: 100%;
        margin-top:0;
      }
     .flex-container h3{
        margin-left:4.5%;
        margin-top:15px;
         margin-right:4.5%;
    }
    .flex-container p{
        padding-left:4.5%;
        padding-right:4.5%;
    }
     .flex-container ul{
        margin-left:6%;
    }
    
    .flex-container_preise {
        flex-wrap: wrap;
        margin:0 auto;
        width:100%;
    }
    .flex-container_preise > div{   
        width: 100%;        
    }
     .flex-container_preise img{
        margin-left:4.5%;
    }
    .flexbox-margin-right-full{
    margin-right:0px;
    }
     .flexbox-margin-left-full{
    margin-left:0px;
    }
     footer{ 
        height:1200px;
        width:100%;
    }   
    .footer-box{
        width:80%;
        float:left;
        margin-left:4.5%;
    }
    .phone-margin-left-full{
    margin-left:4.5%;
    }
    .flex-container div h4{
    margin-left:4.5%;
    }
    
    .fehlerseite{
        height:700px;
        background-position: left;
    }
    .fehlerseite_text{
        height:200px;
    }
    .fehlerseite_text h3{
        padding-top:200px;
    }
    .wasser_404{
        margin-top:120px;
        background-size: cover;
         background-position: center top;
    }
     .margin-top-triple{
        margin-top:50px;
    }
    .margin-top-double{
        margin-top:50px;
    }
    .beitrag_divider{
        width:90%;
    }
    .margin-full-responsive{
        margin-left:4.5%;
        margin-right:4.5%;
    }
     .card-container {
        width:100%;
        margin-left:0;
    }
    .wrapper.cards {
        width: 100%;
        height:700px;
    }
    .jobs_img{
        margin-top:25px;
    }
   .partner{
        height:600px;
    }
    .partner_box1{
        padding-right:0px;
        text-align: center;
        width:100%;
    }
    
    .partner_box2{
       width:100%;
       padding-left:0;
       text-align: center;   
    }
    
    .partner_box3{
        padding-left:0;
        width:100%;
        text-align: center;
    }
    
    .neuigkeiten div{
        width:90%;
    }
    /*Stadtbus*/
    .stadtbus .flex-container2 {
        margin-top:-1530px;
    }
    .stadtbus .footer-box:nth-child(2) {
        width: 50%;
        text-align: left;
    }
    .stadtbus footer {
        height: 1210px;
    }
    .flex{
        display:block;
    }
    .stadtbus .footer-box:nth-child(1) {
        width: 90%;
    }
    .stadtbus .footer-box:nth-child(2) {
        width: 90%;
    }
    .accessibility-text a{
        font-size:14px;
    }
     .ebike{
        display:none;
    }
    .rounded-bg {
        height:1810px;
        border-top-left-radius: 26%;
        border-top-right-radius: 30%
    }
    .rounded-bg-bottom{
        border-bottom-left-radius: 50%;
        border-bottom-right-radius: 63%;
    }
    .marquee{
        font-size:200%;
    }
    .wp_user_stylesheet_switcher_button_s1 span, .wp_user_stylesheet_switcher_button_s0 span{
        display:none;
    }
    .wps-form-column {
        width:100%;
        margin:0px!important;
    }
    .stadtbus .allgemein-content{
        margin-top:-1980px;
    }
    .stadtbus .header_allgemein {
        height:880px;
        background-size:cover;
    }
    .stadtbus .flex-container_preise img{
        display:none!important;
    }
    .gute-fahrt{display:none;}
     
    .stadtbus .headline img {
        display:none;
    }
    .stadtbus h1 {
        line-height: 60pt;
    }
}
    
@media only screen and (min-width: 479px) and (max-width: 767px) {
     body{
        font-size:50%;
    }
    h1{
        line-height:normal;
        margin-top:100px;
    }
    h2{
        font-size:3em;
    }
       .wrapper{
        width:90%;
    }
       .menu-wrapper{
        width:100%;
    }
    .logo-slider{
        margin-left:25px;
    }
     .nav .menu-icon .navicon {
        margin-right:25px;
    }
    .nav ul {
        background-color: rgba(0,0,0,0.8)
    }
     .nav li {
        padding-top: 20px;
        padding-bottom: 20px;
    } 
    .nav li:hover{
        background-color: rgba(0,0,0,0.5)
    }
    .nav li a{
        margin-left:0px;
        border-bottom:0px;
    }
    .nav li a:hover{
        border-bottom:0px;
    }
    
     .text_box_links{
        width:90%;
        float:none;
    }
     .text_box_rechts{
        width:90%;
        float:none;
    }
         #info{
        margin-top:-1950px;
    }
     .header_startseite{
         height:2500px;
    }
    /*
      #info{
        margin-top:-980px;
    }
    .header_startseite{
         height:1550px;
    }*/
    .welle_oben{
        margin-top:-270px;
    }
   
   .info_box_2{ 
       margin: 0px 25px 0px 25px
    }
    .info_box_3{ 
        margin: 50px 0px 0px 0px
    }
  
    .text_box_links{
        width:90%;
        float:none;
    }
     .text_box_rechts{
        width:90%;
        float:none;
    }
   
    .header_allgemein{
        height:350px;
    }
     .flex-container {
        flex-wrap: wrap;
        margin:0 auto;
        width:100%;
        margin-top:50px;
    }
    .flex-container .margin-top-full{
        margin-top:25px;
    }
    .flex-container div{
        margin-top:0;
    }
    .flex-container h3{
        margin-left:4.5%;
        margin-top:25px;
    }
    .flex-container p{
        padding-left:4.5%;
        padding-right:4.5%;
    }
     .flex-container ul{
        margin-left:4.5%;
    }
   
    .flex-container > div {
        width: 100%;
      }
    .flex-container_preise {
        flex-wrap: wrap;
        margin:0 auto;
        width:100%;
    }
    .flex-container_preise > div {
        width: 100%; 
    }
     .flex-container_preise img{
        margin-left:4.5%;
    }
    .flexbox-margin-right-full{
        margin-right:0px;
    }
     .flexbox-margin-left-full{
        margin-left:0px;
    }
   
     footer{ 
        height:1200px;
        width:100%;
    }   
    .footer-box{
        width:300px;
        float:left;
        margin-left:4.5%;
    }
    .flex-container div h4 {
    margin-left:4.5%;
    }

    .fehlerseite{
        height:1000px;
        background-position: left;
    }
    .fehlerseite_text{
        height:200px;
    }
    .fehlerseite_text h3{
        padding-top:200px;
    }
    .wasser_404{
        margin-top:120px;
        background-size: cover;
         background-position: center top;
    }
    .margin-top-triple{
    margin-top:100px;
    }
     .beitrag_divider{
        width:90%;
    }
    .margin-left-full-responsive{
        margin-left:4.5%;
    }
    .margin-full-responsive{
        margin-left:4.5%;
        margin-right:4.5%;
    }
    .beitrag_img{
        width:90%;
    }
    .card-container {
        width:100%;
        margin-left:0;
    }
    .wrapper.cards {
        width: 90%;
        height:700px;
    }
    .partner{
        height:600px;
    }
    .partner_box1{
        padding-right:0px;
        text-align: center;
        width:100%;
    }
    .partner_box2{
       width:100%;
       padding-left:0;
       text-align: center;
       
        
    }
    .partner_box3{
        padding-left:0;
        width:100%;
        text-align: center;
        
    }
     .neuigkeiten div{
        width:90%;
    }
    /*Stadtbus*/
    .stadtbus .footer-box:nth-child(2) {
        width: 50%;
        text-align: left;
    }
    .stadtbus footer {
        height: 1210px;
    }
    .flex{
        display:block;
    }
    .stadtbus .footer-box:nth-child(1) {
        width: 90%;
    }
    .stadtbus .footer-box:nth-child(2) {
        width: 90%;
    }
    .rounded-bg{
        height: 1150px;
    }
    .accessibility-text a{
        font-size:14px;
    }
    .ebike{
        display:none;
    }
    .stadtbus-404-text{
        top:30%;
    }
    .stadtbus-404-red{
        font-size:30px;
    }
    .stadtbus-404-big{
        font-size:80px;
    }
    .stadtbus-404-normal{
        font-size:35px;
    }
    .stadtbus-404-man{
        height:290px;
        top:45%;
        left:6%;
    }
    .rounded-bg-bottom-404 {
        margin-top: -460px!important;
    }
    .bus-404-img {
        top:230px;
        width:135%;
    }
    .rounded-bg {
        height:1750px;
        border-top-left-radius: 30%;
        border-top-right-radius: 30%;
        width:160%;
    }
    .rounded-bg-bottom{
        border-bottom-left-radius: 50%;
        border-bottom-right-radius: 63%;
    }
    .stadtbus .flex-container2 {
        margin-top:-1470px;
    }
    .marquee{
        font-size:200%;
    }
    .wps-form-column {
        width:100%;
        margin:0px!important;
    }
    .stadtbus .allgemein-content{
        margin-top:-1910px;
    }
    .stadtbus .header_allgemein {
        height:880px;
        background-size:cover;
    }
    .gute-fahrt{display:none;}
       
    .stadtbus .headline img {
        display:none;
    }
    .stadtbus h1 {
        line-height: 70pt;
    }
}


@media only screen and (min-width: 767px) and (max-width: 960px) {
    .wrapper{
        width:90%;
    }
    body{
        font-size:60%;
    }
    h1{
        line-height:normal;
        margin-top:100px;
    } 
          #info{
        margin-top:-1300px;
    }
    
     .header_startseite{
         height:1800px;
    }
    /*
       #info{
        margin-top:-800px;
    }
      .header_startseite{
         height:1300px;
    }*/
    .info_box_2{ margin: 0px 0px 50px 50px}
    .info_box_3{ margin: 0px 0px 0px 0px}
   

    .menu-wrapper{
        width:100%;
    }
    .logo-slider{
        margin-left:50px;
    }
     .nav .menu-icon .navicon {
        margin-right:50px;
    }
     .nav ul {
          background-color: rgba(0,0,0,0.8)
         
    }
     .nav li {
    padding-top: 20px;
    padding-bottom: 20px;
    } 
    .nav li:hover{
        background-color: rgba(0,0,0,0.5)
    }
    .nav li a{
        margin-left:0px;
        border-bottom:0px;
    }
    .nav li a:hover{
        border-bottom:0px;
    }    
     .text_box_links{
        width:90%;
        float:none;
    }
     .text_box_rechts{
        width:90%;
        float:none;
    }
   
  
    footer{ 
        height:1150px;
        width:100%;
    }   
    .footer-box{
        width:300px;
        float:left;
        margin-left:50px;
    }
    .flex-container_preise {
        flex-wrap: wrap;
        margin:0 auto;
        width:100%;
    }
    .flex-container_preise > div {
        width: 100%; 
    }
    .flexbox-margin-right-full{
        margin-right:0px;
    }
     .flexbox-margin-left-full{
        margin-left:0px;
    }
    .flex-container_preise img{
        margin-left:4.5%;
    }
    
    .fehlerseite{
        height:1000px;
    }
    .fehlerseite_text{
        height:300px;
    }
    .fehlerseite_text h3{
        padding-top:200px;
    }
    .wasser_404{
        margin-top:120px;
        background-size:cover;
        background-position: center top;       
    }
     .beitrag_divider{
        width:90%;
    }
     .beitrag_img{
        width:90%;
    }
    .card-container {
        width:100%;
        margin-left:0;
    }
    .wrapper.cards {
        width: 70%;
        height:700px;
    }
    .partner{
        height:400px;
    }
    .partner_box2{
        padding-right:100px;
    }
    .partner_box3{
        padding-left:0;
    }
     .neuigkeiten div{
        width:90%;
    }
    .neuigkeiten img{
        width:90%;
    }
    /*Stadtbus*/
     .stadtbus .footer-box:nth-child(2) {
        width: 50%;
        text-align: left;
    }
    .stadtbus footer {
        height: 1210px;
    }
    .flex{
        display:block;
    }
    .stadtbus .footer-box:nth-child(1) {
        width: 90%;
    }
    .stadtbus .footer-box:nth-child(2) {
        width: 90%;
    }
    .rounded-bg{
        height: 1110px;
    }
    .rounded-bg-bottom{
        border-bottom-left-radius: 50%;
        border-bottom-right-radius: 63%;
    }
    .stadtbus .flex-container2 {
        margin-top:-810px;
    }
    .ebike{
        display:none;
    }
    .stadtbus-404-text{
        top:30%;
    }
    .stadtbus-404-red{
        font-size:30px;
    }
    .stadtbus-404-big{
        font-size:85px;
    }
    .stadtbus-404-normal{
        font-size:40px;
    }
    .stadtbus-404-man{
        height:310px;
        top:42%;
        left:8%;
    }
    .rounded-bg-bottom-404 {
        margin-top: -460px!important;
    }
    .bus-404-img {
        top:230px;
        width:130%;
    }
    .marquee{
        font-size:170%;
    }
   .stadtbus .allgemein-content{
        margin-top:-1280px;
    }
    .stadtbus .header_allgemein {
        height:950px;
    }
    .stadtbus .headline img {
        display:none;
    }
    .stadtbus h1 {
        line-height: 80pt;
    }
}

/* "Sonder-Queries" um Abstand zwischen den Info boxen zu regulieren*/
@media only screen and (max-width: 813px) and (min-width: 767px)  {
    .info_box_2{ margin: 0px 25px 50px 25px}
    .info_box_3{ margin: 0px 0px 50px 0px}
    
      #info{
        margin-top:-1100px;
    }
    .header_startseite{
         height:1600px;
    }
    
 #audioplayer {
    margin-top: 80px;
    }
   .marquee{
        font-size:150%;
    }
}
/*Standard-Queries Fortsetzung*/
@media only screen and (min-width: 960px) and (max-width: 1200px)  {
    body{
        font-size:80%;
    }
    .wrapper{
        width:90%;
    }
    .info_box_2{ margin: 0px 0px 0px 50px}
    .info_box_3{ margin: 0px 25px 0px 25px}

    .header_startseite{
         height:1400px;
    }
    /*
    #info{
    margin-top:-750px;
    }
    .header_startseite{
         height:1300px;
    }*/
     #info{
    margin-top:-1200px;
    }
     .header_startseite{
         height:1800px;
    }
       .menu-wrapper{
        width:100%;
    }
    .logo-slider{
        margin-left:50px;
    }
    .nav .menu-icon .navicon {
        margin-right:50px;
    }
      .nav ul {
        background-color: rgba(0,0,0,0.8)
    }
    .nav li {
    padding-top: 20px;
    padding-bottom: 20px;
    }   
    .nav li:hover{
        background-color: rgba(0,0,0,0.5)
    }
    .nav li a{
        margin-left:0px;
        border-bottom:0px;
    }
    .nav li a:hover{
        border-bottom:0px;
    }
    
     .text_box_links{
        width:90%;
        float:none;
    }
     .text_box_rechts{
        width:90%;
        float:none;
    }
    
    
    .fehlerseite{
        height:1000px;
    }
   
    .fehlerseite_text{
        height:300px;
    }
    .fehlerseite_text h3{
        padding-top:200px;
    }
    .wasser_404{
        margin-top:120px;
         background-position: center top;
        
    }
    .footer{
        height:900px;
    }
    .footer-box{
        margin-left:50px;
    }
     .beitrag_divider{
        width:90%;
    }
    .beitrag_img{
        width:90%;
    }
    .partner{
        height:400px;
    }
    .partner_box2{
        padding-right:200px;
    }
    .partner_box3{
        padding-left:0;
    }
     .neuigkeiten div{
        width:90%;
    }
    /*Stadtbus*/
    .ebike{
        width:500px;
        left:52%;
        margin-top:-150px;
    }
    .rounded-bg-bottom-404 {
        margin-top: -380px!important;
    }
    .bus-404-img {
        top:180px;
        width:120%;
    }
    .marquee{
        font-size:130%;
    }
    .stadtbus .headline img {
        display:none;
    }
}
@media only screen and (min-width:460px){
    
    .info_box_1 .info_box_2 .info_box_3 { vertical-align: top; }
}

@media only screen and (min-width:1200px){
    body{
        font-size:90%;
    }
    .info_box_2{ margin: 0px 0 0px 50px}
    .info_box_3{ margin: 0px 0px 0px 50px}
    
    .nav li {
    float: left;
    }
 
    .nav .menu {
    clear: none;
    float: right;
    max-height: none;
    }
    .nav .menu-icon {
    display: none;
    }
    .fehlerseite{
        height:1000px;
    }
    .fehlerseite_text{
        height:200px;
    }
    .fehlerseite_text h3{
        padding-top:200px;
    }
    .wasser_404{
        margin-top:220px;
        background-position: center top;
        
    }
}
/*Media-Querries um umbruch in der Headline zu erzeugen. Div in dem Headline steht wird in der Breite kleiner bei zunehmender Browser-Größe*/
@media only screen and (min-width: 1123px){
    .headline{
        width:90%;
    }
}
@media only screen and (min-width: 1399px) {
    .headline{
        width:80%;
    }
}
@media only screen and (min-width: 1571px) {
    .headline{
        width:70%;
    }
}
@media only screen and (min-width: 1793px) {
    .headline{
        width:60%;
    }
}
@media only screen and (min-width: 2090px) {
    .headline{
        width:50%;
    }
}
@media only screen and (min-width: 2519px) {
    .headline{
        width:45%;
    }
}

@media only screen and (min-width: 813px) and (max-width: 982px)  {

     #audioplayer {
    margin-top: 50px;
    }
}

@media only screen and (min-width: 883px) and (max-width: 959px)  {
    .headline{
        width:80%;
    }
    
     #audioplayer {
    margin-top: 40px;
    }
}
@media only screen and (min-width: 788px) and (max-width: 882px)  {
.headline{
        width:90%;
    }
}
@media only screen and (min-width: 707px) and (max-width: 766px)  {
.headline{
        width:90%;
    }
}