body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
blockquote,
th,
td {
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
  cursor: pointer;
}
a:focus,
a:active {
  border-color: inherit !important;
  box-shadow: none !important;
}
table {
  border-spacing: 0;
}
fieldset,
img {
  border: 0;
}
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-weight: 400;
  font-style: normal;
}
strong {
  font-weight: 700;
}
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
caption,
th {
  text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 300;
  font-size: 100%;
  margin: 0;
  padding: 0;
  color: var(--dark);
}
q:before,
q:after {
  content: "";
}
abbr,
acronym {
  border: 0;
}
:root {
  --blue: #153b60;
  --darkBlue: #091c2f;
  --lightGrey: #f3f3f7;
  --grey: #e3e3e9;
  --dracoRed: #ba0020;
  --fallbeispiele: #2d808c;
  --musterbestellung: #549c8b;
  --mediathek: #da884d;
  --preisvergleich: #e2662a;
  --newsletter: #bf5a63;
  --wunddokuapp: #2e98a1;
  --onlineseminare: #62a3b2;
  --blog: #bd2634;
}
body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 300;
  font-style: normal;
  background-color: var(--lightGrey);
  color: var(--darkBlue);
  font-size: 16px;
}
h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
}
h3 {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  hyphens: auto;
}
.light {
  color: var(--lightGrey);
}
.red {
  color: var(--dracoRed);
}
.btn {
  border-radius: 50px;
  font-weight: 700;
  padding: 5px 30px;
  transition: all 0.2s ease-in-out;
}
.btn:hover {
  transition: all 0.2s ease-in-out;
}
.btn-primary {
  background-color: var(--dracoRed);
  border: 1px solid var(--dracoRed);
  color: var(--lightGrey);
}
.btn-primary:hover {
  background-color: transparent;
  border-color: var(--dracoRed);
  color: var(--dracoRed);
}
.btn-secondary {
  background-color: #fff;
  border: 1px solid var(--dracoRed);
  color: var(--dracoRed) !important;
}
.btn-secondary:hover {
  background-color: var(--dracoRed);
  border-color: var(--dracoRed);
  color: var(--lightGrey) !important;
}
.btn-check:active + .btn-secondary,
.btn-check:checked + .btn-secondary,
.btn-secondary.active,
.btn-secondary:active,
.show > .btn-secondary.dropdown-toggle,
.btn-check:focus + .btn-secondary,
.btn-secondary:focus {
  background-color: var(--dracoRed);
  border-color: var(--dracoRed);
  color: var(--lightGrey) !important;
}
.number-container {
  padding: 50px;
}
.number-container .kachel {
  border-radius: 15px;
  height: 100%;
  padding: 30px 10px;
  height: fit-content;
}
.kachel {
  cursor: pointer !important;
  transition: transform 0.25s ease-in-out;
  color: #fff;
  text-align: left;
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 200px;
}
.kachel:hover {
  transform: translateY(-6px);
  transition: transform 0.25s ease-in-out;
}
.pulse-container {
  position: relative;
}
.dot {
  width: 10px;
  height: 10px;
  border: 5px solid var(--dracoRed);
  border-radius: 600px;
  background-color: var(--dracoRed);
  z-index: 10;
  position: absolute;
}
.base-pulse {
  background: 0 0;
  border-radius: 600px;
  height: 50px;
  width: 50px;
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 1;
  opacity: 0;
  border: 5px solid var(--dracoRed);
}
.seminareIcon.active .pulse1 {
  animation: pulse1 2s ease-out infinite;
}
.seminareIcon.active .pulse3 {
  animation: pulse1 2s ease-out infinite;
  animation-delay: 1s;
}
@keyframes pulse1 {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
@-webkit-keyframes pulse1 {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
.clock {
  position: relative;
  height: 150px;
  width: 150px;
  background: #fff;
  box-sizing: border-box;
  border-radius: 100%;
  border: 10px solid var(--blue);
  overflow: hidden;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}
.clock.active {
  -moz-animation: fadeIn 0.3s ease-in 0s forwards;
  -webkit-animation: fadeIn 0.3s ease-in 0s forwards;
  -o-animation: fadeIn 0.3s ease-in 0s forwards;
  animation: fadeIn 0.3s ease-in 0s forwards;
}
.clock .top {
  position: absolute;
  width: 3px;
  height: 8px;
  background: var(--darkBlue);
  left: 0;
  right: 0;
  margin: 0 auto;
}
.clock .right {
  position: absolute;
  width: 8px;
  height: 3px;
  background: var(--darkBlue);
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
}
.clock .bottom {
  position: absolute;
  width: 3px;
  height: 8px;
  background: var(--darkBlue);
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}
.clock .left {
  position: absolute;
  width: 8px;
  height: 3px;
  background: var(--darkBlue);
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
}
.clock .center {
  height: 6px;
  width: 6px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: var(--darkBlue);
  border-radius: 100%;
}
.clock .hour {
  width: 4px;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.clock.active .hour {
  animation: time 6s infinite ease-in-out;
}
.clock .hour:before {
  position: absolute;
  content: "";
  background: var(--darkBlue);
  height: 40px;
  width: 4px;
  top: 30px;
}
.clock .minute {
  width: 3px;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.clock.active .minute {
  animation: time 3s infinite ease-in-out;
}
.clock .minute:before {
  position: absolute;
  content: "";
  background: var(--darkBlue);
  height: 50px;
  width: 3px;
  top: 20px;
}
@keyframes time {
  to {
    transform: rotate(360deg);
  }
}
.chatIcon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.chatIcon .chat {
  margin: 5px 0;
  width: 50%;
  max-width: 350px;
  transform: scale(0);
}
.chatIcon .chat1 {
  width: 40%;
}
.chatIcon .chat3 {
  width: 30%;
}
.chatIcon.active .chat1 {
  -moz-animation: fadeIn 0.5s ease-in 0s forwards;
  -webkit-animation: fadeIn 0.5s ease-in 0s forwards;
  -o-animation: fadeIn 0.5s ease-in 0s forwards;
  animation: fadeIn 0.5s ease-in 0s forwards;
}
.chatIcon.active .chat2 {
  -moz-animation: fadeIn 0.5s ease-in 0.5s forwards;
  -webkit-animation: fadeIn 0.5s ease-in 0.5s forwards;
  -o-animation: fadeIn 0.5s ease-in 0.5s forwards;
  animation: fadeIn 0.5s ease-in 0.5s forwards;
}
.chatIcon.active .chat3 {
  -moz-animation: fadeIn 0.5s ease-in 1s forwards;
  -webkit-animation: fadeIn 0.5s ease-in 1s forwards;
  -o-animation: fadeIn 0.5s ease-in 1s forwards;
  animation: fadeIn 0.5s ease-in 1s forwards;
}
.chatIcon.animate .chat1 {
  -moz-animation: fadeInChat 0.5s ease-in 0s forwards;
  -webkit-animation: fadeInChat 0.5s ease-in 0s forwards;
  -o-animation: fadeInChat 0.5s ease-in 0s forwards;
  animation: fadeInChat 0.5s ease-in 0s forwards;
}
.chatIcon.animate .chat2 {
  -moz-animation: fadeInChat 0.5s ease-in 0.5s forwards;
  -webkit-animation: fadeInChat 0.5s ease-in 0.5s forwards;
  -o-animation: fadeInChat 0.5s ease-in 0.5s forwards;
  animation: fadeInChat 0.5s ease-in 0.5s forwards;
}
.chatIcon.animate .chat3 {
  -moz-animation: fadeInChat 0.5s ease-in 1s forwards;
  -webkit-animation: fadeInChat 0.5s ease-in 1s forwards;
  -o-animation: fadeInChat 0.5s ease-in 1s forwards;
  animation: fadeInChat 0.5s ease-in 1s forwards;
}
.workingGirl {
  margin-top: -30%;
  width: 100%;
}
@keyframes fadeIn {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadeInChat {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.mediathek-container {
  margin-bottom: 150px;
}
.opinion-container {
  background-color: var(--darkBlue);
  padding: 100px 0;
  background-image: url(../img/pflaster-bg.png);
  background-attachment: fixed;
  background-size: cover;
}
.quote-block p {
  font-size: 16px;
  line-height: 1.7;
}
.quote.big {
  font-size: 1.8rem;
  line-height: 1.3;
}
.red-teaser-container {
  padding: 120px 0;
  background-color: var(--dracoRed);
  color: #fff;
  overflow-x: hidden;
}
.red-teaser-container h3 {
  font-size: 3rem;
}
.red-teaser-container h4 {
  font-weight: 700;
}
.red-teaser-container h4,
.red-teaser-container p {
  font-size: 1.4rem;
  line-height: 1.5;
}
.red-teaser-container .pflasterpackung {
  position: absolute;
  transform: rotate(-10deg);
  width: 22%;
  margin-top: -5%;
  margin-left: 5%;
  max-width: 350px;
}
.teaser-container {
  padding: 120px 0;
  background-color: var(--grey);
}
.teaser-container .teaser {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.teaser-container .teaser h4 {
  margin-top: 20px;
  font-size: 1.4rem;
  line-height: 1.6;
  max-width: 80%;
}
.statements-container {
  padding: 120px 0;
}
.statements-container .quote-block {
  padding: 20px;
}
.statements-container .quote {
  font-size: 1.4rem;
}
footer {
  background-color: var(--grey);
  color: var(--blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2% 20px;
}
footer div:first-child {
  display: flex;
  align-items: center;
}
footer p {
  margin-bottom: 0;
  color: var(--blue);
}
footer a,
footer a:hover {
  color: var(--blue);
}
footer img {
  width: 80px;
  height: auto;
  margin-right: 30px;
}
.offcanvas-end {
  min-width: 33%;
}
@media (max-width: 992px) {
  #logo {
    width: 90px;
  }
  .uppercase {
    font-size: 0.6rem;
  }
  h1 {
    font-size: 1.8rem;
  }
  h1 .big {
    font-size: 6rem;
  }
  .header-section {
    height: 70vh;
  }
  .hero-girlande {
    top: -5%;
  }
  h3 {
    font-size: 1.2rem;
  }
  .number-container .number-kachel {
    margin-bottom: 20px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    min-height: 200px;
  }
  .number-container .number-kachel .icon {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
  }
  .number-container .number-kachel .number {
    font-size: 3rem;
  }
  .workingGirl {
    margin-top: 0;
  }
  .mediathek-container {
    margin-bottom: 50px;
  }
  .teaser-container {
    padding: 50px 0 0;
  }
  .teaser-container .teaser {
    transform: none !important;
  }
  .teaser-container .col-12:first-child .teaser {
    margin-bottom: 100px;
  }
  .statements-container {
    padding: 70px 0;
  }
  .opinion-container {
    padding-top: 50px;
    overflow-x: hidden;
  }
  .red-teaser-container {
    padding: 50px 0;
  }
  .red-teaser-container .pflasterpackung {
    position: relative;
    width: auto;
    max-width: 90%;
  }
  .red-teaser-container h3 {
    font-size: 2rem;
  }
  .teaser-container {
    padding: 50px 0;
  }
  footer {
    display: block;
    padding: 30px 10px;
    text-align: center;
  }
  footer img {
    margin: 0 0 20px;
  }
  footer div:first-child {
    margin-bottom: 20px;
    display: block;
  }
  .swiper-button-next,
  .single-swiper-button-next {
    right: 0 !important;
  }
  .swiper-button-prev,
  .single-swiper-button-prev {
    left: 0 !important;
  }
  .statements-container .quote-block {
    padding: 50px;
  }
  .statements-container .quote {
    font-size: 16px;
  }
  .navbar-toggler {
    padding-right: 5px;
    z-index: 999;
  }
  .navbar-collapse {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    left: 0;
    top: 0;
    padding: 40px 10px;
  }
  .navbar-collapse .navbar-nav {
    width: 90%;
  }
  .navbar-collapse .nav-link {
    color: var(--dracoRed);
    font-weight: 700;
  }
}
@media (max-width: 767px) {
  .hero-ppl {
    width: 40vw;
    right: 0;
  }
  .balloon2 svg {
    top: 15%;
  }
  .red-teaser-container .pflasterpackung {
    transform: none !important;
  }
  .red-teaser-container h3 {
    font-size: 20px;
  }
  .red-teaser-container h4,
  .red-teaser-container p {
    font-size: 16px;
  }
  .btn-primary.big {
    padding: 10px 25px;
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .red-teaser-container .pflasterpackung {
    max-width: 50%;
    margin-bottom: 20px;
  }
  .red-teaser-row {
    text-align: center;
  }
  .red-teaser-text {
    transform: none !important;
  }
  .number-container {
    padding: 20px;
  }
  svg#city {
    height: 60vh !important;
  }
  .offcanvas-end {
    min-width: 100%;
  }
}
@media only screen and (min-device-width: 250px) and (max-device-width: 800px) and (orientation: landscape) {
  .hero-ppl {
    display: none;
  }
  #logo {
    display: none;
  }
}
.navbar-toggler:focus {
  box-shadow: none;
}
@media (max-width: 480px) {
  .navbar > .container {
    align-items: flex-start;
  }
  .header-section {
    background: -webkit-linear-gradient(
      -30deg,
      var(--darkBlue) 40%,
      var(--dracoRed) 40%
    );
    height: auto;
    align-items: flex-end !important;
    padding: 250px 0 100px;
  }
  .header-section .arrow {
    bottom: 40px;
  }
  .header-section h1 {
    font-size: 22px;
  }
  .header-section h1 .big {
    font-size: 82px;
  }
  .header-section .number-bg:after {
    display: none;
  }
  .hero-girlande {
    top: -5%;
    width: 70%;
    right: -1%;
  }
  .hero-ppl {
    width: 45vw;
    right: 5%;
    bottom: auto !important;
    top: 50px;
  }
  .balloon1 svg {
    right: 47%;
  }
  .number-container .number-kachel {
    min-height: 140px;
  }
  .number-container .number-kachel .number.smaller {
    font-size: 2rem;
  }
  .number-container .number-kachel p {
    font-size: 14px;
  }
  .number-container .number-kachel .icon {
    height: 180px;
  }
  .mediathek-container .row .col-12:first-child {
    margin-bottom: 0;
  }
  .teaser-container {
    padding: 50px 0 0;
  }
  .teaser-container .teaser {
    transform: none !important;
  }
  .teaser-container .teaser:first-child {
    margin-bottom: 50px;
  }
  .statements-container {
    padding: 50px 0;
  }
  #corner-intro {
    width: 80vw !important;
    min-width: auto !important;
  }
}
#corner-intro {
  position: absolute;
  left: 0;
  top: 0;
  width: 30vw;
  min-width: 400px;
}
svg {
  user-select: none;
}
.hyphens-auto {
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
.kachel object {
  user-select: none;
  pointer-events: none;
}
img.preview {
  width: 90%;
  margin-top: 5%;
  display: block;
}
.online-seminare-preview,
.blog-preview,
.newsletter-preview {
  width: 50% !important;
  display: block;
}
.btn-close {
  position: absolute;
  right: 31px;
}
@media (min-width: 768px) {
  .modal-dialog {
    max-width: 700px;
    margin: 1.75rem auto;
  }
}
.modal object {
  margin: 0 20px 0 0;
}
.modal-content {
  border: none;
  background-color: transparent;
}
.offcanvas {
  color: #fff;
}
.offcanvas a {
  color: #d5d5d5;
}
.offcanvas-body,
.offcanvas-header {
  padding: 2.5rem 1.5rem 1.5rem 1.5rem;
}
#fallbeispieleOffcanvasRight {
  background-color: var(--fallbeispiele);
}
#musterbestellungOffcanvasRight {
  background-color: var(--musterbestellung);
}
#mediathekOffcanvasRight {
  background-color: var(--mediathek);
}
#preisvergleichOffcanvasRight {
  background-color: var(--preisvergleich);
}
#newsletterOffcanvasRight {
  background-color: var(--newsletter);
}
#wunddokuappOffcanvasRight {
  background-color: var(--wunddokuapp);
}
#online-seminareOffcanvasRight {
  background-color: var(--onlineseminare);
}
#blogOffcanvasRight {
  background-color: var(--blog);
}
.btn.aufrufen {
  height: fit-content;
}
.modal-body {
  padding: 2em;
}
b {
  font-weight: 700;
}
#auto-grau-4 > * {
  transform: rotate(-150deg);
}
#Boot > * {
  transform: rotate(210deg);
}
#auto-rot-3 > * {
  transform: rotate(-12deg);
}
#zeppelin > * {
  transform: rotate(-7deg);
}
g#path-group > * {
  stroke: rgba(255, 255, 255, 0);
  stroke-width: 3;
}
svg#city {
  height: 90vh;
  width: 100%;
}
#OnlineSeminare-Hotspot,
#Newsletter-Hotspot,
#WundDokuApp-Hotspot,
#Fallbeispiele-Hotspot,
#Musterbestellung-Hotspot,
#Mediathek-Hotspot,
#Preisvergleich-Hotspot,
#Blog-Hotspot {
  user-select: none;
  pointer-events: none;
}
#OnlineSeminare-Hotspot {
  opacity: 0;
  transition: opacity ease-in-out 0.15s, transform ease 0.2s;
  transform: translate(10px, 396px);
}
#Newsletter-Hotspot {
  opacity: 0;
  transition: opacity ease-in-out 0.15s, transform ease 0.2s;
  transform: translate(555px, 400px);
}
#WundDokuApp-Hotspot {
  opacity: 0;
  transition: opacity ease-in-out 0.15s, transform ease 0.2s;
  transform: translate(755px, 470px);
}
#Fallbeispiele-Hotspot {
  opacity: 0;
  transition: opacity ease-in-out 0.15s, transform ease 0.2s;
  transform: translate(185px, 210px);
}
#Musterbestellung-Hotspot {
  opacity: 0;
  transition: opacity ease-in-out 0.15s, transform ease 0.2s;
  transform: translate(300px, 180px);
}
#Mediathek-Hotspot {
  opacity: 0;
  transition: opacity ease-in-out 0.15s, transform ease 0.2s;
  transform: translate(600px, 205px);
}
#Preisvergleich-Hotspot {
  opacity: 0;
  transition: opacity ease-in-out 0.15s, transform ease 0.2s;
  transform: translate(245px, 362px);
}
#Blog-Hotspot {
  opacity: 0;
  transition: opacity ease-in-out 0.15s, transform ease 0.2s;
  transform: translate(595px, 625px);
}
#Standort-icon-fallbeispiele:hover ~ #Fallbeispiele-Hotspot {
  opacity: 1;
  transition: opacity ease-in-out 0.15s, transform ease 0.2s;
  transform: translate(185px, 190px);
}
#Standort-icon-online-seminare:hover ~ #OnlineSeminare-Hotspot {
  opacity: 1;
  transition: opacity ease-in-out 0.15s, transform ease 0.2s;
  transform: translate(-10px, 396px);
}
#Standort-icon-musterbestellung:hover ~ #Musterbestellung-Hotspot {
  opacity: 1;
  transition: opacity ease-in-out 0.15s, transform ease 0.2s;
  transform: translate(300px, 150px);
}
#Standort-icon-mediathek:hover ~ #Mediathek-Hotspot {
  opacity: 1;
  transition: opacity ease-in-out 0.15s, transform ease 0.2s;
  transform: translate(625px, 205px);
}
#Standort-icon-preisvergleich:hover ~ #Preisvergleich-Hotspot {
  opacity: 1;
  transition: opacity ease-in-out 0.15s, transform ease 0.2s;
  transform: translate(225px, 362px);
}
#Standort-icon-blog:hover ~ #Blog-Hotspot {
  opacity: 1;
  transition: opacity ease-in-out 0.15s, transform ease 0.2s;
  transform: translate(615px, 625px);
}
#Standort-icon-wunddokuapp:hover ~ #WundDokuApp-Hotspot {
  opacity: 1;
  transition: opacity ease-in-out 0.15s, transform ease 0.2s;
  transform: translate(775px, 470px);
}
#Standort-icon-newsletter:hover ~ #Newsletter-Hotspot {
  opacity: 1;
  transition: opacity ease-in-out 0.15s, transform ease 0.2s;
  transform: translate(575px, 400px);
}
.kachel-blog {
  background-color: var(--blog);
}
.kachel-preisvergleich {
  background-color: var(--preisvergleich);
}
.kachel-mediathek {
  background-color: var(--mediathek);
}
.kachel-musterbestellung {
  background-color: var(--musterbestellung);
}
.kachel-fallbeispiele {
  background-color: var(--fallbeispiele);
}
.kachel-online-seminare {
  background-color: var(--onlineseminare);
}
.kachel-wunddokuapp {
  background-color: var(--wunddokuapp);
}
.kachel-newsletter {
  background-color: var(--newsletter);
}
@keyframes floating-effect {
  0% {
    transform: translate(0px, -4px);
  }
  50% {
    transform: translate(0px, -10px);
  }
  100% {
    transform: translate(0px, -4px);
  }
}
@keyframes floating-effect-shadow {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
@keyframes sterneSeite {
  0% {
    fill: #e1a86f;
  }
  1% {
    fill: #ec970d;
  }
  50% {
    fill: #ec970d;
  }
  51% {
    fill: #e1a86f;
  }
  100% {
    fill: #e1a86f;
  }
}
@keyframes sterneFront {
  0% {
    fill: #fee1b3;
  }
  1% {
    fill: #ec9b18;
  }
  50% {
    fill: #ec9b18;
  }
  51% {
    fill: #fee1b3;
  }
  100% {
    fill: #fee1b3;
  }
}
@keyframes fensterLicht {
  0% {
    fill: #cee9ee;
  }
  1% {
    fill: #dee671;
  }
  50% {
    fill: #dee671;
  }
  51% {
    fill: #cee9ee;
  }
}
@keyframes fensterLichtPreisvergleich {
  0% {
    fill: #cee9ee;
  }
  1% {
    fill: #dee671;
  }
  50% {
    fill: #dee671;
  }
  51% {
    fill: #cee9ee;
  }
}
@keyframes fensterLichtOnlineSeminare {
  0% {
    fill: #96c4d2;
  }
  1% {
    fill: #dee671;
  }
  50% {
    fill: #dee671;
  }
  51% {
    fill: #96c4d2;
  }
}
#fensterOnlineSeminare1 {
  animation: fensterLichtOnlineSeminare 12s infinite linear;
}
#fensterOnlineSeminare2 {
  animation: fensterLichtOnlineSeminare 30 infinite linear;
}
#fensterPreisvergleich1 {
  animation: fensterLichtPreisvergleich 12s infinite linear;
}
#fensterPreisvergleich2 {
  animation: fensterLichtPreisvergleich 23s infinite linear;
}
#fensterPreisvergleich3 {
  animation: fensterLichtPreisvergleich 53s infinite linear;
}
#fensterPreisvergleich4 {
  animation: fensterLichtPreisvergleich 22s infinite linear;
}
#fensterPreisvergleich5 {
  animation: fensterLichtPreisvergleich 33s infinite linear;
}
#fensterPreisvergleich6 {
  animation: fensterLichtPreisvergleich 40s infinite linear;
}
#fensterPreisvergleich7 {
  animation: fensterLichtPreisvergleich 23s infinite linear;
}
#fensterPreisvergleich8 {
  animation: fensterLichtPreisvergleich 53s infinite linear;
}
#fensterPreisvergleich9 {
  animation: fensterLichtPreisvergleich 20s infinite linear;
}
#fensterPreisvergleich10 {
  animation: fensterLichtPreisvergleich 38s infinite linear;
}
#fensterPreisvergleich11 {
  animation: fensterLichtPreisvergleich 44s infinite linear;
}
#fensterPreisvergleich12 {
  animation: fensterLichtPreisvergleich 54s infinite linear;
}
#fensterPreisvergleich13 {
  animation: fensterLichtPreisvergleich 16s infinite linear;
}
#fensterPreisvergleich14 {
  animation: fensterLichtPreisvergleich 15s infinite linear;
}
#fensterPreisvergleich15 {
  animation: fensterLichtPreisvergleich 47s infinite linear;
}
#fensterPreisvergleich16 {
  animation: fensterLichtPreisvergleich 34s infinite linear;
}
#fensterPreisvergleich17 {
  animation: fensterLichtPreisvergleich 150s infinite linear;
}
#fensterPreisvergleich18 {
  animation: fensterLichtPreisvergleich 17s infinite linear;
}
#fensterPreisvergleich19 {
  animation: fensterLichtPreisvergleich 99s infinite linear;
}
#fensterPreisvergleich20 {
  animation: fensterLichtPreisvergleich 35s infinite linear;
}
#fensterPreisvergleich21 {
  animation: fensterLichtPreisvergleich 23s infinite linear;
}
#fensterPreisvergleich22 {
  animation: fensterLichtPreisvergleich 12s infinite linear;
}
#fensterPreisvergleich23 {
  animation: fensterLichtPreisvergleich 43s infinite linear;
}
#fensterPreisvergleich24 {
  animation: fensterLichtPreisvergleich 28s infinite linear;
}
#fensterPreisvergleich25 {
  animation: fensterLichtPreisvergleich 29s infinite linear;
}
#fensterPreisvergleich26 {
  animation: fensterLichtPreisvergleich 36s infinite linear;
}
#fensterFallbeispiel1 {
  animation: fensterLicht 23s infinite linear;
}
#fensterFallbeispiel4 {
  animation: fensterLicht 15s infinite linear;
}
#fensterFallbeispiel5 {
  animation: fensterLicht 15s infinite linear;
  animation-direction: alternate-reverse;
}
#fensterFallbeispiel2 {
  animation: fensterLicht 60s infinite linear;
  animation-direction: alternate;
}
#fensterFallbeispiel6 {
  animation: fensterLicht 43s infinite linear;
  animation-direction: alternate;
}
#fensterFallbeispiel7 {
  animation: fensterLicht 24s infinite linear;
  animation-direction: alternate;
}
#fensterFallbeispiel8 {
  animation: fensterLicht 8s infinite linear;
}
#fensterMusterbestellung1 {
  animation: fensterLicht 8s infinite linear;
}
#fensterMusterbestellung2 {
  animation: fensterLicht 30s infinite linear;
}
#fensterMusterbestellung3 {
  animation: fensterLicht 45s infinite linear;
}
#fensterMusterbestellung4 {
  animation: fensterLicht 15s infinite linear;
}
#fensterMusterbestellung5 {
  animation: fensterLicht 94s infinite linear;
}
#fensterMusterbestellung6 {
  animation: fensterLicht 32s infinite linear;
}
#fensterMusterbestellung7 {
  animation: fensterLicht 35s infinite linear;
}
#fensterMusterbestellung8 {
  animation: fensterLicht 22s infinite linear;
}
#fensterMusterbestellung9 {
  animation: fensterLicht 18s infinite linear;
}
#fensterMusterbestellung10 {
  animation: fensterLicht 64s infinite linear;
}
#fensterMusterbestellung11 {
  animation: fensterLicht 81s infinite linear;
}
#fensterMusterbestellung12 {
  animation: fensterLicht 90s infinite linear;
}
#Stern-1 > *:not(#front),
#Stern-2 > *:not(#front),
#Stern-3 > *:not(#front) {
  animation: sterneSeite 3s infinite ease-in-out;
}
#Stern-1 > #front,
#Stern-2 > #front,
#Stern-3 > #front {
  animation: sterneFront 3s infinite ease-in-out;
}
#Standort-icon-blog,
#Standort-icon-preisvergleich,
#Standort-icon-mediathek,
#Standort-icon-musterbestellung,
#Standort-icon-fallbeispiele,
#Standort-icon-online-seminare,
#Standort-icon-wunddokuapp,
#Standort-icon-newsletter {
  cursor: pointer;
}
#Standort-icon-blog > *:not(#Oval),
#Standort-icon-preisvergleich > *:not(#Oval),
#Standort-icon-mediathek > *:not(#Oval),
#Standort-icon-musterbestellung > *:not(#Oval),
#Standort-icon-fallbeispiele > *:not(#Oval),
#Standort-icon-online-seminare > *:not(#Oval),
#Standort-icon-wunddokuapp > *:not(#Oval),
#Standort-icon-newsletter > *:not(#Oval) {
  animation: floating-effect 3s infinite ease-in-out;
}
#Standort-icon-blog *#Oval,
#Standort-icon-preisvergleich *#Oval,
#Standort-icon-mediathek *#Oval,
#Standort-icon-musterbestellung *#Oval,
#Standort-icon-fallbeispiele *#Oval,
#Standort-icon-online-seminare *#Oval,
#Standort-icon-wunddokuapp *#Oval,
#Standort-icon-newsletter *#Oval {
  animation: floating-effect-shadow 3s infinite ease-in-out;
}
