<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.card-business {
	display: block;
	text-decoration: none;
	text-align: center;
	padding: 35px 20px;
	width: 100%;
	position: relative;
	box-shadow: 0 0 50px rgba(0, 0, 0, 0.05);
	background: var(--color-white);
	border-radius: var(--border-radius-base);
	min-height: 100%;
}

.card-business h3 {
	margin-bottom: 5px;
}

.card-business a {
	color: var(--text-color-base);
	text-decoration: none;
}

.card-business a:hover {
	color: var(--link-color-base);
}

.card-business-icon {
	width: 100%;
	height: 70px;
	display: flex;
	margin-bottom: 10px;
	align-items: center;
	justify-content: center;
}

.card-business-icon img {
	width: 75%;
	height: 75%;
	object-fit: contain;
	object-position: center center;
}

.card-business-icon.is-image {
	height: 100px;
	margin-bottom: 15px;
}

.card-business-icon.is-image img {
	width: 100%;
	height: 100%;
}

.card-business ul {
	margin-bottom: 0;
}

@media only screen and (min-width: 641px) {
	.card-business {
		padding: 25px;
		text-align: left;
	}

	.card-business-icon {
		justify-content: flex-start;
	}

	.card-business-icon img {
		object-position: center left;
	}

	.card-business-icon.is-image img {
		object-position: center center;
	}
}

@media only screen and (min-width: 1025px) {
	.card-business {
		padding: 30px;
	}
}
</pre></body></html>