/* header */
header {
  position: fixed;
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  padding: 11px 0 11px 0;
  background: #fff;
  box-sizing: border-box;
  transition: padding 0.3s;
  text-align: center;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
  background-color: #E59F5A;
}

header .inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
}

.logo_wrapper {
  position: relative;
  margin: 0;
  padding: 0;
  display: block;
}
.logo_wrapper h1 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
  color: #fff;
}
.logo_wrapper span {
  display: none;
}

@media screen and (min-width: 960px) {
  header {
    position: fixed;
    z-index: 4;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 0 18px 0;
    background: #fff;
    box-sizing: border-box;
    transition: padding 0.3s;
    text-align: center;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
  }
  header .inner {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
  }
  .logo_wrapper {
    position: relative;
    margin: 0;
    padding: 0;
    display: block;
  }
  .logo_wrapper h1 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.8;
    color: #333;
  }
  .logo_wrapper span {
    display: block;
    font-size: 12px;
    font-weight: 300;
    color: #EC5E32;
  }
}/*# sourceMappingURL=header_footer.css.map */