.column-slide-control {
    display: none;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-left,
.fade-in-right {
  opacity: 0;
}

.fade-in-left.visible {
  animation: fadeInLeft 1s ease forwards;
}

.fade-in-right.visible {
  animation: fadeInRight 1s ease forwards;
}

@media only screen and (max-width: 820px) {
    .column-slide-control {
        display: flex;
    }
}
