* {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
body {
	margin: 0 auto;
	padding: 0;
}
/*local fonts*/
@font-face { font-family: 'Hensa';
    src: url('../fonts/WOFF2/Hensa.woff2')  format('woff2'); }

@font-face { font-family: 'Lato-Regular';
    src: url('../fonts/WOFF2/Lato-Regular.woff2')  format('woff2'); }

@font-face { font-family: 'Lato-Heavy';
    src: url('../fonts/WOFF2/Lato-Heavy.woff2')  format('woff2'); }

@font-face { font-family: 'Lato-Bold';
    src: url('../fonts/WOFF2/Lato-Bold.woff2')  format('woff2'); }

@font-face { font-family: 'Lato-Italic';
    src: url('../fonts/WOFF2/Lato-Italic.woff2')  format('woff2'); }

@font-face { font-family: 'Oswald-Regular';
    src: url('../fonts/WOFF2/Oswald-Regular.woff2')  format('woff2'); }

@font-face { font-family: 'Oswald-Demi-BoldItalic';
    src: url('../fonts/WOFF2/Oswald-Demi-BoldItalic.woff2')  format('woff2'); }

@font-face { font-family: 'Oswald-DemiBold';
    src: url('../fonts/WOFF2/Oswald-DemiBold.woff2')  format('woff2'); }

@font-face { font-family: 'Oswald-Medium';
    src: url('../fonts/WOFF2/Oswald-Medium.woff2')  format('woff2'); }

/*navigation*/
#menu{
    float: right;
}
#menu li{
    text-align: center;
    font-family: 'Oswald-Medium';
    font-size: 20px;
    color: #000;
    text-transform: uppercase;
    padding: 10px 0;
}
.menu li a{
    text-decoration:none;
    color: #000;
}
#menu li a:active, li a:hover{
    text-decoration:underline;
    text-underline-position: under;
    -webkit-text-decoration-color: #770F0F;
            text-decoration-color: #770F0F;
    color: #000;
} 
#menuToggle{
    display: block;
    position: relative;
    top: 118px;
    z-index:1;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    right: 20px;
}
#menuToggle input{
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    right: -5px;
    opacity: 0; /* hide this */
    z-index: 2; /* and place it over the hamburger */
}
#menuToggle span:first-child{
    -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
}
#menuToggle span:nth-last-child(2){
    -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
}
#menuToggle input:checked ~ span{
    opacity: 1;
    -webkit-transform: rotate(45deg) translate(-2px, -1px);
        -ms-transform: rotate(45deg) translate(-2px, -1px);
            transform: rotate(45deg) translate(-2px, -1px);
    background: #232323;
 }
#menuToggle input:checked ~ span:nth-last-child(3){
    opacity: 0;
    -webkit-transform: rotate(0deg) scale(0.2, 0.2);
        -ms-transform: rotate(0deg) scale(0.2, 0.2);
            transform: rotate(0deg) scale(0.2, 0.2);
 }
 #menuToggle input:checked ~ span:nth-last-child(2){
    -webkit-transform: rotate(-45deg) translate(0, -1px);
        -ms-transform: rotate(-45deg) translate(0, -1px);
            transform: rotate(-45deg) translate(0, -1px);
 }
 #menuToggle input:checked ~ ul{
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
}
.burger01, .burger02, .burger03{
    position: absolute;
    right: 0;
}
/*pictures*/
img.logo{
    width: 120px;
    display: block;
    position: relative;
    z-index: 1;
}
.headerteaser{
    height: 500px;
    overflow: hidden;
    position: relative;
}
.calendar{
    margin-right: 20px;
}
.calendar img{
    height: 200px;
}
.introbild{
    overflow: hidden;
    height: 590px;
}
.introbild img, .imgbox img{
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}
/*boxes*/
.teaserbox{
    background-color: #770F0F;
    position: relative;
}
.teaserbox .textbox {
    width:100%;
}
.teaserbox .imgbox {
    position:absolute;
    right:0;
    top:0;
    width:calc(50% - 20px);
    height:100%;
    overflow:hidden;
}
.teaserbox .teaserbgpicture {
    min-width:100%;
    min-height:100%;
}
.box_red{
    background-color: #770F0F;
    width: 100%;
}
.box{
    position: relative;
    background-color: #770F0F;
    width: 100%;
}
.quotebox {
    color: #fff;
    position: relative;
    padding: 45px 125px;
}
.quotebox--quotes:before,
.quotebox--quotes:after {
    position: absolute;
    font-family: 'Oswald-Demi-BoldItalic';
    font-size: 150px;
    font-weight: bold;
    line-height: 1;
}
.quote{
    font-family: 'Oswald-Demi-BoldItalic';
    font-size: 25px;
    color: #fff;
    line-height: 1.5;
    text-align: center;
}
.quotebox--quotes:before {
    bottom: -72px;
    left: 20px;
    content: '\201d';
}
.quotebox--quotes:after {
    top: 10px;
    right: 20px;
    content: '\201c';
}
/*video*/
    video{
        width: 100%;
    }
/*text*/
p{
    font-family: 'Lato-Regular';
    font-size: 16px;
    line-height: 1.7;
}
.important_informations{
    text-align: center;
    font-size: 12px;
}
h2{
    font-family: 'Oswald-DemiBold';
    text-transform: uppercase;
    font-size: 35px;
}
h3{
    font-family: 'Oswald-DemiBold';
    text-transform: uppercase;
    font-size: 30px;
    margin: 10px 0 10px 0;
    -webkit-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto;
}
.premiere_text h3{
    margin-top: 10px;
}
.premiere_text{
    padding-top: 5px;
}
.number{
    font-family: 'Oswald-Medium';
    font-size: 77px;
}
.date{
    text-align: center;
}
.day_month{
    font-family: 'Oswald-Regular';
    font-size: 17px;
    text-transform: uppercase;
}
.playtime{
    font-family: 'Oswald-Regular';
    font-size: 20px;
    line-height: 1.5;
    text-transform: uppercase;
}
.subheadline{
    font-family: 'Lato-Regular';
    font-size: 20px;
}
.header_headline{
    font-family: 'Hensa';
    color: #fff;
    font-size:150px;     
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    vertical-align: middle;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
a span {
    text-decoration: underline;
    color: #770F0F;
    font-family: 'Lato-Bold';
    text-underline-position: under;
    -webkit-text-decoration-color: #770F0F;
            text-decoration-color: #770F0F;
}
p span.heavy {
    font-family: 'Lato-Heavy';
}
blockquote p{
font-family: 'Lato-Italic';    
}
.quote_headline{
    font-family: 'Oswald-Demi-BoldItalic';
}
/*button red bg */
#button, [type="button"], [type="reset"], [type="submit"] {
    padding: 15px;
    background-color: #770F0F;
    border: 1px #fff solid;
    font-family: 'Oswald-Medium';
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 40px;
    font-size: 25px;
    margin-top:20px;
}
#button:hover {
    background-color: #fff;
    border: 1px #fff solid;
    color:#770F0F;
}
/*button white bg */
.button, [type="button"], [type="reset"], [type="submit"] {
    padding: 15px;
    background-color: #fff;
    border: 1px #770F0F solid;
    font-family: 'Oswald-Medium';
    text-transform: uppercase;
    color: #770F0F;
    margin: 20px 0;
    font-size: 25px;
}
.button:hover {
    background-color: #770F0F;
    border: 1px #770F0F solid;
    color:#fff;
}
.months{
    display: inline-block;
  }
/* horizontal line */
hr{
    border: solid #770F0F 1.5px;
    max-width: 250px;
    margin-right: auto;
    margin-left: 0;
}
.hr_red{
    border: solid #770F0F 1px;
}
.hr_white{
    border: solid #fff 1px;
}
/*color*/
.red{
    color: #770F0F;
}
.white{
    color: #fff;
}
.black{
    color: #000;
}
/* text align*/
p.text_align_right, h3.text_align_right{
    text-align: right;
}
/* margin*/
.margin{
    margin: 10px 0 10px 0;
}
.margin_top_0{
    margin-top: 0;
}
.margin_top_x7{
    margin-top: 70px;
}
.margin_top_x2{
    margin-top: 20px;
}
.margin_bottom_x5{
    margin-bottom: 50px;
}
/*float*/
.float_left{
    float: left;
}
.float_right{
    float: right;
}
/*centering items vertical*/
.centering_vertical, .swiper-slide, .block-to-flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
/* Slider */
.bild{
    height: 350px;
    overflow: hidden;
}
.bild img{
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}
.swiper-container {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}
[class*="slide-content-"] {
    width: 100%;
}
.slide-content-float:after {
    content: "";
    display: block;
    clear: left;
}
/*footer*/
footer{
    width: 100%;
    background-color: #EFEFEF;
}
.footer {
    float: right;
}
.footer ul{
    padding-left: 0;
    display: inline-block;
}
.footer li{
    display: inline-block; 
    list-style-type: none;
    font-family: 'Lato-Regular';
    font-size: 16px;
    color: #000;
    padding: 0 5px 0 10px;
}
.footer li a{
    text-decoration:none;
    color: #000;
    padding: 0 5px 0 20px;
}
.footer li a:active, li a:hover{
    text-decoration:underline;
    text-underline-position: under;
    -webkit-text-decoration-color: #770F0F;
            text-decoration-color: #770F0F;
    color: #000;
}
img.logo_footer{
    width: 70px;
    margin-left: 30px;
}
/* responsive */
@media (max-width:345px){
    .calendar{
        margin-bottom: 10px;
    }
}
@media (max-width:600px) { 
    .header_headline{
        font-size: 75px;
    }
    .quotebox {
        padding: 34px 90px;
    }
    .quote {
        font-size: 20px;
    }
    .quotebox--quotes:before, 
    .quotebox--quotes:after {
        font-size: 120px;
    }
    .quotebox--quotes:before {
        bottom: -60px;
    }
}
@media (max-width:660px){
    .footer ul li {
        text-align: center;
        display: block;
        line-height: 1.5;
    }
    img.logo_footer{
        margin-left: 10px;
    }
}
@media (min-width:661px) { 
    .footer ul li a::before {
        width: 1px;
        height: 30px;
        background-color:#000;
        display: block;
        content: "";
        position: absolute;
        top: 56px;
    }
    .footer li:first-child{
        padding-left: 0; 
    }
}
@media (max-width:900px) { 
    #menuToggle span{
        display: block;
        width: 33px;
        height: 4px;
        float: right; 
        clear: both;
        margin-bottom: 5px;
        position: relative;
        background: #000;
        border-radius: 3px;
        z-index: 1;
        -webkit-transform-origin: 4px 0px;
            -ms-transform-origin: 4px 0px;
                transform-origin: 4px 0px;
        -webkit-transition: background 0.5s,
                    opacity 0.55s ease,
                    -webkit-transform 0.5s;
        transition: background 0.5s,
                    opacity 0.55s ease,
                    -webkit-transform 0.5s;
        -o-transition: transform 0.5s,
                    background 0.5s,
                    opacity 0.55s ease;
        transition: transform 0.5s,
                    background 0.5s,
                    opacity 0.55s ease;
        transition: transform 0.5s,
                    background 0.5s,
                    opacity 0.55s ease,
                    -webkit-transform 0.5s;               
    }
    #menuToggle{
        top: 70px;
    }
    #menu{
        position: absolute;
        margin: -120px 0 0 0;
        padding: 260px 50px 70px 50px;
        left: 0;
        clear: both;
        background: #fff;
        list-style-type: none;
        -webkit-font-smoothing: antialiased;
        /* to stop flickering of text in safari */
        -webkit-transform-origin: 0% 0%;
            -ms-transform-origin: 0% 0%;
                transform-origin: 0% 0%;
        -webkit-transform: translate(0%, -100%);
            -ms-transform: translate(0%, -100%);
                transform: translate(0%, -100%);
        -webkit-transition: -webkit-transform 0.5s;
        transition: -webkit-transform 0.5s;
        -o-transition: transform 0.5s;
        transition: transform 0.5s;
        transition: transform 0.5s, -webkit-transform 0.5s;
        right: -20px;
        clear: both;
        -webkit-box-shadow: 0px -15px 50px #000;
                box-shadow: 0px -15px 50px #000;
    }
    .headerteaser{
        height: 350px;
    }
    .block-to-flex{
        display: block;
    }
    .imgbox{
        display: none;
    }
    .introbild{
        display: none;
    }
    .m-datepanel .centering_vertical {
        display: block; 
    }
    .m-datepanel__date{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .playtime{
        display: inline;
    }
    .footer{
        text-align: right;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        float: none;
    }
}
@media (min-width:901px) { 
    #menu li{
        display: inline-block;
        margin-left: 10px;
        margin-right: 10px;
    }
    .burger01, .burger02, .burger03{
        display: none!important;
    }
    #menu{
        margin: 0;
    }
    .slide-content-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .slide-content-float>div {
    float: left;
    width: 50%;
    }
    .headerteaser{
        overflow: hidden;
    }
    .center{
        position: relative;
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
    }
    .swiper-pagination-fraction, .swiper-pagination{
        left:55px;
    } 
    hr.hr_red, hr.hr_white{
        display: none;
    }
}
@media (min-width:1800px) { 
    .headerteaser img{
        width: 100%;
    }
}


