
html, body {
    height: 100%;
    width: 100%;

    
   font-family: 'Open Sans', sans-serif;
   font-size: 16px;
   font-weight: 300;
   color: rgb(80, 80, 80);
   line-height: 30px;
   text-align: center;
   background-color: rgba(242, 238, 226, 1);

}



/*  Navigation   */
 
.navbar {
    background: #444;
    -o-transition: all .6s;
    -moz-transition: all .6s;
    -webkit-transition: all .6s;
    -ms-transition: all .6s;
    transition: all .6s;
    backface-visibility: hidden;
}
 
.navbar.navbar-no-bg {
    background: #f4f0e5;
    background: rgba(244, 240, 229, 0.94);
}
 
.navbar-light .navbar-nav {
    font-size: 15px;
    color: #834032;
    font-weight: 600;
}
 
.navbar-light .navbar-nav .nav-link {
    color: rgb(70, 70, 70);
    color: rgba(68, 68, 68, 0.98);
    border: 0;
}
 
 
.navbar-light .navbar-nav .nav-link:hover {
    color: #834032;
    background: #f4f0e5;
    background: rgba(244, 240, 229, 0.9)
}
 
.navbar-light .navbar-nav .nav-link:focus {
    color: rgb(0, 0, 0);
    outline: 0;
    background: #f4f0e5;
    background: rgba(244, 240, 229, 0.5)
}

.navbar-expand-md .navbar-nav .nav-link {
    padding-left: 1rem;
    padding-right: 1rem;
}
 
.navbar-brand {
    width: 136px;
    background: url("../pic/tool/LogoKistrath.png") left center no-repeat;
    border: 0;
    text-indent: -99999px;
}


/* Seiten Bereiche */

.seite {
    height: auto !important;
    min-height: 100%;
    overflow: hidden;
    padding-top: 70px;
   
}

.start-bereich {
/*
    background: url(../pic/uebersicht/bau_Lager.jpg) no-repeat center;
    background-size: cover;
*/
    font-size: 20px;
}

.beschreibung-bereich {
    
    font-weight: 500;
    text-align: inherit;

    padding-top: 90px;
}

#start .card {
    background-color: rgba(242, 238, 226, 1);
    border: 0px;
}

.storyhead    	
{
  background-color: rgba(185, 180, 167, 0.7);
  padding-top: 1em;
  padding-bottom: 1em;
  margin-bottom: 1em;
}


.mystory {
    /*background-color: rgba(185, 180, 167, 0);*/
    background-color: rgba(242, 238, 226, 1);
}

.mystorybutton {
    background-color: rgba(185, 180, 167, 0.2);
}


  /* Webseite Bauberichte */

  /* Abschnittsüberschrift */
  .ahead    	
  {
    background-color: rgba(185, 180, 167, 0.7);
    padding-top: 1em;
    padding-bottom: 1em;
    margin-bottom: 3em;
  }


    
#bau .container .bau-box {
    position: relative;
    display: block;
  }
  
#bau .container .bau-box .bau-box-text {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    opacity: 0;
    color: rgb(0, 0, 0);
    background: rgba(185, 180, 167, 0.9);
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
    text-align: center;
  }
  
  #bau .container .bau-box:hover .bau-box-text {
    opacity: 1;
  }



