@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-15px);
  }
  100% {
    transform: translatey(0px);
  }
}

@keyframes scale {
  0% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
  50% {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
  }
  100% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}

.site-heading img:nth-of-type(1) {
  transform: translatey(0px);
  animation: float 6s ease-in-out infinite;
}

.site-heading img:nth-of-type(2) {
  transform: translatey(0px);
  animation: scale 6s ease-in-out infinite;
}

.site-heading {
}

.floating-button:before {
  /*position: fixed;*/
  /*z-index: 100;*/
  /*right: 15px;*/
  /*bottom: 15px;*/
}

.floating-button {
  position: fixed;
  z-index: 100;
  right: 15px;
  bottom: 15px;
  /*opacity: 0;*/
  transition: opacity 0.4s;
}

.fa.fa-arrow-left.d-xl-flex.button-icon {
  position: absolute;
  left: 15px;
  top: 8px;
}

.text-sm-center.text-md-center.text-lg-right.text-xl-right a {
  color: #546b94;
}

