@charset "UTF-8";

/********** Aufbau [ö] **********/

html,
body {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	/*
	width: 100%;
	height: 100%;
	scroll-behavior: smooth;
	*/
}

* {
	font-family: Montserrat_web, sans-serif;
	-moz-osx-font-smoothing:grayscale;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
*:focus {
	outline: none;
}

*.nobr {
	white-space: nowrap;
}

hr.hidden {
	display: none;
}



/********** Inhalt Rahmen **********/

#inhalt_rahmen {
	position: relative;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 100px 0px;
}
#inhalt {
	position: relative;
	z-index: 2;
	margin: calc(-1.5vw) 0px 0px 0px;
}
@media screen and (max-width: 750px) {
	#inhalt {
		padding: 25px 0px 0px 0px;
	}
}
@media screen and (min-width: 751px) and (max-width: 1024px) {
	#inhalt {
		padding: 10px 0px 0px 0px;
	}
}
@media screen and (min-width: 1025px) {
	#inhalt {
		padding: 0px 0px 0px 0px;
	}
}



/********** Typo **********/

#titel,
#info_1,
#info_2,
#kontakt {
	position: relative;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	text-align: center;
	/*
	background-color: #fca;
	*/
}

#titel {
	left: 50%;
	width: 360px;
	margin-left: -180px;
	font-weight: 300;
	font-size: 44px;
	line-height: 50px;
	text-transform: uppercase;
	letter-spacing: 0.15em;
}

#info_1,
#info_2 {
	padding: 0px 0px 0px 0px;
	left: 50%;
	width: 360px;
	margin-left: -180px;
	font-weight: 500;
	font-size: 32px;
	line-height: 40px;
}
#info_1 {
	margin-top: 80px;
}
#info_2 {
	margin-top: 45px;
}

#kontakt {
	margin: 80px 0px 0px 0px;
}
#kontakt p {
	position: relative;
	font-size: 22px;
	line-height: 24px;
	font-weight: 400;
	margin: 0px 0px 0px 0px;
}
#kontakt p + p {
	margin: 8px 0px 0px 0px;
}
#kontakt a {
	position: relative;
	color: inherit;
	text-decoration: none;
}
#kontakt a:hover {
	/*
	text-decoration: underline;
	*/
}
#kontakt a:hover::after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	bottom: 1px;
}
#kontakt a span {
	margin: 0px 2px 0px 2px;
}

#horizont {
	position: relative;
	z-index: 1;
	width: 100%;
	height: calc(85px + 6vw);
	/*
	background-color: rgb(105, 116, 177);
	*/
}
#horizont::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 2;
	left: 0px;
	bottom: -1px;
	width: 100%;
	height: 100vh;
	-webkit-mask-image: url("../bilder/_aufbau/horizont.svg");
	mask-image: url("../bilder/_aufbau/horizont.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: left bottom;
	mask-position: left bottom;
}
#horizont::after {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	left: 0px;
	bottom: 0px;
	width: 100%;
	height: 100vh;
	-webkit-mask-image: url("../bilder/_aufbau/horizont_gradient.svg");
	mask-image: url("../bilder/_aufbau/horizont_gradient.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: left bottom;
	mask-position: left bottom;
	opacity: 0.4;
}



/********** Typo mobil **********/

@media screen and (max-width: 750px) {
	#titel {
		font-size: 42px;
		line-height: 48px;
	}
	#info_1,
	#info_2 {
		font-size: 28px;
		line-height: 38px;
		width: 320px;
		margin-left: -160px;
	}
	#kontakt p {
		font-size: 20px;
		line-height: 22px;
	}
}

