.header{
  background: white;
  display:flex;
  flex-flow: row wrap;
  width: 100vw;
}

@media only screen and (min-width: 912px) {
  .header{
    flex-flow: row nowrap;
}
}

.header__right{
  width: 100%;
  background-image: url('https://fritzdähn.de/assets/dublin.jpeg');
  background-size: cover;
  background-position: center;
  min-height:400px;
}

@media only screen and (min-width: 912px) {
  .header__right{
  width:50%;
  min-height:600px;
}
}

.header__headline{
  font-family: 'Poppins', sans-serif;
  margin:0;
  width:100%;
  color:#383838;
}

.logo{
  display:block;
}


.header__headline--bold{
  font-weight: 500;
  font-size: 42px;
  margin-bottom: 30px;
  line-height: 52px;
}

@media only screen and (min-width: 912px) {
  .header__headline--bold{
    font-size: 55px;
    line-height: 64px;
  }
}

.header__headline--regular{
  font-weight: 300;
  font-size: 22px;
  line-height: 32px;
}

.header__left{
  width:100%;
  margin: 60px 90px 30px 10%;
  display: flex;
  align-items: center;
  flex-wrap: wrap
}

@media only screen and (min-width: 912px) {
  .header__left{
    width:calc(40% - 90px);
}
}

.footer{
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  background: white;
  position: absolute;
  bottom:0;
  width:100%;
  color: #282828;
  height:80px;
  display:flex;
  justify-content: center;
  align-items: center;
}

body{
  margin: 0;
  position: relative;
}

.links{
  display:flex;
  flex-flow: wrap;
  width:100vw;
  padding-bottom:80px;
  
}

@media only screen and (min-width: 912px) {
  .links{
  flex-flow:nowrap;
  }
}

.item{
  width:100%;
  padding:30px;
  position: relative;

}
@media only screen and (min-width: 768) {
  .item{
    width:calc(50% - 80px);
    padding: 40px;
}
}
@media only screen and (min-width: 912px) {
  .item{
  width:33.3%;
  padding: 60px;
}
}

.item--1{
background: #A2B6A9;
}

.item--2{
background: #f3f3f3;
}

.item--3{
background: #dfd6ca;
}

.btn{
  text-decoration: none;
  background:white;
  padding: 10px 20px;
  border-radius:40px;
  font-family: Poppins, sans-serif;
  position: absolute;
  bottom:60px;
  color:#383838;
  transition: ease all 0.5s;
}

.btn:hover{
  background:#383838;
  color:white;
  box-shadow: rgba(56, 56, 56, 0.3) 5px 5px 30px 0;
  transform: translate(-2px, -2px);
}

.link__headline{
  font-family: Poppins, sans-serif;
  color:#383838;
}

.link__desc{
  font-family: Poppins, sans-serif;
  margin-bottom:120px;
  color:#383838;
}

@media only screen and (min-width: 912px) {
  .link__decs{
    margin-bottom:160px;
  }
}