﻿.bottom-animate {
    position: relative;
    bottom: 0px;
    transition: bottom 150ms linear;
}

    .bottom-animate:hover {
        position: relative;
        bottom: 10px;
        transition: bottom 150ms linear;
    }

.expand-animate {
    transition: all .2s ease-in-out;
}
    .expand-animate:hover {
        transform: scale(1.1);
    }
