/***
	generelle Einstellungen
***/

* {
    padding: 0;
    margin: 0;
}

/***
    Fonts
***/
@charset "UTF-8";

@font-face {
    font-family: OpenSansCondensed-Light;
    local: OpenSansCondensed-Light;
    src:url("../fonts/OpenSansCondensed-Light.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: Roboto-Medium;
    local: Roboto-Medium;
    src:url("../fonts/Roboto-Medium.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: Roboto-Light;
    local: Roboto-Light;
    src:url("../fonts/Roboto-Light.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: Roboto-Thin;
    local: Roboto-Thin;
    src:url("../fonts/Roboto-Thin.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: Lato-Regular;
    local: Lato-Regular;
    src:url("../fonts/Lato-Regular.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: Lato-Light;
    local: Lato-Light;
    src:url("../fonts/Lato-Light.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: Lato-Hairline;
    local: Lato-Hairline;
    src:url("../fonts/Lato-Hairline.ttf");
    font-weight: normal;
    font-style: normal;
}

/***
    Background-bilder
***/
.bg_1 {
    background-image: url(../bilder/ball_haende.jpeg?v3);
    background-attachment: fixed; 
}

.bg_2 {
    background-image: url(../bilder/krankengymnastik_kind.jpeg?v3);
    background-attachment: fixed; 
}

.bg_3 {
    background-image: url(../bilder/manuelleTherapie.jpeg?v3);
    background-attachment: fixed;
}

.bg_4 {
    background-image: url(../bilder/massage.jpeg?v3);
    background-attachment: fixed; 
}

.bg_5 {
    background-image: url(../bilder/tape.jpeg?v3);
    background-attachment: fixed; 
    
}
.bg_6 {
    background-image: url(../bilder/kleinkind.jpeg?v3);
    background-attachment: fixed;  
}
.bg_7 {
    background-image: url(../bilder/junge.jpeg?v3);
    background-attachment: fixed;  
}
.bg_8 {
    background-image: url(../bilder/gymnastikraum.jpeg?v3);
    background-attachment: fixed;
}
.bg_9 {
    background-image: url(../bilder/cmd02.jpg?v3);
    background-attachment: fixed;  
}
.bg_10 {
    background-image: url(../bilder/manuelleLymphdrainage.jpg?v3);
    background-attachment: fixed;  
}


/***
    Body und "Body"-weit
***/

html, body {
    font-size: 12pt;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
}

ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}

a, 
a:link,
a:hover,
a:active {
    text-decoration: none;
}

h1 {
	font-family: Lato-Hairline; /* Lato-Hairline OpenSansCondensed-Light , Roboto-light , Roboto-Thin */
    color: #fff;
	font-size: 2.3rem;
    text-align: center;
	margin: 0;
    padding: 0;
    text-transform: uppercase;
    transition: all 200ms ease-out;
}

h2 {
	font-family: Lato-Light; /* Lato-Hairline OpenSansCondensed-Light , Roboto-light , Roboto-Thin */
    color: rgba(36, 82, 112, 1);
	font-size: 1.8rem;
    text-align: center;
	margin: 0;
    padding: 0;
    text-transform: uppercase;
    transition: all 200ms ease-out;
}

h3 {
	font-family: Lato-Hairline; /* Lato-Hairline OpenSansCondensed-Light , Roboto-light , Roboto-Thin */
    color: #fff;
	font-size: 1.0rem;
    text-align: center;
    letter-spacing: 0.1rem;
	margin: 0;
    padding: 0;
    text-transform: uppercase;
    transition: all 200ms ease-out;
}

.moveleft {
    transition: all 400ms 300ms;
    /*transform: translateX(-300px);*/
    opacity: 0;
}

.left {
    transform: translate(0vw,-30vh) !important;
    opacity: 1;
}

.moveright {
    transition: all 400ms 300ms;
    /*transform: translateX(-300px);*/
    opacity: 1;
}

.right {
    transform: translate(0,0) !important;
    opacity: 0;
}

.fadein {
    transition: all 1000ms 300ms;
    opacity: 0;
}

.fade {
    opacity: 1;
}

.displayFlexOn {
    display: flex;
}

.displayOff {
    display: none;
}

.ausblenden {
    opacity: 0;
}

.einblenden {
    opacity: 1;
    width: 100%;
}

.themenueberschrift {
    z-index: 2;
}

/***
	Head
***/
header {
    position: fixed;
    width: 100%;
    height: 3.0rem;
    z-index: 4;
}

header .description {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100% ;
    height: 100%;
    color: rgba(255,255,255,1);
    cursor: default;
    background-color: rgba(16,62,93,1);
}

header .description h3 {
    padding: 0 40px;
    font-family: Roboto-Light; /* Roboto-Light Roboto-Thin Lato-Light */
    font-size: 2.0rem;
    line-height: 1.2;
    font-weight: 100;
    color: rgba(255,255,255,1);
}

header .description h3 span {
    color: rgba(0,200,55,1);
    text-transform: none;
}

/***
	Head Menübutton
***/
.menuebttn {
	display: flex;
    position: fixed;
	flex-direction: column;
	justify-content: center;
	height: 3.0em;
	width: 1.80em;
	margin-left: 0px;
	padding: 0 10px;
	cursor:pointer;
	z-index: 4;
	transition: all 500ms;
	background-color: rgba( 100, 100, 100, 0.8 );
}

.menuebttn span {
	position: absolute;
	height: 3px;
	width: 1.80em;
	background-color: #fff; 
    z-index: 3;
}

.menuebttn span:before,
.menuebttn span:after {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background-color: #fff; 
	content:'';
}

.menuebttn span:before {
	top: -6px;
}

.menuebttn span:after {
	bottom: -6px;
}

.menuebttn-X span {
	transition: background 0.2s 0.3s;
}

.menuebttn-X.is-active span {
	background: none;
}

.menuebttn-X {
	transition: transform 500ms;
}

.menuebttn-X.is-active {
	transform: translate(16em);
}

.menuebttn-X span:before,
.menuebttn-X span:after {
	transition-duration: 0.3s, 0.3s;
	transition-delay: 0.3s, 0s;
}

.menuebttn-X span:before {
	transition-property: top,transform;	
}

.menuebttn-X span:after {
	transition-property: bottom, transform;
}

.menuebttn-X.is-active span:before {
	top: 0;
	transform: rotate(45deg);
}

.menuebttn-X.is-active span:after {
	bottom: 0;
	transform: rotate(-45deg);
}

.menuebttn-X.is-active span:before,
.menuebttn-X.is-active span:after {
	transition-delay: 0.3s, 0.3s;
}

/***
	Head Menübutton ENDE
***/

/**
    Einblendmenue RECHTS
**/
.menue_right {
    display:flex;
    position: fixed;
    right: 0;
    top: 3.0rem;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 3.0rem;
    height: calc( 100% - 6.0rem );
    z-index: 3;
}

.menue_right .iconDiv {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    background-color: rgba(16,62,93,1);
    color: rgba(255,255,255,1.0);
    cursor: pointer;
    font-family: Lato-Light; /* Roboto-Regular */
    font-size: 1.2rem;
    width: 15.0rem;
    height: 3.0rem;
    z-index: 99;
    margin: 5px 0;
    transition: all 500ms;
}

.menue_right .iconDiv a {
    font-family: Lato-Light; /* Roboto-Regular */
    color: rgba(255,255,255,1.0);
    font-size: 1.1rem;
    text-decoration: none;
}

.menue_right .iconDiv icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: rgba(16,62,93,1);
    color: rgba(255,255,255,1.0);
    cursor: pointer;
    font-family: Lato-Light; /* Roboto-Regular */
    font-size: 2.4rem;
    width: 3.0rem;
    height: 3.0rem;
    border-radius: 1.5rem;
}

.menue_right .iconDiv icon.telefonZeichen {
    transform: translate( -1.5rem, -0rem );
}

.menue_right .iconDiv icon.telefonZeichen span {
    transform: translateY( -0.2rem );
}

.menue_right .iconDiv icon.hausZeichen {
    /*transform: translate(-1.5rem,-0.3rem);*/
}

.menue_right .iconDiv icon.emailZeichen {
    transform: translate(-1.5rem,-0rem);
}

.menue_right .iconDiv icon.emailZeichen span {
    transform: translateY( -0.2rem );
}

section.telefonnummer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    top: 3rem;
    right: 0px;
    height: 3.0rem;
    width: 20.0rem;
    background-color: rgba(16,62,93,0.85);
    z-index: 2;
    opacity: 1;
    transition: all 500ms;
}

section.telefonnummer a {
    color: rgba(255,255,255,1);
    font-family: Roboto-Light; /* Lato-Light */
    font-size: 1.2rem;
}

section.email {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    top: 3rem;
    right: 0px;
    height: 3.0rem;
    width: 20.0rem;
    background-color: rgba(16,62,93,0.85);
    z-index: 2;
    opacity: 1;
    transition: all 500ms;
}

section.email a {
    color: rgba(255,255,255,1);
    font-family: Roboto-Light; /* Lato-Light */
    font-size: 1.2rem;
}

section.adresse {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    top: 3rem;
    right: 0px;
    height: 3.0rem;
    width: 100%;
    background-color: rgba(16,62,93,0.85);
    z-index: 2;
    opacity: 1.0;
    transition: all 500ms;
}

section.adresse span {
    color: rgba(255,255,255,1);
    font-family: Roboto-Light; /* Lato-Light */
    font-size: 1.0rem;
}           
/**
    Einblendmenue RECHTS ENDE
**/

/***
	Seitenmenue
***/
section.seitenmenue { 
    display: flex;
	position: fixed;
    top: 0px;
	flex-direction: row;
    justify-content: center;
    align-content: center;
    width: 16em;
	background-color: rgba( 100, 100, 100, 0.8 );
	border-bottom: 1px solid #444;
    border-right: 1px solid #444;
    z-index: 4;
    transition: all 500ms;
    border-radius: 0px 0px 8px 0px !important;
}

.menue_off {
    left: -16.1em;
}

.menue_on {
    left: 0em;
}

.menue_right_off {
    transform: translateX(13.5rem);
}

.menue_right_on {
    transform: translateX(0);
}

section.seitenmenue nav {
    display: flex;
	flex-direction: row;
    justify-content: center;
    align-items: stretch;
    width:100%;
    z-Index: 99;
    margin: 1.00em 0.00em 1.00em 0.00em;
}

section.seitenmenue nav ul {
    display: flex;
	flex-direction: column;
    justify-content: flex-start;
    width: 100%;
	padding: 0;
    margin: 0;
}

section.seitenmenue nav ul li {
    padding: 0.8em 1.6em;
    transition: background ease-in-out 700ms;
}

section.seitenmenue nav ul li:hover {
    background-color: #666;
    transition: background 300ms;
}

section.seitenmenue nav ul li a,
section.seitenmenue nav ul li a:link,
section.seitenmenue nav ul li a:hover,
section.seitenmenue nav ul li a:active {
    font-family: Lato-Light;
    font-size: 1.0rem;
    font-weight: 100;
    color: rgba(255,255,255,1);
}
/***
	Seitenmenue ENDE
***/

/***
	body
***/
.vorschaureiter {
    display: none;
}

.scrolltop {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 1.0rem;
    right: 0.2rem;
    width: 3.0rem;
    height: 3.0rem;
    border-radius: 3.0rem;
    background-color: rgba(16,62,93,1);
    cursor: pointer;
    transition: all 1000ms 300ms;
    z-index: 3;
}

.scrolltop a, 
.scrolltop a:link,
.scrolltop a:hover,
.scrolltop a:active {
    color: #fff;
    text-decoration: none;
    font-family: Lato-Light;
    font-size: 1.8rem;
    line-height: 1;
}

main {
    width: 100%;
    height: 100%;
}

.page {
    width: calc( 100% - 2px );
    height: 100vh;
}

main section .background {
    background-position: center ;
	background-size: cover;
    background-repeat: no-repeat;
    opacity: 1.0;
    transition: background 500ms ease-in-out;
    overflow: hidden;
}

/* Level 1 */
.level1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #000;
    min-height: 100%;
}

.background {
    background-blend-mode: overlay;
    background-color: #555;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.level1 h1 {
    padding: 4.0rem 1.0rem 4.0rem 1.0rem;
}

.level1 .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(14rem,1fr));
    grid-gap: 1rem;
    transition: all 400ms;
	opacity: 1.0;
    width: 90vw;
    padding-bottom: 3.0rem;
}

.level1 .container .thumbnails {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 10rem;
    background-color: rgba(240,240,240,.8);
    overflow: hidden;
    cursor: pointer;
    transition: transform 400ms;
}

.level1 .container .thumbnails:hover {
    transform: translate( -4px, -10px);
}

.level1 .container .thumbnails .label {
    position: absolute;
    font-family: Roboto-Light; /* Lato-Light */
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
    font-weight: 200;
    color: rgba(55,55,55,1);
    background-color: rgba(250,250,250,0.6);
    padding: 10px 20px;
}

.level1 .container .thumbnails div {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.level1 .container .thumbnails .image_1 {
    background-image: url(../bilder/junge.jpeg);
}

.level1 .container .thumbnails .image_2 {
    background-image: url(../bilder/krankengymnastik_kind.jpeg);
}

.level1 .container .thumbnails .image_3 {
    background-image: url(../bilder/mann_wirbelsaeule.jpeg);
}

.level1 .container .thumbnails .image_4 {
    background-image: url(../bilder/manuelleLymphdrainage.jpeg);
}

.level1 .container .thumbnails .image_5 {
    background-image: url(../bilder/cmd01.jpg);
}

.level1 .container .thumbnails .image_6 {
    background-image: url(../bilder/tape.jpeg);
}



.level1 .vorschaureiter {
    display: none;
    flex-direction: row;
    justify-content: center;
    position: absolute;
    z-index: 2;
    font-family: Roboto-Thin; /* Lato-Light */
    font-size: 1.2rem;
    line-height: 2;
    font-weight: 100;
    color: rgba(255,255,255,1);
    height: 1.0rem;
    width: 100%;
    text-align: center;
    background-color: rgba(16,62,93,1); 
}

.level1 .vorschaureiter span {
    display: none;
}

/* Level2 */
.level2 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow-x: hidden;
}

.level2 .container {
    width: 100%;
    overflow-x: hidden;
}

.level2 img {
    width: 100%;
    max-width: 700px;
    height: auto;
}

.level2 .themenueberschrift {
   padding: 6.0rem 0rem 3.0rem 0rem;
}

.level2 .description {
    padding-bottom: 4.0rem;
}

.level2 .description {
    font-family: Roboto-Light; /* Roboto-Thin Lato-Light */
    font-size: 1.2rem;
    line-height: 1.75;
    font-weight: 100;
    color: rgba(110,110,110,1);
    padding: 20px;
    background-color: rgba(240,240,240,0.8);
    width: 80%;
    transform: translateY(-10px);
}

.level2 .background {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background-blend-mode: overlay;
    background-color: rgba(140,140,140,.8);
}

.praxisPage {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    background-blend-mode: overlay;
    background-color: rgba(140,140,140,.8);
}

.praxisPage .description {
    z-index: 2;
    font-family: Roboto-Thin; /* Lato-Light */
    font-size: 1.2rem;
    line-height: 2;
    font-weight: 100;
    color: rgba(255,255,255,1);
    padding: 20px;
    background-color: rgba(16,62,93,1); 
    margin-top: 25rem;
}

/***
	Footer
***/
main footer {
    display: flex;
    bottom: 0.00em;
    flex-direction: column;
    align-content: space-between;
    justify-content: flex-end;
    width: 100%;
    min-height: 3rem;
    background-color: #777;
    z-index: 3;
}

main footer ul {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    padding: 10px;
    width: calc(100% - 20px);
    
}

main footer ul li {
    margin: 2px 10px;
}

main footer ul li span {
    font-family: Lato-Light;
    font-size: 1.0rem;
    font-weight: 100;
    color: rgba(210,210,210,1);
    cursor: pointer;
}

main footer .description {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    font-family: Roboto-Light; /* Roboto-Thin Lato-Light */
    font-size: 1.0rem;
    line-height: 1.2;
    font-weight: 100;
    color: rgba(255,255,255,1);
    cursor: default;
    padding: 10px;
}

 main footer .description a {
    color: rgba(255,255,255,1);
    font-family: Roboto-Light; /* Lato-Light */
    font-size: 1.0rem;
     font-weight: 100;
     text-decoration: none;
     text-transform: none;
}

main footer .description h3 {
    padding: 0 60px;
    font-family: Roboto-Light; /* Roboto-Thin Lato-Light */
    font-size: 1.0rem;
    line-height: 1.5;
    font-weight: 100;
    color: rgba(255,255,255,1);
    text-align: right;
}

main footer .description h3 span {
    text-transform: none;
}

/* iPads und iPhones */
@supports ( -webkit-touch-callout:inherit ) {
    h1 {
        font-family: Lato-Light;
    }
    .bg_1 {
        background-attachment: scroll !important;
        background-size: cover !important;
    }
    .bg_8 {
        background-attachment: scroll !important;
        background-size: auto;
        background-position: top;
        width: 100vw !important;
    } 
}

/***
	Dialoge
***/
.erklaerungen {
    position: fixed;
    z-index: 2;
    top: 3.0rem;
    left: 0.0rem;
    height: calc( 100% - 3.0rem );
    width: calc( 100vw + 5px);
    background-color: rgba(230,230,230,1);
    padding: 15px;
    overflow-x: hidden;
    overflow-y: scroll;
    transition: all 1000ms;
}

.erklaerungen .impressumClass {
    color: rgba(90,90,90,1);
    text-align: center;
    padding-right: 2.0rem;
}

.erklaerungen .impressumClass h1,
.erklaerungen .impressumClass h2,
.erklaerungen .impressumClass p,
.erklaerungen .impressumClass span,
.erklaerungen .impressumClass a {
    color: rgba(90,90,90,1);
    text-decoration: none;
    font-family: Lato-Regular;
    line-height: 1.2;
}

.erklaerungen .impressumClass h1 {
    font-size: 1.5rem;
    padding: 2rem 0rem;
}

.erklaerungen .impressumClass h2 {
    font-size: 1.2rem;
    padding: 1rem 0rem;
}

.erklaerungen .impressumClass span {
    font-size: 0.9rem;
    text-align: center;
} 

.erklaerungen .impressumClass p {
    font-size: 0.9rem;
    text-align: justify;
}

.erklaerungen .impressumClass a {
    font-size: 0.9rem;
}

.erklaerungen .datenschutzClass {
    color: rgba(90,90,90,1);
    text-align: center;
    padding-right: 2.0rem;
    max-width: calc(100% - 2.0rem);
}

.erklaerungen .datenschutzClass h1,
.erklaerungen .datenschutzClass h2,
.erklaerungen .datenschutzClass h3,
.erklaerungen .datenschutzClass p,
.erklaerungen .datenschutzClass span,
.erklaerungen .datenschutzClass a {
    color: rgba(90,90,90,1);
    text-decoration: none;
    font-family: Lato-Regular;
    line-height: 1.2;
}

.erklaerungen .datenschutzClass h1 {
    font-size: 1.5rem;
    padding: 2rem 0rem;
}

.erklaerungen .datenschutzClass h2 {
    font-size: 1.3rem;
    padding: 1rem 0rem;
}

.erklaerungen .datenschutzClass h3 {
    font-size: 1.1rem;
    padding: 1.0rem 0rem;
}

.erklaerungen .datenschutzClass p {
    font-size: 0.9rem;
    text-align: justify;
}

.erklaerungen .datenschutzClass span {
    font-size: 0.9rem;
    text-align: center;
}

.erklaerungen .datenschutzClass a {
    font-size: 0.9rem;
}

/***
	@media
***/
@media screen and ( min-width:1000px ) {
    header .description h3,
    header .description a {
    }
    
    level2 .description  {
    }
}

@media screen and ( max-width:650px ) {
    h1 {
        font-size: 1.6rem;
    }
    .level1 h1 {
        padding: 3.0rem 2.0rem 3.0rem 2.0rem;
    }
    .level2 .themenueberschrift {
        padding: 3.0rem 0rem 3.0rem 0rem;
    }
    .level2 .description  {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    h2 {
        font-size: 1.5rem;
    }
    
    .praxisPage .description {
        font-size: 1.0rem;
    }
}

@media screen and ( max-width:900px ) {
    .menue_right .iconDiv {
        display: flex;
    }
    header .description {
    }
}
