
@media screen and (max-width: 480px) {
    .footer_c{
        flex-direction: column;
    }
  }
  .slide-in-left {
    animation: slideInLeft 0.5s ease-in-out forwards;
    opacity: 0;
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
