@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
:focus {
	outline: 0;
}
div, p, h1, h2, h3, img{
	/*border: 1px dotted red;*/
}
body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* END CSS RESET */



/* General Settings: */





:root{
    --grey: #F4F4F4;
    --grey-dark: #DBDBDB;
    --padding: 35px;
    --margin-top: 20px;
    --margin-bottom: 60px;
}






@font-face {
	font-family: 'EuclidCircularB-Medium';
	src: url('EuclidCircularB-Medium-WebS.woff2') format('woff2'),
       url('EuclidCircularB-Medium-WebS.woff') format('woff');
  /*font-weight:  600;*/
  font-style:   normal;
  font-stretch: normal;
}
@font-face {
	font-family: 'EuclidCircularB-Medium-Italic';
	src: url('EuclidCircularB-MediumItalic-WebS.woff2') format('woff2'),
       url('EuclidCircularB-MediumItalic-WebS.woff') format('woff');
  /*font-weight:  600;*/
  font-style:   normal;
  font-stretch: normal;
}

body, html, * {
    font-family: 'EuclidCircularB-Medium';
	box-sizing: border-box;
}
em, i{
    font-family: 'EuclidCircularB-Medium-Italic';
}


body, html{
    width:100%;
    height:100%;
    margin:0;
	font-size: 18px;
    line-height: 1.4em;
}




/* Fix for mobile devices */
body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
}
html {
  height: -webkit-fill-available;
}




.lead, h3{
    font-size: 1.333em;
    line-height: 1.3em;
}
p{
    margin-bottom: 0.5em;
}
.datenschutz p{
    font-size: 0.75em;
    line-height: 1.2em;
}
a, a:link{
	color: black;
	text-decoration: none;
    border-bottom: 2px solid var(--grey-dark);
}
a.active,
a:hover{
	border-bottom: 2px solid black;
}

.impressum a{
    font-size: .7em !important;
}
.c-impressum{
    padding:50px 0;
}
.c-impressum *{
    border: none !important;
}


section.start{
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: -webkit-fill-available;
    background: var(--grey);
    padding: var(--padding);
    overflow: hidden;
}
object#c{
    width: 80px;
    height: auto;
}
object#controlpunkt{
    position: absolute;
    bottom: var(--padding);
    left: var(--padding);
    margin-bottom: 40px;
}
div.scroll{
    position: absolute;
    bottom: var(--padding);
    right: var(--padding);
    margin-bottom: 40px;
    cursor: pointer;
}


section.intro{
    padding: var(--padding);
    margin: var(--margin-top) 0 var(--margin-bottom) 0;
}
.lead{
    margin-bottom: 20px;
}

section.angebot{
    margin: var(--margin-top) 0 var(--margin-bottom) 0;
}
.angebot h2{
    padding: calc(var(--padding) / 2) var(--padding);
    /*border-bottom: 1px solid #707070;*/
    border-bottom: 2px solid #000;
}
.drawer{
    border-bottom: 2px solid #000;
    
    transition: background 0.2s ease-out;
}
.drawer h3{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: calc(var(--padding) / 2) var(--padding);
}
.drawer-content{
    padding: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease-out;
}
.drawer-content div{
    /*padding: 20px 0;*/
    padding: calc(var(--padding) / 2) var(--padding);
}



.drawer.active{
    background: var(--grey);
}
.drawer.active .drawer-content{
    max-height: 350px;
    /*padding: var(--padding) 0;*/
}
span.arrow-right{
    
}
span.arrow-right img{
    transform: rotate(0deg);
    width: 25px;
    height: auto;
    transition: transform 0.3s ease-out;
}
.drawer.active span.arrow-right img{
    transform: rotate(180deg);
}


ul li{
    list-style-type: disc;
    margin-left: 20px;
}
.drawer-content div p{
    font-size: 0.75em;
    padding-left: 20px;
    display: none;
}
.drawer:nth-of-type(3) li::after,
.drawer:nth-of-type(4) li::after{
    content: "*";
}
small{
    font-size: 0.75em;
    padding: var(--padding);
    padding-top: calc(var(--padding) / 2);
    display: block;
}









section.about{
    margin: calc(var(--margin-top) * 2) 0 var(--margin-bottom) 0;
    padding: var(--padding);
}

.portrait{
    width: 100%;
    text-align: center;
    
    overflow: hidden;
}
.portrait img{
    max-width: 90%;
    height: auto;
    border-radius: 100%;
}
.bio h3{
    margin: 40px 0 20px 0;
}
.address{
    margin: 80px 0 20px 0;
}

.scroll-top{
    text-align: right;
    width: 100%;
    cursor: pointer;
}





video{
    mix-blend-mode: darken;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: var(--padding);
}





























.anim{
    display: grid;
    justify-items: center;
    align-items: center;
    width: 100vmin;
    height: 100vmin;
    padding: var(--padding);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.anim *{
    pointer-events: none;
}
#c-anim{
    width: 100%;
    height: auto;
    animation: circle 6s ease-in-out forwards infinite;
    transform: rotate(0deg);
}
#c-anim circle {
    /*stroke-dasharray: 490, 1470;
    stroke-dashoffset: 490;*/
    
    stroke-dasharray: 490, 1500;
    stroke-dashoffset: 1030;
    /*stroke-dasharray: 500, 1500;*/
    /*stroke-dashoffset: 550;*/
    stroke-width: 20px !important;
    /* stroke-width: 10px !important; */
}
span.word{
    font-size: 70px; /* font-size: 120px; */
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    transform: translate(-50%,0);
    animation: words 6s ease-in-out forwards infinite;
    /* cubic-bezier(0,0,.1,1) */ 
    opacity: 0;
}
span.plan{
    animation-delay: 0s;
}
span.do{
    animation-delay: 1.5s;
}
span.check{
    animation-delay: 3s;
}
span.act{
    animation-delay: 4.5s;
}




@keyframes words{
    0%{
        transform: translate(-50%, -1em);
        opacity: 0;
    }
    10%{
        transform: translate(-50%, -1em);
        opacity: 0;
    }
    15%{
        opacity: 0;
    }
    25%{
        transform: translate(-50%, 0);
        opacity: 1;
    }
    35%{
        transform: translate(-50%, 0);
        opacity: 1;
    }
    45%{
        opacity: 0;
    }
    50%{
        transform: translate(-50%, 1em);
        opacity: 0;
    }
    100%{
        transform: translate(-50%, 1em);
        opacity: 0;
    }
}

@keyframes circle{
    0%{
        transform: rotate(0deg);
    }
    10%{
        transform: rotate(0deg);
    }
    25%{
        transform: rotate(90deg);
    }
    35%{
        transform: rotate(90deg);
    }
    50%{
        transform: rotate(180deg);
    }
    60%{
        transform: rotate(180deg);
    }
    75%{
        transform: rotate(270deg);
    }
    85%{
        transform: rotate(270deg);
    }
    100%{
        transform: rotate(360deg);
    }
}



































@media screen and (min-width: 1000px){
    :root{
        --grey: #F4F4F4;
        --padding: 40px;
        --margin-top: 40px;
        --margin-bottom: 60px;
    }
    html, body{
        font-size: 20px;
    }
    .drawer-content div ul{
        column-count: 3;
        column-fill: balance;
    }  
    .drawer:hover{
        background: var(--grey);
        cursor: pointer;
    }
    p{
        padding-right: 5%;
    }
    section.intro,
    section.about,
    section.angebot{
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
    section.about{
        margin-top: 120px;
    }
    object#controlpunkt{
        margin-bottom: 0;
    }
    div.scroll{
        margin-bottom: 0;
    }
    div.scroll-top{
        /*text-align: center;*/
    }
    .about-grid{
        display: grid;
        grid-template-columns: 50% 50%;
    }
    .portrait{
        text-align: left;
    }
    .portrait img{
        max-width: 80%;
    }
    .bio h3 {
        margin: 20px 0 20px 0;
    }
    .scroll-top{
        margin-top: 120px;
    }
    
    .address{
        display: flex;
    }
/*    video{
        padding: 0;
        width: 75vmin;
    }*/
    
    
    .anim{
        width: 100vmin;
        height: 100vmin;
        padding: var(--padding);
    }
    #c-anim circle {
        stroke-width: 12px !important;
    }
    span.word{
        font-size: 120px;
        margin-top: -30px;
    }
    
    
}