@charset "utf-8";
/* CSS Document */
 /* RESET
 * Reference: http://meyerweb.com/eric/tools/css/reset/
 */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* ----------------------------------------------------------------------------- *
 *                           Style by www.a-krueger.eu                           *
 * ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------- * 
 * Verwendete Farben
 * #1a1a1a - background
 * #e8cdc2 - beige rosé
 * #A64B4B - darkrosé
 * #D99C9C - hellrosé
 * #F2E2DC - altweiß
 * #808080 - light gray fonts
 * #555555 - gray
-------------------------------------------------------------------------------- */

/* ----------------------------------------------------------------------------- *
 *                                 Generalités                                   *
 * ----------------------------------------------------------------------------- */
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	margin: 0;
  	padding: 0;
}

html {
	margin: 0 auto;
	width: 100%;
	height: 100%;
	}
	
body {
	margin: 0 auto;
	background: #1a1a1a;
	width: 100%;
	height: 100%;
	-webkit-tap-highlight-color: transparent; /* verhindert auf touch-screen den blauen Hintergrund*/
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	}

body:focus {
    outline: none !important;
}

main {
	margin: 0 auto;
	width: 100%;
	height: auto;
	}

section {
	margin: 0 auto;
	width: 100%;
	height: auto;
	}

img {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	}


/* ----------------------------------------------------------------------------- *
 *                                  Flexboxes                                    *
 * ----------------------------------------------------------------------------- */

.flex-container-row {
	margin: 0 auto;
	width: 100%;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-bottom: 15px;
	}

.flex-container-column {
	margin: 0 auto;
	width: 100%;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	}

.flex-container-box {
	margin: 0 auto;
	padding-left: 10px;
	padding-right: 10px;
}	

.flex-container-box img {
	margin: 0 auto;
}

.flex-container-box h2, .flex-container-box h3, .flex-container-box p {
	padding: 10px;
}

.flex-item-box {
	align-content: space-between;
	min-height: 200px;
	padding-bottom: 10px;
	padding-left: 20px;
	padding-right: 20px;
}

.flex-item-1 {
	flex: 1;
}

.flex-item-2 {
	flex: 2;
}

.flex-item-3 {
	margin: 0;
	padding: 0;
	flex: 3;
	}

.order-1 {
	order: 1;
	}

.order-2 {
	order: 2;
	}

.justify-content-center {
	justify-content: center;
}

.justify-content-start {
	justify-content: flex-start;
}

.justify-content-end {
	justify-content:flex-end;
}

.align-content-center {
	align-content: center;
}

.align-items {
	align-items: stretch;
}

.flex-container-stretch {
	display: flex;
	flex-direction: column;
	border: 1px solid #f2f2f2;
	min-height: 200px;
	max-width: 100%;
	margin: 0 auto;
	margin: 10px 5px 5px 0;
	padding: 0 20px 10px 20px;
	background-color: #ffffff;
}

.last-item {
	margin-top:auto;
}

@media all and (max-width:800px) {
.flex-container-row {
	flex-direction: column;
	display:block;
	justify-content: center;
	}
}

/* ----------------------------------------------------------------------------- *
 *                            Limiter & Positions                                *
 * ----------------------------------------------------------------------------- */

.limiter_1200 {
	margin: 0 auto;
	max-width: 1200px;
	}

.limiter_800 {
	margin: 0 auto;
	max-width: 800px;
	}

.limiter_600 {
	margin: 0 auto;
	max-width: 600px;
	}

.limiter_400 {
	margin: 0 auto;
	max-width: 400px;
	}

.top_25 {
	margin-top: 25px;
	}

.top_50 {
	margin-top: 50px;
	}

.top_80 {
	margin-top: 80px;
	}

.top_100 {
	margin-top: 100px;
	}

.top_150 {
	margin-top: 150px;
	}

.bottom_50 {
	margin-bottom: 50px;
	}

/* ----------------------------------------------------------------------------- *
 *                             Positions & Display                               *
 * ----------------------------------------------------------------------------- */

.relative {
	position: relative;
	width: 100%;
	height: 100vh;
}
.absolute-center-center {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.center {text-align: center;}
.justify {text-align: justify;}
.right {text-align: right; padding-right: 10px;}
.left {text-align: left; padding-left: 10px;}


/* ----------------------------------------------------------------------------- *
 *                                Décoration                                     *
 * ----------------------------------------------------------------------------- */

.sign-before::before {
  content:'\00A0→';
  color: #A64B4B;
}

.sign-after::after {
  content:'\00A0→';
  color: #A64B4B;
}

hr {
 	background: #A64B4B;
 	border: none;
 	color: #A64B4B;
 	height: 1px;
 	width: 100%;
}

.decoration {
	text-decoration: underline;
}

.headline-large {
	padding: 80px 0 80px 0;
	background-color:#000000;
	color: #808080;
	}
