@keyframes zoomInCustom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

#about-us-image {
    animation: zoomInCustom 0.8s ease-out;
}

#about-us-image:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;

}