  .ccma-row {
    display: flex;
    flex-wrap: wrap;
}

.ccma-row .ccma-item-animation {
    width: calc(100%/7);
}

.ccma-item-animation {
    height: 350px;
    position: relative;
    overflow: hidden;
	cursor: default;
}

.ccma-item-animation .ccma-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
	transform: scale(1.1);
}

.ccma-item-animation .ccma-image-description {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #00000030;
    display: flex;
    opacity: 0;
    transition: 0.6s;
}

.ccma-item-animation .ccma-image-description h3 {
    color: #fff;
    font-size: 16px;
    text-align: center;
    margin: auto;
    transform: translateY(15px);
    transition: 0.6s;
}

.ccma-item-animation:hover img {
    transform: scale(1.2);
}

.ccma-item-animation:hover .ccma-image-description {
    opacity: 1;
}

.ccma-item-animation:hover .ccma-image-description h3 {
    transform: translateY(0px);
}
@media screen and (max-width: 1025px) and (min-width: 981px){
	.ccma-item-animation {
		height: 1010px;
	}
}
@media (max-width: 1025px){
	.ccma-row .ccma-item-animation {
		min-width: 100%;
	}
}
@media screen and (max-width: 981px) and (min-width: 650px){
	.ccma-item-animation {
		height: 800px;
	}
}