@keyframes navLine{
    from{transform: scale(0.1,1)}
    to{transform: scale(1,1)}
}

.nav-line{
    animation: navLine .5s infinite;
}

@keyframes zoomUp {
    from {
                transform: scale(1,1)
    }

    to {
                transform: scale(1.2,1.2)
    }
}

@keyframes zoomDown {
    from {
                transform: scale(1.2,1.2)
    }

    to {
                transform: scale(1,1)
    }
}
@keyframes fadeIn{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
.zoom-up {
    display: block;
    overflow: hidden;
}
    .zoom-up img {
                animation: zoomDown infinite .5s;
                animation-iteration-count: 1;
    }

    .zoom-up:hover img {
                animation: zoomUp infinite .5s;
                animation-iteration-count: 1;
                transform: scale(1.2,1.2)
    }
