@charset "UTF-8";
/* CSS Document */
/* ################ Einbindung Google Webfonts ################### */
/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/open-sans-v28-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/open-sans-v28-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/open-sans-v28-latin-regular.woff2") format("woff2"), url("../fonts/open-sans-v28-latin-regular.woff") format("woff"), url("../fonts/open-sans-v28-latin-regular.ttf") format("truetype"), url("../fonts/open-sans-v28-latin-regular.svg#OpenSans") format("svg");
  /* Legacy iOS */
}

/* open-sans-600 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/open-sans-v28-latin-600.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/open-sans-v28-latin-600.eot?#iefix") format("embedded-opentype"), url("../fonts/open-sans-v28-latin-600.woff2") format("woff2"), url("../fonts/open-sans-v28-latin-600.woff") format("woff"), url("../fonts/open-sans-v28-latin-600.ttf") format("truetype"), url("../fonts/open-sans-v28-latin-600.svg#OpenSans") format("svg");
  /* Legacy iOS */
}

/* open-sans-800 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/open-sans-v28-latin-800.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/open-sans-v28-latin-800.eot?#iefix") format("embedded-opentype"), url("../fonts/open-sans-v28-latin-800.woff2") format("woff2"), url("../fonts/open-sans-v28-latin-800.woff") format("woff"), url("../fonts/open-sans-v28-latin-800.ttf") format("truetype"), url("../fonts/open-sans-v28-latin-800.svg#OpenSans") format("svg");
  /* Legacy iOS */
}

/* ################ Farben ################### */
/*
    weiss: #ffffff 
    orange: #EF7800
    black: #000000
    blau: #2A74B8
*/
/* diese Variablen kann man nur in SCSS verwenden! - Farben sind nur Beispiel, statt Farbangaben dann den Variablennamen benutzen - Beispiel: color: $col_bordeaux; */
/* ################ Media Queries ################### */
/* diese Variablen kann man nur in SCSS verwenden! Mediaqueries immer in em oder px angeben - nie in rem!!! */
/*456px*/
/*564px*/
/*760px*/
/*1016px*/
/*1272px*/
/*1432px*/
/*1800px*/
/* ################ Allgemeines ################### */
html, body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  font-size: 16px;
  /* Root-Größe, auf der sich alle anderen Größenangaben, die in rem angegeben werden (also auch margin, Padding etc., beziehen: 1rem = 16px */
  /*Durch folgende Mediaqueries ändern sich Schriftgrößen und Abstände - sofern in rem angegeben automatisch bei den verschiedenen Displaygrößen, damit spart man sehr viel Schreibarbeit und Code*/
  /*@media screen and (min-width: $media-s){
        font-size: 17px;
    }*/
}

@media screen and (min-width: 47.5em) {
  html, body {
    font-size: 17px;
  }
}

@media screen and (min-width: 63.5em) {
  html, body {
    font-size: 18px;
  }
}

@media screen and (min-width: 79.5em) {
  html, body {
    font-size: 20px;
  }
}

@media screen and (min-width: 89.5em) {
  html, body {
    font-size: 22px;
  }
}

*, *:before, *:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*Hintergrund*/
.hintergrund {
  background-image: url("../img/Freepik_bearbeitet_paintroller_background_komplett_klein.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom;
  min-height: 100vh;
}

/*Schriften, Schriftgröße, Abstände, Schriftfarben */
body {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  /* Achtung! Hier kommt die Schrift für den Fließtext rein, also die, die am meisten verwendet wird!*/
  font-style: normal;
  font-weight: 400;
  /* Font-Weight für Fließtext - Entwurfabhängig!*/
  line-height: normal;
  color: #000000;
  /* Grundschriftfarbe */
  text-align: center;
  /*zentriert den wrap außen, wird vererbt! ggf. mit text-align: left zurücksetzen!*/
  margin-right: auto;
  /*für Zentrierung */
  margin-left: auto;
  position: relative;
  background-color: #ffffff;
  overflow-x: hidden;
  /* bei hidden liegt die Scrollleiste obendrüber*/
  position: relative;
}

h1 {
  font-weight: 600;
  font-size: 1.3rem;
  color: #EF7800;
  margin: 0;
  padding-top: 1rem;
}

address {
  font-style: normal;
}

a:link {
  text-decoration: none;
  color: black;
}

a:visited {
  text-decoration: none;
  color: black;
}

a:hover {
  text-decoration: none;
  color: #2A74B8;
}

/*########## ABSTÄNDE ##########*/
header {
  padding-top: 1rem;
}

header, main, footer {
  padding-left: 1rem;
  padding-right: 1rem;
}

main {
  padding-top: 2rem;
  padding-bottom: 5rem;
}

footer {
  position: absolute;
  bottom: 0.5rem;
  right: 0;
  left: 0;
}

/*=========== BAUSTELLENSEITE ==========*/
/*Header*/
header > figure {
  width: 90%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

header > figure > img {
  width: 100%;
  height: auto;
}

.anschrift {
  text-align: start;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.anschrift > a, .anschrift > address {
  width: 100%;
  display: inline-block;
}

/*Main*/
.main-text > p > span {
  color: #2A74B8;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 2.8rem;
}

.main-text > figure {
  width: 80%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1rem;
}

.main-text img {
  width: 100%;
  height: auto;
}

/*Footer*/
footer > p {
  font-size: .7rem;
}

/*########## MEDIA QUERRIES #########*/
@media only screen and (min-width: 351px) {
  main {
    padding-bottom: 9rem;
  }
}

@media only screen and (min-width: 456px) {
  header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header > figure {
    width: 40%;
  }
  h1 {
    padding: 0;
    font-size: .7rem;
  }
  .anschrift {
    font-size: .7rem;
    padding: 0 0 0 0.5rem;
  }
  main {
    padding-bottom: 11rem;
  }
  .main-text {
    padding: 0 2rem;
  }
  .main-text > figure {
    width: 60%;
  }
}

@media only screen and (min-width: 568px) {
  header > figure {
    width: 40%;
  }
  h1 {
    padding: 0;
    font-size: 1rem;
  }
  .anschrift {
    font-size: .9rem;
    padding-left: 1rem;
  }
  main {
    padding-bottom: 6rem;
  }
  .main-text {
    width: 60%;
    margin-right: 0rem;
    margin-left: auto;
  }
}

@media only screen and (min-width: 662px) {
  main {
    padding-bottom: 8rem;
  }
}

@media only screen and (min-width: 821px) {
  .anschrift {
    font-size: 1rem;
  }
  h1 {
    font-size: 1.1rem;
  }
  main {
    padding-bottom: 11rem;
  }
  .main-text {
    padding-right: 3rem;
    width: 50%;
  }
}

@media only screen and (min-width: 1020px) {
  h1 {
    font-size: 1.4rem;
  }
  .anschrift {
    font-size: 1.2rem;
  }
  main {
    padding-bottom: 14rem;
  }
  .main-text > p > span {
    font-size: 3.5rem;
  }
  .main-text > p {
    font-size: 1.3rem;
  }
}

@media only screen and (min-width: 1272px) {
  main {
    padding-bottom: 13rem;
  }
}

@media only screen and (min-width: 1800px) {
  main {
    padding-bottom: 16rem;
  }
}

@media only screen and (min-width: 1800px) {
  main {
    padding-bottom: 21rem;
  }
}

/*========= IMPRESSUM + DATENSCHUTZ =========*/
/*Allgemeines*/
.header-impr-daten > figure {
  width: 60%;
  height: auto;
}

.header-impr-daten > figure img {
  width: 100%;
  height: auto;
}

.h1-impr-daten {
  font-size: 2.3rem;
  padding: 0 0 2rem 0;
}

.main-impr-daten {
  text-align: start;
  padding-bottom: 9.7rem;
  padding-top: 1rem;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.main-impr-daten ul {
  padding-left: 3rem;
}

h2 {
  font-weight: normal;
  color: #2A74B8;
}

@media only screen and (min-width: 482px) {
  .main-impr-daten {
    padding-bottom: 14.7rem;
  }
}

@media only screen and (min-width: 568px) {
  .main-impr-daten {
    padding-bottom: 16.7rem;
  }
}

@media only screen and (min-width: 800px) {
  .header-impr-daten > figure {
    width: 40%;
    height: auto;
  }
  .main-impr-daten {
    padding-bottom: 22.7rem;
  }
}

@media only screen and (min-width: 1180px) {
  .main-impr-daten {
    padding-bottom: 29.7rem;
  }
}

/*@media only screen and (min-width: 1272px) {
    .header-impr-daten > figure {
        width: 25%;
        height: auto;
    }

    .main-impr-daten {
        padding-bottom: 14.7rem;
    }
}*/
@media only screen and (min-width: 1650px) {
  .header-impr-daten > figure {
    width: 25%;
    height: auto;
  }
  .main-impr-daten {
    padding-bottom: 32.7rem;
  }
}

@media only screen and (min-width: 2000px) {
  .main-impr-daten {
    padding-bottom: 37.7rem;
  }
}

/*========== DATENSCHUTZ ==========*/
h3 {
  font-weight: normal;
  color: #2A74B8;
}

h4 {
  font-weight: normal;
  color: #2A74B8;
}
/*# sourceMappingURL=style.css.map */