:root{

    --main-color: #ee1600;
    --page-color: #fcfcfc;
}

body{
    background-color: #ffffff;
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Poiret One', cursive;
    overflow-x: hidden;
    
}
html{
    overflow-x: hidden;
    
}


/*aboutPage______________________________________*/
.aboutpage{
    position: relative;
    overflow: hidden;
    opacity: 0;
    
    margin-top: 5%;
    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:17vw;
    height: 17vw;
    max-width: 350px;
    max-height: 350px;
    background-color: green;
    margin: 0.25%;
    display: inline-block;
    overflow: hidden;
    
}
.aboutImageText{
    
    cursor: pointer;
    position: absolute;
    background-color: #444444;
    padding: 60%;
    height: auto;
    width: 50%;
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
            transition: all 1s; 
    -webkit-transition: all 1s; 
    color: white;
    font-size: 120%;
    
    
}
.aboutImageText:hover{
    
    opacity: 1;
    
}

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



.contentBox{
    background-color: white;
    
}

.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;
    
}
a:hover{
    color: skyblue;
}

button{
    background-color: red;
    background-color: #ee1600;
    display: inline-block;
    border: none;
    color: white;
    padding: 10px 17px 10px 17px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transform: scale(1.2);
     -webkit-transition: all 0.5s !important; /* Safari */
    transition: all 0.5s !important;
    font-family: 'Poiret One', cursive;
    margin: auto;
}
button:hover{
    
    background-color: darkred;

    
    
}

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

h1{

    font-size: 250%;
    color: #444444;
    position: relative;
   
}
h2{
    
    font-size:150%;
    font-weight:bold;
    letter-spacing: 10;
    font-variant:inherit;
    margin:0px;
    margin-bottom: 2%;
    width: 100%;
    padding: 0;
    color: #ee1600;
}
h3{
    color: #ee1600 !important;
    margin:0px;
    margin-bottom: 0%;
    width: 100%;
    padding: 0;
    font-weight: 400;
}

.text{
        
    color: black;
    
	font-size: 105%;
    line-height: 135%;
    letter-spacing: 1.5;

}

.shadow{
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-shadow: 3px 3px 17px rgba(0, 0, 0, 0.5);
    transform: scale(1);
    /*        animation-duration: 5s;
    -webkit-animation-duration: 2s;
            animation-name: shadowFadeIn;
    -webkit-animation-name: shadowFadeIn;
            animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
            animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    */
}
@-webkit-keyframes shadowFadeIn {
    
    100% {transform: scale(1); box-shadow: 3px 3px 13px rgba(0, 0, 0, .5);}
    
        
}
@keyframes shadowFadeIn {
    100% {transform: scale(1); box-shadow: 3px 3px 13px rgba(0, 0, 0, .5);}
    
}

/*Startpage_______________________*/
.startDiv{
    
    
    width: 20vw;
    height:20vw;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    opacity: 1;
    background-size: 120%;
    background-position: center;
    transition: all 2s;
    -webkit-transition: all 1s;
    box-shadow: inset 0px 0px 7px rgba(0,0,0,0.5);
    
    
}
.startDiv:hover{
    cursor: pointer;
    transform: translate(-50%,-50%) rotateX(180deg);


}
.startDiv:hover .startDivBackSite{
    
    opacity: 1;
    
}
.startDivImage{
    
    position: absolute;
    
    height: 100%;
    width: 100%;
    opacity: 1;
    
}
.startDivBackSite{
    position: absolute;
    z-index: 2;
    opacity: 0;
    height: 100%;
    width: 100%;
    transform: rotateX(180deg);
    background-color: white;
    transition: all 0s 0.3s;
    -webkit-transition: all 0s 0.3s;
    text-align: center;
    line-height: 20vw;
    font-size: 2vw;
    
}

.startPage{
    background-color: white;
    background-size: cover;
    background-position: center;
    position: relative;
}


.bigStartLetter{
   
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    line-height: 1.3;
    letter-spacing: 2;
    font-size: 4vw;
    padding: 1%;
    
   
}
.startButton{
    position: absolute;
    left: 30%; 
    bottom: 25%;
    font-size: 1.5vw;
    padding: 1% 2% 1% 2%; 
    transform: translateX(-50%);
    
    
 
    
}


.introImage{
    position: relative;
    transform: translateY(130%);
    overflow: hidden !important;
    margin-top: 8% !important;
    width: 22%;
    height: 0;
    padding-bottom: 25%;
    display: inline-block;
    margin: 3%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0;
            animation-name: introImageFadeIn;
    -webkit-animation-name: introImageFadeIn;
            animation-duration: 2s;
    -webkit-animation-duration: 2s;
            animation-fill-mode:forwards;
    -webkit-animation-fill-mode:forwards;
            animation-delay:2.4 !important;
    -webkit-animation-delay:2.4!important;
            animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
}

@keyframes introImageFadeIn{
    
    100% {transform: translateY(0%);opacity: 1;}
    
}
@-webkit-keyframes introImageFadeIn{
    
   100% {transform: translateY(0%);opacity: 1;}
    
}

.introImage.intro1{
 transform: translateY(120%);
}
.introImage.intro2{
 transform: translateY(160%);
}
.introImage.intro3{
  transform: translateY(200%);
}


.introHeadline{
    position: relative;
    top: 25%;
    
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    color: white;
    font-size: 250%;
}
.introText{
    position: relative;
    top: 72.5%;
    
    transform: translateY(-50%);
    width: 90%;
    margin: auto;
    text-align: justify;
    color: white;
    font-size: 120%;
    line-height: 103%;
}


.introImageContent{
    position: absolute;
    height: 200%;
    width: 100%;
    top: 0%;
    -webkit-transition: all 0.5s; /* Safari */
            transition: all 0.5s;
}
.introImageContent:hover{
    
    top: -100%;
    background-color: rgba(0,0,0,0.6);
}

/*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;
}
.moebelPage{
    position: relative;

    margin-bottom: 0 !important;
    text-align: center;
}
.moebelBackground.hide{
    
    opacity: 0;
}
.moebelContent{
    position: relative;
    width: 95%;
    max-width: 1000px;
    height: auto;
    margin: auto;
    margin-top: 5%;
    
}
.moebelObject{
    
    position: relative;
    width: 100%;
    height: 45%;

    margin-top: 10%;
    padding: 0% 0% 0% 0%;
    box-sizing: border-box;
    opacity: 0;

            animation:  moebelObjectIntro 2s ease 0.5s forwards;
    -webkit-animation:  moebelObjectIntro 2s ease 0.5s  forwards;
}
@-webkit-keyframes moebelObjectIntro {
    100%{margin-top: 5%; opacity: 1}
}
@keyframes moebelObjectIntro {
    100%{margin-top: 5%; opacity: 1}
}
.moebelContainer{
    background-color: rgba(0,0,0,0.8);
    position: relative;
    float: left;
    height: 100%;
    width: 32%;

    text-align: center;
    
}
.moebelImage{
    position: relative;
    top: 0;
    width: 50%;
    height: 100%;
    
    margin: 0%;
    margin: 0;
    opacity:1;
    
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    box-sizing: border-box;
    float: left;
    
}
.moebelText{
   
    position: relative;
    padding: 0 0% 0% 0%;
    box-sizing: border-box;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    
    float: left;
}


.backkgroundImage{
    width:100%;
    height:100%;
    background-position: center;
    position:fixed; 
    background-size: cover;
    overflow: hidden;
    display: inline-block;
    
            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(1.1);}
    2% { transform: scale(1);}
        
}
@keyframes backkgroundImageAnim {
    0% { transform: scale(1.1);}
    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));
}

.page{
    overflow: hidden;
    position: relative;
    width:100%;

    margin-bottom: 0;
    box-sizing: border-box;
    
}
.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{
    
    
    
}



/*Page Styles*/

.pageContent{
    text-align:center;
    min-height:0%;
    padding-top: 3%;
    position: relative;
    background-size: cover;
    background-position: center;
    
    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;}
}
   

@-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{

    position: relative;
    bottom: 0;
    margin-top: 5% !important;
    width: 100%;
    height: 40%;
    background-color: white;
    
    
}
.footContent{    
    text-align:center;
    position: relative;
}
.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: 1300px;
    margin: auto;
}

.footerPage{
    
    height: auto;
    
}
/*Impressum Styles*/
.footPrint{
    padding: 3%;
    margin-top:0%;   
    
    margin: auto;
    box-sizing: border-box;
    text-align: center;

    
}
.footContent{    
    text-align:center;
}
.footText{
    
    text-align:center;
    
    width:100%;
    margin:auto;
   
    
}

.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;
    
}
