.Header {
  position: relative;
  width: 100vw;
}

@media screen and (min-width: 769px) {
    .Header::after {
      content: '';
      position: absolute;
      z-index: 10;
      right: 0;
      bottom: 400px;
      display: block;
      width: 200px;
      height: 300px;
      background-image: url('../Images/Pattern-white_header.svg');
      background-repeat: no-repeat;
      background-position: right;
    }
  }

@media screen and (min-width: 1367px) {
    .Header::after {
      bottom: 80px;
    }
  }

.Header-contentWrapper {
  position: sticky;
  z-index: 11;
  top: 0;
  right: 0;
  left: 0;
  background-color: var(--clr-grayDark);
}

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

.Header-contentWrapper {
    position: absolute;
    top: 40px;
    background-color: transparent;
}
  }

.Header-contentWrapper .u-contentWidth {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-radius: 15px;
    background-color: var(--clr-grayDark);
  }

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

.Header-contentWrapper .u-contentWidth {
      padding: 40px;
  }
    }

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

.Header-contentWrapper .u-contentWidth {
      padding: 40px 40px 0;
  }
    }

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

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

.Header-logoLink {
    margin-bottom: 40px;
}
  }

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

.Header-logoLink {
    max-width: 120px;
}
  }

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

.Header-navigationContent {
  display: flex;
  flex-direction: column;
  width: auto;
}

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

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

.Header-metaData {
    margin-bottom: 10px;
}
  }

.Header-searchLink {
  margin-right: 20px;
  color: #ffffff;
}

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

.Header-poster,
.Header-video {
  position: relative;
}

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

.Header-poster,
.Header-video {
    height: auto;
}
  }

.Header-video {
  max-width: 100vw;
}

.Header-video video {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: auto;
  }

.Header-imageContent {
  padding: 20px 0 40px;
}

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

.Header-imageContent {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0 0 60px;
}

    .Header-imageContent.hasGradient {
      background: linear-gradient(0deg, rgba(57, 57, 57, 1) 0%, rgba(255, 255, 255, 0) 100%);
    }
  }

.Header-imageContent h1.capitalize,
  .Header-imageContent h2.capitalize {
    text-transform: none;
    text-transform: initial;
  }

@media screen and (min-width: 1367px) {
    .Header-imageContent h1,
    .Header-imageContent h2,
    .Header-imageContent h3 {
      color: #ffffff;
    }
  }

.Header-imageContent h3 {
    margin: 0;
    font-weight: 400;
  }

.Header-imageContent h1,
  .Header-imageContent h2 {
    margin-top: 10px;
  }

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

.Header-imageContent h1,
  .Header-imageContent h2 {
      max-width: 66%;
  }
    }

.Header-imageContent .Button {
    display: inline-block;
    padding: 15px 20px;
    border: 2px solid var(--font-clr-primary);
    border-radius: 10px;
    font-size: 1.25rem;
    color: var(--font-clr-primary);
  }

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

.Header-imageContent .Button {
      border-color: #ffffff;
      color: #ffffff;
  }
    }

.Header-imageContent .Button:hover {
      background-color: #ffffff;
      color: var(--font-clr-primary);
    }
