/* THIS IS ANIMATION LEFT */

.hidden-l {
  opacity: 0;
  transition: all 1s ease-in-out;
  transform: translatex(-200px);
}

.show-l {
  opacity: 1;
  transition: all 1s ease-in-out;
  transform: translatex(0);
}

/* THIS IS FOR ANIMATION RIGHT */

.hidden-r {
  opacity: 0;
  transition: all 1s ease-in-out;
  transform: translatex(200px);
}

.show-r {
  opacity: 1;
  transition: all 1s ease-in-out;
  transform: translatex(0);
}

/* ANIMATIONS HERO */

.hero-logo {
  opacity: 0;
  animation: fadeIn 2s ease-in-out forwards;
}
.title {
  opacity: 0;
  animation: fadeIn 2.5s ease-in-out forwards;
}
.hero-poilicy {
  opacity: 0;
  animation: fadeIn 3s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ANIMATIONS ARROWS */

/* Styles for the left image */
.dots-sticky-arrow-left {
  position: fixed;
  top: 35%;
  left: 20px;
  transform: translate(-50%, -50%);
  width: auto;
  height: 20%;
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

/* Styles for the right image */
.dots-sticky-arrow-right {
  position: fixed;
  top: 75%;
  right: 30px;
  transform: translate(50%, -50%);
  width: auto;
  height: 17%;
  border-radius: 50%;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
@media (max-width: 1200px) {
  .dots-sticky-arrow-left {
    left: 20px;
    height: 20%;
    min-height: 160px;
  }
  .dots-sticky-arrow-right {
    right: 20px;
    height: 15%;
    min-height: 120px;
  }
}

/* FLOAT ANIMATION */

.container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}

.float-up {
  opacity: 0;
  transform: translateY(50%);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.float-up.animate {
  transform: translateY(0);
  opacity: 1;
}

.item1 {
  width: 100%;
  display: flex;
  justify-content: center;
  animation-duration: 1.5s;
}

.item2 {
  animation-duration: 2s;
}
