.Hero {
  position: relative;
}

.Hero .Picture {
    height: 355px;
  }

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

.Hero .Picture {
      height: 500px;
  }
    }

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

.Hero .Picture {
      height: auto;
  }
    }

.Hero .Picture-caption {
    display: none;
  }

.Hero-slogan {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 360px;
  background-image: url('../Images/hero-background.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

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

.Hero-slogan {
    position: relative;
    height: auto;
    background-color: var(--clr-primary);
    background-image: none;
}
  }

.Hero-slogan .Headline {
    padding: 20px 0;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
  }

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

.Hero-slogan .Headline {
      font-size: 2rem;
  }
    }

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

.Hero-slogan .Headline {
      padding-bottom: 50px;
  }
    }

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

.Hero--noImage {
    margin-top: 90px;
}
  }

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

.Hero--noImage {
    margin-top: 150px;
}
  }

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

.Hero--noImage {
    margin-top: 320px;
}
  }

.Hero--noImage .Hero-slogan {
    background-color: var(--clr-primary);;
  }
