@media print {
  * {
    background: white !important;
    color: black !important; } }
/*Farben*/
body::-webkit-scrollbar-thumb {
  background-color: #345995;
  outline: 1px solid #345995; }

.displayNone {
  display: none;
  opacity: 0;
  visibility: hidden; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  height: 101%; }

body {
  font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', 'DejaVu Sans', Verdana, 'sans-serif', 'Montserrat', sans-serif;
  background-color: #e8ecf4;
  background-image: -webkit-linear-gradient(290deg, white 0%, #e8ecf4 100%);
  background-image: -moz-linear-gradient(290deg, white 0%, #e8ecf4 100%);
  background-image: -o-linear-gradient(290deg, white 0%, #e8ecf4 100%);
  background-image: linear-gradient(160deg, white 0%, #e8ecf4 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  margin: 0;
  color: #222;
  line-height: 1.4em;
  padding-bottom: 4em;
  display: grid;
  width: 100vw;
  text-align: left;
  overflow-x: hidden;
  grid-template-columns: 10vw auto 10vw;
  grid-template-rows: auto auto;
  grid-template-areas: "header header header" ". main ."; }

a {
  color: #222;
  text-decoration: none; }

header {
  grid-area: header;
  display: block;
  box-sizing: border-box;
  height: 6em;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 10;
  max-height: 100vh;
  overflow: visible;
  background-color: #222;
  box-shadow: rgba(0, 0, 0, 0.2) 6px 6px 12px;
  color: white;
  padding: 0 10vw; }

main {
  grid-area: main;
  display: grid; }

main div.divcenter {
  justify-self: center;
  margin: 3em 0 4em 0;
  padding: 5em 2em 3em 2em;
  width: 100%; }

#InitialenContainer {
  display: block;
  position: fixed;
  padding: 10em 1em 2em 1em;
  margin-top: -8em;
  background: white;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.2) 12px 12px 30px; }
  #InitialenContainer #Initialen {
    margin-top: 0.2em;
    width: 5em; }

@media screen and (min-width: 1000px) {
  #InitialenContainer {
    padding: 10em 2em 2em 2em; }
    #InitialenContainer #Initialen {
      width: 10em; } }
h1 {
  font-size: 2.5em;
  font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', 'DejaVu Sans', Verdana, 'sans-serif', 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1em;
  text-align: left; }

h2 {
  font-size: 1.5em;
  font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', 'DejaVu Sans', Verdana, 'sans-serif', 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1em;
  padding-bottom: 2px; }

h3 {
  margin-top: 2em; }

@media screen and (min-width: 1000px) {
  h1 {
    font-size: 4em; }

  h2 {
    font-size: 2em; } }
div.button {
  margin-top: 2em;
  transition: border 0.5s, box-shadow 0.5s;
  background-color: #222;
  border-radius: 3em;
  width: 15em;
  box-shadow: rgba(255, 255, 255, 0.2) 6px 6px 12px;
  font-weight: 700;
  border: 2px solid #222;
  transition-timing-function: ease; }
  div.button a {
    display: block;
    padding: 1em;
    font-weight: inherit;
    color: white;
    font-size: 1em;
    text-align: center;
    font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', 'DejaVu Sans', Verdana, 'sans-serif', 'Montserrat', sans-serif;
    white-space: nowrap; }

div.button:hover {
  border: 2px solid #fff;
  box-shadow: rgba(197, 187, 250, 0.4) 4px 4px 6px; }

nav ul li.current a {
  color: #7c92b6; }

nav ul li a {
  color: white; }

nav ul {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  grid-column-gap: 2em;
  align-items: center;
  margin: 0;
  padding: 1em 0;
  float: right;
  transition: none; }

nav #navoverlay {
  display: block;
  background-color: transparent;
  opacity: 0;
  box-shadow: none;
  border-radius: 30px;
  transform: none;
  transition: all 0.3s;
  transition-timing-function: ease;
  z-index: -100;
  left: 110vh;
  height: 0;
  width: 0;
  position: fixed; }

nav ul li {
  list-style-type: none;
  display: none;
  margin: 0;
  padding: 0; }

nav ul li.hamburger {
  display: block;
  /*position: fixed;
  right: 2em;
  top: 1.7em;*/ }

.svghamburger {
  fill: white;
  width: 1em;
  margin-top: 0.6em;
  padding: 0;
  transition: fill 0.5s;
  cursor: pointer; }

nav ul li#navstart, nav ul li#navkontakt {
  display: block; }

header.shownav nav div#navoverlay {
  display: block;
  position: fixed;
  left: 3em;
  top: -1em;
  height: 90vh;
  min-height: 450px;
  width: 1030px;
  /* min-width: 800px; */
  background-image: linear-gradient(170deg, #4832c7 0%, #1191f3 100%);
  opacity: 1;
  box-shadow: 3px 3px 20px #223A61;
  border-radius: 30px;
  transform: rotate(-5deg);
  z-index: 11; }

@keyframes ShownavLinkColor {
  0% {
    opacity: 0;
    color: transparent; }
  60% {
    opacity: 0;
    color: transparent; }
  100% {
    opacity: 1;
    color: white; } }
header.shownav nav ul {
  grid-template-columns: 50% 50%;
  grid-template-rows: repeat(5, auto);
  padding: 6em;
  left: 3em;
  float: none;
  height: 100vh;
  max-height: 50em;
  width: 100vw;
  box-sizing: border-box;
  z-index: 12;
  position: fixed;
  background: transparent;
  overflow: auto;
  transition: all 0.5s;
  transition-timing-function: ease; }
  header.shownav nav ul li {
    display: block; }
    header.shownav nav ul li a {
      animation-name: ShownavLinkColor;
      animation-delay: 0s;
      animation-duration: 0.5s;
      animation-direction: normal;
      animation-fill-mode: forwards;
      animation-timing-function: ease;
      color: white; }
    header.shownav nav ul li .svghamburger {
      fill: white;
      transition: fill 2s;
      position: fixed;
      right: 10vw;
      top: 1.7em; }

@media screen and (min-height: 450px) {
  header.shownav nav ul {
    grid-template-columns: 100%; } }
nav ul li a {
  padding: 1em 0;
  display: block; }

@media screen and (min-width: 1150px) {
  header, header.shownav {
    overflow: visible;
    background-color: #222; }

  header nav div#navoverlay, header.shownav nav div#navoverlay {
    display: none;
    opacity: 0;
    z-index: -5; }

  header nav ul, header.shownav nav ul {
    grid-template-columns: repeat(5, auto);
    grid-column-gap: 6em;
    display: grid;
    align-items: center;
    margin: 0;
    padding: 1em 0;
    float: right;
    height: inherit;
    width: inherit;
    box-sizing: content-box;
    position: inherit; }
    header nav ul li, header.shownav nav ul li {
      display: block; }
      header nav ul li a, header.shownav nav ul li a {
        animation: none;
        color: white; }
    header nav ul li.hamburger, header.shownav nav ul li.hamburger {
      display: none; } }
/*.anim {
    opacity: 0;
}

@keyframes anim1 {
    from {
      transform: translateY(-100px);
      opacity: 0;
    }
    to  {
      transform: translateY(0);
      opacity: 1;
    }
  }
*/
#hinweisIE {
  display: none;
  color: transparent; }

#hinweisIEaktiv {
  display: block;
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  color: white;
  background-color: #C77032;
  text-align: center;
  padding: 20px;
  cursor: pointer;
  border-top: 1px #345995 solid;
  z-index: 10; }

#hinweisCookies {
  display: none;
  position: fixed;
  bottom: 1em;
  width: 25em;
  max-width: calc(100% - 2em);
  right: 1em;
  color: #222;
  background-color: #ddd;
  text-align: center;
  padding: 2em;
  box-sizing: border-box;
  box-shadow: 3px 3px 10px rgba(161, 133, 96, 0.5);
  border-radius: 30px;
  z-index: 11; }
  #hinweisCookies a {
    color: #222; }
  #hinweisCookies #CookiesAccept {
    display: inline-block;
    padding: 1em 2em;
    margin: 1em;
    cursor: pointer;
    width: auto;
    color: white; }

body {
  /*background-image: linear-gradient(160deg, rgba(225, 237, 255, 0.85), #a8c9ff), url(http://www.compumeda.de/images/DSC_1113.png);
  background-attachment: fixed;
  background-size: 100%;
  background-repeat: no-repeat;*/ }

main {
  grid-template-columns: 100%;
  grid-template-areas: "sectionWelcome" "sectionVersprechen" "sectionihealth" "sectionKontakt";
  grid-column-gap: 10vw;
  grid-row-gap: 10vw;
  margin-top: 8em; }

section {
  display: grid;
  align-content: flex-start;
  justify-items: center; }
  section div.firstDivInSection {
    width: 100%;
    background-image: linear-gradient(160deg, #0c2e65, #683e7e);
    box-sizing: border-box;
    padding: 2em;
    box-shadow: rgba(12, 46, 101, 0.3) 12px 12px 30px;
    border-radius: 30px;
    color: white; }

#sectionWelcome {
  grid-area: sectionWelcome;
  transition: height 2s;
  align-content: flex-start;
  justify-items: left;
  justify-content: flex-start;
  height: 80vh; }
  #sectionWelcome h1 {
    text-align: left;
    text-transform: uppercase; }
  #sectionWelcome .button--eyecatcher {
    background-image: none;
    background-color: #345995;
    border: 2px solid #345995; }
    #sectionWelcome .button--eyecatcher:hover {
      border: 2px solid white; }
  #sectionWelcome .scrollDownArrow {
    display: block;
    fill: #222;
    left: 0;
    width: 100%;
    height: 7em;
    bottom: 5em;
    position: absolute; }

#sectionVersprechen {
  grid-area: sectionVersprechen;
  text-align: justify; }

#sectionihealth {
  grid-area: sectionihealth; }
  #sectionihealth .firstDivInSection {
    background-image: linear-gradient(160deg, #0788ad 0%, rgba(49, 189, 140, 0.955) 100%), url(http://www.compumeda.de/images/ihealthbild3.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: rgba(7, 136, 173, 0.3) 12px 12px 30px;
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-template-areas: "ihealthlogo" "ihealthtext";
    padding: 0; }
    #sectionihealth .firstDivInSection > div {
      grid-area: ihealthtext;
      margin: 2em; }
      #sectionihealth .firstDivInSection > div #ihealthEnergie {
        font-style: italic;
        font-weight: 300;
        margin-left: 2em; }
    #sectionihealth .firstDivInSection > a {
      grid-area: ihealthlogo;
      background-image: linear-gradient(130deg, #0b1d3b 0%, #1a2538 100%);
      box-shadow: 12px 12px 30px 0 rgba(26, 37, 56, 0.3);
      border-radius: 30px 30px 0 0;
      box-sizing: border-box;
      width: 100%;
      display: grid;
      align-items: center;
      justify-items: center; }
      #sectionihealth .firstDivInSection > a img {
        padding: 3em;
        box-sizing: border-box;
        width: 15em;
        max-width: 100%; }

#sectionKontakt {
  grid-area: sectionKontakt; }

.Bounce {
  display: none; }

@media screen and (min-width: 800px) {
  section div.firstDivInSection {
    padding: 5em; }

  #sectionihealth div.firstDivInSection > div {
    margin: 5em; } }
@media screen and (min-width: 1260px) {
  main {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "sectionWelcome sectionVersprechen" "sectionihealth sectionKontakt";
    margin-top: 8em; }

  section {
    align-content: center;
    height: 80vh; }

  section div.firstDivInSection h2 {
    margin-top: 0; }

  #sectionWelcome {
    align-content: center; }
    #sectionWelcome .scrollDownArrow {
      display: block; }

  #sectionVersprechen .firstDivInSection {
    width: auto;
    background-image: none;
    box-sizing: content-box;
    padding: 2em;
    box-shadow: none;
    color: #222; } }
@media screen and (min-width: 1600px) {
  main {
    grid-template-columns: repeat(7, 1fr);
    grid-template-areas: "sectionWelcome sectionWelcome sectionWelcome sectionWelcome sectionVersprechen sectionVersprechen sectionVersprechen" "sectionihealth sectionihealth sectionihealth sectionihealth sectionKontakt sectionKontakt sectionKontakt"; }

  #sectionihealth div.firstDivInSection {
    grid-template-rows: auto;
    grid-template-columns: 2fr 1fr;
    grid-template-areas: "ihealthtext ihealthlogo"; }
    #sectionihealth div.firstDivInSection > a {
      border-radius: 0 30px 30px 0; }

  #sectionihealth #ihealthEnergie {
    /*background: linear-gradient(170deg, #4832C7, #0e3eee);
    position: relative;
    width: 16em;
    left: 15em;
    float: right;
    margin-top: -18em;
    padding: 2em 3em;
    line-height: 1.3em;
    border-radius: 30px;
    font-weight: 400;
    transform: rotate(-5deg);
    box-shadow: rgba(14, 62, 238, 0.3) 3px 3px 10px;*/ } }
@keyframes Bounce {
  0% {
    bottom: 15em;
    height: 7em; }
  40% {
    opacity: 1;
    bottom: 2em;
    height: 8em; }
  70% {
    bottom: 3em;
    height: 7em;
    opacity: 1; }
  100% {
    bottom: 0em;
    height: 8em;
    opacity: 0; } }
.Bounce {
  opacity: 0;
  animation-name: Bounce;
  animation-duration: 7s;
  animation-delay: 2s; }
