.Header {
  position: relative;
  z-index: 101;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  padding: 40px 0 0;
  background-color: #ffffff;
  box-shadow: 5px 5px 20px 1px rgba(0, 0, 0, 0.3);
}@media screen and (min-width: 850px) {.Header {
    position: sticky;
    flex-direction: row;
    padding: 20px 0 30px;
}
  }

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

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

.Header-center {
    margin-bottom: 60px;
}
  }

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .Header-center {
    justify-content: left;
    margin-left: 100px;
  }
}

.Header-right {
  width: 100%;
}

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

.Header-right {
    position: absolute;
    right: 50px;
    width: auto;
}
  }

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

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

.Header-socialMedia {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-bottom: 10px;
  font-size: 2.5rem;
}

.Header-socialMedia a {
    margin-left: 15px;
  }

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

.Header-socialMedia {
    display: none;
}
  }

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

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

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

.Header-easyLanguageLink {
  position: relative;
  display: none;
  margin-right: 10px;
}

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

.Header-easyLanguageLink {
    display: block;
}
  }

.Header-easyLanguageLink img {
    width: 30px;
    height: 30px;
  }

.Header-easyLanguageLink:hover {
    .Header-easyLanguage-hoverText {
      display: flex;
    }
  }

.Header-easyLanguage-hoverText {
  position: absolute;
  top: 40px;
  left: -55px;
  display: none;
  justify-content: center;
  width: 155px;
  padding: 0 6px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  background: rgba(128,128,128,0.2);
  color: #000000;
}
