body{
    margin: 0%;
    background-color: #F9F4F4;
    color: gray;
    font-family: Arial;
    
}

/*  special classes   -----------------------------------------------------------------*/

.navigation_links{
    color: white;
    text-decoration: none;
}

.big_headings{
  font-size: 30px;
  font-weight: bold;
  color: darkseagreen;
}

.smaller_headings{
  font-size: 10px;
  font-weight: bold;
}






/* CSS Header ------------------------------------------------------------------------ */

header{
    position: fixed;
    width: 100%;
    margin: 0 auto;
    top: 0px;
    left: 0px;
    background: rgb(255,255,255);
    height: 122px;
    z-index: 999;
}

#header_div{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 1200px;
  padding: 0px 20px;
  max-width: 100%;
  margin: 0 auto;
  align-items: center;
  box-sizing: border-box;

}



#header-img{
  height: 122px;
}






#nav_icon{
    display: block;
    position: absolute;
    text-align: center;
    font-weight: bold;
    color: white;
    right: 40px;

  }


 div{
     display: block;
 }







.control-this{
    margin-top: 0%;
}


.hide{
    position: absolute;
    left: -100vw;
    }






#nav-icon{
    display: block;
    position: absolute;
    color: white;
    right: 40px;
}


#nav_icon span::before{
  background-color: darkgray;
  width: 24px;
  height: 1.5px;
  position: absolute;
  display: block;
  content: '';
  margin-bottom: 5px;
  top: -5px;
}


#nav_icon span::after{
  background-color:darkgray;
  width: 24px;
  height:1.5px;
  position: absolute;
  display: block;
  content: '';
  margin-top: 5px;
}


span{
    background-color:darkgray;
    width: 24px;
    height:1.5px;
    position: absolute;
    display: block;
    content: '';
}



ul{
    list-style-type: none;
    display: flex;
}



li{
    color: darkseagreen;
    font-weight: bold;
    font-family: Arial;
    cursor: pointer;
    text-decoration: none;
    height: 100%;
    padding-left: 2px;
    padding-right: 2px;
    margin-left: 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}



.header_links{
    color: darkseagreen;
    align-self: center;
    font-size: 20px;
    padding-left: 10%;
    font-weight: bold;
    font-family: Arial;
    cursor: pointer;
    text-decoration: none;
}

.header_links:hover{
    text-decoration: darkseagreen underline;
}





/*  CSS Main  ---------------------------------------------------------------------*/


.main{
   margin-top: 122px;
}


h3{
    font-weight: bold;
    align-self: center;
    font-family: Arial;
    font-size: 30px;
}


#header-wrapping{
    display: flex;
    flex-direction: column;

}





#main{
    margin-top: 202px;
}


.content-width{
  box-sizing: border-box;
  max-width: 100%;
  padding:  0 20px;
  width: 1300px;
  margin:  0 auto;
  text-align: center;
}



footer{
    width: 100%;
    margin: 0 auto;
    top: 0px;
    left: 0px;
    min-width: 320px;
    background: darkseagreen;
    z-index: 999;
    padding-top: 20px;

}



#footer_div{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 1200px;
    padding: 0px 20px 10px;
    max-width: 100%;
    margin: 0 auto;
    align-items: center;
    box-sizing: border-box;
}



.standard_content_image{
    height: auto;
    width: 100%;
}





.adress{
    margin-top: 0%;
    margin-bottom: 0%;
    color: white;
    font-size: 15px;

}


#impressum_link{
    color: white;
    margin-bottom: 80px;
    text-decoration: none;
}




/* Classes for Margins and Paddings */


    .padding-top-small{
      padding-top: 20px;
    }

    .padding-top-medium{
      padding-top: 40px;
    }

    .padding-top-big{
      padding-top: 100px;
    }


    .margin-top-small{
      margin-top: 20px;
    }

    .margin-top-medium{
      margin-top: 40px;
    }

    .margin-top-big{
      margin-top: 60px; 
    }




    .padding-bottom-small{
      padding-bottom: 20px;
      }
  
    .padding-bottom-medium{
      padding-bottom: 40px;
      }
  
    .padding-bottom-big{
      padding-bottom: 100px;
      }
  
  
    .margin-bottom-small{
      margin-bottom: 20px;
      }
  
    .margin-bottom-medium{
      margin-bottom: 40px;
      }
  
    .margin-bottom-big{
      margin-bottom: 60px; 
      }



      .bold_header{
        font-weight: bold;
      }



      .positionChange{
        position: relative;
        top: -200px;
      }











/*---------------------------------------------------- ANFANG DER MEDIA --------------------------------------------------------------------------*/
/*---------------------------------------------------- ANFANG DER MEDIA Rule --------------------------------------------------------------------------*/
/*---------------------------------------------------- ANFANG DER MEDIA --------------------------------------------------------------------------*/








  @media only screen and (max-width: 550px) {   

  
    header{
        height: 100px;
    }


    #header-img{
        height: 100px;
    }


    .control-this{
        background-color: darkseagreen;
        position: absolute;
        left: 0px;
        right: 0px;
        top: 100px;
        max-height: 0;
        overflow: hidden;
    }

    ul{
        flex-wrap: wrap;
        margin: 0%;
        padding: 0px;
    }

    li{
        display: block;
        width: 100%;
        border-bottom: 1px solid black;
        margin: 0px;
        padding: 10px 20px;
    }

    

    #nav_toggle:checked ~ .control-this{
        max-height: 90vh;
    }

    #nav_toggle:checked ~ #nav_icon span::before{
       
                transform: translateY(6px) rotateZ(
            -135deg);
    }

    #nav_toggle:checked ~ #nav_icon span::after{
        transform: translateY(-4px) rotateZ(
            135deg);
    }

    #nav_toggle:checked ~ #nav_icon span{
        background: transparent;
    }
}













@media only screen and (max-width: 437px) {   

    #footer_div{
        flex-direction: column;
        text-align: center;
    }

    #adress_container{
        margin-bottom: 20px;
    }

    #impressum_link{
        margin-bottom: 10px;
    }
 }




 @media only screen and (min-width: 550px) { 

    #nav_icon{
        display: none;
    }


    .navigation_links{
        color: darkseagreen;
        text-decoration: none;
    }
    
 }














 /* -----------------------inpressum.html---------------------------------------  */


.body_padding{
  padding: 10%;

}


