/* HERO SECTION */
.main-hero {
	width: 100% !important;
    min-height: 700px;
}
.hero {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 60px;
	position: relative;
	min-height: 600px;
	width: 100%;
	z-index: 1
}
.hero-content {
	max-width: 60%;
}
.hero-content-title {
	font-size: 42px;
	font-weight: bold;
	margin-bottom: 20px;
	line-height: 1.3;
	color: #fff;
	text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.hero-content-desc {
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 30px;
	color: #fff;
}
.hero-content-btn {
}
.buttons {
	display: flex;
	gap: 20px;
}
.btn {
	background: #0c4da2;
	padding: 10px 20px;
	border-radius: 25px;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	/* transition: background 0.3s; */
}
.btn:hover {
	background: #092f6a;
}

/* IMAGES */
.hero-images {
	position: relative;
	max-width: 50%;
	display: flex;
	justify-content: center;
	gap: 30px;
	bottom: -75px;
}
.hero-images img {
	max-height: 450px;
	object-fit: contain;
}
.student-left {
	position: relative;
	left: 80px;
}
.student-right {
	position: relative;
	left: -80px;
}
/* Responsive */
@media (max-width: 600px) {
	.header-container {
		padding: 0 20px;
	}
	.hero-content-title {
		font-size: 32px;
	}
	.hero {
		flex-direction: column;
		text-align: center;
		padding: 80px 40px 60px 40px;
	}
	.hero-content, .hero-images {
		max-width: 100%;
	}
	.hero-images {
		margin-top: 30px;
	}
	.student-left {
		top: -15px;
	}
	.student-right {
		top: -15px;
	}
}
@media (min-width: 601px) and (max-width: 1024px) {
	.hero {
		flex-direction: column;
		text-align: center;
		padding: 60px 40px 0px 40px;
	}
	.hero-content, .hero-images {
		max-width: 100%;
	}
	.hero-images {
		margin-top: 30px;
	}
	.student-left {
		left: 140px;
		top: -75px;
	}
	.student-right {
		left: 0px;
		top: -75px;
	}
}

@media (min-width: 1025px) {
    .main-hero {
        min-height: 700px;
    }
}