:root {
	--color_1: #0024f5;
	--color_2: #f1b4b2;
}

@font-face {
  font-family: 'Glober';
  src: url('/_intern/fonts/glober_regular/webfonts/329F83_0_0.eot');
  src: url('/_intern/fonts/glober_regular/webfonts/329F83_0_0.eot?#iefix') format('embedded-opentype'), url('/_intern/fonts/glober_regular/webfonts/329F83_0_0.woff2') format('woff2'), url('/_intern/fonts/glober_regular/webfonts/329F83_0_0.woff') format('woff'), url('/_intern/fonts/glober_regular/webfonts/329F83_0_0.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Glober';
  src: url('/_intern/fonts/glober_semibold_free-webfont.eot');
  src: url('/_intern/fonts/glober_semibold_free-webfont.eot?#iefix') format('embedded-opentype'), url('/_intern/fonts/glober_semibold_free-webfont.woff2') format('woff2'), url('/_intern/fonts/glober_semibold_free-webfont.woff') format('woff'), url('/_intern/fonts/glober_semibold_free-webfont.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Glober';
  src: url('/_intern/fonts/glober_thin_free-webfont.eot');
  src: url('/_intern/fonts/glober_thin_free-webfont.eot?#iefix') format('embedded-opentype'), url('/_intern/fonts/glober_thin_free-webfont.woff2') format('woff2'), url('/_intern/fonts/glober_thin_free-webfont.woff') format('woff'), url('/_intern/fonts/glober_thin_free-webfont.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

body {
	margin: 0px;
	padding: 0px;
	font-family: 'Glober', arial, sans-serif;
	font-size: 16px;
	background-color: var(--color_2);
}

b, strong {
	font-weight: 600;
}

#wrapper {
	
}

.section {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	height: 100svh;
	width: 100%;
	position: relative;
	align-items: center;
	justify-content: center;
}

#intro {
	display: block;
	background-image: url('/rosazahn.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	overflow: hidden;
}

#intro .logo_icon {
	display: block;
	width: 100px;
	position: absolute;
	top: 5vh;
	left: 5vh;
	z-index: 2;
}
#intro address {
	display: block;
	position: absolute;
	top: 5vh;
	right: 5vh;
	width: 800px;
	max-width: 90%;
	font-style: normal;
	text-align: right;
	color: var(--color_1);
	max-width: 65vw;
}
#intro address em {
	font-style: normal;
}
#intro address a {
	text-decoration: none;
}
#intro address a:hover {
	text-decoration: underline;
}

#intro .joblink {
	position: absolute;
	display: block;
	top: 50%;
	left: 53%;
	width: 220px;
}
#intro .joblink img {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	display: block;
	max-width: 100%; 
}

#intro .joblink img.outer {
	animation: rotate 20s linear infinite;
}
@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

#intro .joblink img.inner {
	filter: none;
}
#intro .joblink img.inner:active,
#intro .joblink img.inner:visited,
#intro .joblink img.inner:hover,
	filter: brightness(0) saturate(100%) invert(9%) sepia(79%) saturate(7429%) hue-rotate(236deg) brightness(109%) contrast(120%);
}

/* --- 580px --------------------------------------------- */
@media only screen and (max-width: 580px) and (orientation: portrait) {
	#intro address {
		top: 20px;
		right: 20px;
	}
	#intro address > * { display: block;}
	#intro address em { display: none; }
	
	#intro .logo_icon {
		top: 50%;
		left: 50%;
		transform: translateX(-50%) translateY(-50%);
	}
	
	#intro .joblink {
		width: 46vw;
		left: auto;
		top: 70svh;
		right: 5%;
	}
}

/* --- 480px --------------------------------------------- */
@media only screen and (max-width: 480px) and (orientation: portrait) {
	#intro address {
		font-size: 14px;
	}
	
}