@charset "UTF-8";
/* CSS Document */

html,
html * {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: din-2014, sans-serif;
font-style: normal;
font-weight: 300;
}


/*Header*/

.style-logo {
	float: left;
	margin-top: 20px;
	margin-left: 25px;
	height: 65px;
	}

.style-header {
	background-color: #ffffff;
	height: 100px;
    width: 100%;
    position: fixed;
	top: 0px;
	z-index: 10;
	}

.style-nav {
	float: right;
	font-size: 20px;
	padding-top: 63px;
	padding-right: 25px;
	}

.style-nav ul {
	list-style-type: none;
	}

.style-nav ul li {
	display: inline-block;
	}

.style-nav ul li a {
	text-decoration: none;
	color: #7f7f7f;
	text-align: center;
	padding-left: 12px;
	}

.active-link {
	font-weight: 600;
	text-decoration: none;
	color: #7f7f7f;
	text-align: center;
	padding-left: 12px;
	}


/*Body*/

#textbereich {
	margin-top: 180px;
	margin-left: 155px;
	margin-right: 155px;
	margin-bottom: 100px;
	}

#headline {
	margin-top: 180px;
	margin-left: 155px;
	margin-right: 155px;
	}

.style-intern-link {
	text-decoration: none;
	color: #909090;
	}

.style-extern-link {
	text-decoration: none;
	color: #000000;
	}

.style-extern-link-bold {
	text-decoration: none;
	color: #000000;
	font-weight: 500;
	}


/*Galerie*/

.container-galerie {
    width: 100%;
    min-height: 100vh;
    display: flex;
    algin-items: center;
    justify-content: center;
    padding: 50px 8%;
    margin-bottom: 50px;
	}

.galerie {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));
    grid-gap: 0px;
	}

.galerie img {
    width: 100%;
	}


/*Video-Galerie*/

.container {
	position: relative;
	width: auto;
    min-height: auto;
	margin-top: 70px;
	margin-left: 155px;
	margin-right: 155px;
	margin-bottom: 100px;
	}

.container .video-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
	}

.container .video-container .video {
	height: 540px;
	width: 960px;
	overflow: hidden;
	box-shadow: 0px 5px 5px #909090;
	cursor: pointer;
	}

.container .video-container .video video {
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: .2s linear;
	}

.container .popup-video {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background-color: #eaeaea;
	height: 100%;
	width: 100%;
	display: none;
	}

 .container .popup-video video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	object-fit: cover;
	}

.container .popup-video span {
	position: absolute;
	top: 20px;
	right: 40px;
	font-size: 75px;
	color: #7f7f7f;
	font-weight: 300;
	z-index: 100;
	cursor: pointer;
	}

.container .video-container .video-beschreibung {
	margin-bottom: 75px;
	height: auto;
	width: 960px;
	}


/*Footer*/

.style-footer {
	background-color: #ffffff;
	height: 50px;
	width: 100%;
    position: fixed;
	bottom: 0px;
	z-index: 10;
	}

.style-footer-nav {
	float: right;
	font-size: 20px;
	padding-top: 10px;
	padding-right: 25px;
	}

.style-footer-nav ul {
	list-style-type: none;
	}

.style-footer-nav ul li {
	display: inline-block;
	}

.style-footer-nav ul li a {
	text-decoration: none;
	color: #7f7f7f;
	text-align: center;
	padding-left: 12px;
	}

.active-link {
	font-weight: 600;
	text-decoration: none;
	color: #7f7f7f;
	text-align: center;
	padding-left: 12px;
	}



/*Mobile and Tablet View*/

@media  (orientation: portrait){

/*Header*/

.style-logo {
	float: none;
	display: block;
	margin-top: 25px;
	margin-left: auto;
	margin-right: auto;
	height: 110px;
	}

.style-header {
	background-color: #ffffff;
	height: 220px;
    width: 100%;
    position: fixed;
	top: 0px;
	z-index: 10;
	}

.style-nav {
	float: none;
	display: block;
	padding-top: 0px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	}	
	
.style-nav ul {
	padding: 25px;
	font-size: 32px;
	}


/*Body*/

#textbereich {
	margin-top: 280px;
	margin-left: 125px;
	margin-right: 125px;
	margin-bottom: 80px;
	min-height: 1200px;
	}

#headline {
	margin-top: 280px;
	margin-left: 125px;
	margin-right: 125px;
	}


/*Footer*/

.style-footer {
	background-color: #ffffff;
	height: 100px;
	width: 100%;
	position: relative;
	bottom: 0px;
	z-index: 0;
	}

.style-footer-nav {
	float: none;
	display: block;
	font-size: 32px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	}
	
}