/* Fonts */
@import url("//hello.myfonts.net/count/3678e1");

@font-face {
  font-family: "AvenirLTStd-Book";
  src: url("/files/jennyluede/fonts/3678E1_0_0.eot");
  src: url("/files/jennyluede/fonts/3678E1_0_0.eot?#iefix")
      format("embedded-opentype"),
    url("/files/jennyluede/fonts/3678E1_0_0.woff2") format("woff2"),
    url("/files/jennyluede/fonts/3678E1_0_0.woff") format("woff"),
    url("/files/jennyluede/fonts/3678E1_0_0.ttf") format("truetype");
}

@font-face {
  font-family: "AvenirLTStd-Medium";
  src: url("/files/jennyluede/fonts/3678E1_1_0.eot");
  src: url("/files/jennyluede/fonts/3678E1_1_0.eot?#iefix")
      format("embedded-opentype"),
    url("/files/jennyluede/fonts/3678E1_1_0.woff2") format("woff2"),
    url("/files/jennyluede/fonts/3678E1_1_0.woff") format("woff"),
    url("/files/jennyluede/fonts/3678E1_1_0.ttf") format("truetype");
}

@font-face {
  font-family: "AvenirLTStd-Black";
  src: url("/files/jennyluede/fonts/3678E1_2_0.eot");
  src: url("/files/jennyluede/fonts/3678E1_2_0.eot?#iefix")
      format("embedded-opentype"),
    url("/files/jennyluede/fonts/3678E1_2_0.woff2") format("woff2"),
    url("/files/jennyluede/fonts/3678E1_2_0.woff") format("woff"),
    url("/files/jennyluede/fonts/3678E1_2_0.ttf") format("truetype");
}

@font-face {
  font-family: "Neutraface Text";
  src: url("/files/jennyluede/fonts/NeutrafaceText-Bold.woff2") format("woff2"),
    url("/files/jennyluede/fonts/NeutrafaceText-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
}

/* General */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "AvenirLTStd-Book", sans-serif;
  font-size: 1.6rem;
  line-height: 1.625;
  color: #696969;
}

a {
  text-decoration: none;
}

/* Helper */
.invisible {
  display: none !important;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  background-color: #3d033c;
  box-shadow: 0 1px #3d033c;
  z-index: 9999;
  transition: all 0.5s;
}

@media only screen and (min-width: 992px) {
  .header {
    background-color: rgba(61, 3, 60, 0.8);
    box-shadow: none;
  }
}

.header > .inside {
  display: flex;
  position: relative;
  max-width: 128rem;
  height: 100%;
  margin: 0 auto;
  padding: 0 2.25rem;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (min-width: 992px) {
  .header > .inside {
    padding: 0 4.8rem;
  }

  .scroll .header {
    height: 4.8rem;
  }
}

/* Hamburger-Icon */
.hamburger-icon {
  display: block;
  position: relative;
  margin-right: 2.25rem;
  cursor: pointer;
}

.hamburger-icon .lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hamburger-icon .lines .line {
  width: 3.5rem;
  height: 0.5rem;
  background-color: #ee7822;
  transform-origin: 50% 50%;
  transition: all 0.2s;
}

.hamburger-icon .lines .line:not(:first-child) {
  margin-top: 0.7rem;
}

@media only screen and (min-width: 992px) {
  .hamburger-icon {
    display: none;
  }
}

/* Navigation */
.mod_navigation {
  display: block;
  position: fixed;
  top: 8rem;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  opacity: 0;
  background-color: #3d033c;
  transition: all 0.2s ease-in-out;
}

@media only screen and (min-width: 992px) {
  .mod_navigation {
    position: static;
    height: 100%;
    opacity: 1;
    background-color: transparent;
  }
}

.mod_navigation ul {
  display: inline-block;
  position: absolute;
  top: calc(50% - 8rem);
  left: 50%;
  transform: translate(-50%, -50%);
  list-style-type: none;
  text-align: center;
}

@media only screen and (min-width: 992px) {
  .mod_navigation ul {
    display: flex;
    position: static;
    padding-left: 20rem;
    height: 100%;
    align-items: center;
    transform: none;
  }
}

.mod_navigation ul > li {
  white-space: nowrap;
}

.mod_navigation > ul > li > a,
.mod_navigation > ul > li > strong {
  font-size: 4rem;
  color: #ee7822;
  font-family: "Neutraface Text", sans-serif;
}

@media only screen and (min-width: 992px) {
  .mod_navigation ul > li {
    padding: 0.4rem 0 0 2.8rem;
  }

  .mod_navigation > ul > li > a,
  .mod_navigation > ul > li > strong {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    position: relative;
    color: #ffffff;
  }

  .mod_navigation > ul > li.active > strong::after {
    content: "";
    position: absolute;
    border-bottom: 0.2rem solid #ee7822;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
  }
}

#nav-toggle:checked ~ .mod_navigation {
  opacity: 1;
  height: 100%;
}

#nav-toggle:checked ~ .hamburger-icon .lines .line:nth-child(1) {
  transform: translateY(1rem) rotate(45deg);
}

#nav-toggle:checked ~ .hamburger-icon .lines .line:nth-child(2) {
  opacity: 0;
}

#nav-toggle:checked ~ .hamburger-icon .lines .line:nth-child(3) {
  transform: translateY(-1.4rem) rotate(-45deg);
}

/* Logo */
.logo {
  display: block;
  width: 18rem;
}

.logo > a {
  display: block;
  background: url("/files/jennyluede/img/logo.svg") no-repeat center;
  background-size: contain;
}

.logo > a::before {
  content: "";
  display: block;
  height: 0;
  width: 100%;
  padding-top: 19.17%;
}

.logo > a > span {
  display: none;
}

/* Container */
#container {
  padding-top: 8rem;
}

@media only screen and (min-width: 992px) {
  #container {
    padding-top: 0;
  }
}

/* Hero */
.hero {
  width: 100%;
  height: 50vh;
  background-size: cover;
  background-position: center;
}

@media only screen and (min-width: 992px) and (orientation: portrait) {
  .hero {
    height: 75vh;
  }
}

@media only screen and (min-width: 992px) and (orientation: landscape) {
  .hero {
    height: 90vh;
  }
}

@media only screen and (min-width: 1200px) {
  .hero {
    height: 90vh;
  }
}

.hero > .ce_text {
  display: flex;
  height: 100%;
  padding: 2.25rem;
  align-items: center;
  text-align: right;
}

@media only screen and (min-width: 992px) {
  .hero > .ce_text {
    padding: 4.8rem;
    align-items: flex-end;
  }
}

@media only screen and (min-width: 1200px) {
  .hero > .ce_text {
    max-width: 128rem;
    margin: 0 auto;
    padding: 8rem 4.8rem;
  }
}

.hero > .ce_text > h1 {
  width: 100%;
  font-family: "Neutraface Text", sans-serif;
  font-size: 4.8rem;
  line-height: 0.95;
  color: #ffffff;
  text-transform: uppercase;
}

@media only screen and (min-width: 768px) {
  .hero > .ce_text > h1 {
    font-size: 8rem;
  }
}

@media only screen and (min-width: 1200px) and (min-height: 900px) {
  .hero > .ce_text > h1 {
    font-size: 12rem;
  }
}

.hero-leistungen {
  background-image: url("/files/jennyluede/img/hero-leistungen.jpg");
}

.hero-projekte {
  background-image: url("/files/jennyluede/img/hero-projekte.jpg");
}

.hero-kontakt {
  background-image: url("/files/jennyluede/img/hero-kontakt.jpg");
}

.hero-impressum {
  background-image: url("/files/jennyluede/img/hero-impressum.jpg");
}

.hero-datenschutz {
  background-image: url("/files/jennyluede/img/hero-datenschutz.jpg");
}

/* Grid */
@media only screen and (min-width: 768px) {
  .grid-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.grid-item {
  padding: 4rem 2.25rem;
}

@media only screen and (min-width: 768px) {
  .grid-item {
    max-width: 64rem;
    width: 50%;
  }
}

.grid-item > h3 {
  font-family: "Neutraface Text", sans-serif;
  font-size: 3.2rem;
  line-height: 0.9;
  color: #a50088;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

@media only screen and (min-width: 992px) {
  .grid-item > h3 {
    font-size: 4.8rem;
    margin-bottom: 3.5rem;
  }
}

@media only screen and (min-width: 1200px) {
  .grid-item > h3 {
    font-size: 6.4rem;
    margin-bottom: 7rem;
  }
}

.grid-item > p {
  margin-bottom: 2rem;
  line-height: 1.625;
}

.grid-item > p > strong {
  font-family: "AvenirLTStd-Black", sans-serif;
}

.grid-item > ul {
  list-style-type: none;
  font-family: "AvenirLTStd-Black", sans-serif;
}

.grid-item > ul > li {
  line-height: 1.625;
}

.grid-item > ul > li::before {
  content: "//";
  color: #ee7822;
  margin-right: 1.6rem;
}

@media only screen and (min-width: 768px) {
  .grid-item-left,
  .grid-item-right {
    padding: 8rem 2.25rem;
  }

  .grid-item-left {
    margin-left: auto;
  }

  .grid-item-right {
    margin-right: auto;
  }

  .background-color-left,
  .background-color-right {
    position: relative;
  }

  .background-color-left > .grid-item-left,
  .background-color-right > .grid-item-right {
    color: #fff;
  }

  .background-color-left > .grid-item-left > h3,
  .background-color-right > .grid-item-right > h3 {
    color: #ee7822;
  }

  .background-color-left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    z-index: -1;
  }

  .background-color-right::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50%;
    z-index: -1;
  }

  .background-color-pink::before {
    background-color: #a50088;
  }

  .background-color-cyan::before {
    background-color: #17bebb;
  }

  .background-color-bluedark::before {
    background-color: #36213e;
  }
}

@media only screen and (min-width: 992px) {
  .grid-item-left,
  .grid-item-right {
    padding: 8rem 4.8rem;
  }
}

@media only screen and (min-width: 1200px) {
  .grid-item-left {
    padding: 16rem 8rem 16rem 4.8rem;
  }
  .grid-item-right {
    padding: 16rem 4.8rem 16rem 8rem;
  }
}

/* Projekte */
.project > .inside {
  max-width: 128rem;
  margin: 0 auto;
  padding: 4rem 0;
  display: flex;
  flex-wrap: wrap;
}

.project-card {
  position: relative;
  width: 100%;
  padding: 2.25rem;
}

@media only screen and (min-width: 768px) {
  .project-card {
    width: 50%;
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 992px) {
  .project-card {
    padding: 0;
    margin: 4.8rem;
    width: calc(50% - 9.6rem);
  }
}

@media only screen and (min-width: 1025px) {
  .project-card::before {
    content: "";
    display: block;
    padding-top: 100%;
  }
}

.project-card:not(:last-of-type) {
  margin-bottom: 4rem;
}

@media only screen and (min-width: 1025px) {
  .project-card .image_container,
  .project-card .text-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}

.project-card .image_container {
  line-height: 0;
}

@media only screen and (min-width: 1025px) {
  .project-card .text-wrapper {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    background-color: #a50088;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
  }

  .project-card:hover .image_container {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
  }

  .project-card:hover .text-wrapper {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }
}

.project-card .image_container img {
  width: 100%;
  height: auto;
}

.project-card .text-wrapper {
  margin-top: 2rem;
  text-align: center;
}

@media only screen and (min-width: 1025px) {
  .project-card .text-wrapper {
    margin-top: 0;
  }
}

.project-card .text-wrapper h3 {
  line-height: 1.25;
  font-family: "AvenirLTStd-Medium", sans-serif;
}

@media only screen and (min-width: 1025px) {
  .project-card .text-wrapper h3 {
    color: #ffffff;
  }
}

.project-card .text-wrapper h4 {
  color: #ee7822;
}

/* Legals (Impressum und Datenschutz) */
.legals {
  padding: 4rem 2.25rem;
}

.legals h2 {
  margin-top: 2rem;
}

.legals h3 {
  margin-top: 1rem;
}

.legals ul {
  margin-left: 2rem;
}

@media only screen and (min-width: 992px) {
  .legals {
    padding: 4rem 4.8rem;
    max-width: 128rem;
    margin: 0 auto;
  }
}

/* Kontakt */
.kontakt a {
  color: #ee7822;
  text-decoration: underline;
}

.kontakt .ce_text p:not(:last-of-type) {
  margin-bottom: 2rem;
}

.kontakt .ce_text p em {
  font-style: normal;
  color: #ee7822;
}

.kontakt label {
  display: block;
}

.kontakt label::before {
  content: "//";
  margin-right: 0.3rem;
}

.kontakt input,
.kontakt textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  font-family: inherit;
  font-size: 1.4rem;
  border: 1px solid #ee7822;
  border-radius: 1rem;
}

.kontakt input {
  height: 4rem;
  padding: 0 1rem;
}

.kontakt textarea {
  height: 16rem;
  resize: none;
  overflow: auto;
  padding: 1rem;
}

.kontakt .widget {
  margin-bottom: 2rem;
}

.kontakt .submit_container,
.kontakt .widget-explanation {
  display: inline-block;
  width: 49%;
}

.kontakt .submit_container {
  text-align: right;
}

.kontakt .submit {
  width: 75%;
  text-align: center;
  background-color: #ee7822;
  color: #3d033c;
  font-size: 1.6rem;
  line-height: 1.6rem;
  font-weight: bold;
  padding: 1rem 2rem;
  border: 0;
  cursor: pointer;
}

.kontakt .widget-checkbox fieldset {
  border: 0;
}

.kontakt .widget-checkbox input[type="checkbox"] {
  background-color: #ee7822;
  height: 2.5rem;
  width: 2.5rem;
  float: left;
  border-radius: 0;
}

.kontakt .widget-checkbox input[type="checkbox"]:checked {
  background-image: url('../../files/jennyluede/img/check.png');
  background-size: contain;
}

.kontakt .widget-checkbox label {
  display: block;
  padding: 0;
  margin-left: 4rem;
}

.kontakt .widget-checkbox label::before {
  display: none;
}

/* Footer */
.footer {
  font-size: 1.4rem;
  color: #fff;
  background-color: #3d033c;
}

.footer > .inside {
  display: flex;
  position: relative;
  max-width: 128rem;
  height: 100%;
  margin: 0 auto;
  padding: 2rem 4.8rem;
}

/* Cookiebar */
.cookiebar {
  background-color: #ee7822;
}

.cookiebar__message,
.cookiebar__text {
  margin: 0;
}

.cookiebar__link {
  color: #fff;
  text-decoration: underline;
  margin-right: 1.5em;
}

.cookiebar__button,
.cookiebar__button:hover {
  background-color: #3d033c;
  font-family: inherit;
}

