#debug {
  background: var(--c-default);
  color: var(--c-white);
  position: fixed;
  z-index: 9999;
  left: 1%;
  bottom: 2%;
  padding: var(--main-padding);
}

/**************************************** Start ****************************************/
body{
  background-color: #fff;
  image-rendering: -webkit-optimize-contrast;
}
#mainHeader {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 20px 0;
  z-index: 9999;
  background: var(--c-white); 
  transition: all .2s ease;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
#page-1 #mainHeader {
  background: transparent; 
  box-shadow: unset;
}
#mainHeader .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%; 
}
/* HEADFIX  */
#mainHeader.fixed{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 949;
  padding: 5px 0;	
  background: var(--c-white);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
#page-1 #mainHeader.fixed {
  background: var(--c-white);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
/**************************************** fixed ****************************************/
#mainHeader.fixed #mainNav ul li a{
  padding: 5px 10px;
}

/**************************************** MainContent ***********************************/
#mainContent{
}

/**************************************** Footer ****************************************/
#mainFooter{   
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  background: var(--c-purple);
  padding: 6em 0 0 0;
  color:#fff;
}
#mainFooter h2 {
  color: var(--c-white);
}
#mainFooter img {
  max-width: 250px;
}
#mainFooter a{
  color: var(--c-white);
}
.icon-class {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 41px;
  height: 41px;
  font-size: 1.2em;
}
.icons-fa.left .icon-class {
  margin-right: 8px;
}
.icons-fa.right .icon-class {
  margin-left: 8px;
}
.icon-class.lila {
  background: var(--c-purple);
  color: var(--c-white);
  transition: all .3s ease;
} 
.icon-class.lila:hover {
  background: var(--c-brown);
  color: var(--c-white);
} 
.icon-class.braun {
  background: var(--c-brown);
  color: var(--c-white);
  transition: all .3s ease;
} 
.icon-class.braun:hover {
  background: var(--c-purple);
  color: var(--c-white);
} 
.icon-class.weiss {
  background: var(--c-white);
  color: var(--c-brown) !important;
  transition: all .3s ease;
} 
.icon-class.weiss:hover {
  background: var(--c-brown);
  color: var(--c-white) !important;
} 
#mainFooter .icon-class {
  font-size: 1.5em;
}
#mainFooter a.faceFooter:hover, #mainFooter a.instaFooter:hover {
  background: var(--c-brown);
  color: var(--c-white);
  opacity: 1;
}
#mainFooter p {
  line-height: 1.4;
}
#mainFooter .Fsecond ul li {
  display: inline-block;
  margin-left: 15px;
}
#mainFooter .Fsecond ul li:first-child {
  margin-left: 0;
}
#mainFooter .hFirst {
  line-height: 1.16667;
  margin: 0 0 25px 0;
}
#mainFooter .Fsecond .hFirst:before {
  content: "";
  border-bottom: 1px solid #ccc;
  width: 15%;
  float: left;
  vertical-align: unset;
  padding: 15px 0 0 0;
  margin: 0 5px 0 0;
}
#mainFooter .Ffirst, #mainFooter .Fsecond {
  margin-bottom: 20px;
}
.threeCols.Ffirst .border {
  padding-left: 20px;
}
#subFooter {    
  padding: 15px 0 0 0;
}
#subFooter .inner {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--c-white);
  padding: 8px 0 16px;
}
#footerNav {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}
#footerNav ul li {
  display: inline-block;
  margin-left: 15px;
}
#subFooter a {
  /*text-transform: uppercase;*/
}
#footerNav{
  line-height: 1;
}

#overlay{
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 950;
  background: rgba(0, 0, 0,0.6);
  cursor: pointer;
  opacity: 0;
  display: none;

  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}


#page-11 .nav, 
#page-12 .nav, 
#page-11 .burger, 
#page-12 .burger {
  display: none;
}