/* ===================================
   HERO
=================================== */

.policy-hero .small-title,
.policy-hero h1,
.policy-hero .intro,
.policy-hero .effective-date {
  opacity: 0;
}

.policy-hero.animate .small-title {
  animation: fade-in 1s ease 0.1s both;
}

.policy-hero.animate h1 {
  animation: slide-in-left 1s ease 0.2s both;
}

.policy-hero.animate .intro {
  animation: fade-in 1s ease 0.45s both;
}

.policy-hero.animate .effective-date {
  animation: slide-in-bottom 1s ease 0.7s both;
}

/* ===================================
   POLICY CONTENT
=================================== */

.policy-content .policy-card {
  opacity: 0;
}

.policy-content.animate .policy-card:nth-child(1) {
  animation: slide-in-bottom 0.8s ease 0.1s both;
}

.policy-content.animate .policy-card:nth-child(2) {
  animation: slide-in-bottom 0.8s ease 0.2s both;
}

.policy-content.animate .policy-card:nth-child(3) {
  animation: slide-in-bottom 0.8s ease 0.3s both;
}

.policy-content.animate .policy-card:nth-child(4) {
  animation: slide-in-bottom 0.8s ease 0.4s both;
}

.policy-content.animate .policy-card:nth-child(5) {
  animation: slide-in-bottom 0.8s ease 0.5s both;
}

.policy-content.animate .policy-card:nth-child(6) {
  animation: slide-in-bottom 0.8s ease 0.6s both;
}

.policy-content.animate .policy-card:nth-child(7) {
  animation: slide-in-bottom 0.8s ease 0.7s both;
}

.policy-content.animate .policy-card:nth-child(8) {
  animation: slide-in-bottom 0.8s ease 0.8s both;
}

.policy-content.animate .policy-card:nth-child(9) {
  animation: slide-in-bottom 0.8s ease 0.9s both;
}

.policy-content.animate .policy-card:nth-child(10) {
  animation: slide-in-bottom 0.8s ease 1s both;
}

.policy-content.animate .policy-card:nth-child(11) {
  animation: slide-in-bottom 0.8s ease 1.1s both;
}

.policy-content.animate .policy-card:nth-child(12) {
  animation: slide-in-bottom 0.8s ease 1.2s both;
}

/* ===================================
   FOOTER
=================================== */

footer h3,
footer h4,
footer p,
footer a,
.footer-bottom {
  opacity: 0;
}

footer.animate h3 {
  animation: slide-in-bottom 0.8s ease both;
}

footer.animate h4 {
  animation: slide-in-bottom 0.8s ease 0.1s both;
}

footer.animate p {
  animation: fade-in 0.8s ease 0.2s both;
}

footer.animate a {
  animation: fade-in 0.8s ease 0.35s both;
}

footer.animate .footer-bottom {
  animation: slide-in-bottom 0.8s ease 0.5s both;
}

/* ===================================
   KEYFRAMES
=================================== */

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-bottom {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
