@font-face {
  font-family: 'Frutiger';
  src: url('../fonts/FrutigerLTStd-Roman.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Frutiger';
  src: url('../fonts/FrutigerLTStd-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
}


@font-face {
  font-family: 'Frutiger';
  src: url('../fonts/FrutigerLTStd-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Frutiger', sans-serif;
  font-size:21px;
}

.hero {
    position: relative;
    background: url(../img/Webblende_1920x1080_Motiv.jpg) no-repeat center center / cover;
    min-height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    align-content: center;

}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 75, 117, 0.8);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
  max-width: 1200px;
  width: 100%;
  gap: 2rem;
  justify-content: space-between;
}

.content.subpage {
    flex-direction: column;
}

.left {
  flex: 1 1 300px;
  padding-top:80px;
}

.left h1 {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 4rem;
}

.info-block {
  margin-bottom: 1.5rem;
  font-weight: 300;
  font-size: 1.2rem;
}


.btn a {
  color: white;
  text-decoration: none;
  border: 1px solid white;
  padding: 1em 0.6em;
  display: inline-block;
  min-width:250px;
    max-width:100%;
    font-weight: 300;
  margin-top: 1rem;
}

.btn a:hover {
    background-color: #fff;
    color:rgb(28,75,117);
}

.right {
  /*flex: 1 1 300px;*/
  padding-top:250px;
}

.logo {
  max-width: 100%;
  width:520px;
  height: auto;
  margin-bottom: 2rem;
  display:block;
}

.subline {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-line {
  font-weight: 300;
  border-top:1px solid #fff;
  padding-top:2rem;
  margin-left:28px;
}


.legal {
    padding-bottom:40px;
    z-index:9;
}

.legal a {
    font-weight: 300;
    font-size:0.8rem;
    text-decoration: none;
}

.content a:hover,
.legal a:hover {
    text-decoration: underline;;
}

.content a,
.legal a {
    text-decoration: none;
    color:#fff;
}

/* Responsive */
@media (max-width: 981px) {

  .content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding:2rem 1rem;
    gap:60px;
  }

  body, html {
    font-size:18px;
  }

  .left, .right {
    flex: 1 1 100%;
    padding-top:0;
  }

  .right {
    order:-1;
  }

  .left h1 {
    font-size: 1.6rem;
  }

.logo {
    width:250px;
}

.footer-line {
    margin-left:0;
    padding-top:1rem;
}

.btn a {
    width:300px;
}

}
