.contact-section {
  overflow: hidden;
}

.animate-left {
  animation: slideInLeft 0.6s ease forwards;
  opacity: 0;
}

.animate-right {
  animation: slideInRight 0.6s ease forwards;
  opacity: 0;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
