.bg-apus-gradient {
  background-image: radial-gradient(#1362a3, #020d15);
}

@keyframes Pulse {
  0% {
    box-shadow: 0 0 20px rgba(19, 98, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(100, 150, 255, 1);
  }
  100% {
    box-shadow: 0 0 20px rgba(19, 98, 255, 0.2);
  }
}

.pulse-animation {
  -webkit-animation: Pulse 2s infinite ease-in-out;
  -o-animation: Pulse 2s infinite ease-in-out;
  -ms-animation: Pulse 2s infinite ease-in-out;
  -moz-animation: Pulse 2s infinite ease-in-out;
  animation: Pulse 2s infinite ease-in-out;
}

.hover-shadow-3d-dark {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.hover-shadow-3d-dark:hover {
  box-shadow: 0.5rem 0.5rem 0 rgba(0, 0, 0, 0.2);
  transform: translate3d(-4px, -4px, 0) rotateZ(-1deg);
}

/* Image Hover */

.hover {
  overflow: hidden;
  position: relative;
}

.hover-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 90;
  transition: all 0.4s;
}

.hover img {
  transition: all 0.3s;
}

.hover-content {
  position: relative;
  z-index: 99;
}

.hover-5::after {
  content: '';
  width: 100%;
  height: 10px;
  background: #0078BF;
  position: absolute;
  bottom: -10px;
  left: 0;
  display: block;
  transition: all 0.3s;
  z-index: 999;
}

.hover-5 .hover-overlay {
  background: rgba(0, 0, 0, 0);
}

.hover-5-title {
  position: absolute;
  bottom: 1rem;
  left: 0;
  transition: all 0.4s;
  padding: 2rem 3rem;
  z-index: 99;
  opacity: 0;
  color: #dddddd;
}

.hover-5:hover .hover-overlay {
  background: rgba(0, 0, 0, 0.8);
}

.hover-5:hover .hover-5-title {
  bottom: 0;
  opacity: 1;
}

.hover-5:hover::after {
  bottom: 0;
}

.partner-logos {
  height: 4rem;
}