/* 
** --  LOAD FONTS WE USE
*/
@font-face {
	font-family: 'BRLW';
	font-style: normal;
	font-weight: 300;
	font-display: auto;
	src: url('typo/barlow-v1-latin-300.woff2') format('woff2');
}
@font-face {
	font-family: 'Source Sans Pro';
	font-style: normal;
	font-weight: 500;
	font-display: auto;
	src: url('typo/barlow-v1-latin-500.woff2') format('woff2');
}
@font-face {
	font-family: 'E92ICONS';
	font-style: normal;
	font-weight: 400;
	font-display: auto;
	src: url('typo/element92icons.woff2') format('woff2');
}
/* 
** -- DEFINE ALL OVER STYLINGS
*/
:root
{
	/*
	** -- MAIN COLOR SCHEME
	*/
	--c-eins:122,111,105;
	--c-eins-100: rgba(var(--c-eins),1);
	--c-eins-90: rgba(var(--c-eins),.9);
	--c-eins-60: rgba(var(--c-eins),.6);
	--c-eins-30: rgba(var(--c-eins),.3);
	--c-eins-10: rgba(var(--c-eins),.1);
	--c-eins-5: rgba(var(--c-eins),.05);
	--c-zwei:255,255,255;
	--c-zwei-100: rgba(var(--c-zwei),1);
	--c-zwei-90: rgba(var(--c-zwei),.9);
	--c-zwei-80: rgba(var(--c-zwei),.8);
	--c-zwei-50: rgba(var(--c-zwei),.5);
	--c-zwei-30: rgba(var(--c-zwei),.3);
	--c-drei:	179,194,15;
	--c-drei-100: rgba(var(--c-drei),1);
	--c-drei-90: rgba(var(--c-drei),.9);
	--c-drei-10: rgba(var(--c-drei),.1);
	--c-drei-5: rgba(var(--c-drei),.05);
	/*
	** -- SPECIAL GLOBAL COLORS
	*/
	--c-nocolor: rgba(0,0,0,0);
	/*
	** -- TRANSITION DURATIONS
	*/
	--s-fast: 0.3s;
	--s-nrml: 0.5s;
	--s-slow: 1.0s;
	/*
	** -- MARGINS AND PADDINGS
	*/
	--pm-mini: 4px;
	--pm-small: 8px;
	--pm-regular: 16px;
	--pm-big: 32px;
	--pm-large: 48px;
	--pm-xtra: 64px;
}
*, *:before, *:after
{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html
{
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: geometricPrecision;
}
body
{
	margin: 0px;
	padding: 0px;
	font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
	font-size: 18px;
	font-weight: 300;
	line-height: 25px;
	max-width: 100vw;
	min-height: 100vh;
	hyphens: auto;
}
.wrapper
{
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
header
{
	color: var(--c-drei-100);
	min-height: 128px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-top: var(--pm-big) solid var(--c-drei-100);
	background-color: var(--c-drei-10);
}
section
{
	color: var(--c-eins-100);
	min-height: calc(100vh - 128px - 96px);
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	gap:var(--pm-xtra);
	border-top: var(--pm-big) solid var(--c-drei-5);
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
footer
{
	background-color: var(--c-drei-100);
	color: var(--c-zwei-100);
	min-height: 96px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: var(--pm-small);
	border-top: var(--pm-regular) solid var(--c-zwei-50);
	border-bottom: var(--pm-regular) solid var(--c-eins-60);
	padding-top: var(--pm-regular);
	padding-bottom: var(--pm-regular);
}

/*
** -- SECTIONS INNER CONTENT
*/

._c11,._c12,._c13,._c14,._23
{
	flex-grow: 1;
	flex-shrink: 0;
	margin: 0;
	padding: 0;
	min-width: 280px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
._c11
{
	width:100%;
}
._c12
{
	width: calc((100% / 2) - var(--pm-xtra));
}
._c13
{
	width: calc((100% / 3) - var(--pm-xtra));
}
._c23
{
	width: calc((100% / 3 * 2) - var(--pm-xtra));
}
._c14
{
	width: calc((100% / 4) - var(--pm-xtra));
}
.__rowed
{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap:var(--pm-xtra);
	padding-top: var(--pm-xtra);
	border-top: 1px solid var(--c-drei-100);
}
.__rowed:nth-of-type(2)
{
	border-top-width: 0px;
}
.___fxd
{
	width: 100px;
display: inline-block;
}
/*
** -- TYPOGRAPHY
*/
h1,h2,h3,h4,h5,h6,p,ul,ol,li
{
	padding: 0px;
	margin: 0px;
	font-weight: 300;
	line-height: 170%;
}

h1,h2,h3,h4,h5,h6
{
	line-height: 120%;
	color: var(--c-eins-60);
}
h1{
	font-size: 300%;
}
h2{
	font-size:200%;
}
h2 em
{
	font-style: normal;
	font-size: 75%;
	color: var(--c-drei-100);
}
h3{
	font-size:150%;
	margin-bottom: var(--pm-small);
	margin-top: var(--pm-big);
	color: var(--c-drei-100);
}
h3:first-of-type
{
	margin-top: 0;
}
h4{
	font-size:130%;
	margin-bottom: var(--pm-small);
	margin-top: var(--pm-big);
}
p
{
	margin-bottom: var(--pm-regular);
}
ul
{
	list-style-type: none;
	margin-bottom: var(--pm-regular);
}
ul li{
	display: flex;
	align-items: center;
	padding: var(--pm-small) 0;
}
ul li::before
{
	content: '+';
	font-family: 'E92ICONS';
	font-size: 150%;
	color: var(--c-drei-100);
	display: inline-flex;
	align-self: center;
	margin-right: var(--pm-small);
}
ul.dsgvo li::before
{
	content: '-';
	font-family: 'E92ICONS';
	font-size: 150%;
	color: var(--c-drei-100);
	display: inline-flex;
	align-self: flex-start;
	margin-right: var(--pm-small);
}
a
{
	text-decoration: none;
	color: var(--c-drei-100);
	transition-property: color;
	transition-duration: var(--s-nrml);
}
a:hover
{
	color: var(--c-eins-100);
}
.__l
{
	font-size: 127.7777777778%;
}
.__s
{
	font-size: 77.7777777778%;
}

.___cntr
{
	text-align: center;
}
.___apr
{
	padding: var(--pm-regular);
}
.___apb
{
	padding: var(--pm-big);
}
.___apx
{
	padding: var(--pm-xtra);
}
/*
** -- FOOTER TYPOGRAPHY
*/
footer p
{
	margin-bottom:0;
}
footer a
{
	color:var(--c-zwei-100);
	margin: 0 var(--pm-small);
}
footer a:hover
{
	color: var(--c-eins-100);
}
/*
** -- IMAGES
*/
img
{
	width: 100%;
	height: auto;
	box-shadow: 0px 0px 12px var(--c-eins-30);
	margin-bottom: var(--pm-regular);
}
img._brand
{
	width: calc(100% / 3);
	max-width: 400px;
	min-width: 200px;
	height: auto;
	box-shadow: none;
	margin-bottom: var(--pm-regular);
}