/* Padding is needed in the contents for layouts nine, eight and five, */
.animated-card:hover .project-card-padding {
    padding-left: 2.5rem;
}

.animated-card-image, .animated-card {
    transition: all 0.3s ease;
}

/* Adds hovering and scaling of image/content on hover */
.animated-card:hover {
    -o-box-shadow: 3px 2px 30px -10px rgba(0,0,0,0.50);
	-moz-box-shadow: 3px 2px 30px -10px rgba(0,0,0,0.50);
	-webkit-box-shadow: 3px 2px 30px -10px rgba(0,0,0,0.50);
    box-shadow: 3px 2px 30px -10px rgba(0,0,0,0.50);
}

.animated-card:hover .animated-card-image {
    -webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
    transform: scale(1.1);
}
