.image-wrapper{
	background: #F6EEE4;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.animated {
    /* Add your animation styles here */
    animation: move-in 1.25s;
}

@keyframes move-in {
    from {
        opacity: 0;
        transform: translate3d(0,50%,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@media(min-width:992px){
	.mt-lg-25{
		margin-top:25%!important;
	}
}