﻿.animate_img--wrapper {
    overflow: hidden;
    width: 100%
}

    .animate_img--wrapper a img {
        transition: transform .5s ease,opacity .5s ease
    }

    .animate_img--wrapper a:hover img {
        transform: scale(1.2);
        opacity: .9
    }

.image_animation {
    overflow: hidden;
    width: 100%
}

    .image_animation a img {
        transition: transform .5s ease,opacity .5s ease
    }

    .image_animation a:hover img {
        transform: scale(1.1);
        opacity: .9
    }
