/* -------------------- Foating Contact BEGINN -------------------- */

.container-contact {
  right: 0%;
  bottom: 8%;
  position: fixed;
  width: 120px;
  display: none !important;
  background-color: rgba(255,255,255,0.50); /*weiß blur*/
  backdrop-filter: blur(7px);
  border-radius: 15px;
  z-index: 300;
}
.contact-icon {
  display: none !important;
  color: #31484e;
  font-weight: bold;
  background-image: linear-gradient(45deg, #cfe09b 0%, #95c11f 100%);
  transition: all .35s;
  border: 4px solid #fff;
  outline: 4px solid #000;
  box-shadow: 1px 0px 2px #cccccc;
  font-size: 0.65rem;
  z-index: 9;
  border-radius: 50%;
}
.contact-icon:hover {
  background-image: linear-gradient(45deg, #31484e 0%, #31484e 100%);
  color: #fff;
  text-decoration: none;
  border: 4px solid #fff;
  outline: 4px solid #000;
}
@media (min-width: 992px) {
  .contact-icon {
    display: block !important;
  }
  .container-contact {
    display: block !important;
  }
}
@media (max-width: 992px) {
  .content-top-info.scroll {
    opacity: 1 !important;
  }
}

/* -------------------- Floating Contact ENDE -------------------- */