/**************************************** Start ****************************************/
body{
  background-color: var(--c-body);
  image-rendering: -webkit-optimize-contrast;
}
#page-1 #mainHeader {
    display: none;
}
#mainHeader {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 20px 0;
  z-index: 9999;
  /*background:  var(--c-head);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;*/
  transition: all .2s ease;
}
#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;	
}
/**************************************** fixed ****************************************/
#mainHeader.fixed #mainNav ul li a{
  padding: 5px 10px;
}

/**************************************** Slider DIV ***********************************/
#slider{
  position: relative;
  z-index: 2;
}
#slider .swiper-slide{
  line-height: 0;
}
#slider svg{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}

/**************************************** Footer ****************************************/
#mainFooter{    
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  background: var(--c-footer);
  padding: 6em 0 0 0;
  color: var(--c-white);
}
#mainFooter .articleInner {
  width: 100%;
  margin: auto;
  padding: 0;
}
#mainFooter img {
  max-width: 200px;
}
#mainFooter .footerCol{
  min-height: 5px;
}
#mainFooter a{
  color: var(--c-footerLink);
}
#mainFooter h4 {
  font-size: 24px;
  line-height: 1.16667;
  margin: 0 0 25px 0;
}
#mainFooter .first{
  margin-bottom: 90px;
}
.threeCols.first .border {
  padding-left: 20px;
}
#subFooter {    
  padding: 15px 0 0 0;
  border-top: 1px solid var(--c-white);
}
#subFooter h4 {
  font-size: 12px;
}
#footerNav ul li {
  display: inline-block;
  margin-left: 15px;
}
#subFooter h4,
#footerNav{
  float: left;
  line-height: 1;
}
#subFooter:after {
  content: "";
  clear: both;
}

#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;
}

