.cont-img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    top: 0;
    border-radius: 10px 0 0 10px;
    background-size: cover !important;
    background-position: 50% !important;
}
@media(max-width: 768px){
    .cont-img{
        display: none;
    }
}
.border-radius {
    border-radius: 10px;
}
.animation-img {
    animation: moviemiento 1s ease 0s 1 normal forwards;

}
@keyframes moviemiento {
	0% {
		opacity: 0;
		transform: scale(0.6);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}
