@font-face {
    font-family: 'Oswald Light';
    src: url('../fonts/Oswald/Oswald-Light.ttf') format('truetype');
    font-display: swap;
}
@font-face {
    font-family: 'Oswald Regular';
    src: url('../fonts/Oswald/Oswald-Regular.ttf') format('truetype');
    font-display: swap;
}
@font-face {
    font-family: 'OpenSans Light';
    src: url('../fonts/opensans/OpenSans-Light.ttf') format('truetype');
    font-display: swap;
}
@font-face {
    font-family: 'OpenSans Regular';
    src: url('../fonts/opensans/OpenSans-Regular.ttf') format('truetype');
    font-display: swap;
}
@font-face {
    font-family: 'OpenSans Bold';
    src: url('../fonts/opensans/OpenSans-Bold.ttf') format('truetype');
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Bold.ttf') format('truetype');
    font-display: swap;
}

body {
	font-family: 'OpenSans Light',sans-serif;
	font-display: swap;
	font-size: 1rem;
	line-height: 1.6; 
	-webkit-font-smoothing: antialiased;
	color: #111111;
	overflow-x: hidden;
	font-weight: 600;
}

*, ::after, ::before {
    box-sizing: border-box;
}

b, strong {font-family: 'OpenSans Bold',sans-serif;}

h1 {font-family: 'Oswald Regular',sans-serif; padding-bottom: 3rem; font-size:2.5rem; line-height: 1.2; color: #111111;}
h2 {font-family: 'Oswald Regular',sans-serif; padding-bottom: 1rem; font-size: 2.5rem; line-height: 1.2;; color: #111111;}
h3 {font-family: 'Oswald Regular',sans-serif; font-size: 1.2rem;font-weight: normal;color: #111111; padding-bottom: 0.5rem; margin-bottom: 0;}
h4 {font-family: 'OpenSans Regular',sans-serif;font-size: 1.2rem;font-weight: normal;color: #111111; padding-bottom: 0.5rem; margin-bottom: 0;}

a {
    color: #d21b13;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}
a:hover {
    color: #bd1811;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

p + h2 {padding-top: 1rem;}

.frame-space-before-extra-small {padding-top: 1rem; margin-top: 0;}
.frame-space-before-small {padding-top: 2rem;margin-top: 0;}
.frame-space-before-medium  {padding-top: 3rem;margin-top: 0;}
.frame-space-before-large {padding-top: 4rem;margin-top: 0;}
.frame-space-before-extra-large {padding-top: 5rem;margin-top: 0;}
.frame-space-after-extra-small {padding-bottom: 1rem;margin: 0;}
.frame-space-after-small {padding-bottom: 2rem;margin-bottom: 0;}
.frame-space-after-medium  {padding-bottom: 3rem;margin-bottom: 0;}
.frame-space-after-large {padding-bottom: 4rem;margin-bottom: 0;}
.frame-space-after-extra-large {padding-bottom: 5rem;margin-bottom: 0;}

.btn {
    display: inline-block;
    padding: 0.5rem 2rem 0.5rem 2rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border:none;
    border-radius: 0;
    transition: all 0.2s ease-in-out;
    line-height: inherit;
    font-size: 1rem;
    letter-spacing: 1px;
    -ms-hyphens: auto;-webkit-hyphens: auto;hyphens: auto;
    background: #d21b13;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Oswald Regular',sans-serif;
}
.btn:hover {background: #bd1811; color: #fff;}

#header {
	background: transparent;
	padding: 2rem 0 1rem 0;
	color: #fff;
	position: fixed;
    width: 100%;
    top: 0;
    z-index: 2;
    font-size: 1.125rem;
    font-family: 'OpenSans Bold',sans-serif;
    transition: all 0.3s ease-in-out;
}
.hamburg { 
   display: block;
   background: transparent; 
   width: 40px; 
   height: 50px; 
   position: relative; 
   margin-left: auto; margin-right: auto;
   border-radius: 4px; 
   transition: border-radius .5s;
   float: left;
   z-index: 2;
}

.line { 
   position: absolute; 
   left:0px;
   height: 2px; width: 40px; 
   background: #fff; 
   border-radius: 2px;
   display: block; 
   transition: 0.5s; 
   transform-origin: center; 
}
#header.holdontop .line {background: #111; }
.scroll #header.holdontop .hamburg.checked .line {background: #fff; }
.scroll #header.holdontop .mainnav .mobilenav .nav-item a {color: #fff;}

.line:nth-child(1) { top: 12px; }
.line:nth-child(2) { top: 24px; }
.line:nth-child(3) { top: 36px; }

.hamburg.checked .line:nth-child(1){
   transform: translateY(12px) rotate(-45deg);
}

.hamburg.checked .line:nth-child(2){
   opacity:0;
}

.hamburg.checked .line:nth-child(3){
   transform: translateY(-12px) rotate(45deg);
}

a {transition: all 0.2s ease-in-out;}
a:hover {transition: all 0.2s ease-in-out;}

.custom-color-1 {background: #fff;}
.custom-color-2 {background: #f2f2f2;}

.align-center {text-align: center;}

.mainnav .nav-item {margin: 0 1rem;text-transform: uppercase;}
.mainnav .nav-item a {color: #fff; text-decoration: none;}
.mainnav .nav-item a.active, .mainnav .nav-item a:hover { color: #e6e6e6;}
.mainnav ul.nav.nav-pills {justify-content: center;}

#header.holdontop {
	background: #fff;
	transition: all 0.3s ease-in-out;
	-webkit-box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 10%);
}
#header.holdontop .mainnav .nav-item a {color: #111111;}
#header.holdontop .mainnav .nav-item a.active, #header.holdontop .mainnav .nav-item a:hover { color: #d21b13;}

#maintrailer {
	background-image: linear-gradient(0deg, rgba(0,0,0,0.15), rgba(0,0,0,0.15)), url(/img/trailerbild_neu.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	min-height: 700px;
	display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    flex-direction: column;
    position: relative;
    padding-bottom: 100px;
}
.trailertext {text-align: center;}
.trailertext p {
	margin: 0;
	font-size: 3.125rem;
	line-height: 1.2;
	text-transform: uppercase;
    text-shadow: 0px 0px 19px rgb(0 0 0);
    letter-spacing: 2px;
    font-family: 'Montserrat',sans-serif;
}
.logo {
    width: 100%;
    position: absolute;
    bottom: 0;
    background: transparent;
    height: 152px;
    display: flex;
    justify-content: center;
}
.logo a {display: contents;}
.logo img {
	width: 500px;
	max-width: 100%;
    position: absolute;
    bottom: 0;
    height: auto;
}

.box {padding-bottom: 1.5rem; height: 100%;}
.box_inner {background: #fff; padding: 3rem; height: 100%;}
.box img {height: 65px; width: auto; margin-right: 2rem;}
.box h2 {margin: 0; padding: 0; font-size: 1.875rem;}
.box p {margin: 0;}

.custom_font {font-size: 0.875rem;}
.custom_font_2 {font-size: 1.6rem; padding-bottom: 0rem;}
.custom-img {max-height: 600px;object-fit: cover; width: 100%;}

.gallery { gap: 1.5rem 0;}
.gallery .col {height: 280px}
img.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.button-link {color: #d21b13; text-decoration: none;}
.u-svg-content path {fill: #d21b13;}

#footer {color: #ffffff;background-color: #d21b13;font-size: 0.875rem;}
#footer a {color: #fff; text-decoration: none;}
#footer ul.nav.nav-pills {justify-content: center;gap: 2rem;}

@media (max-width: 1398px) {
	.gallery .col {height: 260px;}
}
@media (max-width: 1199px) {
	#menu .nav {    
		display: block !important;
	    padding: 5rem 2rem 2rem 2rem;
	    background: #000;
	    transition: all 0.3s ease-in-out;
	    color: #fff;
	    width: 300px;
	    height: 100vh;
	}
		
	#menu .nav a {color: #fff; display: inline-block; padding: 0.5rem 0;}
	#menu .nav a:hover, #menu .nav a.active {color: #d21b13 !important;}
	#menu{
        position: fixed;
	    left: -100%;
	    right: 0;
	    top: 0;
	    width: 100%;
	    height: 100vh;
	    background-color: rgb(0 0 0 / 50%);
	    transform: translateX(0%);
	    transition: transform 0.3s ease-in-out;
	
		}
	#menu.open{transform: translateX(100%);}
	#header .nav-item>a:after {
	    height: 2px;
	    background: #fff;
	    bottom: 5px;
	}
	.hamburg {cursor: pointer;}
	#header {padding: 1rem 0;}
	.gallery .col {height: 215px;}

 }
 
 @media (max-width: 991px) {
 	#header.holdontop .mainnav .nav-item a {color: #fff;}
 	.gallery .col {height: 335px;}
 }
 
 @media (max-width: 767px) {
	 .logo {height: 55px;}
	 .logo img {
	    width: 260px;
	    max-width: 100%;
	}
	#maintrailer { min-height: 350px; padding-bottom: 40px;}
	.trailertext p {
	    font-size: 2.125rem;
	    line-height: 1.2;
	}
	.gallery .col {height: 230px;}
	.box h2 {font-size: 1.675rem;}
	.box img {height: 50px;margin-right: 2rem;}
 }
  @media (max-width: 575px) {
	  .gallery .col {height: 170px;}
  }