.section-explainer {

}

.section-explainer h3{
	margin-bottom: 1rem;
}

.section-explainer-contents .horizontal-flex{
	display: flex;
	flex-direction: row;
	gap: 2rem;
}
.section-explainer-contents .horizontal-flex .card{
	flex: 1;
}

.section-explainer .section-explainer-contents{
	background-color: rgb(246, 246, 244);
	border-radius: 24px;
	box-sizing: border-box;
	height: 100%;
	display: flex;
	flex-direction: column;
	min-width: 100%;
	overflow: clip;
	padding: 2rem;
}

.section-explainer .section-explainer-contents .card{
	background-color: rgb(255, 255, 255);
	box-shadow: rgba(56, 49, 47, 0.03) 1px 1px 0px 2px;
	object-fit: fill;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin-bottom: 1.5rem;
	--bs-card-inner-border-radius: 1rem;
	--bs-card-border-radius: 1rem;
	--bs-border-color-translucent: rgb(228, 227, 224);
	display: flex;
    flex-direction: row;
    gap: 1rem;
}
.section-explainer .section-explainer-contents .card:hover {
	transform: scale(1.05);
	box-shadow: 0 0 30px rgba(36, 29, 27, 0.1);
}
.section-explainer .section-explainer-contents .card .image-holder{
	max-width: 150px;
}
.section-explainer .section-explainer-contents .card .image-holder img{
	border-radius: 1rem;
}