@charset "utf-8";

/**************
Inhaltsübersicht
***************/

/* 1.Layout */
    /* 1.1 Spalten */
    /* 1.2 Navigation */
        /* 1.2.1 Drop Down Menü */
    /* 1.3 About */
    /* 1.4 Footer */
    /* 1.5 content-v */

/* 2. Typographie */
    /* 2.1 Liste */
    /* 2.2 Links */
    /* 2.3 Tabelle */

/* 3. Buttons */

/* 4. optische Elemente */
    /* 4.1 Bilder */

/* 5. Formular */



/* Reset************/
*{
    margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html{
    position: relative;
    min-height: 100%;
    font-size: 100%;
}
body{
    font: 400 18px/27px "Playfair Display", Georgia ,Times, serif;
    color: #202124;
    padding-bottom: 270px;
    text-align: center;
    background-color: #dadada;
}
.daten{
    background-color: #fff;
}

img{
    max-width: 100%;
}


/* Farben******

#a3d6ea Links und akzentstriche

#1d3c66 Buttons

#202124 Texte
#212121 Überschriften
*Background 
#dadada    hell
#4b4b4b    dunkel*/



    /*********
    1. Layout
    *********/

.wrapper{
    max-width:960px;
    margin: 0 auto;
    position: relative;
}

#main-nav{
    background: #fff;
    padding: 6px 0 0 0;
}

#About{
    background: #4b4b4b;
    overflow: hidden;
    padding: 70px;
}

#Coaching{
    background: #fff;
}

#Gutachten{
    background: #dadada;
}

#Vortraege{
    background: #dadada;
}

#Koop{
    background: #fff;
}

#Footer{
    background: #4b4b4b;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left:0;
    min-height: 275px;
    width: 100%;
}

#Coaching, 
#Vortraege, 
#Gutachten, 
#Koop{
    padding: 50px 0;
    overflow: hidden;
    text-align: center;
}


    /* 1.1 Spalten */
 

.col_1, 
.col_1_2, 
.col_1_3{
    float: left;
    margin: 20px 10px;
    }


.col_1{ 
    width:98%;
}

.col_1_2{
    width:47%;
}

.col_1_3{
    width:30%;
}

    /* 1.2 Navigation */

#toggle-button-menu{
    display: none;
}

ul#navigation{
    float: right;
    margin-top: 30px;
    position: relative;
}

ul#navigation li{
    display: inline; 
    margin: 0 30px 0 0;
    background-color: unset;
    position: relative;
}

ul#navigation li::before{
    content:none;
}

ul#navigation a{
    text-decoration: none;
    font: 500 20px/26px "Raleway", Helvetica, Arial, sans-serif;
    color: #212121;
}

ul#navigation a:hover{
    color: #a3d6ea;
    border-bottom: none;
}

.active{
    color: #a3d6ea !important;
}

.active-drop{
    color:#fff !important;
}

.balken{
    height: 10px;
    width: 100%;
    background: #a3d6ea;
}

    /* 1.2.1 Drop Down Menü */

#navigation ul li a{
    display: block;
    padding: 0px 10px;
}


#navigation ul{
    position: absolute;
    top: 30px;
    left: -40px;
    background-color: #a3d6ea;
    padding-top: 10px;
    display: none;
    width: 150px;
}

#navigation li:hover ul{
    display: block;
    z-index: 1;
}

#navigation ul li a:hover{
    color: #1d3c66;
    box-shadow: inset  0 0 5px #1d3c66;
}
ul#navigation li a{
    padding:15px;
    margin: 0;
}


ul#navigation ul li{
    margin: 0;
}

    /* 1.3 About */


#About h1{
    font: 600 40px/38px "Raleway", Helvetica, Arial, sans-serif;
    color: #fff;
    font-style: none;
    text-shadow: 2px 2px #1d3c66;
    margin-bottom: 5px;
    margin-top: 50px
}

#About h2{
    font: 300 24px/34px "Raleway", Helvetica, Arial, sans-serif;
    color: #fff;
    margin-bottom: 25px;
}

#About h3{
    font: 400 21px/24px "Playfair Display", Georgia ,Times, serif;
    color: #fff;
    margin-bottom: 60px;
}

#About img{
    display: block;
    margin: 0 auto;
}


    /* 1.4 Footer */


#Footer h3{
    font-family: "Raleway", Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 21px;
    margin-bottom: 15px;
}

#Footer p{
    font: 400 19px/30px "Playfair Display", Georgia ,Times, serif;
    color: rgb(165, 165, 165);
}

#Footer ul{
    list-style: none;
    text-align: center;
}

#Footer li{
    margin: 25px 0;
}


    /* 1.5 content-v*/

.themen{
    margin-bottom: 25px;
}

.image_v{
    position: relative;
    width:85%;
    background-color: #dadada;
    margin: 0 auto;
}

.image_v_img{
    display: block;
    width: 100%;
    z-index: -1;
}

.image_v_overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color:#fff;
    font-family: "Raleway", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s;
}


.image_v_overlay--blur{
    backdrop-filter: blur(3px);
}

.image_v_overlay > *{
    transform:translateY(20px);
    transition: transform 0.5s;
}

.image_v_overlay:hover > *{
transform:translateY(0);
}

.image_v_overlay:hover{
    opacity: 1;
}

#img_v_txt{
    font-weight: bold;
    color: #fff;
    width: 600px;
    font-size: 35px;
    line-height: 45px;
    letter-spacing: 3px
}



.img_v_txt::before, 
.img_v_txt::after{
    color: #a3d6ea;
    font-size: 60px;
}



#content-v{
    background-color: #dadada;
    overflow: hidden;
    padding-bottom: 50px;
}

#content-v h2{
    margin: 40px 0 20px 0;
}

    /* content_g */

.content_g{
    background-color: #dadada;
}

.content_g_h2{
    padding-top: 2rem;
    margin: 0 0 2rem 0;
    border-bottom: 2px solid #a3d6ea;
}

.content_g_space{
    margin: 3rem 0 1.5rem 0;
}

.space_after{
    padding-bottom: 4rem;
    margin: 0;
}

    /* content-k */

.content-k{
    background: #dadada;
    overflow: hidden;
}


.partner-block{
    background-color: #fff;
    display: flex;
    flex-direction: row;
    margin: 2em;
    text-align: center;
}

.partner-bild{
    margin: 2em;
    flex-basis: 30%;
}

.partner-bild img{
    border-radius: 5%;
    -webkit-border-radius: 5%;
    -moz-border-radius: 5%;
    -ms-border-radius: 5%;
    -o-border-radius: 5%;
}

.partner-text{
    margin: 1em;
    flex-basis: 70%;
}

.partner-text p{
    padding: 0 1.5rem;
}

/* content-c */

.content_c{
    background-color: #dadada;
    overflow:hidden;
}

.content_c_img{
    border-radius: 2%;
    max-height: 500px;
    margin-top: 1.5rem;
}

.content_c_txt{
    line-height: 1.8rem;
    padding: 1.5rem 1rem;
}

.text_c{
    padding-top: 15px;
}
/* contnet-con */

.content-con{
    background-color: #dadada;
    overflow: hidden;
}
    /* kontakt_p */

.kontakt_p{
    margin-top: 32px;
}



.content_a{
    background: #dadada;
}

    /********** 
    Typographie
     ********/

h1, 
h2, 
h3, 
h4, 
h5, 
h6{
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    color: #212121;
    margin-top: 25px;
}

h1{
    font-size: 2.5rem;
    font-size: 40px;
    font-weight: 700;
    line-height: 45px;
    margin: 45px 0;
    color: #1d3c66;
    text-shadow: 1px 1px #a3d6ea;
}

h2{
    font-size: 2.125rem;
    font-size: 34px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 20px;
}

h3{
    font-size: 1.75rem;
    font-size: 28px;
    font-weight: 600;
    line-height: 34px;
    margin-bottom: 20px;
}

h4{
    font-size: 1.5rem;
    font-size: 24px;
    font-weight: 600;
    line-height: 27px;
    margin-bottom: 15px;
}

h5{
    font-size: 1.1875rem;
    font-size: 19px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 10px;
}

p{
    font-size: 1.125rem;
    font: 400 18px/26px "Playfair Display", Georgia ,Times, serif;
    margin-bottom: 20px;
}

.small{
    font-size: 1rem;
    font: 400 16px/26px "Playfair Display", Georgia ,Times, serif;

}

strong{
    font-size: 2rem;
    font-size: 19px;
    font-weight: 700;
    color: #000;
}

blockquote{
    font-size: 1.25rem;
    font: 500 20px/28px "Playfair Display", Georgia ,Times, serif;
    font-style: italic;
    margin: 20px auto;
    padding: 0 50px;
    text-align: justify;
}
blockquote::before,
blockquote::after{
    color: #a3d6ea;
    font-size: 2.188rem;
    font-size: 35px;
    text-shadow: 1px 2px #1d3c66;
}
blockquote::before{
    content:"“";
}

blockquote::after{
    content: "„";
}

#Coaching h2, 
#Vortraege h2, 
#Gutachten h2, 
#Koop h2{
    font-size: 2.125rem;
    font: 600 34px/39px "Raleway", Helvetica, Arial, sans-serif;
    color: #212121;    
    padding: 5px 0 20px 2  ;
    
}

#Coaching h3, 
#Vortraege h3, 
#Gutachten h3, 
#Koop h3{
    font-size: 1.25rem;
    font: 500 20px/29px "Playfair Display", Georgia ,Times, serif;
    color: #202124;
    margin-bottom: 35px;
}

    /* 2.1 Liste */

ul{
    list-style: none;
    margin-bottom: 35px;
}

 li{
     font-size: 1.438rem;
    font: 400 23px/38px "Raleway", Helvetica, Arial, sans-serif;
    margin-bottom: 10px;
    background-color: #a3d6ea;
}


    /* Datenschutz / Impressum */



.daten ul li{
    background-color: #fff;
    padding: 0;
    margin: 0;
}

.daten a{
    color: black;
}

.daten li,
.daten p,
.daten h1,
.daten h2,
.daten h3{
    font-size: 16px !important;
    margin-bottom: 5px;
    color: #000;
}
    /* 2.2 Links */

a{
    color: #1d3c66;
    text-decoration: none;
    font-weight: 700;
    font-family: "Raleway", Arial, Helvetica, sans-serif;  
}

a:hover{
    color: #6b6b6b;
    text-decoration: underline;
}


.media_link{
    background-color: unset;
    list-style: none;
    border-bottom: none;
}

.media_link::before{
    content:"";
}

.fab{
    font-size: 3.125rem;
    font-size: 50px;
    cursor: pointer;
    color: #a3d6ea;
    text-decoration: none;
}

.fab:hover{
    color: rgba(165, 165, 165);
}


.link {
    text-decoration: none;
    color: #a3d6ea;
    font-weight: 400;
}

.link:hover{
    color: rgb(165, 165, 165);
    border-bottom: 1px solid #a3d6ea;
    border-radius: unset;
}

.page_link{
    font-family: "Raleway", Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 1.313rem;
    font-size: 21px;
    margin-bottom: 15px;
    color: #212121;
    border-bottom: 1px solid #212121;
}


    /* 2.3 Tabelle */


table{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    padding-bottom: 25px;
}

th,
td{
    padding: 0 30px;
}

th{
    margin-bottom: 25px;
    font: 600 22px/34px "Raleway", Helvetica, Arial, sans-serif;
    font-size: 1.375rem;
}

tr{
    margin-bottom: 25px;  
}

    /************ 
    3. Buttons
    *************/

.arrow{
    font: 400 24px/20px "Raleway", Helvetica, Arial, sans-serif;
    background: #6b6b6b;
    border-radius: 6px;
    color: #000;
    padding: 3px 10px 6px 10px;
    text-decoration: none;
    box-shadow: inset 0 0 0 0 #a3d6ea;
    transition: .4s ease-in-out;
}

.arrow:hover{
    box-shadow: inset 44px 0 0 0 #a3d6ea;
    text-decoration: none;
}



#about-button{
    font: 600 18px/20px "Raleway", Helvetica, Arial, sans-serif;
    background: #1d3c66;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    padding: 8px 8px;
}

#about-button:hover{
    background: #a3d6ea;
    color: #000;
    transition: .2s;
}



    /****************** 
    4.optische Elemente 
    *******************/

.themen-trennung{
    width: 75%;
    margin: 20px auto;
}



hr{
    height: 2px;
    background-color: #a3d6ea;
    border: none;
    margin: 80px 0;
}


    /* 4.1 Bilder */

#Coaching img, 
#Vortraege img,
#Gutachten img, 
#Koop img,
.content_g_img{
    display: block;
    margin: 0 auto;
}



    /********** 
    5. Formular
    ***********/


form{
    padding-bottom: 250px;
}

label{
    display: block;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 9px;
}

input[type="text"],
input[type="checkbox"],
input[type="radio"], 
textarea, select{
    margin-bottom: 20px;
}

input[type="text"], 
textarea, 
select{
    width: 350px;
    border: 1px solid #1d3c66;
    padding: 5px;
    font: 400 15px/24px "Raleway", Helvetica, Arial, sans-serif;
}

textarea{
    height: 100px;
}

input:hover, 
textarea:hover{
    border: 1px solid #a3d6ea;
}

input:focus, 
textarea:focus{
    border: 1px solid #4b4b4b;
    background: #a3d6ea;
}

input[type="submit"], 
input[type="reset"]{
    border: 0;
    cursor: pointer;
    margin-right: 20px;
    margin-bottom: 25px;
    background:#a3d6ea;
    padding: 7px 10px;
    color: #000;
    font-size: 16px;
    border-radius: 4px;
}

input[type="reset"]{
    background: #606769;
}

input[type='submit']:hover, 
input[type='reset']:hover{
    background-color: #dadada;
    color: #1d3c66;
    text-shadow: none;
    }






    /* Media Queries*********/

@media only screen and (min-device-width: 980px) and (max-device-width: 1279px){

    .menu-btn{
        display: none;
    }
}

@media only screen and (min-device-width: 720px) and (max-device-width: 979px){

    #navigation{
        display: none;
        width: 100%;
        margin: 0px 0 0 0 !important;
    }
 
    #navigation li{
        display: block !important;
        background: #a3d6ea !important;
        width: 100%;
        border-bottom: 1px solid #333;
    }

    #navigation li a{
        color: #fff;
        display: block;
    }

    #navigation li a:hover{
        background: #1d3c66;
        color:#fff;
    }

    #navigation li:first-child{
        border-top: 1px solid #333;
    }

    #navigation ul {
        top: 56px;
        left: 0;
        padding-top: 0;
        display: block !important;
        width: 100%;
        position: relative;
    }

    #navigation ul li a{
        width: 100vw !important;
    }

    #navigation ul li a:hover{
        background: #1d3c66;
        color: #fff;
    }

    #toggle-button-menu{
        display: block;
        background: #a3d6ea;
        color: #fff;
        padding: 8px 0 5px 0;
        position: relative;
    }

    
}

@media only screen and (max-device-width: 719px) {

    body{
        padding-bottom: 780px;
        background: #dadada;
        font-size: 2.5rem;
    }

    


    #About{
        display: inline-block;
        width: 100%;
        padding-top: 5px;
    }
    .home{
        padding-top: 40px;
    }
    
    .wrapper{
        width: 100%;
    }

    .active{
        color: #fff !important;
    }

    .image_v{
        margin-top: 25px;
    }

    .more_button{
        display: none !important;
    }
  
    #navigation{
        display: none;
        width: 100%;
        margin: 0px 0 0 0 !important;
    }
 
    #navigation li{
        display: block !important;
        background: #a3d6ea !important;
        width: 100%;
        border-bottom: 1px solid #333;
    }

    #navigation li a{
        color: #fff;
        display: block;
    }

    #navigation li a:hover{
        background: #1d3c66;
        color:#fff;
    }

    #navigation li:first-child{
        border-top: 1px solid #333;
    }

    ul#navigation ul{
        top: 56px;
        left: 0;
        padding-top: 0;
        display: block !important;
        width: 100%;
        position:  relative;
    }

    ul#navigation ul li a{
        width: 100vw !important;
    }

    ul#navigation ul li a:hover{
        background: #1d3c66;
        color: #fff;
    }

    #toggle-button-menu{
        display: block;
        background: #a3d6ea;
        color: #fff;
        padding: 8px 0 5px 0;
        position: relative;
    }

    i.material-icons{
        font-size: 2.5rem;
    }
   

    .balken{
        display: none;
    }

    .Footer_col{
        width: 96% !important;
    }

    .Footer{
        left: 0;
    }

    .col_1,
    .col_1_2,
    .col_1_3
    {
        width: 96%;
    }
 
    .content_c,
    .Footer,
    .content-con,
    .content-k,
    .content_g,
    #content-v,
    .w_about{
        display: inline-block;
        padding-top: 15px;
    }

    form{
        padding-bottom: 25px !important;
    }

    .partner-block{
        flex-direction: column;
    }
    
    .partner-bild img{
        height: 300px;
    }

    strong{
        font-size: 2rem;
    }

    h1{
        font-size: 2.75rem;
        font-size: 45px;
        font-weight: 700;
        line-height: 45px;
        margin: 45px 0;
        color: #1d3c66;
        text-shadow: 1px 1px #a3d6ea;
    }
    
    h2{
        font-size: 2.25rem;
        font-size: 34px;
        font-weight: 700;
        line-height: 40px;
        margin-bottom: 20px;
    }
    
    h3{
        font-size: 2rem;
        font-size: 28px;
        font-weight: 600;
        line-height: 34px;
        margin-bottom: 20px;
    }
    
    h4{
        font-size: 1.75rem;
        font-size: 24px;
        font-weight: 600;
        line-height: 27px;
        margin-bottom: 15px;
    }
    
    h5{
        font-size: 1.25rem;
        font-size: 19px;
        font-weight: 600;
        line-height: 30px;
        margin-bottom: 10px;
    }
    
    p{
        font-size: 1.275rem;
        font: 400 18px/26px "Playfair Display", Georgia ,Times, serif;
        margin-bottom: 20px;
    }
}