/* CSS Document */
/*MOBILE FIRST; THEN @ MEDIA DESKTOP!!!*/
/* RESET CSS */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
  font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif; /*SCHRIFT FÜR ALLES*/
  font-style: normal;
  font-variant: normal;
  font-weight: 500;
  color: #111; /* FONT FÜR ALLES EINGESTELLT*/
  box-sizing: border-box; /*BOXEN BLEIBEN GLEICH GROSS*/
  /*hyphens: auto; /*SILBENTRENNUNG*/
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
html {
  height: 100vh;
}
body {
  line-height: 1.2; /*1.2*/
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*MY CODE*/
/*WRAPPER*/
/*Grundeinstellungen für Ränder und Schrift aller Seiten*/
.wrapper {
  margin: 20px 20px;
  font-size: 18px; /*45*/
  width: auto;
}
.back-navigation {
  padding-bottom: 30px;
}
@media only screen and (min-width: 1024px) {
  .wrapper {
    margin: 15px 15px;
    font-size: 14px;
  }
}
/*INDEX*/
/*das Bild oben auf der Landing page*/
.index-image {
  width: 100%;
  margin-bottom: 80px;
}
.index-image img {
  width: 100%;
  height: auto;
}
/*Der Behälter für Name, About und Contact Links*/
.header {
  margin-bottom: 20%; /*space bis projects*/
}
/*Name Felix breidenbach*/
.header .logo {
  margin-bottom: 20px;
}
.header nav ul {
  display: inline-block; /*center whole nav*/
  text-align: left;
  margin: 0;
  padding: 0;
}
.header nav ul li {
  display: inline-block;
  text-align: left;
  padding: 0;
  margin: 0;
}
/*Die Navigation der Projekte*/
.projects nav ul {
  display: block; /*center whole nav*/
  text-align: left;
  margin: 0;
  padding: 0;
  padding-bottom: 50px;
}
/*Die einzelnen Links zu den Projekten*/
.projects nav ul li {
  display: block;
  text-align: left;
  padding-bottom: 20px; /*RAUM ZWISCHEN DEN LINKS, bottom insges 15px*/
  margin: 0;
}
/*DESKTOP*/
@media only screen and (min-width: 1024px) {
  .index-image {
    width: 75%;
    margin-bottom: 30px;
  }
  .header {
    margin-bottom: 50px; /*space bis projects 7% 3%*/
  }
  .header .logo {
    margin-bottom: 10px;
  }
  .projects nav ul li {
    display: block;
    text-align: left;
    padding-bottom: 10px; /*RAUM ZWISCHEN DEN LINKS, bottom insges 15px*/
    margin: 0;
  }
}
/*ABOUT*/
/*Das erste Bild bei About oben*/
.about-image {
  width: 100%;
  margin-bottom: 50px;
}
.about-image img {
  width: 100%;
  height: auto;
}
/*About Headline*/
.about-logo {
  margin-bottom: 30px;
}
/*Das Bild der Kreis Schrift*/
.about-image-circle {
  width: 100%;
  margin-bottom: 100px;
}
.about-image-circle img {
  width: 100%;
  height: auto;
}
/*Die Policy Headline*/
.policy-logo {
  margin-bottom: 50px;
}
/*Der Policy Text*/
.policy-text {
  padding-bottom: 50px;
}
@media only screen and (min-width: 1024px) {
  .about-image {
    width: 30%;
    margin-bottom: 45px;
  }
  .about-image img {
    width: 100%;
    height: auto;
  }
  .about-logo {
    margin-bottom: 20px;
  }
  .about-image-circle {
    width: 30%;
    margin-bottom: 80px;
  }
  .about-image-circle img {
    width: 100%;
    height: auto;
    margin: 0;
  }
  .policy-logo {
    margin-bottom: 40px;
  }
  .policy-text {
    padding-bottom: 50px;
    width: 70%;
  }
}
/*PROJECTS*/
/*Das erste Bild der Projekte, wenn es ein Hochformat ist*/
.project-image-first-portrait {
  width: 100%;
  margin-bottom: 80px;
}
.project-image-first-portrait img {
  width: 100%;
  height: auto;
}
/*Das erste Bild der Projekte, wenn es ein Querformat oder Quadrat ist*/
.project-image-first {
  margin-bottom: 80px;
  width: 100%;
}
.project-image-first img {
  width: 100%;
  height: auto;
}
/*Normales Projekte Bild*/
.project-image img {
  width: 100%;
  height: auto;
}
.project-image {
  padding-bottom: 40px;
  width: 100%;
}
/*Video Einbetten*/
.project-video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
	width:100%;
}
.project-video iframe, .project-video object, .project-video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	padding-bottom: 40px;
}
/*Kleinere Bildgröße der Projektbilder 1) = groß*/
.project-image-smallerLarge {
  padding-bottom: 40px;
  width: 100%;
}
.project-image-smallerLarge img {
  width: 100%;
  height: auto;
}
/*Kleinere Bildgröße der Projektbilder 1) = klein*/
.project-image-smallerSmall {
  padding-bottom: 40px;
  width: 100%;
}
.project-image-smallerSmall img {
  width: 100%;
  height: auto;
}
/*Text der Projekte*/
.project-text {
  margin-bottom: 200px;
}
@media only screen and (min-width: 1024px) {
  .project-image-first-portrait {
    width: 50%;
    margin-bottom: 80px;
  }
  .project-image-first {
    margin-bottom: 80px;
    width: 72%;
  }
  .project-image {
    padding-bottom: 60px;
    width: 72%;
  }
  .project-text {
    width: 72%;
    margin-bottom: 240px;
  }
  .project-image-smallerLarge {
    width: 60%;
  }
  .project-image-smallerSmall {
    width: 45%;
  }
  .project-video-wrapper {
	width:72%;
  }
}
/*CONTACT*/
/*contact headline*/
.contact-logo {
  margin-bottom: 50px;
}
/*Mailadresse*/
.mail-logo {
  margin-bottom: 70px;
}
/*Das Bild bei Contact*/
.contact-image {
  width: 65%;
  margin-bottom: 40px;
}
.contact-image img {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 1024px) {
  .contact-image {
    width: 30%;
    margin-bottom: 40px;
  }
}