﻿@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 50vh !important;
    }

    .carousel-caption {
        max-width: 90% !important;
        font-size: 0.9rem !important;
    }
}
