 

@keyframes fadeInDown{
  from{ opacity: 0; transform: translateY(-16px); }
  to{ opacity: 1; transform: translateY(0); }
}

.navbar{ animation: fadeInDown .7s var(--ease); }

@keyframes softPulse{
  0%, 100%{ box-shadow: 0 10px 26px rgba(176,134,58,.35); }
  50%{ box-shadow: 0 10px 34px rgba(176,134,58,.55); }
}

.btn-primary.pulse{ animation: softPulse 2.6s ease-in-out infinite; }

@keyframes spinSlow{
  to{ transform: rotate(360deg); }
}

.spin-slow{ animation: spinSlow 40s linear infinite; }

.reveal-group > *:nth-child(1){ --d: 0; }
.reveal-group > *:nth-child(2){ --d: 1; }
.reveal-group > *:nth-child(3){ --d: 2; }
.reveal-group > *:nth-child(4){ --d: 3; }
.reveal-group > *:nth-child(5){ --d: 4; }
.reveal-group > *:nth-child(6){ --d: 5; }
