h1 {
  font-size: 3rem;
  line-height: 1;
}

h2 {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

h3 {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

h4 {
  font-size: 1.5rem;
  line-height: 2rem;
}

h5 {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

h6 {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

/* EAGLE */
.eagle {
  position: absolute;
  width: 50%;

  top: 4%;
  left: 14%;

  transform-origin: center center;

  animation:
    eagleFloat 3s ease-in-out infinite;

  filter:
    drop-shadow(0 25px 35px rgba(0, 0, 0, 0.35));
}

/* IMAGE STACK */
.eagle img {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;

  user-select: none;
  pointer-events: none;
}


/* =========================
   WING UP
========================= */
.wing-1 {
  opacity: 1;
  animation: flapUp 4s ease-in-out infinite;
}


/* =========================
   WING DOWN
========================= */
.wing-2 {
  opacity: 0;
  animation: flapDown 4s ease-in-out infinite;
}


/* =========================
   SWITCH EVERY 3 SECONDS
========================= */

@keyframes flapUp {

  /* FIRST 3 SECONDS = VISIBLE */
  0% {
    opacity: 1;
    transform: translateY(0px);
  }

  45% {
    opacity: 1;
    transform: translateY(0px);
  }

  50% {
    opacity: 0;
    transform: translateY(4px);
  }

  /* SECOND 3 SECONDS = HIDDEN */
  95% {
    opacity: 0;
    transform: translateY(4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes flapDown {

  /* FIRST 3 SECONDS = HIDDEN */
  0% {
    opacity: 0;
    transform: translateY(-3px);
  }

  45% {
    opacity: 0;
    transform: translateY(-3px);
  }

  /* SWITCH */
  50% {
    opacity: 1;
    transform: translateY(0px);
  }

  /* SECOND 3 SECONDS = VISIBLE */
  95% {
    opacity: 1;
    transform: translateY(0px);
  }

  100% {
    opacity: 0;
    transform: translateY(-3px);
  }
}


/* =========================
   NATURAL FLOATING
========================= */

@keyframes eagleFloat {

  0% {
    margin-top: 0px;
  }

  50% {
    margin-top: -10px;
  }

  100% {
    margin-top: 0px;
  }
}

/* box dots */
.box-slide .slick-dots {
  position: absolute;
  bottom: 20px;
  display: flex !important;
  justify-content: center;
  list-style: none;
  width: 100%;
  padding: 0;
  margin: 0;
  gap: 12px;
  /* Space between dots */
  z-index: 10;
}

.box-slide .slick-dots li {
  margin: 0;
  padding: 0;
}

.box-slide .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #ffffff;
  border-radius: 50%;

  opacity: 0.4;
  transform: scale(0.8);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.box-slide .slick-dots li button:hover {
  opacity: 0.7;
}

.box-slide .slick-dots li.slick-active button {
  opacity: 1;
  transform: scale(1.2);
  background: #c82030;
}



@media (max-width: 768px) {
  .eagle {
    width: 60%;
  }

}