/* ** ** VARIABLES ** ** */
:root {
  --font-color: #000000;
  --header-bg-color: #ffffff;
  --footer-bg-color: #ffffff;
  /*hellgrau*/
  --body-bg-color: #f6f6f6;
  /*grün*/
  --first-color: #97c11f;
  /*dunkelgrün*/
  --second-color: #336e2e;
  /*braun*/
  --third-color: #63420f;
  /*font size*/
  --size-headline: 27px;
  --size-headline-2: 20px;
  --size-headline-3: 20px;
}

/* ** ** FONTS ** ** */
@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/ubuntu-v15-latin-regular.eot');
  /* IE9 Compat Modes */
  src: local(''),
    url('../fonts/ubuntu-v15-latin-regular.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('../fonts/ubuntu-v15-latin-regular.woff2') format('woff2'),
    /* Super Modern Browsers */
    url('../fonts/ubuntu-v15-latin-regular.woff') format('woff'),
    /* Modern Browsers */
    url('../fonts/ubuntu-v15-latin-regular.ttf') format('truetype'),
    /* Safari, Android, iOS */
    url('../fonts/ubuntu-v15-latin-regular.svg#Ubuntu') format('svg');
  /* Legacy iOS */
}

@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/ubuntu-v15-latin-700.eot');
  /* IE9 Compat Modes */
  src: local(''),
    url('../fonts/ubuntu-v15-latin-700.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('../fonts/ubuntu-v15-latin-700.woff2') format('woff2'),
    /* Super Modern Browsers */
    url('../fonts/ubuntu-v15-latin-700.woff') format('woff'),
    /* Modern Browsers */
    url('../fonts/ubuntu-v15-latin-700.ttf') format('truetype'),
    /* Safari, Android, iOS */
    url('../fonts/ubuntu-v15-latin-700.svg#Ubuntu') format('svg');
  /* Legacy iOS */
}

@font-face {
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/ubuntu-v15-latin-300.eot');
  /* IE9 Compat Modes */
  src: local(''),
    url('../fonts/ubuntu-v15-latin-300.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('../fonts/ubuntu-v15-latin-300.woff2') format('woff2'),
    /* Super Modern Browsers */
    url('../fonts/ubuntu-v15-latin-300.woff') format('woff'),
    /* Modern Browsers */
    url('../fonts/ubuntu-v15-latin-300.ttf') format('truetype'),
    /* Safari, Android, iOS */
    url('../fonts/ubuntu-v15-latin-300.svg#Ubuntu') format('svg');
  /* Legacy iOS */
}

/* ** ** BASICS ** ** */
* {
  margin: 0;
  padding: 0;
}

body {
  background: #ffffff;
  color: var(--font-color);
  font-family: "Ubuntu", Helvetica;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.box {
  display: block;
  margin: 30px auto 0 auto;
  max-width: 90%;
  padding: 0;
  width: 700px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
}

a {
  color: var(--font-color);
  text-decoration: none;
}

img {
  height: auto;
  max-width: 100%;
}

strong {
  font-weight: 700;
}

h1 {
  color: var(--third-color);
  font-size: var(--size-headline);
  font-weight: 700;
}

h2 {
  color: var(--first-color);
  font-size: var(--size-headline-2);
  font-weight: 400;
  margin-bottom: 30px;
}

h3 {
  color: var(--second-color);
  font-size: var(--size-headline-3);
  font-weight: 700;
}

p {
  margin: 0 0 15px 0;
  padding: 0;
}

.clear {
  clear: both;
}

/* ** ** LOGO ** ** */
.backgroundHeader {
  background: var(--header-bg-color);
}

section.logo {
  height: auto;
  text-align: center;
  width: 100%;
}

section.logo img {
  margin: 50px 0;
  width: 70%;
}

/* ** ** HEADER ** ** */
.header {
  line-height: 0;
}

/* ** ** CONTENT ** ** */
.backgroundContent {
  background: var(--body-bg-color);
}

section.content {
  height: auto;
  line-height: 1.4;
  padding: 50px 0;
}

.datenschutz {
  background: #fff;
  font-size: 12px;
  line-height: normal;
  padding: 60px 10%;
  width: 80%;
}

/* main column */
section.content .mainCol {
  float: left;
  padding-left: 10%;
  padding-right: 5%;
  width: 45%;
}

p.adress,
p.contact {
  color: var(--second-color);
  display: inline-block;  
  font-size: 20px;
  line-height: 25px;
  text-align: left;
  width: auto;
}

p.contact.mail a {
  color: var(--second-color);
}

p.contact.phone {
  padding: 15px 0;
}

p.contact.phone a {
  color: var(--first-color);
  font-size: var(--size-headline);
  font-weight: 700;  
}

p.adress img,
p.contact img {
  margin-right: 5px;
  position: relative;
  top: 3px;
  width: 20px;
}

p.contact.phone img {
  top: 0;
}

p.adress span.spacing {
  display: inline-block;
  width: 30px;
}

/* right column */
section.content .rightCol {
  float: left;
  padding: 35px 0 0 0;
  width: 40%;
}

ul {
  color: var(--first-color);
  font-size: var(--size-headline-3);
  margin: 0 0 0 15px;
}

/* ** ** ** ** ** ** */
/* ** FOOTER ** */
/* ** ** ** ** ** ** */
.footer {
  background: var(--footer-bg-color);
  color:  var(--font-color);
  line-height: 0;
  padding: 0;
  text-align: center;
}

/* ** ** ** ** ** ** */
/* ** COPYRIGHT ** */
/* ** ** ** ** ** ** */
.copyright {
  display: block;
  font-size: 12px;
  margin: 30px auto 0 auto;
  max-width: 90%;
  padding: 0;
  width: 700px;
}

@media (max-width: 800px) {
  .mainCol a {
    font-size: 16px;
  }
}

@media (max-width: 700px) {
  .box {
    margin: 0;
    padding: 5%;
    width: 90%;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }

  section.content .mainCol,
  section.content .rightCol {
    float: none;
    padding: 0 15px;
    text-align: left;
    width: 100%;
  }
  
  section.content .mainCol {
    padding-bottom: 30px;
  }
  
  .backgroundContent {
    overflow: hidden;
    width: 100%;
  }
  
  p.adress,
  p.contact {    
    font-size: 16px;
    width: 100%;
  }
  
  .datenschutz {
    padding: 30px 15px;
  }
  
  .footer p.adress img,
  .footer p.contact img {
    display: block;
    padding: 15px 0 15px 0;;
  }
  
  .footer .express img {
    margin: 0;
    padding-bottom: 30px;
  }
  
  .footer .express span {
    display: block;
    
  }
}