/* **********************************************************
 * FOOTER
 * ******************************************************** */
/* FOOTER MARGIN TWEAK FOR TOP DIVIDER */
.jupiterx-footer {
    margin-top: -6rem;
    z-index: 100;
    position: relative;
}

/* FOOTER BG */
.footer-wrapper {
  position: relative;
}
.footer-wrapper::before {
  animation: bg-zoomInOut 15s ease-in-out infinite;
}

/* Keyframes for the zoom-in-and-out animation */
@keyframes bg-zoomInOut {
  0% {
    transform: scale(1); /* Initial scale */
  }
  50% {
    transform: scale(1.1); /* Zoom in slightly */
  }
  100% {
    transform: scale(1); /* Zoom back out */
  }
}

/* WST Footer */
.wst-footer {
	background-color: #000D1A;
	color: #fff;
	font-size: 1rem;
	padding: 1rem;
	text-align: center;
	position: relative;
	box-shadow: 0px 5px 30px #111;
	box-shadow: 0px 5px 30px #003366;
	box-shadow: 0px 5px 30px #6685E0;
    z-index: 90 !important;	
}
.wst-footer p {
	margin-bottom: 0;
}
.wst-footer a {
	color: #ccccff !important;
}
.wst-footer a:hover {
	color: #FFF !important;
}