﻿/*
	General styles
*/

@font-face {
    font-family: 'Asap Regular';
    src: url('fonts/Asap-Regular.ttf');
    src: url('fonts/Asap-Regular.eot?#iefix') format('embedded-opentype'), url('fonts/Asap-Regular.woff') format('woff'), url('fonts/Asap-Regular.woff2') format('woff2'), url('Asap-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Asap Medium';
    src: url('fonts/Asap-Medium.ttf');
    src: url('fonts/Asap-Medium.eot?#iefix') format('embedded-opentype'), url('fonts/Asap-Medium.woff') format('woff'), url('fonts/Asap-Medium.woff2') format('woff2'), url('fonts/Asap-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Asap SemiBold';
    src: url('fonts/Asap-SemiBold.ttf');
    src: url('fonts/Asap-SemiBold.eot?#iefix') format('embedded-opentype'), url('fonts/Asap-SemiBold.woff') format('woff'), url('fonts/Asap-SemiBold.woff2') format('woff2'), url('fonts/Asap-SemiBold.ttf') format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: 'Asap Bold';
    src: url('fonts/Asap-Bold.ttf');
    src: url('fonts/Asap-Bold.eot?#iefix') format('embedded-opentype'), url('fonts/Asap-Bold.woff') format('woff'), url('fonts/Asap-Bold.woff2') format('woff2'), url('fonts/Asap-Bold.ttf') format('truetype');
    font-weight: 600;
}


/*******************************   Color  ******************************/

:root {
    --bgcolor: #ffffff;
    --primarycolor: #0C8786;
    --secondarycolor: #3babae;
    --fontcolor: #0C8786;
    --h1fontcolor: #ffffff;
    --h2fontcolor: #ffffff;
    --ankerfarbe: #00ccff;
    --ankerfarbeover: #00ccff;
    --btn1color: #e30613;
    --btn2color: #006bb3;
    --tabellenfarbe: #006bb3;
    --white: #ffffff;
    --gray: #6d6d6c;
    --color1: #0C8786;
    --color2: #b0d3d4;
    --color3: #0C8786;
    --color4: #0C8786;
    --color5: #0C8786;
    --color6: #0C8786;
    --color7: #0C8786;
    --color8: #0C8786;
    --color9: #0C8786;
    --color10: #0C8786;
    --color11: #ffffff;
    --color12: #90a922;
    --color13: #d3d800;
    --bubblecol1: #3babae;
    --bubblecol2: #0C8786;
    --bubblecol3: #90a922;
    --bubblecol4: #ed6a7d;
    --bubblecol5: #bcd9da; 
    --bubblecol6: #0C8786; 
    --bubblecol7: #3babae; 
    --footercol: #f1f1f1;
    --footermeta: #333333;
    --schwarz: #000;
    --pageSize: 1200px;
}

.stagecolor1 {
    background: var(--color11);
}

.stagecolor2 {
    background: var(--color11);
}

.stagecolor3 {
    background: var(--color8);
}


/*******************************   End Color  ******************************/

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

body {
    font-family: "Asap Regular", Arial, sans-serif;
    font-size: 20px;
    line-height: 1.2em;
    background-color: var(--bgcolor);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    color: var(--fontcolor);
    overflow-x: hidden;
}

body,
html {
    height: 100%
    /*	scroll-behavior: smooth;*/
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Asap Medium", Arial, sans-serif;
}

h1 {
    font-size: 3em;
    font-family: "Asap SemiBold", Arial, sans-serif;
    font-weight: normal;
}

h2 {
    font-size: 2em;
    line-height: 1.4em;
}

h3 {
    font-family: "Asap Semibold", Arial, sans-serif;
    font-size: 1.5em;
    font-weight: normal;
    line-height: 1.4em;
}

h3.versalien {
    text-transform: uppercase;
}

h4 {
    font-size: 1em;
}

h5 {
    font-size: 1em;
}

h6 {
    font-size: 1em;
}

.stage b {
    font-family: "Asap SemiBold", Arial, sans-serif;
    font-weight: normal;
}

a,
a:visited {
    text-decoration: none;
    color: var(--ankerfarbe);
    cursor: pointer;
}

a:hover {
    color: var(--ankerfarbeover);
}

a.url {
    display: inline-block;
    position: relative;
    color: var(--ankerfarbe);
}

a.url:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--ankerfarbeover);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

a.url:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.touchonly {
    display: none;
}

html.touch .touchonly {
    display: block;
}

.noselect,
.noselect * {
    user-select: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
}

.doselect,
.doselect *:not(.noselect) {
    user-select: text;
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -o-user-select: text;
}

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}

p {
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
    font-size:1.5em;
    line-height:1.3em;
}


/*******************************    Basic  ********************************/


/*
	Elements
*/

.spacer {
    text-align: center;
    min-height: 100px;
}

.spacer.s0 {
    min-height: 1px;
}

.spacer.s1 {
    min-height: 100px;
}

.spacer.s2 {
    min-height: 200px;
}

.spacer.s3 {
    min-height: 300px;
}

.spacer.s4 {
    min-height: 400px;
}

.spacer.s5 {
    min-height: 500px;
}

.spacer.s6 {
    min-height: 600px;
}

.spacer.s7 {
    min-height: 700px;
}

.spacer.s8 {
    min-height: 800px;
}

.spacer.s9 {
    min-height: 900px;
}

.spacer.s10 {
    min-height: 1000px;
}

.spacer.s_viewport {
    min-height: 100%;
}

.spacer.s_viewport {
    min-width: 100%;
}


/*
	colors
*/

.blue {
    background-color: #3883d8;
}

.turqoise {
    background-color: #38ced7;
}

.brown {
    background-color: #a66f28;
}

.bordeaux {
    background-color: #953543;
}

.skin {
    background-color: #ED9F4C;
}

.black {
    background-color: #000000;
}

.white {
    background-color: #FFFFFF;
}

.red {
    background-color: #cf3535;
}

.green {
    background-color: #22d659;
}

.orange {
    background-color: #ea6300;
}


/*
	mobile
*/

html.touch .menuwrap {
    z-index: 999999;
    box-sizing: content-box;
    min-width: 0;
    width: 100%;
    margin: 0;
    left: 0;
    top: 0;
    height: auto;
    background-color: transparent;
}

html.touch ul#menu {
    position: static;
    margin: 100px 0 0 0;
    text-align: center;
    width: 100%;
    left: 0;
    display: none;
}

html.touch .menuwrap.open {
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    overflow: scroll;
}

html.touch .menuwrap.open ul#menu {
    display: block;
}

html.touch ul#menu>li {
    display: block;
    margin: 10px;
    height: auto;
}

html.touch ul#menu ul {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed white;
}

html.touch ul#menu li {
    padding: 10px 0;
}

html.touch ul#menu>li a {
    color: #2e639e;
    font-size: 4em;
    line-height: 1.2em;
}

html.touch ul#menu ul li a {
    font-size: 2.5em;
    line-height: 1.2em;
}

html.touch ul#menu ul {
    display: block;
}

html.touch ul#menu ul li.current a {
    background-color: transparent;
}

html.touch ul#menu ul li a:hover {
    background-color: transparent;
}

html.touch ul#menu ul li a:active {
    color: white;
}

html.touch .menuwrap>a.prev,
html.touch .menuwrap>a.next,
html.touch .menubtn {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    top: 10px;
    background-color: #3883d8;
    color: white;
    font-size: 4em;
    line-height: 1.5em;
}

html.touch .menuwrap>a.prev:active,
html.touch .menuwrap>a.next:active,
html.touch .menubtn:active {
    background-color: white;
    color: #3883d8;
    border: 2px solid #3883d8;
}

html.touch .menuwrap>a.prev {
    margin-right: 70px;
    padding-right: 10px;
}

html.touch .menuwrap>a.next {
    margin-left: 70px;
    padding-left: 10px;
}

html.touch .menubtn {
    padding: 0;
    border: 0;
    position: absolute;
    left: 50%;
    margin-left: -40px;
    line-height: 0;
    outline: none;
    appearance: none;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    transition: 0.3s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html.touch .menubtn:active .button-lines,
html.touch .menubtn:active .button-lines::before,
html.touch .menubtn:active .button-lines::after {
    background: #3883d8;
}

html.touch .menubtn .button-lines,
html.touch .menubtn .button-lines::before,
html.touch .menubtn .button-lines::after {
    display: inline-block;
    height: 6px;
    width: 35px;
    border-radius: 4px;
    transition: 0.3s;
    background: #FFFFFF;
    position: relative;
    left: 0;
    top: -5px;
}

html.touch .menubtn .button-lines::before,
html.touch .menubtn .button-lines::after {
    content: '';
    position: absolute;
}

html.touch .menubtn .button-lines::before {
    top: 12px;
}

html.touch .menubtn .button-lines::after {
    top: -12px;
}

html.touch .menuwrap.open .menubtn .button-lines {
    background: transparent;
}

html.touch .menuwrap.open .menubtn .button-lines::before {
    top: 0px;
    -o-transform: rotate3d(0, 0, 1, -45deg);
    -moz-transform: rotate3d(0, 0, 1, -45deg);
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    -o-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

html.touch .menuwrap.open .menubtn .button-lines::after {
    top: 0px;
    -o-transform: rotate3d(0, 0, 1, 45deg);
    -moz-transform: rotate3d(0, 0, 1, 45deg);
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    -o-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}


/*
	OTHER
*/

a.viewsource:after {
    content: " }";
}

a.viewsource:before {
    content: "{ ";
}


/*********** Accordion **************/

.ac {
    margin-top: 10px;
    box-sizing: border-box;
    color: var(--fontcolor);
}

.ac h2 {
    color: var(--fontcolor);
    font-size: 0.9em;
}

.ac .ac-header {
    margin: 0;
    padding: 0 0 0 30px;
    background: var(--color11);
    border-radius: 50px;
}

.ac .ac-header:hover {
    background: var(--color1);
    color: white;
}

.ac .ac-trigger {
    text-align: left;
    width: 100%;
    padding: 10px 30px 10px 10px;
    display: block;
    cursor: pointer;
    background-color: transparent;
    -webkit-transition: color .25s ease;
    transition: color .25s ease;
    position: relative;
    text-decoration: none;
    margin: 0;
    border: 0
}

.ac .ac-trigger::after {
    content: '';
    text-align: center;
    width: 15px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    right: 10px;
    top: 50%
}

.ac .ac-panel {
    overflow: hidden;
    -webkit-transition-property: height, visibility;
    transition-property: height, visibility;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease
}

.ac .ac-panel .ac-text {
    padding: 20px 50px;
    margin: 0;
    font-size: 0.7em;
    color: white;
    line-height: 1.3em;
}

.ac.js-enabled .ac-panel {
    visibility: hidden
}

.ac.is-active .ac-panel {
    visibility: visible
}

.ac.is-active>.ac-header .ac-trigger::after {
    content: ''
}

.ac {
    border-radius: 10px;
}

.ac.is-active .ac-header {
    background: var(--color1);
    color: white;
}


/*******************************   End Basic  ******************************/