#content {
    margin-top: 50px;
}
.sidebar-wrapper {
  top: 50px !important;
}

.nav-item-website-menu {
    margin-right: 25px;
    margin-left: 25px;
    font-size: 1.10em;
}
.active {
    font-weight: bold;
}

.floating-img {
  display: inline-block;
  animation: float 4s ease-in-out infinite;
}

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