
/* HEADER ///////////////////////////////////////////////////////////////////////////////////////*/

.header {
  min-height: 100%;
  height: 100%;
  position: fixed;
  width: 15%;
  z-index: 101;
}

@media (max-width: 767px) {
  .header {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #cecece;
  }
}

@media (min-width: 768px) {
  .header {
    position: relative;
    width: 100%;
    -moz-box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.1);
  }
  /*ie8*/
  .header {
    border-bottom: 1px solid #dadada\9;
  }
  /*ie9*/
  .header:not(:target) {
    border-bottom: none\9;
  }
  /*ie10*/
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .header {
      border-bottom: none;
    }
  }
}


/* LOGO ///////////////////////////////////////////////////////////////////////////////////////*/

.logo {
  display: block;
  margin: 0 auto;
}
.logo__img {
  width: 98%;
  max-width: 200px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .logo {
    width: 100px;
  }
}
@media (min-width: 481px) and (max-width: 767px) {
  .logo {
    width: 150px;
  }
}
@media (min-width: 768px) {
  .logo {
    width: 150px;
    margin: 0;
  }
}


/* FOOTER ///////////////////////////////////////////////////////////////////////////////////////*/

.footer__secondary {
  padding: 6px 0;
  border-top: 1px solid #d4d4d4;
  font-size: 11px;
}
.footer__copyright {
  color: gray;
}
.footer__copyright strong {
	font-weight: bold;
}
@media (max-width: 767px) {
  .footer__secondary {
    padding: 0;
  }
  .footer__copyright {
    width: auto;
    padding: 20px;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .footer__copyright {
    float: left;
    padding: 10px 0 10px 30px;
  }
}