/* CSS Document */

html {
  scroll-behavior: smooth;
}

.bu {
  font-size: 14px;
}

.lazy {
  background-image: none!important;
}

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

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

.margin-top1 {
  margin-top: 145px;
}

.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  visibility: hidden!important;
}

.slideUp1 {
  visibility: visible;
}

@keyframes slideUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(50%);
  }
}

.pluse:hover {
  transform: scale(1);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(.95);
  }
  70% {
    transform: scale(1);
  }
  100% {
    transform: scale(.95);
  }
}

#the-final-countdown {
  max-width: 400px;
  margin: 1rem auto 2rem;
}

#the-final-countdown > p {
  font-size: 50pt;
  font-weight: 700;
  position: relative;
  color: #222;
}

#the-final-countdown > p:before {
  position: absolute;
  content: "Stunden";
  font-size: 30px;
  bottom: -17.5px;
  left: 35%;
  color: #222;
}

#the-final-countdown2 {
  max-width: 400px;
  margin: 1rem auto 2rem;
}

#the-final-countdown2 > p {
  font-size: 30pt;
  font-weight: 700;
  position: relative;
}

#the-final-countdown2 > p:before {
  position: absolute;
  content: "Stunden";
  font-size: 20px;
  bottom: -32.5px;
  left: 38%;
  color: #222;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

/* The Modal (background) */

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 25px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

/* Modal Content */

.modal-content {
  background-color: #F9F9FA;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 60%;
}

/* The Close Button */

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.active {
  display: block!important;
}

.overflow {
  overflow: hidden!important;
}

li {
  padding-bottom: 10px;
}

li:last-child {
  padding-bottom: 0px;
}

.yellow {
  color: var(--color-yellow);
}

.black {
  color: var(--color-black);
}

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

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

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

.grey {
  color: var(--color-grey);
}

.red {
  color: var(--color-red);
}

.bg-red {
  background-color: var(--color-red);
}

.bg-yellow {
  background-color: var(--color-yellow);
}

.bg-black {
  background-color: var(--color-black);
}

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

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

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

.bg-grey {
  background-color: var(--color-grey);
}

@media (max-width: 768px) {
  .modal-content {
    padding: 5px!important;
    width: 100%!important;
  }
}

@media (max-width: 768px) {
  h1, h2, h3 {
    word-break: break-word;
  }
}

@media (max-width: 768px) {
  .text-center-mo {
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .margin-top1 {
    margin-top: 180px!important;
  }
}

@media (max-width: 1024px) {
  .float-right, .float-left {
    float: unset;
    text-align: center;
    display: block: margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .float-right.ml-3, .float-left.mr-3 {
    margin: 0 auto;
  }
}

