*, *:before, *:after {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing:border-box;
    font-family:"Malgun Gothic";
}

h1{
    font-size:20px;
}
header{
    width:100%;
    top:0;
    position:fixed;
    z-index:5;

}
main{
    padding-bottom:120px;
}

#logo img{
    width:50px;
    height:50px;
    margin: 13px 15px;

}
#logo {
    float:left;
    position:absolute;
    z-index:50;

}
/* Desktop Navigation*/
.mynavbar_container{
    background-color:#231e20;
    width:100%;
    height:76px;
    padding: 0 10px;
    justify-content:center;

}
.mynavbar_menu{
    margin-left:40%;

}
a.mynavbar_item{
    color:#13a06c;
    font-size:18px;
}

a.mynavbar_item:hover{
    color:black;
}
.mynavbar_active{
    color:black !important;
    background-color:white;
}

/* Mobile Navigation*/

#mobile_navigation{
    margin-top:70px;
    margin-right:70px;
    background-color:#231e20;
    display:none;
}
/* hamburger */
.burger_nav_open{
    display: block;
}
.hamburger .line{
    width: 50px;
    height: 5px;
    background-color: #ecf0f1;
    display: none;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.hamburger:hover{
    cursor: pointer;
}
#hamburger-9{
    display: none;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#hamburger-9.is-active{
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#hamburger-9:before{
    content: "";
    position: absolute;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#hamburger-9.is-active .line{
    width: 35px;
}

#hamburger-9.is-active .line:nth-child(2){
    opacity: 0;
}

#hamburger-9.is-active .line:nth-child(1){
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(13px);
    -o-transform: translateY(13px);
    transform: translateY(13px);
}

#hamburger-9.is-active .line:nth-child(3){
    -webkit-transform: translateY(-10px) rotate(90deg);
    -ms-transform: translateY(-13px) rotate(90deg);
    -o-transform: translateY(-13px) rotate(90deg);
    transform: translateY(-7px) rotate(90deg);
}
/* hamburger end*/


/* background mit parallax effect*/
.background{
    background:no-repeat center center;
    background-size: cover;
    width:100%;
}
#background_home {
    background-image: url("../img/header_bild_sunset.jpg");
}
#background_TB {
    background-image: url("../img/background_flower.jpg");
}
#background_KS{
    background-image: url("../img/background_leaves.jpg");
}
#background_JS {
    background-image: url("../img/background_wheat.jpg");
}
.mobile_height_bg{
    height:100vh;
}

@keyframes text_animation {
    0% {
        padding-top: 0;
        opacity:0;
    }
    100% {
        padding-top: 55px;
        opacity:1;
    }
}
/*home*/
#welcome_container{
    color:#858585;
    width:100%;
    padding:40px;
    background-color:#231e20;
    border-radius: 15px;
}


/* main */
.title {
    width:100%;
    margin-top:40px;
    position: absolute;
    z-index:2;

}
.title h1 {
    text-align:center;
    font-size: 40px;
    color: azure;
    -webkit-animation-name: text_animation;
    -moz-animation-name: text_animation;
    -o-animation-name: text_animation;
    animation-name: text_animation;
    animation-fill-mode: forwards;
    animation-duration: 3s;
    filter:drop-shadow(0 0 1.5px rgba(0,0,0,0.7));
}
main{
    padding-top:200px;
}
.main_wrapper{
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
/*Biography container*/
#biography_container{
    height:247px;
    margin:35px;
    background-color:#231e20;
    -webkit-box-shadow: 1px 1px 8px 2px rgba(0,0,0,0.37);
    -moz-box-shadow: 1px 1px 8px 2px rgba(0,0,0,0.37);
    box-shadow: 1px 1px 8px 2px rgba(0,0,0,0.37);
    border-radius: 15px;
}
#biography_img{
    width:34%;
    padding:12px;
    float:left;
    display:inline-block;
}
#biography_content{
    width: 57%;
    color: #858585;
    margin-left: 400px;
    padding: 64px 43px;
    border-radius: 15px;


}

/* slideshow Container*/
#slideshow{

}



/* Contact Container*/
#kontaktanfrage{
    width:630px;
    height:110px;
    margin-top:130px;
    margin-left:auto;
    margin-right:auto;
    padding:20px;
    background-color:#231e20;
    color:#13a06c;
}

footer{
    width:100%;
    height:120px;
    background-color:#231e20;
}
/* impressum Container*/
.impressum{
    float:left;
    height:100%;
}
.impressum p{
    margin-top:40px;
    margin-left:40px;
    display:inline-block;
}

.impressum a{
    font-size:1.3em;
    text-decoration: none;
    color:white;
}
.impressum a:hover{
    transition:0.5s;
    color:#13A06C;
}


/* social Navigation Container*/
#socialnav_container{
    width:240px;
    height:50px;
    background-color:transparent;
    float:right;
    margin-top:35px;
}
.socialnav_icons{
    list-style:none;
    margin-left:7px;
    margin-right:7px;
    display:inline-block;
}
.socialnav_icons img{
    width:50px;
    height:50px;
    filter:drop-shadow(0px 4px 0px #13A06C)
}


/* Style for „„ at biography Container*/
.symbol_change_left{
    margin-left:-40px;
    margin-top:-80px;
    font-size:3em;
    position:absolute;
    opacity:0.5 ;
    font-family: Georgia;
}
.symbol_change_right{
    margin-left:175px;
    margin-top:-15px;
    font-size:3em;
    position:absolute;
    opacity:0.5 ;
    font-family: Georgia;
}

/*css gallery */
#gallery_container{
     width:100%;
     margin-top:120px;
     padding:23px;
     background-color:#231e20;
     border-radius: 15px;

 }
.gallery_title{
    text-align:center;
    padding:25px;
    color:white;
    font-size:22px;
}
span.gallery_content{
    width:450px;
    color:#13a06c;
}

.image_output{
    height:auto;
    padding:5px;
    border-radius: 15px;
    cursor:pointer;
    max-width: 30%;
}
.gallery-lightbox{
    flex-direction:column;
    position:fixed;
    display:flex;
    justify-content:center;
    align-items:center;
    background-color:rgba(0,0,0,0.9);
    left:0;
    right:0;
    bottom:0;
    top:0;
    z-index:500;

}
.gallery-close{
    position:absolute;
    top: 40px;
    right:40px;
    font-size:40px;
    background:transparent;
    color:#fff;
    filter:drop-shadow(0 0 3px rgba(0,0,0,0.7));
    border:none;
    display:block;
    cursor:pointer;
}
.gallery-next{
    position:absolute;
    top: 50%;
    right:40px;
    transform: translate(0, -50%);
    background:transparent;
    color:#fff;
    border:none;
    font-size:50px;
    filter:drop-shadow(0 0 3px rgba(0,0,0,0.7));
    cursor:pointer;
}
.gallery-previous{
    position:absolute;
    top: 50%;
    left:40px;
    transform: translate(0, -50%);
    background:transparent;
    color:#fff;
    border:none;
    font-size:50px;
    filter:drop-shadow(0 0 3px rgba(0,0,0,0.7));
    cursor:pointer;
}
.gallery-image-container{
    display:flex;
    max-height: 80vh;
    max-width:90vw;

}
.gallery-image-container img{
    object-fit: contain;
}
.gallery-status{
    color:#fff;
    margin-top:10px;
    font-size:22px;
}

/*Contakt css*/
.kontakt_content{
    text-align:center;
    padding:25px;
    font-size:22px;
    margin: 0 0 40px 0;
    color:#858585;


}
span.kontakt_content{
    width:650px;
    color:#13a06c;
}

form {
    width:70%;
    margin:auto;
    margin-top:80px;
    padding: 50px;
    background: #231e20;
    color:#13a06c;
    -webkit-box-shadow: 1px 1px 8px 2px rgba(0,0,0,0.37);
    -moz-box-shadow: 1px 1px 8px 2px rgba(0,0,0,0.37);
    box-shadow: 1px 1px 8px 2px rgba(0,0,0,0.37);
    border-radius:15px;
}
.form-field {
    display: block;
    width: 100%;
    margin-bottom: 60px;
}
.form-label {
    margin-bottom:17px;
    display: block;
    text-transform: uppercase;
    font-size: 0.8em;
}
.form-input {
    display: block;
    padding: 15px;
    width: 100%;
    border: none;
    border-bottom: 4px solid transparent;
}

.form-input:focus {
    outline: none;
    border-bottom: 4px solid #4e8442;
}

.form-error .form-input {
    border-bottom-color: red;
}

.form-error .form-label {
    color: red;
}

.form-button {
    display:block;
    background: #13A06C;
    border: none;
    font-size:1.2em;
    padding: 20px 60px;
    color: white;
    cursor: pointer;
    margin:auto;
    border-radius:15px;

}

/* clear class for float*/
.clear{
    clear:both;
}




