.bg-glass {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8.5px);
  -webkit-backdrop-filter: blur(8.5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.bg-sky-top {
  background-image: linear-gradient(#dceaf5, #ffffff);
}
.bg-sky-bottom {
  background-image: linear-gradient(#ffffff, #dceaf5);
}
.bg-sunset-top {
  background-image: linear-gradient(#f8e0df, #ffffff);
}
.bg-sunset-bottom {
  background-image: linear-gradient(#ffffff, #f8e0df);
}
.card-ns {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.card-zoom:hover {
  overflow-x: hidden !important;
  transform: scale(1.1) !important;
  transition: all 0.5s ease !important;
  -webkit-transition: all 0.5s ease !important;
}
.fade-load {
  animation-name: fadeload;
  -webkit-animation-name: fadeload;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  display: block;
  visibility: visible;
}
@keyframes fadeload {
  from {
  opacity: 0;
  }
  to {
  opacity: 1;
  }
}
@-webkit-keyframes fadeload {
  from {
  opacity: 0;
  } 
  to {
  opacity: 1;
  }
}
.spin-lg {
  width: 5rem;
  height: 5rem;
}
.spin-md {
  width: 3rem;
  height: 3rem;
  margin-left: 10px;
}
.text-logo-blue {
  color: #1d1f8c;
}
.text-logo-green {
  color: #059b44;
}
.text-logo-red {
  color: #dc0b10;
}