@keyframes beating-heart {
  0% { transform: scale(1); }
  25% { transform: scale(1.1); }
  40% { transform: scale(1); }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: 'Source Sans Pro', Arial, sans-serif;
}

.build-status {
 position: fixed;
 top: 1rem; right: 1rem;
 }
 
 .flag-de {
     width: 12px; height: 3px;
     background-color: red;
     border-top: 3px solid black;
     border-bottom: 3px solid yellow;
     display: block;
 }

.m-logo {
  max-width: 85%;
  height: auto;
  margin-bottom: 2rem;
}


.m-hero {
  width: 100%; min-height: 100vh;
  background: url('../img/bg-hero.png') center no-repeat;
  background-size: cover;
  border-top: 5px solid #312783;
}

.m-hero__content {
  width: 80%;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.m-hero__title {
  font-size: 1.25rem; font-weight: 600; line-height: 1.15;
  margin-bottom: 0.45rem;
}

.m-hero__subtitle {
  font-size: 0.95rem; font-weight: 300; line-height: 1.65;
  margin-bottom: 1rem;
}

.m-hero__subtitle strong {
  color: #009fe3;
  font-weight: 600;
}

.m-hero__subtitle span {
  font-weight: 400;
}

.l-footer {
  width: 100%;
  position: fixed;
  bottom: 0px;
  z-index: 5;
}

.l-footer .m-badge-reg {
  font-weight: 300;
}

.l-footer .build-title {
  color: #312783;
  font-size: 0.95rem;
  position: relative;
}

.l-footer .build-title span {
  font-weight: 300;
}

.l-footer .term-info {
  font-size: 0.60rem;
}

.fa-heart {
  color: #009fe3;
  animation: 0.8s infinite beating-heart;
}

.l-footer .content {
  margin-bottom: 1rem;
}

.text-centered {
  text-align: center;
}

@media (min-width: 550px) {
 .m-hero__content {
     max-width: 840px;
  }
  .m-logo {
    max-width: 50%;
    height: auto;
    margin-bottom: 2rem;
  }

  .m-hero__subtitle {
    font-size: 1.05rem;

  }
}
