/**
 * imxPlattform - apiDoc 2018
 *
 * LICENSE
 *
 * This software and its source code is protected by copyright law (Sec. 69a ff. UrhG).
 * It is not allowed to make any kinds of modifications, nor must it be copied,
 * or published without explicit permission. Misuse will lead to persecution.
 *
 * @copyright  2018 infomax websolutions GmbH
 * @link       http://www.infomax-it.de
 * @package    css
 * @subpackage pageHeader
 * @author     gueldner
 * @since      12.11.2018
 * @version    $Id$
 **/
/*  =========================================================
basic config
general structure setup
logo
headline
========================================================== */
/*  =========================================================
basic config
========================================================= */
/*dimensions*/
/*corporate design*/
/*50 shades of grey*/
/*other colors*/
/*percentage dimensions*/
/*percentage margins*/
/*percentage paddings*/
/*default font settings*/
/*  =========================================================
general structure setup
========================================================= */
#pageHeader {
  position: fixed;
  z-index: 1;
  top: 0px;
  left: 0px;
  right: 0px;
  box-sizing: border-box;
  border-bottom: 1px #eee solid;
  background: #fff;
}
@media (min-width: 1001px) {
  #pageHeader {
    height: 150px;
    padding: 45px 50px;
  }
}
@media (max-width: 1000px) {
  #pageHeader {
    height: 80px;
    padding: 20px 20px;
  }
}
#pageHeader__positionHelper {
  max-width: 1420px;
  margin: 0px auto;
  display: flex;
  justify-content: space-between;
}
/*  =========================================================
logo
========================================================= */
#pageHeader__logo {
  display: block;
}
@media (min-width: 1001px) {
  #pageHeader__logo {
    width: 178px;
    height: 63px;
  }
}
@media (max-width: 1000px) {
  #pageHeader__logo {
    width: 119px;
    height: 42px;
  }
}
/*  =========================================================
headline
========================================================= */
#pageHeader h1 {
  color: #0A2663;
  text-align: left;
  flex: 1 1;
  margin: 0px;
}
@media (min-width: 1001px) {
  #pageHeader h1 {
    font: 900 normal 5.5rem/1em 'NOE Display', serif;
    font-weight: 900;
    font-style: normal;
    font-size: 5.5rem;
    line-height: 1em;
  }
}
@media (max-width: 1000px) {
  #pageHeader h1 {
    font: 900 normal 3.5rem/1em 'NOE Display', serif;
    font-weight: 900;
    font-style: normal;
    font-size: 3.5rem;
    line-height: 1em;
  }
}
/*# sourceMappingURL=_init.css.map */