*{
    box-sizing: border-box;
}
  html, 
  body{
    height: 100%;
    padding: 0px;
    margin: 0px;
    font-family: 'Fira Sans', sans-serif;
    background-color: #e6e6e6;
  }
  .page-wrapper{
    max-width: 1080px;
    margin: auto;
  }
  body > div.page-wrapper > img{
    width: 100%;  
    height: auto;
    position: relative;
  }
  h3,p{
    padding-left: 15px;
    padding-right: 15px;
  }
  #headline > h3{
    color: #155eb1;
    font-size: 30px;
    font-weight: 500;
  }
  #headline > p{
    margin-left: 5px;
    margin-right: 5px;
    text-align: justify;
  }

  #section3{
    padding-left: 10px;
    padding-right: 10px;
    background-color: #DBDFE3;
    margin-left: 20px;
    margin-right: 20px;
    text-align: justify;
  }
  #section3>h3{
    color: #155eb1;
    font-size: 19px;
    font-weight: 500;
    text-align: center;
  }
  #section3 ul{
    padding-right: 40px;
  }
  #section3 ul li{
    list-style: none;
    width: 150px;
    height: 40px;
    background-color: #155eb1;
    text-align: center;
    border-radius: 7px;
    margin: auto;
    margin-top: 20px;
    padding-top: 9px;
    margin-bottom: 15px;
  }
  #section3 a{
    color: white;
    background-color: #155eb1;
    text-decoration: none;
    margin-top: 20px;
    width: 150px;
    height: 40px;
  }
  #section3 > h3:nth-child(5){
    margin: auto;
    width: 80%;
    background-color: #155eb1;
    border-radius: 7px;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 6px;
    margin-top: 50px;
    margin-bottom: 10px;
  }
  #section3 > h3:nth-child(5) > a{
    color: white;
    font-weight: 300;
    height: 50px;
    height: 40px;
    
  }
  body > div.page-wrapper > aside{
    padding-left: 10px;
    padding-right: 10px;
    background-color: #DBDFE3;
    margin-left: 20px;
    margin-right: 20px;
    text-align: justify;
  }
  body > div.page-wrapper > aside > h3{
    color: #155eb1;
    font-size: 19px;
    font-weight: 500;
    text-align: center;
  }

  @media screen and (min-width: 1080px){  /*DESKTOP*/
    .page-wrapper{
      margin-bottom: 505px;
    }
    body > div.page-wrapper > img{
      width: 100%;
      height: 550px;
      margin-bottom: 15px;
    }
    body > div.page-wrapper >  #section3{
      float: left;
      width: 45%;


    }
    body > div.page-wrapper > aside{
      float: right;
      width: 45%;
    }
  
  }

  @media screen and (max-width: 600px) { /*Mobile*/
    
    #headline > h3{
      text-align: center;
    } 
    body > div.page-wrapper > aside > h3{padding-top: 18px;}
    body > div.page-wrapper > aside{padding-bottom: 18px;}


}