.Header {
  position: sticky;
  z-index: 101;
  top: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  padding: 25px 0 15px;
}

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

.Header {
    position: sticky;
    padding: 20px 0 50px;
    background-image: url('../Images/Wave-white.svg');
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: auto 100%;
}
  }

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

.Header {
    flex-wrap: wrap;
    background-color: #ffffff;
}

    .Header::before {
      content: '';
      position: fixed;
      z-index: 2;
      top: 103px;
      right: 0;
      left: 0;
      width: 100%;
      height: 10px;
      background-color: #ffffff;
    }

    .Header::after {
      content: '';
      position: fixed;
      z-index: 1;
      top: 111px;
      right: 0;
      left: 0;
      width: 100%;
      height: 23px;
      background-image: url('../Images/Wave-white.svg');
      filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
      background-repeat: no-repeat;
      background-position: right -20px bottom;
      background-size: auto 103px;
    }
  }

@media screen and (max-width: 850px) {
    .Header::before {
      top: 178px;
    }

    .Header::after {
      top: 186px;
    }
  }

.Header-left {
  display: flex;
}

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

.Header-left {
    flex-basis: 66%;
    order: 1;
}
  }

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

.Header-left {
    width: auto;
}
  }

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

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

.Header-center {
    flex-basis: 100%;
    order: 3;
}
  }

.Header-right {
  display: flex;
  justify-content: flex-end;
}

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

.Header-right {
    order: 2;
    padding-right: 55px;
}
  }

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

.Header-right {
    flex-basis: 33%;
    padding-right: 30px;
}
  }

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

.Header-right {
    width: 20%;
    margin-right: 127px;
}
  }

.Header-logoLink {
  display: block;
  max-width: 220px;
  margin-left: 20px;
}

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

.Header-logoLink {
    margin-left: 30px;
}
  }

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

@media screen and (max-width: 470px) {
  .Header-logoLink img {
    max-width: 210px;
  }
}

.Header-image {
  position: relative;
}

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

.Header-image {
    height: auto;
}
  }

.Header-imageContent {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0 20px;
  text-align: center;
}

.Header-imageContent h3,
  .Header-imageContent h1 {
    font-weight: 500;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.75);
    color: #ffffff;
  }

.Header-imageContent h3 {
    margin: 0;
    font-size: 1rem;
    text-transform: uppercase;
  }

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

.Header-imageContent h3 {
      font-size: 2.25rem;
      font-weight: 700;
  }
    }

.Header-imageContent h1 {
    margin-top: 10px;
    font-size: 2.1875rem;
  }

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

.Header-imageContent h1 {
      font-size: 4rem;
      font-weight: 700;
  }
    }

@media screen and (min-width: 1026px) {
  .Header-bottom {
    margin-top: -30px;
  }

  #homepage .Header-imageContent {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  }
}

.Header-image .Copyright {
  display: none;
}

@media screen and (max-width: 1200px) {
  .Header-image .Picture img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 250px;
  }
}

@media screen and (max-width: 768px) {
  .Header-image .Picture img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
