@use '../../colors';

.bz-card-icon {
    position: relative;
    padding-top: 65px;
    img, svg {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%); 
        transition: transform 0.3s;
        max-height: 100px;
    }
    &:hover {
        img, svg {
            transform: translate(-50%, -50%) scale(1.2);
        }
    }
}