/*  === FARBEN === */

/* 
Weiß: 
Schwarz:
Grau: #E5E5E5

*/

/* GLOBAL */

html{
    font-size: 16px;
}

body{
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
}

* {
    box-sizing: border-box;
    
}

:focus{
    outline: none;
    box-shadow: 0 0 7px 1px black, 0 0 10px black;
}

section{
    padding-top: 2rem;
    padding-bottom: 4rem;
}



/* GENERELLES */

.clearfix::after{
    content: "";
    display: table; 
    /* display: block; */
    clear: both;
}

.active {
    background-color: #E5E5E5 !important;
    text-decoration: none;
}

.intro-container{
    text-align: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
    
}

.intro-container > h1{

    font-size: 1.6rem;
    text-transform: uppercase;

}

.intro-container > p{

    font-size: 1.2rem;

}

@media (max-width:1366px){

    .intro-container{
        width: 95%;
    }
}

@media (max-width:1024px){

    .intro-container{
        width: 100%;
    }
}

/* Navigationsleiste */

.header-nav{
    width: 100%;
    height: 50px;
    color: gray;
    
    position: relative;
    font-weight: bold;
    font-size: 1.1rem;

}

.header-nav .col-6{
    padding-top: 0;
    padding-bottom: 0;
}

.header-nav .container,
.header-nav .row,
.header-nav .col-6{
    height: 100%;
}

.header-nav a > img{
    height: 100px;
    float: left;
    background-color: white;
    padding: 5px;
    border-radius: 5px;
}

.header-nav ul{
    margin: 0;
    padding: 0;
    float: right;
    height: 100%;
}

.header-nav ul >li{
    display: inline-block;
    height: 100%;
    padding: 0 .2rem 0;
}


.header-nav ul > li > a:link {

    color: black;
    text-decoration: none;

}

.header-nav ul >li >a{
    display: inline-block;
    margin-top: .8rem;
    
}

.header-nav ul > li > a:link {
   
    color: black;
    text-decoration: underline;
 }

.header-nav ul > li > a:visited {
    color: black;
    text-decoration: none;

}

.header-nav ul > li > a:hover {
   
   color: black;
   text-decoration: underline;
}

 .header-nav ul > li > a:active {
    
    
} 



.logo-link{
    display: inline-block;
}

 
/*  NAVIGATIONSLEISTE MOBILE */

.mobile-nav-button{
    color: black;
    float: right;
    font-size: 2.5rem;
    border: 3px solid grey;
    border-radius: 5px;
    width: 40px;
    height: 37px;
    position: relative;
    margin-top: .3rem;
    margin-bottom: 25px;
    margin-left: 45px;
}

.mobile-nav-button > span{
    position: absolute;
    bottom: -6px;
    left: 6px;
}

.mobile-nav-content > ul > li{
    display: block;
    background-color: white;
    padding-bottom: .8rem;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    text-align: center;
}

.mobile-nav-dropdown{
    position: relative;
    /* display: inline-block; */
    float: right;


}


.mobile-nav-dropdown:active > .mobile-nav-content{
    display: block;
    z-index: 1;
}

 .mobile-nav-dropdown:hover > .mobile-nav-content{
    display: block;
    z-index: 1;
}  

.mobile-nav-content{
    position: absolute;
    right: 0;
    top: 50px;
    display: none;
}

.mobile-nav{
    display: none;
}

@media (max-width: 768px)  {
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav{
        display: block;
    }

    .header-nav a > img{
        height: 50px;
        float: left;

    }

} 

/* HEADER-BANNER */

.header-banner{

    background: url("../img/header.jpg") no-repeat center center;
    width: 100%;
    height: 0;
    padding-top: 20.83%;
    background-size: contain;
}
.header-banner-klein{
    background: url("../img/header1.jpg") no-repeat center center;
    width: 100%;
    height: 0;
    padding-top: 15.625%;
    background-size: contain;
}

/* GRID SYSTEM SICHTBARKEIT 

.border, .border *{
    border: 1px solid #91c4ff;
    
}

[class*='col-']{
    background-color: #bfddff;
}

p{
    background-color: #91c4ff;
    padding: 0;
    margin: 0;
    color: white;
    text-align: center;
}

*/

/* LEISTUNGEN-BEREICH */

.leistungs-box{

    background-color: #E5E5E5;
    padding: 1rem 3rem 2.5rem;
    border-radius: 5px;
    text-align: center;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    height: 180px;
}


.leistungs-box > h2{

    font-size: 1.4rem;

}

.leistungen-ansehen-btn{

    text-decoration: none;
    height: 40px;
    border: 2px solid white;
    display: inline-block;
    padding-top: .5rem;
    width: 40%;
    min-width: 100px;
    margin-top: 1rem;
    border-radius: 5px;
}

.leistungen-ansehen-btn:link{

    color: black;
    
}

.leistungen-ansehen-btn:visited{

    color: black;

}

.leistungen-ansehen-btn:active{

    color: black;


}

.leistungen-ansehen-btn:hover{

    color: white;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid black;

}

#leistungen-bereich .row > .col-3:nth-of-type(even) > .leistungs-box{

    margin-left: 1rem;
}

#leistungen-bereich .row > .col-3:nth-of-type(odd) > .leistungs-box{
    
    margin-right: 1rem;
}  

@media (max-width:1366px){

    .leistungs-box{
        width: 80%;
    }
}

@media (max-width:1024px){

    .leistungs-box{
        width: 100%;
        margin-bottom: 1rem;
        height: 220px;
    }
        #leistungen-bereich .row > .col-3:nth-of-type(even) > .leistungs-box{

            margin-left: .5rem;
        }
        
        #leistungen-bereich .row > .col-3:nth-of-type(odd) > .leistungs-box{
            
            margin-right: .5rem;
        }  
    }

    @media (max-width:768px){

        .leistungs-box{
            width: 100%;
            margin-bottom: 1rem;
            height: 220px;
        }
            #leistungen-bereich .row > .col-3:nth-of-type(even) > .leistungs-box{
    
                margin-left: 0;
            }
            
            #leistungen-bereich .row > .col-3:nth-of-type(odd) > .leistungs-box{
                
                margin-right: 0;
            }  
        }

/* ÜBER MICH BEREICH */

#über-mich-bereich{
    background-color: white;
}

#über-mich-container{
    position: relative;
    width: 80%;
    margin-right: auto;
    margin-left: auto;
}

#über-mich-container > img {
    position: absolute;
    top: 0;
    right: 100px;
    height: 100%;
}

#über-mich-container > p {
    width: 75%;
    font-size: 1.2rem;
    text-align: justify;

}

@media (max-width: 1540px){
    #über-mich-container > img {
        position: absolute;
        top: 0;
        right: 50px;
        height: 100%;
    }
}

@media (max-width: 1325px){
    #über-mich-container > img {
        position: absolute;
        top: 0;
        right: 0px;
        height: 100%;
    }

    
}

@media (max-width: 1170px){
    #über-mich-container > img {
        position: absolute;
        top: 0;
        right: 0px;
        height: 50%;
    }

    #über-mich-container > p {
        width: 50%;
        font-size: 1.2rem;
        text-align: justify;
    
    }
    
}

@media (max-width: 768px){
    #über-mich-container > img {
        display: none;
    }

    #über-mich-container > p {
        width: 100%;
        font-size: 1.2rem;
        text-align: justify;
    
    }
    
}

/* KONTAKT-BEREICH */

.adresse {
    margin: 0;
    
}

#map{
    position: relative;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

#map a{
    text-decoration: none;
    color: black;
    margin-left: auto;
    margin-right: auto;
}

#map a:hover{
    text-decoration: none;
    color: #E5E5E5;
}


#kontakt-bereich a{
    text-decoration: none;
    color: black;
}

#kontakt-bereich a:hover{
    text-decoration: none;
    color: #E5E5E5;
}

#kontakt-formular input,
#kontakt-formular textarea{
    width: 100%;
    border: 2px solid grey;
    padding: .5rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    border-radius: 5px;

}

#kontakt-formular textarea{
    height: 100px;
}

#kontakt-formular{

    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
    
}

#kontakt-formular > h1{

    font-size: 1.6rem;
    text-transform: uppercase;

}

#kontakt-formular > p{

    font-size: 1.2rem;

}

.button-typ-3{
    border: 2px solid grey;
    background-color: transparent;
    font-size: 1rem;
    width: 150px;
    height: 38px;
    border-radius: 5px;
}

#kontakt-formular button:active {
    background-color: grey;
}

#kontakt-formular button:hover{
    border: 2px solid #E5E5E5;
    color: #E5E5E5;

}
@media (max-width:1366px){

    #kontakt-formular, #map{
        width: 95%;
    }
}

@media (max-width:1024px){

    #kontakt-formular, #map{
        width: 100%;
    }
}

@media (max-width:768px){

    #kontakt-formular, #map, .button-typ-3{
        width: 100%;
    }

}

.icon-contact{
    width: 30px;
    margin-left: auto;
    margin-right: auto;
    transition: transform 1s;
}

.icon-contact:hover{
    transform: rotateZ(360deg);
}

#contact{
    position: relative;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    vertical-align: middle;
}

.praxis{
    background: url("../img/logo.png") no-repeat center center;
    width: 30%;
    height: 0;
    padding-top: 5%;
    background-size: contain;
    margin-left: auto;
    margin-right: auto;
}

/* IMPRESSUM */

#impressum a {
    color: black;
    text-decoration: underline;
    font-weight: bold;
}

/* FOOTER */

#footer {
    background-color: #E5E5E5;
    height: 2.8rem;
}

#footer-nav {
    /* display: inline-block; */
    float: right;
}

#footer-nav a {
    text-decoration: none;
}

#footer-nav a:link {
    color: black;
}

#footer-nav a:visited {
    color: black;
}
#footer-nav a:hover {
    color: white;
}

#footer-nav a:active {
    color: black;
}


@media (max-width: 424px){
    #footer span {
        display: none;
    }
}
    
.copyright {

    text-decoration: none;
    color: #E5E5E5;
}

.copyright:hover {

    text-decoration: none;
    color: lightgrey;
}


/* GRID SYSTEM */

.container{
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.row::after{
    content: "";
    clear: both;
    display: block;
}

[class*='col-']{
    float: left;
    min-height: 1px;
    padding: .8rem;
}

.col33{
    text-align: right;
}

.col333{
    text-align: left;
    
}

.col-1 { width: 16.666%; }
.col-2 { width: 33.333%; }
.col-3 { width: 50%; }
.col-6 { width: 100%; }


@media (max-width: 1024px) {
    .col-1 {width: 33.333%}
}

@media (max-width: 768px) {

    .col-1 { width: 50%; }
    .col-2 { width: 100%; }
    .col-3 { width: 100%; }

}

@media (max-width: 480px) {
    .col-1 { width: 100%; }
    .col-2 { width: 100%; }
    .col-3 { width: 100%; }

}