.Header {
  position: fixed;
  z-index: 1000;
  width: 100%;
}

.Header-inner {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: space-between;
  height: 130px;
}

.Header-inner::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    pointer-events: none;
    transform: translateX(-50%);
    -webkit-backdrop-filter: blur(17px);
            backdrop-filter: blur(17px);
  }

.Header:not(.menu--active) .Header-inner::before {
  background: rgba(0, 0, 0, 0.6);
}

.Header-logo {
  justify-self: center;
  width: 40%;
}

.Header-logo svg {
    width: 100%;
  }

@media screen and (min-width: 1024px) {

.Header-logo {
    width: 80%;
}
  }

.Header-element {
  display: flex;
  align-items: center;
  justify-self: end;
  transform: translateX(1rem); /** correct the search icon */
}
