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

:root {

	--page-width: 96%;
	--page-primary-color: #8EC4C1;
	--page-secondary-color: ;
	--page-primary-backgroundcolor: rgb(142,196,193);
	--page-secondary-backgroundcolor: ;
	--page-color-black: #000000;
	--page-color-white: #ffffff;
	--page-color-grey: rgb(237,237,237);
	--page-color-hoverblack: rgba(0,0,0,.8);
	--page-text-transition: 0.35s ease-in-out;
	--page-box-transition: all 0.3s ease-in-out;
	--page-font: 'Exo2', sans-serif;
	
}

/* Allgemein */

html {
	
	font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
	background-color: #000000;
}

body {
	
	max-width: auto;
    margin-left: auto;
    margin-right: auto;
	background-color: #000000;
    margin-top: 0;
	position: relative;
}

section {
	
	width: 100%;
	height: 96vh;
	background-color: #000000;
	margin: 0 auto;
}

/* Schriften */

@font-face {
  font-family: 'Exo2';
  src: 
    url('media/fonts/exo2/Exo2.woff2') format('woff2-variations'),
    url('media/fonts/exo2/Exo2.woff2') format('woff2'),
    url('media/fonts/exo2/Exo2.woff') format('woff'),
    url('media/fonts/exo2/Exo2.ttf') format('truetype-variations'),
    url('media/fonts/exo2/Exo2.ttf') format('truetype'),
    url('media/fonts/exo2/Exo2.otf') format('opentype');

  font-weight: 100 900;
  font-stretch: 75% 125%;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Font Awesome';
  font-display: block;
  font-weight: 900;
  src: url('media/fonts/font-awesome/fa-solid-900.woff2') format('woff2'), url('media/fonts/font-awesome/fa-solid-900.ttf') format('truetype'); 
}

@font-face {
  font-family: 'Font Awesome Regular';
  font-display: block;
  font-weight: 400;
  src: url('media/fonts/font-awesome/fa-regular-400.woff2') format('woff2'); 
}

/* Button */

.button span::before {
	
	font-family: 'Font Awesome Regular';
	content: "\f0e0";
	display: inline-block;
    transition: transform 0.3s ease;
	margin-right: 12px;
}

.button {
	
  align-items: center;
  appearance: none;
  background-clip: padding-box;
  background-color: initial;
  background-image: none;
  border-style: none;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  flex-direction: row;
  flex-shrink: 0;
  font-family: var(--page-font);
  font-size: 13pt;
  font-weight: 800;
  justify-content: center;
  line-height: 24px;
  margin: 0;
  min-height: 64px;
  outline: none;
  overflow: visible;
  padding: 19px 26px;
  pointer-events: auto;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  width: auto;
  word-break: keep-all;
  z-index: 0;
}

@media (min-width: 768px) {
  .button {
	  
    padding: 19px 32px;
  }
}

.button:before,
.button:after {
	
  border-radius: 80px;
}

.button:before {
	
  background-image: linear-gradient(92.83deg, #8EC4C1 0, #8EC4C1 100%);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -2;
}

.button:after {
	
  background-color: initial;
  background-image: linear-gradient(#87a3a2 0, #0c0d0d 100%);
  bottom: 4px;
  content: "";
  display: block;
  left: 4px;
  overflow: hidden;
  position: absolute;
  right: 4px;
  top: 4px;
  transition: all 100ms ease-out;
  z-index: -1;
}

.button:hover:not(:disabled):before {
	
  background: linear-gradient(92.83deg, rgb(142, 196, 193) 0%, rgb(142, 196, 193) 100%);
}

.button:hover:not(:disabled):after {
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  transition-timing-function: ease-in;
  opacity: 0;
}

.button:active:not(:disabled) {
	
  color: #ccc;
}

.button:active:not(:disabled):before {
	
  background-image: linear-gradient(0deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), linear-gradient(92.83deg, #8EC4C1 0, #8EC4C1 100%);
}

.button:active:not(:disabled):after {
	
  background-image: linear-gradient(#87a3a2 0, #0c0d0d 100%);
  bottom: 4px;
  left: 4px;
  right: 4px;
  top: 4px;
}

.button:disabled {
	
  cursor: default;
  opacity: .24;
}

/* Page */

.content_wrapper {
	
	width: var(--page-width);
	height: 100%;
	margin: 0 auto;
	padding-top: 3%;
	padding-bottom: 3%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

header {
	
	width: 100%;
	margin: 0 auto;
	padding-top: 3%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

header::before {
	
	height: 60px;
	width: 60px;
	content: url("");
	background-image: url("bw_weiss.png");
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: -175px;
}

header .bw_heading {
	
	font-size: 29pt;
	font-family: var(--page-font);
	font-weight: 200;
	margin-top: -20px;
}

header .bw_heading span:first-child {
	
	color: #fff;
}

header .bw_heading span:last-child {
	
	color: var(--page-primary-color);
}

header .bw_subheading {
	
	margin-top: -6px;
}

header .bw_subheading span {
	
	font-size: 13.9pt;
	color: #fff;
	font-weight: 800;
	font-family: var(--page-font);
}

.content {
	
	height: 13rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

footer {
	
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

footer span {
	
	align-items: center;
	font-size: 9pt;
	color: #fff;
	font-weight: 300;
	font-family: var(--page-font);
}