@font-face {
  font-family: "helvetica";
  src: url("../Helvetica.otf");
}
@font-face {
  font-family: "impact";
  src: url("../Impact.ttf");
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "helvetica";
}

header {
  width: 100%;
  padding: 1.25rem;
  background: transparent !important;
}

.header-block-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-block-logo {
  width: 150px;
  height: 30px;
}
.header-block-logo img {
  display: block;
  -o-object-fit: fill;
     object-fit: fill;
  width: 100%;
  height: 100%;
}

.header-block-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-link {
  margin-right: 1.25rem;
  position: relative;
}
.header-link a {
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.12rem;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.header-link a:hover {
  text-decoration: underline;
}

.header-list {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 1;
  white-space: nowrap;
  list-style: none;
  padding-left: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  padding-top: 0.6rem;
}
.header-list li {
  padding-bottom: 3px;
}

.header-link:hover .header-list {
  opacity: 1;
  visibility: visible;
}