:root{
    --page-color: #f9f9f9;
    --main-color: #00d300;
}

body{
    background-color: #f9f9f9;
    margin: 0 !important;
    padding: 0 !important;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
   
}
html{
    overflow-x: hidden;
}


/*navigationBar____________________________*/
.navigationBar{
    
    position: fixed;
    z-index: 2;
    width: 100%;
    height: 7%;
    background-color: whitesmoke;
    bottom: 0%;
    text-align: center;
    transform: scale(1);
    -webkit-transition: all 0.5s !important; /* Safari */
    transition: all 0.5s !important;
}
.navigationBar.fixedTop{

    
    bottom: 0% !important;
    
}
.navigationButton:hover{
    color: darkslategrey !important;
    transform: scale(1.1);
}
.navigationButton{
    
    font-size: 3vh;
    margin-left: 2%;
    margin-right: 2%;
    line-height: 7vh;
    color: gray;
    display: inline-block;
    -webkit-transition: all 0.5s !important; /* Safari */
    transition: all 0.5s !important;
}
.navigationButton.selected{
    
    transform: scale(1.1);
    color: #00d300;
    
}


/*aboutPage______________________________________*/
.aboutpage{
    position: relative;
    overflow: hidden;
    opacity: 0;
    height: 90%;
            transition: all 1s;
    -webkit-transition: all 1s;
}
.aboutPage.show{
    opacity: 1;
    transform: scale(1);
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
}
.aboutPage.hide{
    opacity: 0;
    transform: scale(0.7);
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
}



.imageContainer{
    width:100%;
    text-align:center;
    margin-top: 5%;
}
.aboutImage{
    
    position: relative;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    width:23vw;
    height: 23vw;
    max-width: 350px;
    max-height: 350px;
    background-color: green;
    margin: 0.25%;
    display: inline-block;
    overflow: hidden;
    
}
.aboutImageText{
    
    cursor: pointer;
    position: absolute;
    background-color: yellowgreen;
    padding: 60%;
    height: auto;
    width: 100%;
    text-align: center;
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
            transition: all 1s; 
    -webkit-transition: all 1s; 
    color: white;
    font-size: 150%;
    
    
}
.aboutImageText:hover{
    
    opacity: 1;
    
}

.aboutText{
    
    width: 80%;
    max-width: 900px;
    margin: 3% auto auto auto;
    text-align: center !important;
    
}

.secretLink{
    font-size: 100% !important;
    color: white !important;
     -webkit-transition: all 0.5s !important; /* Safari */
    transition: all 0.5s !important;
    
}
.secretLink:link{
    
    font-style: normal !important;
     text-decoration: none !important;
}
.secretLink:hover{

    color: skyblue !important;
    text-decoration: underline !important;
}
a{
    color: deepskyblue;
    cursor: pointer;
    
}
a:hover{
    color: skyblue;
}

button{
    background-color: yellowgreen !important;
    display: inline-block !important;
    
    border: none;
    color: white !important;
    padding: 10px 17px 10px 17px !important;
    box-sizing: border-box !important;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transform: scale(1.3) !important;
    
}
button:hover{
    
    
    background-color:green;
    
    
}

p{
    font-size: 100%;
    line-height: 1.25;
    margin: 0px;
    
}

h1{
    font-size: 250%;
    color: #00d300;
    margin-bottom: 5%;
    margin-top: 5%;
}
h2{
    font-size:120%;
    font-weight:normal;
    font-variant:inherit;
    margin:2px;
    margin-left: 0px;
    
    text-align: center;
    color: yellowgreen;
}
h3{
    color: #00d300 !important;
    margin:0px;
    margin-bottom: 2%;
    width: 100%;
    padding: 0;
    font-weight: 400;
}

.text{
        
    color: black;
    text-align:justify;
	font-size: 100%;
    line-height: 135%;

}



.shadow{
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}

/*Startpage_______________________*/
.startPage{
    height: 130%;
}

.startDiv{
    
    z-index: 5;
    position: relative;
    border-radius: 50%;
    background-color: white;
    margin-top: -38%;
    left: 50%;
    transform: translateX(-50%) scale(1);
    width:  125vw;
    height: 125vw;
    max-width: 2200px;
    max-height: 2200px;
    border: solid;
    border-color: yellowgreen;/*mainColor*/
    border-width: 40vw;
    box-sizing: border-box;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: inset 0px 2px 20px #bbbbbb;
    
    transition: all 1s;
    -webkit-transition: all 1s;
    
    opacity: 1;
            animation-duration: 2s;
    -webkit-animation-duration: 2s;
            animation-name: startDivAnim;
    -webkit-animation-name: startDivAnim;
            animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    
    
    
}
.startDiv.show{
    transform: translateX(-50%) scale(1);

}
.startDiv.hide{
    transform: translateX(-50%) scale(0);

}
@-webkit-keyframes startDivAnim {
    0% {top:2%; opacity: 0}
    
        
}
@keyframes startDivAnim {
    0% {top:2%; opacity: 0}
    
}

.startText{
    
    color: white !important;
    width: 60%;
    max-width: 600px;
    margin: 1% auto 15% auto;
    text-align: center;
    
}
.bigStartLetter{
    position: relative;
    font-family: 'Jura', sans-serif;
    letter-spacing: 4;
    margin-top: 40%;
    width: 100%;
    text-align: center;
    color:green;
    color: yellowgreen;
    font-size: 4vw;
    font-weight: normal;
    line-height: 1;
    margin-bottom:0%;

    
}

.startButton{
    margin-top:2%;
    transform: scale(1.5);
}
/*Moebelpage______________________*/
/*Moebelpage______________________*/
.moebelBackground{
    position: absolute;
    z-index: 1;
    -webkit-filter: blur(0px); /* Safari 6.0 - 9.0 */
    filter: blur(0px);
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-transition: all 2s; /* Safari */
            transition: all 2s;
}
.moebelBackground.hide{
    
    opacity: 0;
}
.moebelContent {
    position: relative;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(0,0,0,0.7);
    overflow: hidden;
}
.moebelImage{

    margin: 1%;
    width: 30vw;
    max-height: 100%;
    max-width: 400px;
    box-sizing: border-box;
    
}
.moebelImageContainer{
    position: relative;
    margin-top: 1%;
    width: 100vw;
    height: 30%;
    box-sizing: border-box;
    text-align: center;
    color: white;
    position: relative;
    
}
.moebelImages{
    width: 100%;
    margin: auto;
    top: 0;
    position: absolute;
    opacity: 1;
    left: 0;
             animation-duration: 2s;
    -webkit-animation-duration: 2s;
            animation-fill-mode:forwards;
    -webkit-animation-fill-mode:forwards;
}
.moebelImages.show{
    
    opacity: 0;
    z-index: 2;
            animation-name: moebelImagesShow;
    -webkit-animation-name: moebelImagesShow;
    
}
@-webkit-keyframes moebelImagesShow {
    
    0%{opacity: 1; left: -100%}
    
    100% {opacity: 1; left: 0%}
    
        
}
@keyframes moebelImagesShow {
    0%{opacity: 1; left: -100%}
    
    100% {opacity: 1; left: 0%}
    
}
.moebelImages.hide{
    
    z-index: 1;
            animation-name: moebelImagesHide;
    -webkit-animation-name: moebelImagesHide;
}
@-webkit-keyframes moebelImagesHide {
    0% {opacity: 1; left: 0%}
    
    100% {left:100%;}
    
        
}
@keyframes moebelImagesHide {
     0% {opacity: 1; left: 0%}
    
    100% {left:100%;}
    
}
.moebelIcon{
    
    display: inline-block;
    max-width: 150px;
    max-height: 150px;
    
    border-radius: 50%;
    width: 11vw;
    height: 11vw;
    margin: 2%;
    opacity: 0.6;
    background-position: center;
    background-size:cover !important;
    background-repeat: no-repeat;
    -webkit-transition: all 1s; /* Safari */
            transition: all 1s;

}
.moebelIcon:hover{
    opacity: 1;
    transform: scale(1.1);
}
.moebelIcon.selected{
    
    opacity: 1 !important;
    transform: scale(1.3);
    
    
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    
    
}
.moebeIconContainer{

    width: 100%;
    text-align: center;
    color: white;
    position: relative;
    top:10%;
    height: 25%;
    
}
.moebelText{
    
    
    
    color: white;
    width: 70%;
    max-width: 900px;
    left: 0;
    right: 0;
    margin:  auto auto auto;
    text-align: center;
    
    
    
}
.moebelTextContainer{
    
    box-sizing: border-box;
    padding-top: 3%;
    margin-top: 2%;
    width:100%;
    height: 30%;
    max-height: 200px;
    text-align: center;
    
}
.moebelTextHide{
    
    display: none;
    opacity: 0;
             animation-duration: 2s;
    -webkit-animation-duration: 2s;
            animation-name: moebelTextHideAnim;
    -webkit-animation-name: moebelTextHideAnim;
            animation-fill-mode:forwards;
    -webkit-animation-fill-mode:forwards;
}
@keyframes moebelTextHideAnim{
    
    0% {opacity: 0;}
    99%{display: block;}
}
.moebelTextShow{
    
    display: block;
    opacity: 1;
             animation-duration: 2s;
    -webkit-animation-duration: 2s;
            animation-name: moebelTextShowAnim;
    -webkit-animation-name: moebelTextShowAnim;
}
@keyframes moebelTextShowAnim{
    
    0% {display: none; opacity: 0;}
    
    99%{display: none;}
}



.backkgroundImage{
    width:100%;
    height:100%;
    background-position: center;
    position:fixed; 
    background-size: cover;
    overflow: hidden;
    transform: scale(1.1);
    transform: scale(1.1);
    
            animation-duration: 100s;
    -webkit-animation-duration: 100s;
            animation-name: backkgroundImageAnim;
    -webkit-animation-name: backkgroundImageAnim;
    -webkit-transition: opacity 2s; /* Safari */
            transition: opacity 2s;
    
}

@-webkit-keyframes backkgroundImageAnim {
    0% { transform: scale(3);}
    2% { transform: scale(1);}
        
}
@keyframes backkgroundImageAnim {
    0% { transform: scale(3);}
    2% { transform: scale(1);}
}



.image{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    
}

.header{
    
    width: 100%;
    height: 80px;
    background: red; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(rgb(45,205,255), rgb(65,170,255)); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(rgb(45,205,255), rgb(65,170,255)); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(rgb(45,205,255), rgb(65,170,255)); /* For Firefox 3.6 to 15 */
    background: linear-gradient(rgb(45,205,255), rgb(65,170,255));
}




.slideShow{

    
    margin-left: auto;
    margin-right: auto;
    width: 96%;
    height: 85%;
    position: relative;
            animation-duration:6s;
    -webkit-animation-duration:6s;
            animation-name: slideShowObjAnim;
    -webkit-animation-name: slideShowObjAnim;
    animation-iteration-count:infinite;
    
}
.slideShowObj{
    
    width:23%;
    height: 90%;
    max-height: 30vw;
    background-color: gray;
    margin: 1%;
    float: left;
    border-style: solid;
    border-width: 1.5px;
    border-color: deepskyblue;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-shadow: 0px 2px 6px #bbbbbb;
    
    
}
@-webkit-keyframes slideShowObjAnim {
    
    
    0% {left: -100%;}

    
    15% {left: 0%;}
    80% {left: 0%;}
    
    100%{left: 100%;}
        
}
@keyframes slideShowObjAnim {
    0% {left: -100%;}

    
    15% {left: 0%;}
    80% {left: 0%;}
    
    100%{left: 100%;}
}

.scrollArrow{
    
    opacity: 0.2;
    -webkit-transition: opacity 0.75s; /* Safari */
    transition: opacity 0.75s;
}
.scrollArrow:hover{
    
    opacity: 0.4;
}
.scrollArrow:active{
    
    opacity: 0;
    
}

.page{
    
    width:100%;
   
    
    
    
}
.pageHead{
    
    
    width: 100vw;
    height: 15vh;
    text-align: center;
    font-size:250%;
    font-weight: bold;
    line-height: 15vh;
    color:deepskyblue;
    
}
.pageHeadline{
    color: deepskyblue !important;
}

.descriptionDiv{
    
    width:70vw;
    height:20vw;
    margin-bottom: 10%;

    
}

.fadingOverFlow{
    
    
    
}

.logoOverlayText{

    color: white !important;
    min-width: 400px;    
    opacity: 0;
    transform:scale(0.5);
    margin: auto;
    left: 0;
    right: 0;
    margin-top: 20%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
	z-index:2;
    position: absolute;


    
    
    			animation-duration: 2s;
    -webkit-animation-duration: 2s;
			animation-name: logoOverlayTextFadeIn;
    -webkit-animation-name: logoOverlayTextFadeIn;
				animation-delay: 1.5s;
	-webkit-animation-delay: 1.5s;   
	-webkit-animation-fill-mode: forwards; /* Chrome, Safari, Opera */
            animation-fill-mode: forwards;        
    
}
@-webkit-keyframes logoOverlayTextFadeIn {
    
    0% {opacity: 0;}    
    100% {opacity: 1; transform:scale(1);}    
}
@keyframes logoOverlayTextFadeIn {
    0% {opacity: 0;}  
	100% {opacity: 1; transform:scale(1);}
}


/*Page Styles*/

.pageContent{
    text-align:center;
    min-height:100%;
    
    position: relative;
    background-size: cover;
    background-position: center;
    padding-bottom: 5%;
    overflow: hidden;
}

.pageImg{
    
    
    
    
    
    width:40%;
    min-width: 450px;
    max-width: 90vw;
    display: inline-block;
    
    
    opacity: 1;
   
    /*
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;        
            animation-duration: 2s;
    -webkit-animation-duration: 2s;
            animation-name: pageImgFadeIn;
    -webkit-animation-name: pageImgFadeIn;
    */
    
}
.pageImgDiv{
    
    
    background-position: center;
    background-size: cover;
    position: relative;
    left:-100px;
    width:40vw;
    min-width: 450px;
    max-width: 600px;
    
    height: 30vw;
    min-height: 300px;
    max-height: 400px;
    display: inline-block;
    vertical-align: middle;
    
    opacity: 0;
   
    
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;        
            animation-duration: 2s;
    -webkit-animation-duration: 2s;
            animation-name: pageImgFadeIn;
    -webkit-animation-name: pageImgFadeIn;
    
    
}
@-webkit-keyframes pageImgFadeIn {
    
    100% {opacity: 1; transform:scale(1);top:0px;left:0px;}    
}
@keyframes pageImgFadeIn {
	100% {opacity: 1; transform:scale(1);top:0px;left:0px;}
}

.pageText{
    
    
    
    width:40vw;
    min-width: 400px;
    max-width: 100%;
    
   
    
    
    margin-right: auto;
    margin-left: auto;
    
    
    
    
    display: inline-block;
    vertical-align: middle;
    opacity: 0;
    
    
    
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;     
            animation-duration: 3s;
    -webkit-animation-duration: 3s;
            animation-delay: 1s;
    -webkit-animation-delay: 1s;
            animation-name: logoOverlayTextFadeIn;
    -webkit-animation-name: logoOverlayTextFadeIn;

}
@-webkit-keyframes pageDarkOverlayFadeIn {
    
    0% {opacity: 0;}    
}
@keyframes pageDarkOverlayFadeIn {
	0% {opacity: 0;}
}

.pageBlock{
    
    margin-top: 50vh;
    transform: translateY(-50%);
    padding-top: 5%;
}    

@-webkit-keyframes moebelAnim {
    
    0% {opacity: 0; top: 10%;}
    100% {opacity: 1;  top: 0%;} 
}
@keyframes moebelAnim {
	0% {opacity: 0;  top: 10%;}
    100% {opacity: 1; top: 0%;} 
}

.onlyMobile{
        display: none;
    }

/*Impressum Styles*/
.footPrint{
    padding: 3%;
    margin-top:5%;
    background-color: white;
    width: 80%;
    max-width: 1000px;
    margin: auto;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 1px 1px 5px #000000;
    
}
.footContent{    
    text-align:center;
}
.footText{
    
    text-align:center;
    max-width:800px;
    width:60%;
    margin:auto;
    margin-bottom:5%;
    
}

.impressumContainer{
    margin-top: 20px;
    border-color: grey;
    border-width: 2px 0px 0px 0px;
    border-style: solid;
    padding-top: 10px;
    
}
.impressumContainer > a{
    
    margin-left: 10px;
    margin-right: 10px;
    
}

.logoContainer{
    
    width: 80%;
    max-width: 1200px;
    margin: auto;
}
.logo{
    
    display: inline-block;
    position: relative;
    top:0;
    padding: 1.3vw;
    margin: 0.3vw;
    border-radius: 50%;
    width: 11vw;
    height: 10vw;
    max-width: 200px;
    max-height: 20000px;
    background-color: white;
    
    
}

.logoImage{
    
    
   
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width:95%;
    height: 95%;
    background-size: contain;
    margin: auto;
    
    
}
.logoText{
    
    width: 80%;
    max-width: 900px;
    margin: 0% auto 5% auto;
    ;
}






