.button {
	min-width: 231px;
	white-space: normal;
	word-wrap: break-word;
}

.homepage_flex_box {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.homepage_flex_item {
	width: 100%;
	max-width: 1280px;
	margin: 0px auto;
	flex: 1;
	overflow: hidden;
}

.homepage_header_container {
	height: 436px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.homepage_text_container {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.homepage_header_text_container {
	margin: auto;
	padding: 0px 70px;/* top and bottom | left and right */
	box-sizing: content-box;
}

.homepage_flex_item_title_container {
	padding: 10px 0px;
	margin: 16px 63px 20px;/* top | left and right | bottom */
	align-content: center;
	display: flex;
	align-items: center;
	overflow: hidden;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: nowrap;
}

.homepage_flex_item_content_container {
	overflow: auto;
}

.feature_container_wrapper {
	width: 100%;
	display: flex;
	gap: 40px;
	margin: auto;
	flex-wrap: nowrap;
}

.feature_container {
	width: 1280px;
	display: flex;
	align-items: center;
	margin: auto;
	padding: 82px 85px;
	overflow: hidden;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 40px;
}

.homepage_section {
	display: flex;
	flex-direction: row;
	gap: 24px;
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0px 63px 16px;/* top | left and right | bottom */
}

.homepage_section_item {
	display: flex;
	flex-direction: column;
	gap: 14px;
	cursor: pointer;
}

	.homepage_section_item:hover .homepage_section_item_name {
		text-decoration: underline;
		text-underline-offset: 6px;
		text-decoration-color: var(--School_Primary_color);
	}

.homepage_section_image {
	height: 256px; 
	border-radius: 20px;
	object-fit: cover;
}

.homepage_section_lable_container {
	width: 100%;
	height: 46px;
	padding: 2px 0px 0px 16px;/* top | right | bottom | left */
}

.resize_image_when_small {
}

.show_when_small {
	display: none;
}

.category_display_section {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

@media (max-width: 1280px) {

	.homepage_flex_item_title_container {
		margin: 16px 32px 20px;/* top | left and right | bottom */
	}

	.homepage_section {
		padding: 0px 32px 16px;/* top | left and right | bottom */
	}

}

@media (max-width: 768px) {

	.homepage_text_container {
		gap: 24px;
	}

	.homepage_header_text_container {
		padding: 0px 24px;/* top and bottom | left and right */
	}

	.homepage_flex_item_title_container {
		margin: 16px 16px 20px;/* top | left and right | bottom */
	}

	.feature_container {
		padding: 82px 24px;
	}

	.homepage_section {
		padding: 0px 16px 16px;/* top | left and right | bottom */
	}

	.hide_when_small {
		display: none;
	}

	.show_when_small {
		display: flex;
	}

	.resize_image_when_small {
		width: 270px !important;
	}

}