
.image-custom-size{
    max-width: 300px !important;
    max-height: 100px !important;
}
.items.business-loan .portfolio-content span {
    opacity: 1 !important;
    visibility: visible !important;
}


.my-anim {
    animation-name: myAnimation;
    animation-duration: 10s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite; /* Change this to adjust the number of repetitions */
}

@keyframes myAnimation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
