@charset "utf-8";

/* fonts ****************************************/

/* Open Sans **********/

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Open Sans Regular'), local('OpenSans-Regular'),
        url('../fonts/open-sans-v18-latin-regular.woff2') format('woff2'),
        url('../fonts/open-sans-v18-latin-regular.woff') format('woff');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'),
        url('../fonts/open-sans-v18-latin-600.woff2') format('woff2'),
        url('../fonts/open-sans-v18-latin-600.woff') format('woff');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: local('Open Sans Bold'), local('OpenSans-Bold'),
        url('../fonts/open-sans-v18-latin-700.woff2') format('woff2'),
        url('../fonts/open-sans-v18-latin-700.woff') format('woff');
}

/* Caveat **********/

@font-face {
    font-family: 'Caveat';
    font-style: normal;
    font-weight: 400;
    src: local('Caveat Regular'), local('Caveat-Regular'),
        url('../fonts/caveat-v10-latin-regular.woff2') format('woff2'),
        url('../fonts/caveat-v10-latin-regular.woff') format('woff'); 
}

@font-face {
    font-family: 'Caveat';
    font-style: normal;
    font-weight: 700;
    src: local('Caveat Bold'), local('Caveat-Bold'),
        url('../fonts/caveat-v10-latin-700.woff2') format('woff2'),
        url('../fonts/caveat-v10-latin-700.woff') format('woff'); 
}



/* Generelles ********************/

html,
body {
    font-size: 1rem;
    font-family: 'Open Sans', Verdana, Arial, sans-serif;
    color:#707070;
    background-color: white;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto;
}

h2 {
    font-family: 'Caveat';
    font-weight: 100;
    font-size: 3rem;
    color: #79A5B1;
    
    padding-bottom: 24px;
}

h3 {
    font-family: 'Caveat';
    font-weight: 100;
    font-size: 2.3rem;
    padding: 32px 0 24px;
    color: #79A5B1;
} 

input[id*="checker"] {
    display: none;
}

   /* scroll button **********************/

main #scroller {
    width: 50px;
    height: 50px;
    border-width: 0 45px 80px 45px;
    position: fixed;
    z-index: 100;
    bottom: 15px;
    left: 50%;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0px 2px 5px rgba(106, 106, 106, 0.2); 
    border-radius: 50% 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

main .scrollerpos {
    transform: translateY(2px);
}

main #scroller:hover {
    background: #bad3da;
}

main #scroller img {
    width: 15px;
    height: 15px;
    opacity: 0.8;
    transition: 0.5s;
}

main .weiter img {
    transform: rotate(0deg);
}

main .zurueck img {
    transform: rotate(180deg);
}

/* Big Screens Version ****************************/
@media screen and (min-width: 1280px) {

    .onlyMobile {
        display: none;
    }

    /* layout generals ********/

    .flex {
        display: flex;
    }
    .oneColumn {
        flex-basis: 33.3%;
    }
    .twoColumns {
        flex-basis: 66.6%;
    }

    header#home {
        height: 82vh;
        position: relative;
        overflow: hidden;
    }

    #headerbild {
        background: url('/img/Praxisraum-2200.jpg');
        background-position: 0 0;
        background-repeat: no-repeat;
        height: 85vh;
        margin: 0 auto; 
        width: 100%; 
        position: relative; 
        background-size:cover;
    }

    header #title {
        position: relative;
        height: 82vh;
        color: white;
        text-align: left;
        font-size: 1.5rem;
    }

    header span {
        line-height: 2rem;
        font-size: 2.5rem;
        font-weight: 300;
        padding: 2rem 0 1.4rem;
    }
    header p:nth-of-type(2) {
        font-weight: 300;
        font-size: 1.3rem;
        
    }
    header p:last-of-type {
        font-family: 'Caveat';
        font-size: 2.5rem;
        padding-top: 10px;
        color: #97cfdf;
    }

    /* wrapper *****************/

    .wrapper {
        max-width: 2000px;
        margin: auto;
        display: block;
    }

    .frame {
        max-width: 1200px;
        margin: auto; 
    }

    /* navi *****************/

    #mainnav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0px;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 2px 2px 5px rgba(106, 106, 106, 0.3);
        transition: 0.5s;
    }

    #mainnav ul {
        list-style: none;
        display: flex;
        justify-content: space-between;
        padding: 0;
    }

    #mainnav li {
        flex-basis: 20%;
        text-align: center;
    }

    #mainnav a {
        font-family: 'Open Sans', Verdana, Arial, sans-serif;
        font-size: 1rem;
        text-decoration: none;
        color: #5D5D5D;
        display: block;
        padding: 0.7rem 1rem;
        transition: 0.5s;
    }

    #mainnav a:hover {
        background: #D3D3D3;
    }
    #mainnav a.akt {
        background: #D3D3D3;
    }
}
/* Desktop Version ********************************/
@media screen and (min-width: 980px) and (max-width: 1279px) {

    .onlyMobile {
        display: none;
    }

    /* layout generals ********/

    .flex {
        display: flex;
    }
    .oneColumn {
        flex-basis: 33.3%;
    }
    .twoColumns {
        flex-basis: 66.6%;
    }
    header#home {
        height: 82vh;
        position: relative;
        overflow: hidden;
    }

    #headerbild {
        /* position: fixed;
        height: 100vh;
        width: 100%;
        background:url('/img/Praxisraum-1516.jpg') no-repeat top left;
        background-size:cover; */

        background: url('/img/Praxisraum-1516.jpg');
        background-position: 0 0;
        background-repeat: no-repeat;
        height: 100vh;
        margin: 0 auto; 
        width: 100%; 
        position: relative; 
        background-size: cover;

    }

    header #title {
        position: relative;
        height: 82vh;
        color: white;
        text-align: left;
        font-size: 1.5rem;
    }
    header span {
        line-height: 2rem;
        font-size: 2.5rem;
        font-weight: 300;
        padding: 2rem 0 1.4rem;
    }
    header p:nth-of-type(2) {
        font-weight: 300;
        font-size: 1.3rem;
        
    }
    header p:last-of-type {
        font-family: 'Caveat';
        font-size: 2.5rem;
        padding-top: 10px;
        color: #97cfdf;
    }

    /* wrapper *****************/

    .wrapper {
        max-width: 2400px;
        margin: auto;
        display: block;
    }

    .frame {
        margin: auto 40px;
    }



    /* navi *****************/

    #mainnav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0px;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 2px 2px 5px rgba(106, 106, 106, 0.3);
        transition: 0.5s;
    }

    #mainnav ul {
        list-style: none;
        display: flex;
        justify-content: space-between;
        padding: 0;
    }

    #mainnav li {
        flex-basis: 20%;
        text-align: center;
    }

    #mainnav a {
        font-family: 'Open Sans', Verdana, Arial, sans-serif;
        font-size: 1rem;
        text-decoration: none;
        color: #5D5D5D;
        display: block;
        padding: 0.7rem 1rem;
        transition: 0.5s;
    }

    #mainnav a:hover {
        background: #D3D3D3;
    }
    #mainnav a.akt {
        background: #D3D3D3;
    }

 




}
/* Tablet Version *********************************/
@media screen and (min-width: 750px) and (max-width: 979px) {

    .onlyDesktop {
        display: none;
    }

    /* layout generals ********/

    .flex {
        display: flex;
    }
    #praxis .flex {
        display: block;
    }
    .oneColumn {
        flex-basis: 33.3%;
    }
    .twoColumns {
        flex-basis: 66.6%;
    }

    header#home {
        height: 82vh;
        position: relative;
        overflow: hidden;
    }

    #headerbild {
       /*  position: fixed;
        height: 100vh;
        width: 100%;
        background:url('/img/Praxisraum-1136.jpg') no-repeat top left;
        background-size:cover; */


        background: url('/img/Praxisraum-1136.jpg');
        background-position: 0 0;
        background-repeat: no-repeat;
        height: 100vh;
        margin: 0 auto; 
        width: 100%; 
        position: relative; 
        background-size: cover;
    }

    header #title {
        position: relative;
        height: 82vh;
        color: white;
        text-align: left;
        font-size: 1.5rem;
    }

    header span {
        line-height: 2rem;
        font-size: 2.5rem;
        font-weight: 300;
        padding: 2rem 0 1rem;
    }

    header p:nth-of-type(2) {
        font-weight: 300;
        font-size: 1.1rem;
        
    }

    header p:last-of-type {
        font-family: 'Caveat';
        font-size: 2rem;
        padding-top: 10px;
        color: #97cfdf;
    }

    /* wrapper *****************/

    .wrapper {
        max-width: 2400px;
        margin: auto;
        display: block;
    }

    .frame {
        margin: auto 40px;
    }


    /* nav menu **********************/

    #mainnav {
        position: fixed;
        z-index: 1000;
        right: 0;
        width: 100%;
        top: -230px;
        background: rgb(255, 255, 255);
        box-shadow: 2px 2px 5px rgba(106, 106, 106, 0.3);
        transition: 0.5s;    
    }

    #mainnav ul {
        list-style: none;
        margin: auto;
        padding: 0;
        padding-bottom: 10px;
    }

    #mainnav ul a {
        text-decoration: none;
        color: #707070;
        line-height: 50px;
        display: block;
        text-align: center;
        /* border-bottom: 1px solid rgb(228, 228, 228); */
    }


    #mainnav li:last-of-type a {
        border-bottom: none;
    }

    /* special target  **********************/

    #mainnav p a {
        text-decoration: none;
        color: #707070;
        display: block;
        line-height: 45px;
        width: 100px;
        background: rgb(255, 255, 255);
        
        text-align: center;
        font-size: 1.5rem;
        
        position: fixed;
        
        top: 0;
        left: 0;
        width: 100%;
        transition: 0.5s;
    }

    /* navi fährt raus *********************/

    #mainnav:target {
        top: 35px;
    }

    /* schliessbutton anzeige ändern *******/

    #mainnav a[href="#close"] {
        display: none;
    }
    #mainnav:target a[href="#close"] {
        display: block;
    }

}
/* Mobile Version *********************************/
@media screen and (max-width: 749px) {

    .onlyDesktop {
        display: none;
    }

    /* layout generals ********/

    .flex {
        display: block;
    }

    header#home {
        height: 105vh;
        position: relative;
        overflow: hidden;
    }

    #headerbild {
        /* position: fixed;
        height: 100vh;
        width: 100%;
        background:url('/img/Praxisraum-750.jpg') no-repeat top left;
        background-size:cover; */

        background: url('/img/Praxisraum-1516.jpg');
        background-position: 0 0;
        background-repeat: no-repeat;
        height: 100vh;
        margin: 0 auto; 
        width: 100%; 
        position: relative; 
        background-size: cover;
    }

    header #title {
        position: relative;
        /* height: 93vh; */
        height: 90vh;
        color: white;
        text-align: left;
        font-size: 1.5rem;
    }

    header #titellabel.specialMobile  {
        padding: 0.5rem 2rem 1.5rem;
    }

    header span {
        line-height: 2rem;
        font-size: 1.8rem;
        font-weight: 300;
        padding: 2rem 0 0.5rem;
    }
    header p:nth-of-type(2) {
        font-weight: 300;
        font-size: 1.1rem;
        
    }
    header p:last-of-type {
        font-family: 'Caveat';
        font-size: 2rem;
        padding-top: 10px;
        color: #97cfdf;
    }

    article .sectionHeader {
        height: 70px;
    }

    article .sectionFooter {
        height: 70px;
    }


    /* wrapper *****************/

    .wrapper {
        max-width: 2400px;
        margin: auto;
        display: block;
    }

    .frame {
        margin: auto 30px;
    }

    /* nav menu **********************/

    #mainnav {
        position: fixed;
        z-index: 1000;
        right: 0;
        width: 100%;
        top: -230px;
        background: rgb(255, 255, 255);
        box-shadow: 2px 2px 5px rgba(106, 106, 106, 0.3);
        transition: 0.5s;    
    }

    #mainnav ul {
        list-style: none;
        margin: auto;
        padding: 0;
        padding-bottom: 10px;
    }

    #mainnav ul a {
        text-decoration: none;
        color: #707070;
        line-height: 50px;
        display: block;
        text-align: center;
        /* border-bottom: 1px solid rgb(228, 228, 228); */
    }


    #mainnav li:last-of-type a {
        border-bottom: none;
    }

    /* special target  **********************/

    #mainnav p a {
        text-decoration: none;
        color: #707070;
        display: block;
        line-height: 45px;
        width: 100px;
        background: rgb(255, 255, 255);
        
        text-align: center;
        font-size: 1.5rem;
        
        position: fixed;
        
        top: 0;
        left: 0;
        width: 100%;
        transition: 0.5s;
    }

    /* navi fährt raus *********************/

    #mainnav:target {
        top: 35px;
    }

    /* schliessbutton anzeige ändern *******/

    #mainnav a[href="#close"] {
        display: none;
    }
    #mainnav:target a[href="#close"] {
        display: block;
    }

    #methoden .padLeft,
    #praxis .padLeft {
        padding: 0;
    }
    #uebermich .padRight,
    #kontakt .padRight {
        padding: 0;
    }

    #kontakt section .oneColumn {
        min-width: 100px;
    }

}

    /* header **********************/

    header:before {
        z-index: 1;
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        right: 0;
        width: 100%;
        height: 77px; 
        background: url("../img/wave.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center bottom;
    }

    header #titellabel {
        position: absolute;
        z-index: 10;
        bottom: 5%;
        background:rgba(87, 89, 94, 0.6);
        padding: 0.5rem 3rem 1.5rem;
    }
    
    header span {
        display: block;
        font-family: 'Open Sans', Arial, sans-serif;
    }

    header p {
        margin-bottom: 0.5rem;
    }

    #firstinfo {
        
        height: 25vh;
        text-align: right;
        padding: 2rem 0 0;
    }

    #firstinfo h1 {
        padding-bottom: 1rem;
        font-size: 1rem;
        font-weight: 400;
    }


    /* layout generals ****************************/


    .grey {
        background: #E8E8E8;
        position: relative;
    }

    .grey::before {
        z-index: 2;
        content: '';
        position: absolute;
        left: 0;
        top: -74px;
        right: 0;
        width: 100%;
        height: 77px; 
        background: url("../img/wave-grey.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center bottom;
    }

    .white {
        z-index: 1;
        background: #FFF;
        position: relative;
    }

    .white::before {
        z-index: 2;
        content: '';
        position: absolute;
        left: 0;
        top: -74px;
        right: 0;
        width: 100%;
        height: 77px; 
        background: url("../img/wave.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center bottom;
    }

    .blue {
        background: #E8F0F2;
        position: relative;
        padding-left: 2rem;
        padding-right: 2rem;
        color: #5D5D5D;
        box-shadow: 0px 10px 10px -10px rgba(0,0,0,0.34);
    }

    .sectionHeader {
        height: 100px;
    }

    .sectionFooter {
        height: 120px;
    }

    .padLeft {
        padding-left: 3rem;
    }
    .padRight {
        padding-right: 3rem;
    }

    ul {
        list-style-type: "·    ";
        padding-left: 20px;
        padding-bottom: 24px;
    }

    p {
        margin-bottom: 1rem;
    }

    /* article Behandlung ****************************/

    #behandlung section .oneColumn {
        position: relative;
        z-index: 20;
    }

    #behandlung section .twoColumns {
        padding-right: 3rem;
    }
    
    /* article Methoden ****************************/

    
    #methoden span {
        color: #73b1c2;
        font-style: italic;
    }

    #methoden h3 {
        padding-bottom: 1.8rem;
        line-height: 2.3rem;
    }

    #methoden section .oneColumn {
        background-image: url("../img/praxis-impression-700.jpg");
        background-position: center top;
        background-size: cover;
        background-repeat: no-repeat;
    }

    /* article Kosten ************************/

    #kosten {
        margin-top: 32px;
        margin-bottom: 32px;
        padding-top: 2rem;
        padding-bottom: 2rem;
        
    } 
    
    #kosten h3 {
        padding: 0 0 1rem; 2rem;
    }


    /* article Uebermich ************************/

    #uebermich h3:first-of-type {
        padding-top: 0;
    }

    #uebermich img {
        margin-top: 90px;
    }

    #uebermich section:nth-of-type(2) {
        margin-top: 4rem;
    }

    #uebermich section:nth-of-type(2) h3 {
        padding-top: 1rem;
    }

    /* #uebermich section:nth-of-type(2) img {
        height: 410px;
        margin-top: 3rem;
    } */
    #uebermich span {
        color: #73b1c2;
        font-style: italic;
    }


    #uebermich section:nth-of-type(2) .oneColumn {
        background-image: url("../img/Sessel-700.jpg");
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    #uebermich section:nth-of-type(2) .twoColumns {
        padding-left: 3rem;
    }

    /* article Kontakt ***********************/

    #kontakt h3 {
        font-family: 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 1.1rem;
        font-weight:600;
        padding-bottom: 1rem;
    }
    #kontakt h2 {
        padding-bottom: 0;
    }

    #kontakt .oneColumn .blue {
        height: 300px;
        margin-top: 80px;
       
    }

    #kontakt .oneColumn h3 {
        padding-top: 2.5rem;
    }


    #kontakt .oneColumn {
        min-width: 370px;
    }




    /* article Praxis ************************/

    #map { 
        flex-direction: column;
        justify-content: flex-end;
        margin-top: 0.7rem;
        margin-bottom: auto;
        overflow: hidden;
    }

    .grayscale {
        filter: grayscale(1);
    }

    #praxis h2 {
        padding-bottom: 0;
    }

    /* footer **********************/

    #footerImg {

        height: 70vh;
        position: relative;
        z-index: 1;
        overflow: hidden;
        background-image: url("../img/Wartesaal-2400.jpg");
        background-position: center bottom;
        background-attachment: fixed;
        background-repeat: no-repeat; 
        
    }
    #praxis::after {
        content: '';
        position: absolute;
        z-index: 10;
        left: 0;
        bottom: -76px;
        right: 0;
        width: 100%;
        height: 77px; 
        background: url("../img/wave-grey-below.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center top;
        
    }

    footer {
        background: #E8E8E8;
        height: 150px;
        position: relative;
        z-index: 10;
    }

    footer p {
        margin: 0;
    }

    footer > div {
        display: flex;

        margin: auto;
        padding: 2rem 0;
        justify-content: space-between;
        align-items: center;
    }

    footer a {
        padding: 0 1rem;
        text-decoration: none;
        color:#707070;
        transition: 0.3s;
    }

    footer a:hover {
        text-decoration: underline;
        color: #79A5B1;
    }


    /* Impressum / Datenschutz **************************/

    #impressum,
    #datenschutz {
        margin-top: 80px;
    }

    header {
        position:relative;

    }

   
    #headerDat {
        background: url('../img/Holzhintergrund-2400x600.jpg');
        background-position: 0 0;
        background-repeat: no-repeat;
        height: 35vh;
        margin: 0 auto; 
        width: 100%; 
        position: relative; 
        background-size:cover;
    }

    #headerImp {
        background: url('../img/WartesaalB-2400x600.jpg');
        background-position: 0 0;
        background-repeat: no-repeat;
        height: 35vh;
        margin: 0 auto; 
        width: 100%; 
        position: relative; 
        background-size:cover;
    }











    #impressum h1,
    #datenschutz h1 {
        font-family: 'Caveat';
        font-weight: 400;
        font-size: 2.5rem;
        color: #869e9f;
    }

    #impressum h2,
    #datenschutz h2 {
        font-family: 'Caveat';
        font-weight: 400;
        font-size: 2rem;
        color: #869e9f;
        padding: 2rem 0;
    }

    #impressum h3,
    #datenschutz h3 {
        font-family: 'Open Sans', Arial, Helvetica, sans-serif;
        font-weight: 400;
        font-size: 1rem;
        color: #869e9f;
        padding: 1rem 0;
    }

    #datenschutz a,
    #impressum a {
        color: #869e9f;
        text-decoration: none;
        transition: 0.3s;
    }

    #datenschutz a:hover,
    #impressum a:hover {
        color: #d35a7f;
        text-decoration: underline;
    }

    #datenschutz p:first-of-type {
        padding-top: 2rem;
    }

    

    #impressum .quelle {
        display: block;
    }


.secondFoot {
    margin-top: 50px;
}







    /* autom. einblenden / einfahren *****************/

    .fadescroll {
        transition: all 1000ms;
        opacity: 0;
    }

    .moveleft {
        transform: translateX(-3vw);
        opacity: 0;
        transition: all 1000ms;
    }

    .moveright {
        transform: translateX(3vw);
        opacity: 0;
        transition: all 1000ms;
    }

    .go {
        transform: translateX(0);
        opacity: 1;
    }


    /* cookiedingsbums *****************/

    #cookiedingsbums {
        background: rgba(255, 255, 255, 0.9);
        box-shadow: -2px -2px 10px rgba(106, 106, 106, 0.3);
        position: fixed;
        bottom: 0px;
        z-index: 10000;
        width: 100%;
        font-size: 1rem;
        text-align: center;
    }

    #cookiedingsbums div {
        padding: 30px;
    }

    #cookiedingsbums .fas {
        color: #869e9f;
        display: block;
        font-size: 1.8rem;
        padding-bottom: 1rem;
    }

    #cookiedingsbums a {
        display: block;
        color: #869e9f;
        text-decoration: none;
        transition: 0.5s;
    }

    #cookiedingsbums a:hover {
        text-decoration: underline;
        color: #d35a7f;
    }

    #cookiedingsbumsCloser {
        display: block;
        width: 150px;
        margin: 1rem auto;
        text-decoration: none;
        cursor: pointer;
        padding: 10px 20px;
        background-color: #869e9f;
        color: #fff;
        transition: 0.3s;
    }

    #cookiedingsbumsCloser:hover {
        background-color: #a2bfc1;
    }

