body, html{
	margin: 0;
	padding: 0;
    height: 100%;
}


a{
    display: inline-block;
}

#content-wrapper{
    min-height: 100vh;
    background-color: white;
}

#content-wrapper::after { 
    content: "";
    display: block; 
    clear: both;
  }

header{
    width: 100%;
    padding-top: 10px;
    background-color: white;
    height: 50px;
    /*box-shadow: 0px -1px 8px black;*/
}

main{
    margin-top: -10px;
}

#banner-wrapper{
    background-color: black;
    position: relative;
    width: 100%;
    height: 200px;
    margin-left: 0;
    overflow: hidden;
}

#banner-image{
    min-height: 200px;
    background-size: cover;
    min-width: 100%;
    height: auto;
    -webkit-transition: all 0.5s; /* Safari and Chrome */
    -moz-transition: all 0.5s; /* Firefox */
    -o-transition: all 0.5s; /* IE 9 */
    -ms-transition: all 0.5s; /* Opera */
    transition: all 0.5s;
}

.home-bg{
    background-image: url(images/motiv_01.jpg);
}

.behandlungen-bg{
    background-image: url(images/motiv_02.jpg);
}

.preise-bg{
    background-image: url(images/motiv_03.jpg);
}

.gutscheine-bg{
    background-image: url(images/motiv_04.jpg);
}

.praxis-bg{
    background-image: url(images/motiv_05.jpg);
}

.kontakt-bg{
    background-image: url(images/motiv_06.jpg);
}

.blurred{
    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(2px);
}

header, main{
    width: 100%;
}

#fixed-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    padding-top: 5px;
}

#logo{
    height: 50px;
}

nav{
    visibility: hidden;
    text-align: left;
    position: absolute;
    width: 100%;
    opacity: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-transition: all 0.1s; /* Safari and Chrome */
    -moz-transition: all 0.1s; /* Firefox */
    -o-transition: all 0.1s; /* IE 9 */
    -ms-transition: all 0.1s; /* Opera */
    transition: all 0.1s;
    z-index: 1;
}



.home-colored a:hover{
    color: #CC6206;
}
.home-colored a.active{
    color: #E7AC4D;
}

.behandlungen-colored a:hover{
    color: #EFE2ED;
}
.behandlungen-colored a.active{
    color: #E1CFDE;
}

.preise-colored a:hover{
    color: #743457;
}
.preise-colored a.active{
    color: #DC81CC;
}

.gutscheine-colored a:hover{
    color: #D7A40C;
}
.gutscheine-colored a.active{
    color: #514C27;
    text-shadow: 0px 0px 1px #B0A3A3;
}

.praxis-colored a:hover{
    color: #D0A6AF;

}
.praxis-colored a.active{
    color: #893D43;
    text-shadow: 0px 0px 1px #B0A3A3;
}

.kontakt-colored a:hover{
    color: #C49797;

}
.kontakt-colored a.active{
    color: #893D43;
    text-shadow: 0px 0px 1px #513535;
}


nav a{
    color: white;
}

.visible{
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 0.5s; /* Safari and Chrome */
    -moz-transition: all 0.5s; /* Firefox */
    -o-transition: all 0.5s; /* IE 9 */
    -ms-transition: all 0.5s; /* Opera */
    transition: all 0.5s;
}

nav a{
    text-decoration: none;
    width: 50%;
    font-size: 17px;
    padding: 9px 17px;
    font-family: RotisSemiSerif65;
    display: block;
    -webkit-transition: all 0.1s; /* Safari and Chrome */
    -moz-transition: all 0.1s; /* Firefox */
    -o-transition: all 0.1s; /* IE 9 */
    -ms-transition: all 0.1s; /* Opera */
    transition: all 0.1s;
    text-shadow: 0px 0px 3px black;
}

#menu-button {
    display: block;
    height: 50px;
    padding-right: 5px;
    position: relative;
    float: right;
    padding-left: 3.55em;
}

#menu-button:hover{
    cursor: pointer;
}

#menu-button:before {
    content: "";
    position: absolute;
    top: 11px;
    left: 15px;
    width: 30px;
    height: 5px;
    border-top: 15px double #70C250;
    border-bottom: 5px solid #163605;
}

section{
    width: 100%;
    height: 275px;
}

h1{
    font: normal normal normal 20px/30px Georgia, "Times New Roman", Times, serif;
    padding-left: 20px;
    color: #E562AA;
}

#text-container{
    display: inline-block;
    font-family: RotisSemiSerif65;
    font-size: 14px;
    padding: 0px 20px;
    padding-bottom: 20px;
}

p{
    margin: 0;
    color: #8888A5;
    font: normal normal normal 16px/20px Georgia, "Times New Roman", Times, serif;
}

#unterschrift{
	padding-top: 20px;
    width: 150px;
}

/*accordion*/

#accordion{
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

#accordion h2{
    margin: 2px 0px;
    font-size: 16px;
    font: normal normal normal 16px/20px Georgia, "Times New Roman", Times, serif;
    padding: 2px 0;
}
#accordion h2 a{
    text-decoration: none;
    color: #73C354;
}
#accordion h2 a:hover{
    color: #173706;
}
    
#accordion p{
    padding: 10px 0px;
    display: none;
    font-size: 16px;
    transition: 0.4s;
}

#additional-hawai-info{
    display: none;
}

#accordion li:target p{
    display: block;
}

#accordion li:target h2:hover a{
    color: #73C354;
}
#accordion li:target #additional-hawai-info{
    display: inline;
}


#preistabelle{
    margin-top: 25px;
    font: normal normal normal 16px/20px Georgia, "Times New Roman", Times, serif;
    color: #888;
}
#preistabelle tr td:nth-child(1){
    width: 75px;
}
#preistabelle tr td:nth-child(2){
    width: 35px;
}
#preistabelle tr td:nth-child(3){
    text-align: right;
}

#gutschein-preistabelle{
    margin-top: 25px;
    font: normal normal normal 16px/20px Georgia, "Times New Roman", Times, serif;
    color: #888;
}

#gutschein-preistabelle tr td:nth-child(1){
    color: #173706;
    width: 195px;
}
#gutschein-preistabelle tr td:nth-child(2){
    width: 64px;
}

#gutschein-bestellen{
    margin-top: 15px;
    color: #73C354;
    text-decoration: none;
    font: normal normal normal 16px/20px Georgia, "Times New Roman", Times, serif;
}
#gutschein-bestellen:hover{
    color: #173706;
}



.gallery-image{
    display: none;
    transition: 0.4s;
    cursor: pointer;
}

.active-image{
    display: block;
    transition: 0.4s;
}

#image-gallery-container{
    padding-left: 20px;
}
#praxisbilder-button{
    padding-left: 20px;
    text-decoration: none;
    color: #73C354;
    padding-bottom: 20px;
}

#weiterbildungs-link{
    text-decoration: none;
    color: #73C354;
}

#praxisbilder-button::after{
    content: url(images/pfeil_grau.gif);
}


#postal-address{
    padding-bottom: 20px;
}

.address-link{
    text-decoration: none;
    color: #73C354;
    padding-top: 3px;
    width: 100%;
}

#location-description{
    width: 100%;
    padding-bottom: 20px;
}

#lageplan{
    padding-top: 20px;
    width: 100%;
}


@media screen and (min-width: 750px) { /* tablet */
    
    body, html{
        min-height: 100%;
        height: auto;
    }

    main{
        height: 100vh;
        margin-top: -65px;
    }

    #content-wrapper{
        max-width: 950px;
        margin: 0 auto;
        border-right: none;
        border-left: none;
        box-sizing: border-box;
    }

    header, main{
        width: 100%;
    }

    header{
        position: initial;
        border-bottom: none;
        padding-top: 15px;
        margin-top: 0;
        clear: both;
        box-shadow: none;
    }

    #fixed-header{
        display: inline-block;
        position: initial;
        width: auto;
    }


    #banner-wrapper{
        width: 100%;
        height: 250px;
        margin-left: 0;
        margin-top: 0px;
        overflow: hidden;
    }

    #banner-image{
        width: auto;
        min-height: 250px;
        display: block;
        margin-top: 0;
    }

    .banner-image{
        width: auto;
        height: auto;
        display: block;
        background-image: url(images/motiv_01.jpg);
    }

    #logo{
        height: auto;
    }

    nav{
        display: inline-block;
        visibility: visible;
        opacity: 1;
        margin-top: 0;
        position: relative;
        text-align: right;
        float: right;
        padding-top: 32px;
        width: auto;
        padding-right: 10px;
    }

    nav a{
        display: inline-block;
        width: auto;
        text-decoration: none;
        color: #A33A51;
        font-size: 18px;
        padding: 11px 12px;
        font-family: RotisSemiSerif65;
        text-shadow: none;
    }
    nav a:hover{
        color: #743457;
    }

    nav a.active{
        color: #E462AA;
    }

    .kontakt-colored a.active{
        color: #E462AA;
        text-shadow: none;
    }
    .home-colored a.active{
        color: #E462AA;
    }
    .behandlungen-colored a.active{
        color: #E462AA;
    }
    .preise-colored a.active{
        color: #E462AA;
    }
    .praxis-colored a.active{
        color: #E462AA;
        text-shadow: none;
    }



    #menu-button {
        display: none;
    }

    #menu-button:hover{
        cursor: pointer;
    }

    #menu-button:before {
        display: none;
    }



    section{
        width: 100%;
        padding-top: 4px;
        padding-bottom: 30px;
        height: auto;http://localhost/mavida/2/images/motiv_01.jpg
        box-sizing: border-box;
    }

    #leftside{
        float: left;
        width: 44.7%;
    }

    h1{
        float: left;
        display: inline-block;
        width: 100%;
        margin-right: 0;
        text-align: right;
        margin-top: 38px;
        margin-left: 0;
        color: #E562AA;
        font: normal normal normal 16px/20px Georgia, "Times New Roman", Times, serif;
        font-size: 24px;
        vertical-align: top;
        line-height: 1.1;
    }

    #image-gallery-container{
        float: right;
        padding-top: 41px;
        margin-right: -21px;
        padding-left: 85px;
    }

    #praxisbilder-button{
        float: right;
        padding-right: 120px;
        padding-top: 5px;
        padding-bottom: 0;
    }

    #text-container{
        display: block;
        float: right;
        width: 52.3%;
        margin-top: 0px;
        padding-right: 39px;
        padding-top: 38px; /*90px*/
        font-size: 16px;
        box-sizing: border-box;
    }

    .name{
        display: block;
        color: #24550B;
        padding-bottom: 11px;
    }

    p{
        margin: 0;
        color: #888;
        font: normal normal normal 16px/20px Georgia, "Times New Roman", Times, serif;
    }

    #unterschrift{
        padding-top: 23px;
        margin-bottom: -2px;
        width: auto;
    }


    #accordion h2{
        padding: 0px 0;
    }


    #postal-address{
        width: 190px;
        display: inline-block;
        padding-bottom: 0;
    }

    .address-link{
        text-decoration: none;
        color: #73C354;
    }
    .address-link:first-child{
        color: #888;
    }

    #location-description{
        width: 240px;
        display: inline-block;
        padding-bottom: 0;
    }

    #lageplan{
        padding-top: 25px;
    }
    #lageplan:hover{
        -webkit-transform: none; /* Safari and Chrome */
        -moz-transform: none; /* Firefox */
        -ms-transform: none; /* IE 9 */
        -o-transform: none; /* Opera */
         transform: none;
    }
}



@media screen and (min-width: 950px) { /* desktop */

    body, html{
        background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 31%, rgba(216,236,208,1) 100%);
        background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(31%, rgba(246,246,246,1)), color-stop(100%, rgba(216,236,208,1)));
        background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 31%, rgba(216,236,208,1) 100%);
        background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 31%, rgba(216,236,208,1) 100%);
        background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 31%, rgba(216,236,208,1) 100%);
        background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 31%, rgba(216,236,208,1) 100%);
    }

    #content-wrapper{
        border-right: 1px solid #D9DFD7;
        border-left: 1px solid #D9DFD7;
    }

    #banner-wrapper{
        min-height: 290px;
    }

    #banner-image{
        min-height: 290px;
    }

    section{
        padding-left: 0;
    }

}



@media screen and (max-height: 680px) {
    body, html{
        height: auto;
        min-height: none;
    }
}