/* === SCHRIFTEN === */

@font-face {
  font-family: "Lato-Regular";
  src: url(../fonts/Lato-Regular_01b86baa78.ttf) format("truetype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Lato-Black";
  src: url(../fonts/Lato-Black_e6a7c51353.ttf) format("truetype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Lato-Light";
  src: url(../fonts/Lato-Light_db6a5a9b5a.ttf) format("truetype");
  font-style: normal;
  font-weight: 400;
}

/* === GLOBAL === */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Lato-Regular", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  hyphens: none;
}
b, strong {
  font-family: "Lato-Black", Helvetica, Arial, sans-serif;
  font-weight: normal;
}
.clearfix::after {
  content: "";
  clear: both;
  display: block;
}

/* === HILFSKLASSEN === */
.u-justify-text {
  text-align: justify;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.u-left-text {
  text-align: left;
}

.u-right-text {
  text-align: right;
}

.u-center-box {
  margin: 0 auto;
}

.u-center-text {
  text-align: center;
}

.margin-bottom-xs {
  margin-bottom: 1.5rem;
}

.margin-bottom-small {
  margin-bottom: 2rem;
}

.margin-bottom-middle {
  margin-bottom: 3rem;
}

.margin-bottom-medium {
  margin-bottom: 4rem;
}

.margin-bottom-large {
  margin-bottom: 6rem;
}

.margin-bottom-big {
  margin-bottom: 8rem;
}

.margin-top-xs {
  margin-top: 1.5rem;
}

.margin-top-small {
  margin-top: 2rem;
}

.margin-top-middle {
  margin-top: 3rem;
}

.margin-top-medium {
  margin-top: 4rem;
}

.margin-top-large {
  margin-top: 6rem;
}

.margin-top-big {
  margin-top: 8rem;
}

.no-margin {
  margin: 0;
}

.space-between {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.space-around {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.flex-start {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.flex-end {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

/* === IDS === */

#wrapper {
  border: 1px solid grey;
  margin: 25px auto;
  /* width: 800px;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); */
  width:  800px;
    -webkit-box-shadow: 0 1px 5px 1px rgba(0,0,0, .25);
    box-shadow: 0 1px 5px 1px rgba(0,0,0, .25);
  background: #1D252C;
}

#header {
  position: relative;
}

.logo {
  width: 400px;
  height: 100px;
}

.logo img {

}

.header-headerbild img {
  width: 100%;
  vertical-align: bottom;
}

.claim{
  font-family: "Lato-Light", Helvetica, Arial, sans-serif;
  color: #000;
  position: absolute;
  font-size: 3.2rem;
  top: 3rem;
  right: 3rem;
  z-index: 5;
  margin-bottom: 0;
}

.lato-black{
  font-family: "Lato-Black", Helvetica, Arial, sans-serif;
}

#main {
  padding: 3rem 4rem 1.5rem;
}

#footer {
  padding: 0 4rem 4rem 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
}

#footer p {
  margin-bottom: 0;
  text-align: right;
}

/* === TEXT === */

p {
  margin-bottom: 1.5rem;
}

b,
strong {
}

i,
em {
}

h1 {
  font-family: "Lato-Black", Helvetica, Arial, sans-serif;
  font-size: 35px;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  hyphens: none;
}

.small{
  font-size: 3.2rem;
}

h2 {
  font-family: "Lato-Black", Helvetica, Arial, sans-serif;
  color: #ce143d;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

h3 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

hr {
  margin: 3rem 0;
  clear: both;
  background-color: #d8d8d8;
  border-top: 3px solid #d8d8d8;
}

.red{
  color: #ce143d;
}


/* === IMAGES === */

/* === BUTTONS === */

.button{
  background-color: #ce143d;
  border: #ce143d solid 1px;
  padding: 2rem 2rem;
  text-align: center;
  width: 300px;
  margin: 1rem auto 3rem;
}

.button:hover{
  background-color: #1d252c;
  border: #ce143d solid 1px;
}

/* === LINKS === */

a:link {
  font-family: "Lato-Black", Helvetica, Arial, sans-serif;
  color: #fff;
  text-decoration: none;
}

a:visited {
  text-decoration: none;
  color: #fff;
}

a.inherit:link,
a.inherit:visited {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #fff;
}

a.mail:link {
  font-family: "Lato-Regular", Helvetica, Arial, sans-serif;
  color: #fff;
  text-decoration: none;
}

a.infos:link {
  color: #ce143d;
  text-decoration: none;
}

a.infos:visited {
  text-decoration: none;
  color: #ce143d;
}


a.infos:hover {
  text-decoration: underline;
  color: #ce143d;
}

a:active {
}

a:focus {
  -webkit-transform: rotate();
  -ms-transform: rotate();
  transform: rotate();
}

/* === LISTEN === */

ul {
  /* margin-bottom: 2rem; */
  margin-left: 2rem;
}

ul ul {
  margin-bottom: 0;
}

li {
  margin-bottom: 0.5rem;
}

/* === TABELLEN === */

/* === SECTIONS === */

.sections {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

[class*="section--"] {
  margin-bottom: 1.5rem;
  width: 100%;
  hyphens: none;
}



.contact {
  width: 100%;
  float: right;
}

/* === GRID-SYSTEM === */

[class*="col-"] {
  padding: 0.8rem;
}

.col-1 {
  width: 16.666%;
}
.col-2 {
  width: 33.333%;
}
.col-4 {
  width: 66.666%;
}
.col-3 {
  width: 50%;
}
.col-6 {
  width: 100%;
}

/* ===RESPONSIVE DESIGN === */

@media only screen and (max-width: 800px) and (max-width: 800px) and (max-width: 700px) {
  #wrapper {
    width: 100%;
  }
}

@media only screen and (max-width: 800px) {
  #wrapper {
    margin: 0;
    width: 100%;
    border: none;
  }

  h1{
    width: 100%;
  }

  .col-1 {
    width: 50%;
  }
  .col-2 {
    width: 100%;
  }
  .col-3 {
    width: 100%;
  }
  .col-4 {
    width: 100%;
  }

  #main {
    padding: 2rem 2rem;
  }

  #footer {
  }

  .sections {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }



  .contact{
    width: 100%;
  }

}

@media only screen and (max-width: 800px) {
  .claim{
    font-size: 1.4rem;
    top: 2rem;
    right: 2rem;
  }

  #footer{
    flex-wrap: wrap;
  }

  #footer p{
    text-align: left;
    padding-left: 2rem;
    margin-top: 2rem;
  }
}

@media only screen and (max-width: 320px) {
}