#item-1745645578152 .ba-shape-divider {
margin-top: -1px !important;
}

.animate_grow {
	animation: animate_grow 1s infinite;
}
.animate_grow:hover {
	animation: none;
}
 
@keyframes animate_grow {
	0% {
		transform: scale3d(1, 1, 1);
	}
	50% {
		transform: scale3d(1.05, 1.05, 1.05);
	}
	100% {
		transform: scale3d(1, 1, 1);
	}
}