.Header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  padding: 15px 10px;
  background-color: var(--clr-primary);
  color: #ffffff;
}

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

.Header {
    padding: 15px 35px;
}
  }

.Header-logoLink {
  display: block;
  line-height: 0;
}

@media screen and (max-width: 992px) {

.Header-logoLink {
    width: 260px;
}

    .Header-logoLink img {
      max-width: 100%;
    }
  }

.Header-mobileMenu {
  display: flex;
  align-items: center;
}

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

.Header-mobileMenu {
    display: none;
}
  }

.Header-mobileMenu .Header-searchLink i {
    font-size: 1.625rem;
    color: #ffffff;
  }

.Header-search {
  display: none;
}

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

.Header-search {
    display: block;
}
  }
