.Header,
.Header--mobile,
.Header-mobileLinkContainer {
  z-index: 3;
}

.Header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 40px;
  width: calc(100% - 80px);
  background: #f6f3ef;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.30);
}

.Header-logo {
  height: 15px;
  width: 167px;
  padding-bottom: 2px;
  margin-right: 30px;
  fill: #4a4a4a;
}

.Header-logoIcon {
  width: 100%;
  height: 100%;
}

.Header-links {
  display: flex;
}

.Header-links--right {
  margin-left: 30px;
  margin-right: -15px;
}

.Header-link {
  text-transform: uppercase;
  margin: 4px 15px 0px 15px;
  font-weight: bold;
  color: #7f7e7c;
  text-decoration: none;
  font-family: "Din", "Helvetica", "Arial", sans;
}

.Header-link:hover,
.Header-link--active {
  color: #4a4a4a;
}

.Header-link--withIcon {
  display: flex;
}

.Header-icon {
  fill: #7f7e7c;
  height: 14px;
  width: 18px;
  padding-left: 5px;
}

.Header-icon .Icon {
  fill: #7f7e7c;
  height: 14px;
  width: 18px;
  padding-left: 5px;
}

.Header-icon--mail {
  margin-top: -1px;
}

.Header-link--active .Header-icon {
  fill: #4a4a4a;
}

.Header-link:hover {
  color: #00928f;
}

.Header-link:hover .Header-icon {
  fill: #00928f;
}

.Header--mobile {
  display: none;
}

@media (max-width: 1024px) {
  .Header {
    padding: 0 20px;
    width: calc(100% - 40px);
  }
}

@media (max-width: 770px) {
  .Header {
    display: none;
  }

  .Header--mobile {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 40px;
    width: calc(100% - 40px);
    background: #f6f3ef;
  }

  .Header--mobile:hover .Header-icon--menu,
  .Header--mobile:hover .Header-icon--close {
    fill: #cc3868;
  }

  .Header-icon.is-hidden {
    display: none;
  }

  .Header-link {
    padding: 15px 0;
    color: #4a4a4a;
  }

  .Header-icon--mail {
    fill: #4a4a4a;
  }
}

.Header-mobileLinkContainer {
  margin-top: 40px;
  position: fixed;
  width: 100%;
  background: rgba(255, 255, 255, .9);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 2000px;
}

@media (min-width: 771px) {
  .Header-mobileLinkContainer {
    display: none;
  }
}

.Header-mobileLinkContainer--closed {
  display: none;
}
