@charset "UTF-8";




/* ===============
====== FONTS =====
================== */


/* noto-sans-100 - latin */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 100;
  src: local(''),
    url('../fonts/noto-sans-v27-latin-100.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../fonts/noto-sans-v27-latin-100.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* noto-sans-300 - latin */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 300;
  src: local(''),
    url('../fonts/noto-sans-v27-latin-300.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../fonts/noto-sans-v27-latin-300.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* noto-sans-regular - latin */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  src: local(''),
    url('../fonts/noto-sans-v27-latin-regular.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../fonts/noto-sans-v27-latin-regular.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* noto-sans-500 - latin */
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 500;
  src: local(''),
    url('../fonts/noto-sans-v27-latin-500.woff2') format('woff2'),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('../fonts/noto-sans-v27-latin-500.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}




/* ===============
===== GLOBAL =====
================== */


* {
  box-sizing: border-box;
  /* outline: 1px solid black; */
}

*:before,
*:after {
  box-sizing: border-box;
}

.clearfix::after {
  content: "";
  clear: both;
  display: block;
}


/* ===============
====== ROOT ======
================== */


:root {
  --blue-clr: #1f3565;
  --green-clr: #94c11c;
  --white-clr: #fff;
  --green-soft-clr: #94c11c50;
  --green-text-link: #94c11c20;
  --blue-text-link: #7a92f340;
  --white-text-link: #c1d786;
}



/* ===============
===== LAYOUT =====
================== */


html {
  height: 100%;
}

body {
  height: 100%;
  -webkit-text-size-adjust: none;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1em;
  line-height: 1.6em;
  color: var(--blue-clr);
}

header {
  width: 100%;
}

.footer {
  position: absolute;
  bottom: 0;
  height: 100px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: none;
}

.footer-mob {
  position: absolute;
  bottom: 0;
  height: 100px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}


/* ===============
==== ANIMATION ====
================== */


.logo-small-intro,
.hamburger.intro {
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-name: fadeInLogoSmall;
  animation-fill-mode: forwards;
}

@keyframes fadeInLogoSmall {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}


.intro-text-svg, .intro-text-svg-square {
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-name: fadeInText;
  animation-fill-mode: forwards;
}

@keyframes fadeInText {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 0;
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}


#footer-animate {
  animation-duration: 8s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-name: fadeInLogoSmall;
}


@keyframes fadeInFooter {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  85% {
    opacity: 0;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}


@keyframes blendIn {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

/* ===============
==== CONTAINER ====
================== */


.main-container {
  min-height: 100vh;
  display: block;
  position: relative;
  padding-bottom: 100px;
}

.header-container {
  position: relative;
  max-width: 1300px;
  min-height: 120px;
  margin: 0 auto;
}

.hero-container {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}

.text-container {
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-1000 {
  position: relative;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
}

.container-800 {
  position: relative;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
}

.container-600 {
  position: relative;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
}

.container-500 {
  position: relative;
  max-width: 500px;
  height: auto;
  margin: 0 auto;
}

.container-1200 {
  position: relative;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
}

.container-quote {
  max-width: 800px;
  margin-left: 0;
}

.address-grid {
  display: block;
  margin-left: 0;
}

.blue-back-overlay {
  background-color: var(--blue-clr);
  width: 100vw;
  height: 100vh;
}




/* ===============
==== ELEMENTS ====
================== */

/* INTRO */


#intro-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-logo {
  max-width: 450px;
  margin: 10vh 2rem 0;
}

#intro-text-svg {
  display: none;
  justify-content: right;
  align-items: center;
}

#intro-text-svg-square {
  display: flex;
  justify-content: right;
  align-items: center;
}

.intro-text-svg {
  max-width: 500px;
  margin: 10vh 2rem 0;
}

.intro-text-svg-square {
  max-width: 80vw;
  margin: 10vh 2rem 0;
}

.intro-text-svg-home {
  max-width: 500px;
  margin: 10vh 2rem 0;
}

.intro-next-svg {
  position: relative;
  width: 50px;
  height: 50px;
  left: 50%;
  margin-left: -25px;
  margin-top: 5vh;
  border: 1px solid var(--green-clr);
  border-radius: 25px;
}

.intro-next-svg:hover {
  background-color: var(--green-clr);
  transition: 500ms;
}

.claim {
  max-width: 400px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 120px auto 0;
}

.welcome {
  text-align: right;
  color: var(--green-clr);
  position: absolute;
  top: 2.5em;
  right: 10vw;
  font-size: 2rem;
}




/* ===============
=== NAVIGATION ===
================== */


nav {
  display: none;
}

.logo {
  position: absolute;
  right: 2rem;
  top: 1.8rem;
  width: 180px;
  z-index: 100;
}

.table {
  display: table;
  margin: 0 38% 0 auto;
}

nav ul {
  text-align: center;
  padding: 0;
  list-style: none;
  text-align: center;
  margin-top: 3em;
}

nav li {
  display: inline-block;
  margin-right: 3em;
  font-weight: 300;
}

nav li:last-child {
  margin-right: 0;
}

nav li a {
  opacity: 0.7;
  transition: opacity ease-in-out 200ms;
  position: relative;
  font-weight: 400;
}

nav li a:hover {
  opacity: 0.9;
}

nav li a::after {
  content: '';
  display: block;
  height: 1px;
  width: 50%;
  position: absolute;
  bottom: -5px;
  left: 50%;
  margin-left: -25%;
  transform: scale(0, 1);
  transition: transform ease-in-out 100ms;
  border-radius: 2px;
}

nav a.white::after {
  background: var(--white-clr);
}

nav a.white:hover::after {
  transform: scale(1, 1);
}

nav a.green::after {
  background: var(--white-clr);
}

nav a.green:hover::after {
  transform: scale(1, 1);
}

nav a.blue::after {
  background: var(--blue-clr);
}

nav a.blue:hover::after {
  transform: scale(1, 1);
}


/* NAVIGATION ACTIVE */

nav li.bold {
  opacity: 1;
  position: relative;
  font-weight: 400;
}

nav li.bold.blue::after {
  content: '';
  display: block;
  height: 1px;
  width: 50%;
  border-radius: 10px;
  position: absolute;
  bottom: -2px;
  left: 50%;
  margin-left: -25%;
  background: var(--blue-clr);
}

nav li.bold.green::after {
  content: '';
  display: block;
  height: 1px;
  width: 50%;
  border-radius: 10px;
  position: absolute;
  bottom: -2px;
  left: 50%;
  margin-left: -25%;
  background: var(--green-clr);
}

nav li.bold.white::after {
  content: '';
  display: block;
  height: 1px;
  width: 50%;
  border-radius: 10px;
  position: absolute;
  bottom: -2px;
  left: 50%;
  margin-left: -25%;
  background: var(--green-clr);
}


/* ===============
=== TYPOGRAPHY ===
================== */


h1 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2rem;
  margin: 0 0 0.75em;
}

h2 {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6rem;
  margin: 1em 0 0.2em;
}

h3 {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7rem;
}

h4 {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.2rem;
  margin: 0;
}

h1.spacer_top.datenschutz_mob {
  display: none
}

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

.bold {
  font-weight: 700;
}

/* ===============
===== TEXT =====
================== */


a {
  text-decoration: none;
  /* color: var(--white-clr); */
}

.legal a {
  color: var(--white-clr);
  background-color: var(--blue-text-link);
  padding: 0 0.2em;
}

.text-container .legal {
  padding: 10px 0 30px;
}

.text-container .legal,
h1,
h2 {
  color: var(--white-clr);
}


.text-container .legal a:hover {
  background-color: var(--green-clr);
  transition: 500ms;
}

.quote {
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.7rem;
  text-align: left;
  margin: 0 2rem;
}

.quote.address {
  margin: 0;
}

.author {
  font-size: 0.8rem;
  font-style: normal;
  padding-left: 1em;
}


.quote.blue.address {
  text-align: left;
  margin: 0 2rem;
}

a.text-link {
  background-color: var(--green-text-link);
  color: var(--blue-clr);
  padding: 0 0.2em;
}

.text-link:hover {
  background-color: var(--green-clr);
  padding: 0 0.2em;
}

p.blue a.text-link {
  background-color: var(--white-text-link);
  color: var(--blue-clr);
  padding: 0 0.2em;
}

p.blue a.text-link:hover {
  background-color: var(--white-clr);
  padding: 0 0.2em;
  transition: 500ms;
}

.small-size {
  font-size: 0.8rem;
  display: block;
  margin-top: -0.5em;
}

.offers {
  margin: 0 2rem;
}

p.offers.blue {
  margin-top: 0.6rem;
}

.footer h4 {
  padding-top: 50px;
  margin: 0 auto;
}

.footer-mob h4 {
  padding-top: 35px;
  margin: 0 auto;
}

.offer-box {
  border: 2px solid var(--blue-clr);
  border-radius: 0.5rem;
  margin: 1rem 1.4rem;
  padding: 1rem;
  position: relative;
}

.offer-box-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.offer-box-text {
  border: 2px solid var(--blue-clr);
  border-radius: 0.5rem;
  margin: 1rem 0;
  padding: 0.5rem;
}


.offer-box-text .blue .bold.price-1:after {
  content: '65 €';
  position: absolute;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white-clr);
  margin-top: -0.1rem;
  margin-left: 0.3rem;
}

.offer-box-text .blue .bold.price-2:after {
  content: '80 €';
  position: absolute;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white-clr);
  margin-top: -0.1rem;
  margin-left: 0.3rem;
}

.offer-box-text .blue .bold.price-3:after {
  content: '95 €';
  position: absolute;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white-clr);
  margin-top: -0.1rem;
  margin-left: 0.3rem;
}

.offer-box.box2 .blue.price:after {
  content: '180 €';
  position: absolute;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white-clr);
  margin-top: -0.1rem;
  margin-left: 0.3rem;
}

.offer-box.box3 .blue.price:after {
  content: '575 €';
  position: absolute;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white-clr);
  margin-top: -0.1rem;
  margin-left: 0.3rem;
}


.break-desktop {
  display: none;
}



/* SLIDER */

#slider-cranio,
#slider-about {
  display: none;
}

.slider-static {
  display: block;
  max-width: 500px;
}

.slider-spacer {
  margin: 2rem 0 0;
}


.testimonial-box {
  font-size: 1rem;
  line-height: 1.5rem;
  font-style: italic;
  font-weight: 400;
  text-align: left;
  border: 2px solid var(--green-clr);
  border-radius: 0.5em;
  padding: 0.8em 1.5em;
  margin: 0 auto;
}

.testimonial-quotes {
  font-size: 1.3rem;
  color: var(--green-clr);
  padding-right: 0.2em;
}

.testimonial-author {
  font-style: normal;
  font-size: 0.8rem;
  padding-left: 0.6em;
}


/* FOOTER */


.footer h4.white a {
  color: var(--white-clr);
}

.footer-mob h4.white a {
  color: var(--white-clr);
}

.footer h4.green a {
  color: var(--green-clr);
}

.footer-mob h4.green a {
  color: var(--green-clr);
}

.footer h4.blue a {
  color: var(--blue-clr);
}

.footer-mob h4.blue a {
  color: var(--blue-clr);
}

.text-copyright {
  text-align: center;
  display: block
}

.text-copyright a {
  transition: 0.5s;
}

.text-copyright a:hover,
.text-copyright a:focus {
  color: #ccc;
}

.text-copyright-mobile {
  text-align: center;
  display: none;
  color: #ccc
}

.link-bold {
  color: #d8d8d8
}

.overlay-content .link-bold {
  color: #d8d8d8
}




/* SPACER */

.spacer-top {
  padding-top: 115px;
}

.spacer-bottom {
  padding-bottom: 50px;
}




/* ===============
====== COLOR =====
================== */


.blue-back {
  background-color: var(--blue-clr);
}

.green-back {
  background-color: var(--green-clr);
}

.white-back {
  background-color: var(--white-clr);
}

.green-back-soft {
  background-color: var(--green-soft-clr);
}

.blue {
  color: var(--blue-clr);
}

.green {
  color: var(--green-clr);
}

.white {
  color: var(--white-clr);
}






/* ===============
===== IMAGES ======
================== */


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

.hero-img {
  max-width: 1600px;
  margin: 0 auto;
  display: none;
}

.image-back {
  background-color: var(--white-clr);
}

.image-back-hero {
  background-image: url(../images/canvas_intro_square.jpg);
  background-size: cover;
  background-position: center;
}

.image-kontakt {
  display: none;
}

.image-kontakt-square {
  display: block;
}



/* ===============
=== BACK TO TOP ===
================== */


.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 60px;
  right: 10px;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); */
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
  z-index: 4;
}

.cd-green {
  background: var(--green-clr) url(../images/arrow_up_blue.svg) no-repeat center 50%;
}

.cd-blue {
  background: var(--blue-clr) url(../images/arrow_up_white.svg) no-repeat center 50%;
}

.cd-top.cd-is-visible,
.cd-top.cd-fade-out,
.no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}

.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 0.8;
}

.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: 1;
}

.no-touch .cd-top:hover {
  background-color: #535353;
  opacity: 1;
}