@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate .title,
.animate .container,
.animate .card_shop,
.animate .card_shop2 {
  animation: fadeIn 1s ease-in-out;
}
