/* Hero */
.hero {
	position: relative;
	text-align: center;
	padding: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.hero h1 {
	font-size: 48px;
	width: 100%;
	margin-bottom: 0;
	margin-top: 0;
	padding-top: 50px;
}

.subtitle {
	color: #666;
	margin-bottom: 28px;
	width: 100%;
	margin: 0;
}

.search-box {
	display: inline-flex;
	border: 1px solid #f2b5b5;
	border-radius: 6px;
	overflow: hidden;
}

.search-box input {
	padding: 12px 14px;
	width: 260px;
	border: none;
	outline: none;
}

.search-box button {
	background: #ff4d4f;
	color: #fff;
	border: none;
	padding: 12px 18px;
	cursor: pointer;
}

.intro {
	max-width: 620px;
	margin: 0 auto;
	color: #5a8f3a;
}

.content-wrapper::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 250px;
	height: 250px;
	background: url("../images/kid-one.png") no-repeat bottom left / contain;
	pointer-events: none;
}

.content-wrapper::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 250px;
	height: 250px;
	background: url("../images/kid-two.png") no-repeat bottom right / contain;
	pointer-events: none;
}
