#child-products {
	padding-bottom: 5rem;
}
.child-products-row {
	display: flex;
	flex-wrap: wrap;
}

.child-products-row h2 {
	min-width: 100%;
}

.child-marquee {
	position: relative;
	width: calc(33.33% - 1rem);
	min-width: 200px;
	margin-bottom: 1rem;
	border-radius: 8px;
	overflow: hidden;
	margin-right: 1rem;
	overflow: hidden;
}

.child-marquee img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 16/9;
	transition: all 1s ease;
}

.child-marquee:hover img {
	transform: scale(1.1);
}

.child-marquee h4 {
	position: absolute;
	bottom: 0;
	left: 0;
	background: rgba(64, 84, 178, 0.5);
	color: white;
	padding: 10px 20px;
	font-size: 20px;
	margin: 0;
	width: 100%;
	height: 100%;
	font-weight: 700;
	max-height: 42px;
	transition: all 1s ease;
}

.child-marquee:hover h4 {
	max-height: 100%;
}
@media (max-width: 992px) {
	.child-marquee {
		width: calc(50% - 1rem);
	}
}
@media (max-width: 630px) {
	.child-marquee {
		width: 100%;
		margin-right: 0;
	}
}
