/* Grundgerüst */
* {
	box-sizing: border-box;
	margin: 0;
}

body {
	font-family: Plus Jakarta Sans, sans-serif;
	font-size: 14px;
	color: #000;
	background: #FFF;
}

html {
    scroll-behavior: smooth;
}

#wrapper {
	width: 100vw;
	margin: 0 auto;
    background-color: #eeeeee;
}

header {
	width: 100vw;
	height: 92vh;
	background-color: #eeeeee;
}

nav {
	width: 100vw;
	height: 8vh;
}

main {

    float: left;
	width: 75%;
	min-height: 75vh;
	background-color: #ffffff;
    border-right: 3px solid #ccc;
    border-collapse: collapse;
}

aside {
    float: left;
    width: 25%;
    padding: 30px 30px 5px 30px;
    background-color: #eeeeee;
    position: -webkit-sticky;
    position: sticky;
    top: 8vh;
}

.maps-iframe {
    display: block;
    position: relative;
    height: 92vh;
    width: 100%;
    border: none;
}

.youtube-iframe {
    display: block;
    position: relative;
    height: 92vh;
    width: 100%;
    border: none;
}

.float33 {
    float: left;
    width: 33.3%
}

.float50 {
    float: left;
    width: 50%;
}

.float66 {
    float: left;
    width: 66.7%
}

.back {
    position: absolute;
    background-color: transparent;
    color: #f2f2f2;
    top: 25px;
    left: 25px;
    border-radius: 50px;
    border: none;
}

.back:hover {
    color: #aaa;
}

.abschnitt {
    min-height: 92vh;
    background-color: #ffffff;
    color: #000000;
}

.abschnitt-hell {
    min-height: 92vh;
    align-content: center;
    padding: 30px 30px 5px 30px;
    background-color: #ffffff;
    color: #000000;
}

.abschnitt-hell-half {
    min-height: 46vh;
    align-content: center;
    padding: 30px 30px 5px 30px;
    background-color: #ffffff;
    color: #000000;
}

.abschnitt-dunkel {
    min-height: 92vh;
    align-content: center;
    padding: 30px 30px 5px 30px;
    background-color: #333333;
    color: #f2f2f2;
}

.abschnitt-dunkel a:hover {
    color: #f2f2f2;
}

.abschnitt-dunkel-half {
    min-height: 46vh;
    align-content: center;
    padding: 30px 30px 5px 30px;
    background-color: #333333;
    color: #f2f2f2;
}

.abschnitt-grau {
    min-height: 92vh;
    align-content: center;
    padding: 30px;
    background-color: #eeeeee;
    color: #000000;
}

.abschnitt-grau-half {
    min-height: 46vh;
    align-content: center;
    padding: 30px;
    background-color: #eeeeee;
    color: #000000;
}

.abschnitt-bild {
    min-height: 92vh;
    align-content: end;
    padding: 30px;
    background-color: #eeeeee;
    color: #f2f2f2;
    box-shadow: inset 0 0 0 110vw rgba(0,0,0,0.75);
    background-position: right;
	background-repeat: no-repeat;
	background-size: cover;
	justify-content: center;
}

.abschnitt-bild-half {
    min-height: 46vh;
    align-content: center;
    padding: 30px;
    background-color: #eeeeee;
    color: #f2f2f2;
    box-shadow: inset 0 0 0 110vw rgba(0,0,0,0.75);
    background-position: right;
	background-repeat: no-repeat;
	background-size: cover;
	justify-content: center;
}

.half {
    min-height: 46vh !important;
}

.box-social {
    height: 92vh;
    width: 33.33%;
    float: left;
    align-content: end;
    padding: 30px;
    box-shadow: inset 0 0 0 110vw rgba(0,0,0,0.75);
    background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.box-text {
	color: white;
}

.box-text button {
	border: none;
    border-radius: 20px;
	outline: 0;
	display: inline-block;
	padding: 10px 25px;
	color: black;
	background-color: #ffffff;
	cursor: pointer;
    transition: 0.5s;
    font-family: inherit;
}

.box-text button:hover {
	background-color: #555;
	color: white;
    transform: scale(1.1);
}

.clearer {
    clear: both;
}

footer {
    align-content: center;
    text-align: center;
	width: 100%;
	height: 100px;
	background-color: cadetblue;
}

footer a {
	color: #f2f2f2;
	padding-left: 10px;
	padding-right: 10px;
	text-decoration: none;
	font-size: 14px;
	line-height: 20px;
}

footer p {
    padding: 0;
    margin: 0;
}

footer i:hover {
    color: red;
}

.intro {
    font-size: 24px;
    font-weight: 300;
}

.logo {
    margin-bottom: 20px;
    transition: 0.5s;
    filter: saturate(0);
}

.logo:hover {
    filter:saturate(100%);
    transform: scale(1.1)
}

/* Allgemeine Textformatierungen */

p, li, h3, h4, h5, h6 {
    margin-bottom: 25px;
    line-height: 1.5;
}

i {
    padding: 0px 10px 0px 10px;
    transition: 0.5s;
}

aside p {
    text-align: justify;
}

aside li {
    margin-bottom: 10px;
}

h1, h2 {
    margin-bottom: 10px;
}

h2, h3, h4, h5, h6 {
    font-weight: 500;
}

h1 {
    font-size: 24px;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 16px;
}

h3 i {
    margin-right: 5px;
}

h4 {
    font-size: 12px;
}

a {
    color: cadetblue;
    text-decoration: none;
    transition: 0.5s;
}

a:hover {
    color: #000000;
}

::-moz-selection { /* Firefox */
  color: #f2f2f2;
  background: #333333;
}

::selection {
  color: #f2f2f2;
  background: #333333;
}

/* Hero */
.hero-image {
    box-shadow: inset 0 0 0 110vw rgba(0,0,0,0.75);
	height: 92vh;
	background-position: right;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	display: flex;
	justify-content: center;
}

.hero-text {
	color: white;
	text-align: center;
	align-self: center;
    z-index: 10;
}

.hero-text button {
	border: none;
    border-radius: 20px;
	outline: 0;
	display: inline-block;
	padding: 10px 25px;
	color: black;
	background-color: #ffffff;
	text-align: center;
	cursor: pointer;
    transition: 0.5s;
    font-family: inherit;
}

.hero-text button:hover {
	background-color: #555;
	color: white;
    transform: scale(1.1);
}

/* Hero Plattformen */

.instagram {
    box-shadow: inset 0 0 0 110vw rgba(0,0,0,0.25);
    background: linear-gradient(0deg, #5b51d8, #c13584, #f77737, #833ab4, #e1306c);
    background-size: 1000% 1000%;

    -webkit-animation: instagram 41s ease infinite;
    -moz-animation: instagram 41s ease infinite;
    animation: instagram 41s ease infinite;
}

.facebook {
    background: linear-gradient(182deg, #3b5998, #8b9dc3);
    background-size: 400% 400%;

    -webkit-animation: facebook 41s ease infinite;
    -moz-animation: facebook 41s ease infinite;
    animation: facebook 41s ease infinite;
}

@-webkit-keyframes facebook {
    0%{background-position:2% 0%}
    50%{background-position:99% 100%}
    100%{background-position:2% 0%}
}
@-moz-keyframes facebook {
    0%{background-position:2% 0%}
    50%{background-position:99% 100%}
    100%{background-position:2% 0%}
}
@keyframes facebook {
    0%{background-position:2% 0%}
    50%{background-position:99% 100%}
    100%{background-position:2% 0%}
}

@-webkit-keyframes instagram {
    0%{background-position:2% 0%}
    50%{background-position:99% 100%}
    100%{background-position:2% 0%}
}
@-moz-keyframes instagram {
    0%{background-position:2% 0%}
    50%{background-position:99% 100%}
    100%{background-position:2% 0%}
}
@keyframes instagram {
    0%{background-position:2% 0%}
    50%{background-position:99% 100%}
    100%{background-position:2% 0%}
}

.linkedin {
    background: linear-gradient(182deg, #0077b5, #00a0dc);
    background-size: 400% 400%;

    -webkit-animation: facebook 41s ease infinite;
    -moz-animation: facebook 41s ease infinite;
    animation: facebook 41s ease infinite;
}

@-webkit-keyframes facebook {
    0%{background-position:2% 0%}
    50%{background-position:99% 100%}
    100%{background-position:2% 0%}
}
@-moz-keyframes facebook {
    0%{background-position:2% 0%}
    50%{background-position:99% 100%}
    100%{background-position:2% 0%}
}
@keyframes facebook {
    0%{background-position:2% 0%}
    50%{background-position:99% 100%}
    100%{background-position:2% 0%}
}

.icon {
  color: white;
  font-size: 75vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
    opacity: 0.1;
}

#menu {
    float: left;
    width: 85%;
    min-height: 8vh;
    align-content: center;
	overflow: hidden;
	background-color: #333;
	padding: 10px 20px;
	z-index: 9999;
}

#menu a {
	color: #f2f2f2;
	padding-left: 15px;
	padding-right: 15px;
	text-decoration: none;
	font-size: 16px;
	line-height: 20px;
}

#menu a:hover {
	color: #aaaaaa;
}

#social-icons {
    float: left;
    width: 15%;
    min-height: 8vh;
    align-content: center;
	overflow: hidden;
	background-color: #333;
	padding: 10px 20px;
	z-index: 9999;
}

#social-icons i {
	color: #f2f2f2;
    width: 30%;
    text-align: center;
	text-decoration: none;
	font-size: 16px;
	line-height: 20px;
}

#social-icons i:hover {
	color: #aaaaaa;
}

.navbar {
	padding: 16px;
}

.sticky {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9999;
}

.sticky + .navbar {
	padding-top: 60px;
}

/* Fonts */

/* plus-jakarta-sans-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/plus-jakarta-sans-v8-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* plus-jakarta-sans-200italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: italic;
  font-weight: 200;
  src: url('../fonts/plus-jakarta-sans-v8-latin-200italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* plus-jakarta-sans-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/plus-jakarta-sans-v8-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* plus-jakarta-sans-300italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: italic;
  font-weight: 300;
  src: url('../fonts/plus-jakarta-sans-v8-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* plus-jakarta-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/plus-jakarta-sans-v8-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* plus-jakarta-sans-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/plus-jakarta-sans-v8-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* plus-jakarta-sans-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/plus-jakarta-sans-v8-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* plus-jakarta-sans-500italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: italic;
  font-weight: 500;
  src: url('../fonts/plus-jakarta-sans-v8-latin-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* plus-jakarta-sans-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/plus-jakarta-sans-v8-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* plus-jakarta-sans-600italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: italic;
  font-weight: 600;
  src: url('../fonts/plus-jakarta-sans-v8-latin-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* plus-jakarta-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/plus-jakarta-sans-v8-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* plus-jakarta-sans-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/plus-jakarta-sans-v8-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* plus-jakarta-sans-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/plus-jakarta-sans-v8-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* plus-jakarta-sans-800italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Plus Jakarta Sans';
  font-style: italic;
  font-weight: 800;
  src: url('../fonts/plus-jakarta-sans-v8-latin-800italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

