/* poppins-regular - latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: local(''),
         url('fonts/poppins-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('fonts/poppins-v20-latin-regular.woff') format('woff'), /* Modern Browsers */
         url('fonts/poppins-v20-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('fonts/poppins-v20-latin-regular.svg#Poppins') format('svg'); /* Legacy iOS */
  }

  :root {
	/* Farbe */
	--schwarz:#535A62;
	--grau:#A09FA5;
  }

  body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    font-weight: normal;
    background: #fafafa;
    color:var(--grau);
  }
  a {
    color:var(--grau);
    text-decoration: none;
    background-color: transparent;
  }
  *,
  *::before,
  *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
a:hover { color: #012873; }
  
  p {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  h1 {font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

  }
  h2,
  h3,
  h4,
  h5 {
    line-height: 1.5;
    font-weight: 400;
    font-family: "Poppins",'Times New Roman', Times, serif;
    color: var(--schwarz);
    margin-top: 0;
    margin-bottom: 0.5rem;
    
  }
  
  h2 {
    margin-top: 30px;
    margin-bottom: 0.5rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  
  #main {
    max-width: 1140px;
    min-width: 1000px;
    margin: 0 auto;
    padding: 0 0 2em 2em;
  }
  
  header {
    margin: 18 auto;
    display: flex;
    max-width: 85%;
    margin-bottom: 0em;/*3rem;*/
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    
  }
  header a {
    font-size: 50px;
    color: #012873;
  }
  header #logo {
    vertical-align: middle;
    padding-right: 15px;
	height: 255px;
  }
  header h1 {
    text-align: center;
    margin: auto 0;
	line-height: 1.7em;
  }
  .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    
  }
  
  section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex: 0 0 85%;
    flex: 0 0 85%;
    max-width: 85%;
    -webkit-box-shadow: 0px 11px 31px 0px var(--schwarz);
    -moz-box-shadow: 0px 11px 31px 0px var(--schwarz);
    box-shadow: 0px 11px 31px 0px var(--schwarz);
    
  }
  .col_half {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col_full {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .info_wrapper, .info_wrapper_text {
    width: 100%;
    padding: 2em 2rem 0 2rem;
  }
  .info_wrapper_text {
	  padding: 0 2rem;
  }

  .info_wrapper h3 {
    color:var(--schwarz);
    position: relative;
    margin-bottom: 1.5rem;
  }
  .info_wrapper h3:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: #012873;
    content: "";
  }
  
  .info_wrapper .dbox {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: 100%;
    margin-bottom: 25px;
  }
  .info_wrapper .dbox:last-child {
    margin-bottom: 0;
  }
  .info_wrapper .dbox p {
    margin-bottom: 0;
    padding-left: 1rem;
  }
  .info_wrapper .dbox p span {
    font-weight: 500;
    color:var(--schwarz);
    
  }
  .info_wrapper .dbox h4 {
    font-size: 18px;
    font-weight: 500;
    color:var(--schwarz);
  }
  .footer {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    text-align: right;
    margin-bottom: 5px;
    margin-right: 15px;
  }