@font-face {
  font-family: ITC Conduit;
  src: url('../assets/fonts/itc_conduit_medium/a5a0edc0-b571-4275-9c51-3dfeba35b75a.eot');
  src: url('../assets/fonts/itc_conduit_medium/ccdadc2e-26c9-48a5-9c52-9c3cc58e9930.ttf') format('truetype');
  src: url('../assets/fonts/itc_conduit_medium/e93ee223-5d52-4bdf-a113-c6c4c8936824.woff') format('woff');
  src: url('../assets/fonts/itc_conduit_medium/a81af59b-a5d9-4e96-a7cc-919403c0d86c.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
/* @font-face {
  font-family: Netto Web;
  src: url('../assets/fonts/netto_web_regular/NettoWeb.eot');
  src: url('../assets/fonts/netto_web_regular/NettoWeb.woff') format('woff');
} */
@font-face {
  font-family: ITC Conduit;
  src: url('../assets/fonts/itc_conduit_light/45fa0132-0858-4e18-9594-5a070788a059.eot');
  src: url('../assets/fonts/itc_conduit_light/13b88c12-e5f0-46c4-932a-57fe881b7c46.ttf') format('truetype');
  src: url('../assets/fonts/itc_conduit_light/e924c59f-bc21-471f-ad1b-cefd0c1a6315.woff') format('woff');
  src: url('../assets/fonts/itc_conduit_light/0f250d3b-13fd-469c-a4ec-9f9984165dea.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}



body {
	font-family: 'ITC Conduit', Helvetica, Arial, sans-serif !important;
	font-weight: normal;
	font-style: normal;
	margin: 0;
	padding: 0;
	font-size: 16px;
}
.wrapper {
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0,0,0,0);
	/*background-image: url('http://placekitten.com/3000/2000');*/
	/*background-image: url('../assets/backgrounds/potw1636a_comp70.jpg');
	background-repeat: no-repeat;
	background-size: cover;*/
	transition: .25s ease-in-out;
}
.wrapper:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0,0,0,1);
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
	transition: .3s;
}
.wrapper.bg1:before {
	background-image: url('../assets/backgrounds/1.jpg');
	transition: .3s;
}
.wrapper.bg2:before {
	background-image: url('../assets/backgrounds/2.jpg');
	transition: .3s;
}
.wrapper.bg3:before {
	background-image: url('../assets/backgrounds/3.jpg');
	transition: .3s;
}
.wrapper.bg4:before {
	background-image: url('../assets/backgrounds/4.jpg');
	transition: .3s;
}
.wrapper.bg5:before {
	background-image: url('../assets/backgrounds/5.jpg');
	transition: .3s;
}

/* **************************
* 	Logo
* **************************/
.logo {
	box-sizing: border-box;
	color: #fff;
	font-size: 4em;
	width: 500px;
	max-width: 80vw;
	height: auto;
	margin: 0 auto;
	margin-top: 25vh;
}
.logo img {
	width: 100%;
}
@media screen and (max-width: 374px) {
	.logo {
		margin-top: 15vh;
	}
}

/* **************************
* 	Icons
* **************************/
.icons-wrapper {
	box-sizing: border-box;
	position: relative;
	margin: 10vh auto 0 auto;
	/*border: 1px solid yellow;*/
	width: 375px;
}
@media screen and (max-width: 375px) {
	.icons-wrapper {
		width: 320px;
	}
}
.icons-wrapper ul {
	box-sizing: border-box;
	display: block;
	padding: 0 50px;
	/*border: 1px solid blue;*/
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
}
.icons-wrapper ul li {
	box-sizing: border-box;
	display: inline-block;
	list-style: none;
	font-size: 2em;
	text-align: center;
	width: 50px;
	height: 50px;
}
.icons-wrapper ul li img {
	width: 100%;
}

.content-wrapper {
	/*border: 1px solid red;*/
	width: 100%;
	color: #fff;
}
.content-wrapper p {
	display: none;
	text-align: center;
	font-size: 2em;
}
.content-wrapper p a {
	text-decoration: none;
	color: currentColor;
}

/* **************************
* 	Impressum
* **************************/
.imprint-link-wrapper {
	position: absolute; 
	bottom: 5vh;
	width: 100%;
	text-align: center;
	font-weight: 300;
	color: #fff;
}
.imprint-link-wrapper a {
	position: relative;
	text-align: center;
	text-decoration: none;
	color: #fff;
}
.popup-wrapper {
	box-sizing: border-box;
	display: none;
	position: absolute;
	height: auto;
	max-height: 60vh;
	top: 20vh;
	left: 30vw;
	right: 30vw;
	/* bottom: 20vh; */
	padding: 20px;
	background-color: #fff;
	overflow: scroll;
	border-radius: 0;
	opacity:0;
	transition: .4s ease;
}
.popup-wrapper p {
	color: #575757;
	font-weight: 300;
}
.popup-wrapper ul {
	color: #575757;
	font-weight: 300;
}
.popup-wrapper h1,
.popup-wrapper h2,
.popup-wrapper h3,
.popup-wrapper h4,
.popup-wrapper h5,
.popup-wrapper h6 {
	color: #575757;
	font-weight: 400;
}
.popup-wrapper h2 {
	font-size: 1.2rem;
}
.popup-wrapper h3 {
	font-size: 1.1rem;
	margin-bottom: .2rem;
}
.popup-wrapper h3 + p {
	margin-top: 0;
}

@media screen and (max-width: 1000px ) {
	.popup-wrapper {
		top: 20vh;
		left: 20vw;
		right: 20vw;
		/* bottom: 20vh; */
	}
}
@media screen and (max-width: 767px ) {
	.popup-wrapper {
		top: 10vh;
		left: 10vw;
		right: 10vw;
		max-height: 70vh;
		/* bottom: 10vh; */
	}
}
.popup-wrapper.show {
	opacity: 1;
	transition: .4s ease;
}
.popup-wrapper .modal-close {
	position: absolute;
	text-decoration: none;
	color: #333;
	font-size: 1.8em;
	top: 10px;
	right: 20px;
}
/* **************************
* 	Datenschutz
* **************************/
