@charset "UTF-8";
header {
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  z-index: 999;
  width: 100%;
}
header h1 {
  margin: 0;
  width: 250px;
  position: absolute;
  top: 15px;
  left: 3%;
}
header h1 img {
  width: 100%;
}
header nav {
  position: absolute;
  top: 17px;
  right: 2%;
}
header nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
}
header nav ul li {
  text-align: center;
  border-radius: 7px;
  overflow: hidden;
  width: 200px;
  margin-left: 15px;
}
header nav ul li a {
  display: block;
  text-decoration: none;
  padding: 12px 0;
  color: #fff;
  background-color: #58492a;
  position: relative;
}
header nav ul li.pdf a {
  background-color: #796d55;
}
@media screen and (max-width:1050px) {
  header h1 {
    width: 200px;
  }
  header nav {
    position: fixed;
    top: auto;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
    width: 95%;
  }
  header nav ul {
    justify-content: space-between;
  }
  header nav ul li {
    width: 49%;
    margin: 0;
    font-size: 14px;
  }
}