/*

Website Design: Lasse Weinbrandt

*/
@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
html {
    -webkit-font-smoothing: antialiased;
}
body {
    background-color: #000;
    font-family: Montserrat, Avenir Next, Avenir, Helvetica Neue, Helvetica, Arial, sans-serif;
    color: #fff;
}

* {
    box-sizing: border-box;
}

/* Sitewrapper
--------------------
--------------------*/

.sitewrapper {
    width: 100%;
    height: 100vh;
    display: block;
    overflow: hidden;
}

/* Main-Navigation
--------------------
--------------------*/

.headercontainer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    position: absolute;
    top: 0;
    padding: 20px 5% 20px 5%;
    z-index: 9999;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 0.2em;
    font-weight: 700;
}
.headercontainer a {
    text-decoration: none;
    color: #fff;
    background-color: #000;
    /* -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease; */
    padding: 0;
    cursor: pointer;

}
.headercontainer a:hover {
}
.logo {
    width: 45%;
    display: inline-block;
}
.logo a {
    padding: 5px 10px 5px 10px;
    background-color: #000;

}
.navigation {
    display: inline-block;
    width: 55%;
    text-align: right;
}
.navigation ul {
    text-align: right;
    list-style: none;
    display: inline-block;
    margin: -5px 0 0 0;
    background-color: #000;
    padding: 5px 0px 5px 0px;
}
.navigation ul li {
    display: inline-block;
    text-align: right;
    padding: 0;
}
.navigation ul li a {
    padding: 5px 10px 5px 10px;
    /* -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease; */
}
.navigation ul li a:hover, .logo a:hover {
    color: #000;
    background-color: #fff;
}
.lang {
    color: rgba(255,255,255,0.5);
}
.navigation ul li a.lang {
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    /* -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease; */
}
.navigation ul li a.lang:hover {
    background-color: #000;
    color: rgba(255,255,255,1);
}

/* Kreuznavigation
--------------------
--------------------*/

.crosscontainer {
    position: fixed;
    display: block;
    z-index: 2;
    top: 6%;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    width: 580px;
    height: 580px;
    overflow: hidden;
}

.row {
    display: block;
    text-align: center;
    height: 170px;
    width: 550px;
    overflow: hidden;
}
.centerrow {
    margin-top: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}

.crosscontainer a {
    width: 170px;
    height: 170px;
    /* korrigiert Breite der Kästen */
    margin: 0px -5px 0px -5px;
    padding: 0;
    display: inline-block;
    cursor: pointer;
    /*-webkit-transition: all 0.2s ease;
            transition: all 0.2s ease; */
    text-align: center;
    border: 4px solid #fff;
    color: #000;
    text-decoration: none;
    overflow: hidden;
}

.crosscontainer a.center {
    margin-right: 20px;
    margin-left: 20px;
}

.crosscontainer a:hover {
    background-color: rgba(255,255,255,1);
    color: #000;
    text-decoration: none;
}

.rotatehelper {
    margin: 0 auto;
    position: relative;
    display: inline-block;
    height: 170px;
    width: 170px;
    top: -5px;
    left: -5px;
    -webkit-transform: rotate(315deg);
        -ms-transform: rotate(315deg);
            transform: rotate(315deg);
    overflow: hidden;
}
.crosscontainer a h1{
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.2em;
    font-weight: 700;
    position: absolute;
    width: 100%;
    top: 47.5%;
	-webkit-transform: translateY(-75%);
	    -ms-transform: translateY(-75%);
	        transform: translateY(-75%);
  /*   -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease; */
    text-align: center;
    opacity: 0;
}
.crosscontainer a:hover h1{
    opacity: 1;
    top: 47.5%;
}
.crosscontainer a img {
    display: block;
    position: relative;
    width: 100%;
    left: auto;
    top: 0;
    opacity: 1;
    z-index: -200;
    /* -webkit-transition: opacity 0.4s ease;
            transition: opacity 0.4s ease; */

}
.crosscontainer a:hover img {
    opacity: 0;
}

/* Overlay
--------------------
--------------------*/

.invisible {
    opacity: 0;
    display: none;
    visibility: hidden;
    -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
            transform: translateY(-20px);
}
.transition {
    -webkit-transition: all 0.4s ease;
            transition: all 0.4s ease;
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
}
.overlay {
    display: block;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,20,50,0.9);
    /*background-image: url(../bg.png);*/
    position: absolute;
    display: block;
    z-index: 8999;
    top: 0;
    -webkit-transition: all 0.4s ease;
            transition: all 0.4s ease;
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
    color: #fff;
    overflow: hidden;
    background-position: center center;
    background-size: cover;
}
.colorbg {
    background-color: rgba(0,20,50,0.8);
}
.overlay-content-container {
    max-width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.overlay-details {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    background-color: #000;
    margin: 0;
    padding: 60px 0 0 0;
}
.bus {
    background-image: url(../Bus2.jpg);
}
.bus-bildzwei {
    background-image: url(../Bus4.jpg);
}

/*.close {
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    position: absolute;
    bottom: 30px;
    right: 5%;
    margin: 0 auto;
    color: #fff;
    z-index: 9999;
    padding: 10px;
    -webkit-transition: all 0.4s ease;
            transition: all 0.4s ease;
    -webkit-transition-delay: 1.2s;
            transition-delay: 1.2s;
    background-color: #000;*/
}
.close:hover {
    background-color: #fff;
    color: #000;

}
/* Main Content Columns */

.overlay h1{
    margin: 0;
    padding: 0 20px 0 20px;
    font-size: 60px;
    color: #fff;
    background-color: #000;
    display: inline-block;
}
.overlay ul {
    list-style: none;
    margin: 0;
    color: #fff;
    background-color: #000;
    display: block;
    line-height: 2;
    padding: 0;
    font-weight: bold;
}
.overlay ul li {
    padding: 5px 15px 5px 15px;
}
.overlay ul li:nth-child(2),
li:nth-child(4),
li:nth-child(6),
li:nth-child(8),
li:nth-child(10){
    background: #4f4f4f;
    background: -moz-linear-gradient(left, #333 0%, #000000 100%);
    background: -webkit-linear-gradient(left, #333 0%,#000000 100%);
    background: linear-gradient(to right, #333 0%,#000000 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333', endColorstr='#000000',GradientType=0 );
}
.overlay img.fullscreen {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.content {
    position: absolute;
    z-index: 9980;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 10% 0 10% 0;
}
.transparent {
  opacity: 0.1;
  filter: blur(5);
}
.close, .back, .bg-navigation, .bildtooltip {
    display: inline-block;
    color: #fff;
    background-color: #000;
    padding: 10px 15px 10px 15px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin: 20px 20px 0 0;
    cursor: pointer;
    text-align: center;
    /*-webkit-transition: all 0.4s ease;
            transition: all 0.4s ease; */
}
.more:hover, .close:hover, .back:hover, .bg-navigation:hover {
    background-color: #fff;
    color: #000;
}
.bildtooltip {
  cursor: default;
  margin-left: -30px;
  margin-right: -10px;
}
a.more, a.close, a.back, a.bg-navigation {
    text-decoration: none;
}
.alignright {
    text-align: right;
}

.contentrow {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}
.contentrow ul li a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  display: inline-block;
  /* -webkit-transition: all 0.2s ease;
          transition: all 0.2s ease; */
}
.contentrow ul li a:hover {
  color: #fff;
}

/* Impressum / Kontakt Styling (inklusive Link auf Index.html)
--------------------
--------------------*/
p.small {
  font-size: 0.75rem;
}
.impressum i{
  margin-right: 7.5px;
}
a.impressumlink {
  font-size: 14px;
  color: rgba(255,255,255,0.2);
  text-decoration: none;
  position: fixed;
  bottom: 15px;
  left: 6%;
  /* transition: all 0.2s ease; */
  z-index: 9999;
}
a.impressumlink:hover {
  color: #fff;
}

.impressum a.maillink {
  display: inline-block;
  color: #000;
  background-color: #fff;
  padding: 10px;
  font-weight: 700;
  margin: 20px 20px 0 0;
  cursor: pointer;
  text-align: center;
}
.impressum a.maillink:hover {
  color: rgba(0,0,0,0.8);
}

.impressum {
  width: 100%;
  max-width: 700px;
  padding: 2%;
  margin: 0 auto;
}
.impressum p {
  line-height: 150%;
}
.impressum table,tr,td {
  border: 0;
}

.impressum a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  font-style: normal;
  /* transition: all 0.2s ease; */
}
.impressum a:hover {
  color: #fff;
  display: inline-block;
}
.impressum h1 {
  border-bottom: 3px solid #fff;
  padding-bottom: 20px;
}
.impressum h1 a {
  float: right;
}



/* Performance Steigerung
--------------------
--------------------*/

.bg-preloader{
    background: url(../bilder/bus/bus1.jpg) no-repeat;
    background: url(../bilder/bus/bus2.jpg) no-repeat;
    background: url(../bilder/bus/bus3.jpg) no-repeat;
    background: url(../bilder/bus/bus4.jpg) no-repeat;
    background: url(../bilder/bus/bus5.jpg) no-repeat;
    background: url(../bilder/bus/bus6.jpg) no-repeat;
    background: url(../bilder/bus/bus7.jpg) no-repeat;
    background: url(../bilder/bus/bus8.jpg) no-repeat;
    background: url(../bilder/mischpult/pult1.jpg) no-repeat;
    background: url(../bilder/mischpult/pult2.jpg) no-repeat;
    background: url(../bilder/mischpult/pult3.jpg) no-repeat;
    background: url(../bilder/mischpult/pult4.jpg) no-repeat;
    background: url(../bilder/mischpult/pult5.jpg) no-repeat;
    width:0;
    height:0;
    display:none;
    position: absolute;
    visibility: hidden;
}

/* Media Queries fuer mobile Endgerate */
/* @media (max-width: 400px)  {
    @import url(normalize.css);
    * {
        transition: all 0.2s ease;
    }
    .headercontainer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    position: absolute;
    top: 0;
    padding: 20px 5% 20px 5%;
    z-index: 9999;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 0.2em;
    font-weight: 700;
    background-color: #000;
}
    .sitewrapper {
    width: 100%;
    height: 100vh;
    display: block;
    overflow: scroll;
}
    .rotatehelper {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
        padding: 0;
        margin: 0;
        width: 100%;
        display: block;
        position: relative;
    }
    .crosscontainer {
    position: absolute;
    display: block;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    top: 10%;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    width: 100%;
    height: 90%;
    overflow: hidden;
    background-color: #f0f;
    }
    .crosscontainer a {
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease;
    text-align: center;
    color: #000;
    text-decoration: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
    display: block;
    border: 0;
}
    .crosscontainer a.center {
    margin-right: 0px;
    margin-left: 0px;
}
    .row, .centerrow{
    text-align: center;
    height: auto;
    width: 100%;
    overflow: hidden;
    background-color: #f00;
    margin: 0;
    padding: 0;
}
    .crosscontainer a h1{
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 0.2em;
    font-weight: 700;
    width: 100%;
	-webkit-transform: translateY(0%);
	    -ms-transform: translateY(0%);
	        transform: translateY(0%);
    -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease;
    text-align: center;
    opacity: 1;
    color: #fff;
}
    .crosscontainer a img {
    display: none;

}
} */
