:root {
	/* background Color */
	--primary-color: #ed1354;
	--secondary-color: #f7f5dd;
	--lightblack-color: #3d3c3c;
	--shadow-color: rgba(0, 0, 0, 0.30);
	--accent-pink: #fff4f4;
	--sky-blue: #92dce5;
	--lemon-yellow: #fce77d;
	--leaf-green: #7ed957;
	--soft-orange: #ffb347;
	--text-dark: #295b99ff;
	--text-light: #e4e4e4;
	--text-black: #151515;
	--pinkc: #fff4f4;

	/* Text Style */
	--navfont-font: "Poppins", sans-serif;
	--secondary-font: "Roboto", sans-serif;
	--primary-text: #021832;
	--secondary-text: #caaa19;
	--text-white: #fff;
	--text-black: #151515;
	--text-gray: #e4e4e4;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--navfont-font);
	color: var(--primary-text);
	line-height: 1.6;
	background-color: #fff;
	overflow-x: hidden;
}

#overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
}

/* Blur effect class */
.blur {
	filter: blur(5px);
}

/*Text Size Classes */
.heighlight{
	color: inherit;
	font-size: inherit;
	font-weight: 500;
}
.headingsize {
	font-size: 2rem;
}

.subheadingsize {
	font-size: 1.5rem;
}

.paratextsize {
	font-size: 20px;
}

.subparatextsize {
	font-size: 1.2rem;
}

/* Font Weight */
.fw-2 {
	font-weight: 600;
}


/* Color Classes */
.primarycolor {
	color: var(--primary-color);
}

.primarytext {
	color: var(--primary-text);
}

.lightblack {
	color: var(--lightblack-color);
}

/* Text Justify */
.textjustify {
	text-align: justify;
}

/* Margin Classes */
.margintop10 {
	margin-top: 10px;
}

.margintop20 {
	margin-top: 20px;
}

.margintop30 {
	margin-top: 30px;
}

.margintop40 {
	margin-top: 40px;
}

/* Overlay */
#overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(4px) !important;
	z-index: 1000;
}



/* PopupBox */
#popupbox {
	background-color: #F7F5DD;
	width: 85vw;
	position: fixed;
	border: 1px solid rgb(197, 197, 197);
	top: 50%;
	left: 50%;
	padding:30px 0px;
	overflow: hidden;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
	border-radius: 10px;
	display: none;
	flex-direction: column;
	justify-content:center;
	align-items: space-around;
	z-index: 1000;


}

#popupbox::after {
	content: "";
	width: 8vw;
	height: 8vw;
	background-color: #f8b5c94d;
	border-radius: 50%;
	position: absolute;
	top: 30px;
	left: 30px;
	z-index: -1;
}

#popupbox h2 {
	font-size: 50px;
	color: rgb(51, 51, 51);
	font-weight: 500;
}

#popupbox p {
	color: #04394e;
	text-align: justify;
	font-size: 20px;
	margin-top: 20px;
	padding: 0px 60px;
}
#popupbox .cta-button{
	margin: 40px auto 0px !important;
}
#popupbox .close-btn{
	top:10px;
	right:12px;
	font-size: 23px;
}

/* Close button */
.close-btn {
	cursor: pointer;
	width: 30px;
	height: 30px;
	position: absolute;
	top: 20px;
	right: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	transition: all 0.3s ease-out;
}

.close-btn:hover {
	transform: scale(1.2);
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, var(--pinkc) 0%, var(--secondary-color) 100%);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: -100px;
	right: -100px;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background-color: var(--primary-color);
	opacity: 0.1;
}

.hero::after {
	content: "";
	position: absolute;
	bottom: -150px;
	left: -100px;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: rgba(202, 170, 25, 0.20);
}

.hero::after {
	content: "";
	position: absolute;
	bottom: -150px;
	left: -100px;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: rgba(202, 170, 25, 0.20);
}


.hero-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 2;
}

.hero-text {
	flex: 1;
	padding-right: 40px;
}

.hero-image {
	flex: 1;
	text-align: center;
}

.hero h1 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	line-height: 1.2;
	color: var(--primary-text);
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 30px;
	max-width: 600px;
	color: var(--lightblack-color);
}

.hero-image img {
	max-width: 100%;
	border-radius: 10px;
	box-shadow: 0 10px 30px var(--shadow-color);
}

/* Philosophy Section */
.philosophy {
	padding: 40px 30px;
}

.section-title {
	position: relative;
}

.section-title h2 {
	position: relative;
}

.section-title h2::after {
	content: "";
	position: absolute;
	bottom: -9px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 3px;
	background: var(--primary-color);
	border-radius: 2px;
}
.section-title > h3{
    margin: 20px 0px;
}
.section-title > p{
	padding: 0px 20px;
	text-align: justify;
}

.philosophy-points {
	padding: 20px;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;	
	justify-content: center;
}

.point-card {
	padding: 20px;
	margin: 0px auto;
	width: 280px;
	height: 250px;
	text-align: center;
	transition: transform 0.3s ease;
	display: grid;
	gap: 10px;
	color: white !important;
	border-radius: 10px;
}

.pcard1 {
	background-color: #c551e2;
}

.pcard2 {
	background-color: rgb(81, 161, 214)
}

.pcard3 {
	background-color: #7ed957;
}

.pcard4 {
	background-color: #ffb347;
}

.point-card i {
	float: center;
	border-radius: 10px;
	background-color: inherit;
	padding-top: 15px;
	width: 60px 40px;
	height: 70px;
	font-size: 2.5rem;
	color: white;
}

.point-card h4 {
	margin-top: 10px;
	font-size: 1.2rem;
}

.philosophy>h5 {
	margin-top: 15px;
	color: var(--lightblack-color);
	text-align: center;
}

/* How to Apply Section */
.how-to-apply {
	padding: 30px 20px;
	background: #fcece0;
	position: relative;
	overflow: hidden;
}
.how-to-apply > img{
		display: block;
		height: 44vw;
		margin: 0px auto;
}

/* Documents Section */
.documents {
	padding: 50px 0px;
	background: #F3F3F3;
}

.documents-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0px;
	align-items: center;

}

.documents-list {
	background: #F3F3F3;
	padding: 40px;
}

.documents-list ul {

	list-style: none;
}

.documents-list li {
	padding: 15px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
}

.documents-list li:last-child {
	border-bottom: none;
}

.documents-list i {
	color: var(--primary-color);
	margin-right: 15px;
	font-size: 1.2rem;
}

/* Nursery Section */
.nursery {
	padding: 40px 30px;
	background: linear-gradient(135deg, var(--pinkc) 0%, var(--secondary-color) 100%);
}
.nursery .section-title p:nth-child(2) {
	margin: 20px 0px;
	font-weight: 500;
}

.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 10px;
	margin-top: 30px;
}

.feature {
	background: white;
	padding: 15px;
	border-radius: 10px;
	width: 270px;
	height: 270px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

}

.feature>h3 {
	font-size: 1.5rem;
	color: var(--primary-color);
	text-align: center;
}

.feature>p {
	text-align: center;
}

.feature i {
	font-size: 2.5rem;
	padding: 15px;
	color: var(--text-dark);
	margin-bottom: 5px;
}


/* Why Section */
.why {
	padding: 50px 0;
	background: white;
}

.why .container .section-title > p {
	margin: 20px 0px;
	padding: 0%;
	
}

.why .container h3 {
	margin-bottom: 15px;
}

.trust-point {
	display: flex;
	align-items: flex-start;
	padding: 18px 0px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.trust-point:last-child {
	border-bottom: none;
}
.trust-point h4 {
	margin-bottom: 2px;
}
.trust-point i {
	font-size: 1.3rem;
	color: var(--primary-color);
	margin-right: 15px;
	margin-top: 5px;
}

.trust-point div p {
	color: var(--lightblack-color);
	margin-bottom: 3px;

}

/* CTA Section */
.cta-section {
	width: 100%;
	height: clamp(300px, 30vw, 500px);
	padding: 40px 0px;
	text-align: center;
	position: relative;
	margin-bottom: 40px;
	overflow: hidden;
}


.cta-section .container {
	padding: 20px 20px;
	left: 0;
	top: 0;
	background: linear-gradient(135deg, #f8f5d7 0%, var(--secondary-color) 100%);
	backdrop-filter: blur(3px);
	border-radius: 10px;
	overflow: hidden;
	filter: drop-shadow(0 1px 10px rgba(0, 0, 0, 0.3));
	transition: all 0.3s ease;
}

.cta-section .container:hover {
	filter: drop-shadow(0 1px 10px rgba(0, 0, 0, 0.4));
	transform: translateY(-5px);
}

.cta-section .container::after {
	content: "";
	position: absolute;
	bottom: 20px;
	left: 5px;
	height: 70px;
	width: 70px;
	border-radius: 50%;
	background-color: #eec3d1;
	opacity: 0.4;
}

.cta-section .container::before {
	content: "";
	position: absolute;
	top: -30px;
	right: -30px;
	height: 170px;
	width: 170px;
	border-radius: 50%;
	background-color: #ed9df0;
	opacity: 0.2;
}

.cta-section h2 {
	font-size: clamp(1.5rem, 4vw, 2.5rem);
	margin-bottom: 20px;
}

.cta-section p {
	color: var(--lightblack-color);
	font-size: clamp(1rem, 2.5vw, 1.2rem);
	margin-bottom: 30px;
}

.cta-button {
	margin-left: 10px;
	padding: clamp(8px, 2vw, 15px) clamp(12px, 3vw, 30px);
	border-radius: 20px;
	box-shadow: 4px 5px 10px rgba(0, 0, 0, 0.5);
	color: var(--text-white);
	text-align: center;
	background-color: var(--primary-color);
	transition: all 0.3s ease;
	display: inline-block;
	cursor: pointer;
	text-decoration: none;
	font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.cta-button:hover {
	background-color: #04394e;
	transform: translate(5px, 2px);
	color: yellow;
}

.cta-button:hover i {
	color: yellow;
}

/* RESPONSIVE BREAKPOINTS */

@media (max-width: 768px) {
	.cta-section {
		height: auto;
		min-height: 300px;
		padding: 30px 15px;
	}

	.cta-section .container {
		padding: 15px;
	}

	.cta-section .cta-overlay {
		background-position: center;
	}

	.cta-button {
		margin: 5px;
		padding: clamp(10px, 3vw, 12px) clamp(15px, 4vw, 20px);
	}
}

@media (max-width: 480px) {
	.cta-section {
		min-height: 250px;
		padding: 20px 10px;
		border-width: 1px;
	}

	.cta-section .container {
		padding: 10px;
	}

	.cta-section h2 {
		margin-bottom: 15px;
	}

	.cta-section p {
		margin-bottom: 20px;
	}

	.margintop20 {
		margin-top: 15px;
	}

	.cta-button {
		border-radius: 15px;
		margin: 3px;
	}
}

/* Responsive Design */
@media only screen and (max-width: 600px) {
	/* PopupBox */
#popupbox {
	width: 90vw;
	height: auto;
	padding:20px 10px;
}

#popupbox::after {
	content: "";
	height: 50px;
	width: 50px;
	top: -10px;
	left: -10px;
	z-index: -1;
	
}

#popupbox h2 {
	font-size: 20px;
	color: rgb(51, 51, 51);
	font-weight: 500;
}

#popupbox p {
	margin: 0px;
	text-align: center;
	font-size: 12px;
	padding: 0px 10px;
}
#popupbox .cta-button{
	margin-top: 10px !important;
	padding: 4px 20px;
	font-size: 13px;
	width: auto;
}
#popupbox .close-btn{
	top:2px;
	right:2px;
	font-size: 19px;
}

	.hero {
		padding: 20px 0;
	}

	.philosophy,
	.how-to-apply,
	.documents,
	.nursery,
	.why,
	.cta-section {
		padding: 25px 15px;
	}

	/* Hero Section  */
	.hero {
		padding: 0;
		width: 100vw;
	}

	.hero::before {
		top: -50px;
		right: -50px;
		width: 100px;
		height: 100px;
	}

	.hero::after {
		bottom: -50px;
		left: -50px;
		width: 100px;
		height: 100px;
	}

	.hero-content {
		flex-direction: column-reverse;
		text-align: center;
		justify-content: space-between;
		padding: 15px;
	}

	.hero-content>div {
		padding: 10px;
	}

	.hero h1 {
		font-size: 2rem;
		margin-bottom: 10px;
	}

	.hero p {
		font-size: 1rem;
		margin-bottom: 10px;
		max-width: 600px;
		color: var(--lightblack-color);
	}

	.hero-text {
		padding-right: 0px;
	}

	.hero-image img {
		width: 250px;
	}

	/* Philosophy Section*/
	.philosophy-points {
		flex-direction: column;
	}

	.point-card {
		height: 60vw;
		width: 60vw;
		margin: 10px auto;
		justify-content: center;
		align-items: center;
	}
	.point-card i{
		font-size: 50px;
	}

	.point-card h4{	
		font-size: 19px;
	}
	.point-card p{
		font-size: 14px;
	}
	.philosophy>h5 {
		margin: 0%;
		font-size: 1rem;
	}

	/* How to Apply Section */
	.how-to-apply-content {
		padding: 0 10px;
		flex-direction: column-reverse;
		align-items: center;
	}

	.how-to-apply-content>div:first-child {
		padding: 10px 10px;
		width: 100%;
	}

	.how-to-apply-content>div:nth-child(2) {
		display: none;
	}

	.steps>h5 {
		font-size: 0.9rem;
	}

	.steps ol li {
		padding: 15px 15px 15px 55px;
	}

	.steps ol li::before {
		width: 24px;
		height: 24px;
	}

	/* Documents Section*/
	.documents-content {
		display: flex;
		flex-direction: column-reverse;
	}

	.documents-list {
		width: 100%;
		padding: 20px;
	}

	.documents-list ul {
		padding-left: 0px;
	}

	.step {
		padding: 20px;
	}

	.how-to-apply-content .cta-button {
		margin-left: 50%;
		width: 100px;
		padding: 5px;
		font-size: 0.5rem;
	}

	/* Nursery Section */
	.features {
		display: flex;
		flex-direction: column;
		gap: 10px;

		margin-top: 20px;
	}
	.feature {
		width: 60vw;
		height:60vw;
		margin: 5px auto;
	}
	.feature i{
		font-size: 50px;
	}
	.feature  h3{
		font-size: 19px;
	}
	.feature p{
		font-size: 14px;
	}
	/* Why Section */
	.why .container .section-title p {
		text-align: justify;
		margin: 0px;
		padding: 10px 20px;
		border-radius: 10px;
	}

	.why .container> :nth-child(2) {
		text-align: center;
		margin-top: 20px;
		font-size: 17px !important;
	}

	.why .container h3 {
		margin: 10px 0px !important;
		text-align: justify !important;
	}
	.trust-point{
		padding: 8px 0px;
	}
	.trust-point h4 {
		font-size: 17px;
	}

	.trust-point p {
		font-size: 12px;
	}

	.trust-point i {
		font-size: 0.8rem;
		margin-left: 15px;
	}

	/* CTA Section */
	.cta-section {
		padding: 10px 0;
		margin: 10px auto;
		width: 90vw;
		text-align: center;
		position: relative;
	}

	.cta-section .container {
		padding: 10px;
	}

	.cta-section h2 {
		color: black;
		margin-bottom: 10px;
		font-size: 19px;
		;
	}

	.cta-section p {
		color: var(--lightblack-color);
		font-size: 14px;
		padding: 0px 15px;
		margin-bottom: 10px;
	}

	.cta-section .cta-button {
		box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.3);
		padding: 5px 10px;
		font-size: 0.5rem;
		margin-left: 0px;
	}

	/* For All Sections */
	.section-title h2 {
		margin: 20px 0px;
	}

	.section-title>p {
		padding: 0px;
		margin: 0px;
	}
	/* Text Size Classes */
	.headingsize {
		font-size: 1.4rem;
	}

	.subheadingsize {
		font-size: 1rem;
	}

	.paratextsize {
		font-size: 0.8rem;
	}

	.subparatextsize {
		font-size: 0.5rem;
	}

	/* Font Weight */
	.fw-2 {
		font-weight: 600;
	}
}

@media only screen and (min-width: 601px) and (max-width: 768px) {
	#popupbox {
		width: 90vw;
		height: auto;
		padding: 20px 13px;
	}

	#popupbox h2 {
	font-size: 22px;
	color: rgb(51, 51, 51);
	font-weight: 500;
}

#popupbox p {
	margin: 10px 0;
	text-align: center;
	font-size: 17px;
	padding: 0px 10px;
}
#popupbox .cta-button{
	margin-top: 10px !important;
	padding: 4px 20px;
	font-size: 13px;
	width: auto;
}
#popupbox .close-btn{
	top:2px;
	right:2px;
	font-size: 19px;
}

	.close-btn {
		font-size: 15px;
		top: 3px;
		right: 3px;
	}

	.hero {
		padding: 20px 0;
	}

	.philosophy,
	.how-to-apply,
	.documents,
	.nursery,
	.why,
	.cta-section {
		padding: 30px 20px;
	}

	/* Hero Section  */
	.hero {
		padding: 0;
		width: 100vw;
	}

	.hero::before {
		top: -50px;
		right: -50px;
		width: 100px;
		height: 100px;
	}

	.hero::after {
		bottom: -50px;
		left: -50px;
		width: 100px;
		height: 100px;
	}

	.hero-content {
		flex-direction: column-reverse;
		text-align: center;
		justify-content: space-between;
		padding: 15px;
	}

	.hero-content>div {
		padding: 10px;
	}

	.hero h1 {
		font-size: 2.1rem;
		margin-bottom: 10px;
	}

	.hero p {
		font-size: 1.2rem;
		margin-bottom: 10px;
		max-width: 600px;
		color: var(--lightblack-color);
	}

	.hero-text {
		padding-right: 0px;
	}

	.hero-image img {
		width: 250px;
	}

	/* Philosophy Section*/
	.philosophy-points {
		flex-direction: column;
	}

	.point-card {
		margin: 10px auto;
	}

	.philosophy>h5 {
		margin: 0%;
		font-size: 1rem;
	}

	/* How to Apply Section */
	.how-to-apply-content {
		padding: 0 10px;
		flex-direction: column-reverse;
		align-items: center;
	}

	.how-to-apply-content>div:first-child {
		padding: 10px 10px;
		width: 100%;
	}

	.how-to-apply-content>div:nth-child(2) {

		margin: 10px 0px;
	}

	.how-to-apply-content .how-to-apply-img img {
		border-radius: 10px;
	}

	.steps ol li {
		padding: 15px 15px 15px 55px;
	}

	.steps ol li::before {
		width: 24px;
		height: 24px;
	}

	/* Documents Section*/
	.documents-content {
		display: flex;
		flex-direction: column-reverse;
	}

	.documents-list {
		width: 100%;
		padding: 20px;
	}

	.documents-list ul {
		padding-left: 0px;
	}

	.step {
		padding: 20px;
	}

	.how-to-apply-content .cta-button {
		margin-left: 50%;
		width: 100px;
		padding: 5px;
		font-size: 0.5rem;
	}

	/* Nursery Section */
	.features{
		gap: 10px;
	}
	.feature {
		width: 240px;
		height: 240px;
		margin: 5px auto;
	}
	.feature h3{
		font-size: 20px	;
	}

	/* Why Section */
	.why .container .section-title p {
		text-align: justify;
		margin: 0px;
		padding: 20px 0px;
	}

	.why .container> :nth-child(2) {
		text-align: center;
		margin-top: 20px;
		font-size: 17px !important;
	}

	.why .container h3 {
		margin: 10px 0px !important;
		text-align: justify !important;
	}

	.trust-point h4 {
		font-size: 17px;
	}

	.trust-point p {
		font-size: 14px;
	}

	.trust-point i {
		font-size: 0.8rem;
		margin-left: 15px;
	}

	/* CTA Section */
	.cta-section {
		padding: 10px 0;
		margin: 10px auto;
		width: 90vw;
		text-align: center;
		position: relative;
	}

	.cta-section .container {
		padding: 10px;
	}

	.cta-section h2 {
		color: black;
		margin-bottom: 10px;
		font-size: 19px;
		;
	}

	.cta-section p {
		color: var(--lightblack-color);
		font-size: 14px;
		padding: 0px 15px;
		margin-bottom: 10px;
	}

	.cta-section .cta-button {
		box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.3);
		padding: 5px 10px;
		font-size: 0.5rem;
		margin-left: 0px;
	}

	/* For All Sections */
	.section-title h2 {
		margin: 20px 0px;
	}

	.section-title>p {
		padding: 0px;
		margin: 0px;
	}
	/* Text Size Classes */
	.headingsize {
		font-size: 1.4rem;
	}

	.subheadingsize {
		font-size: 1rem;
	}

	.paratextsize {
		font-size: 0.8rem;
	}

	.subparatextsize {
		font-size: 0.5rem;
	}

	/* Font Weight */
	.fw-2 {
		font-weight: 600;
	}
}

@media only screen and (min-width: 769px) and (max-width: 991px) {
	#popupbox {
		width: 80vw;
		padding: 25px 13px !important;
	}

	#popupbox h2 {
		font-size: 1.5rem;
		margin-bottom: 7px;
	}	

	#popupbox p{
		padding: 0px 10px;
		font-size: 1rem;
		margin: 8px auto;
	}

	#popupbox .cta-button {
		margin-top: 10px !important;
		font-size: 0.8rem;
		padding: 8px 20px;
		width: auto;
	}

	.close-btn {
		font-size: 15px;
		top: 3px;
		right: 3px;
	}

	.hero {
		padding: 20px 0;
	}

	.philosophy,
	.how-to-apply,
	.documents,
	.nursery,
	.why,
	.cta-section {
		padding: 30px 20px;
	}

	/* Hero Section  */
	.hero {
		padding: 0;
		width: 100vw;
	}

	.hero::before {
		top: -50px;
		right: -50px;
		width: 100px;
		height: 100px;
	}

	.hero::after {
		bottom: -50px;
		left: -50px;
		width: 100px;
		height: 100px;
	}

	.hero-content {
		flex-direction: column-reverse;
		text-align: center;
		justify-content: space-between;
		padding: 15px;
	}

	.hero-content>div {
		padding: 10px;
	}

	.hero h1 {
		font-size: 2.1rem;
		margin-bottom: 10px;
	}

	.hero p {
		font-size: 1.2rem;
		margin-bottom: 10px;
		max-width: 600px;
		color: var(--lightblack-color);
	}

	.hero-text {
		padding-right: 0px;
	}

	.hero-image img {
		width: 250px;
	}

	/* Philosophy Section*/
	.philosophy-points {
		flex-direction: column;
	}

	.point-card {
		margin: 10px auto;
	}

	.philosophy>h5 {
		margin: 0%;
		font-size: 1rem;
	}

	/* How to Apply Section */
	.how-to-apply-content {
		padding: 0 10px;
		flex-direction: column-reverse;
		align-items: center;
	}

	.how-to-apply-content>div:first-child {
		padding: 10px 10px;
		width: 100%;
	}

	.how-to-apply-content>div:nth-child(2) {

		margin: 10px 0px;
	}

	.how-to-apply-content .how-to-apply-img img {
		border-radius: 10px;
	}

	.steps ol li {
		padding: 15px 15px 15px 55px;
	}

	.steps ol li::before {
		width: 24px;
		height: 24px;
	}

	/* Documents Section*/
	.documents-content {
		display: flex;
		flex-direction: column-reverse;
	}

	.documents-list {
		width: 100%;
		padding: 20px;
	}

	.documents-list ul {
		padding-left: 0px;
	}

	.step {
		padding: 20px;
	}

	.how-to-apply-content .cta-button {
		margin-left: 50%;
		width: 100px;
		padding: 5px;
		font-size: 0.5rem;
	}

	/* Nursery Section */
	.feature {
		width: 280px;
		height: 280px;
		margin: 5px auto;
	}

	/* Why Section */
	.why .container .section-title p {
		text-align: justify;
		margin: 0px;
		padding: 20px 0px;
	}

	.why .container> :nth-child(2) {
		text-align: center;
		margin-top: 20px;
		font-size: 17px !important;
	}

	.why .container h3 {
		margin: 10px 0px !important;
		text-align: justify !important;
	}

	.trust-point h4 {
		font-size: 17px;
	}

	.trust-point p {
		font-size: 14px;
	}

	.trust-point i {
		font-size: 0.8rem;
		margin-left: 15px;
	}

	/* CTA Section */
	.cta-section {
		padding: 10px 0;
		margin: 10px auto;
		width: 90vw;
		text-align: center;
		position: relative;
	}

	.cta-section .container {
		padding: 10px;
	}

	.cta-section h2 {
		color: black;
		margin-bottom: 10px;
		font-size: 19px;
		;
	}

	.cta-section p {
		color: var(--lightblack-color);
		font-size: 14px;
		padding: 0px 15px;
		margin-bottom: 10px;
	}

	.cta-section .cta-button {
		box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.3);
		padding: 5px 10px;
		font-size: 0.5rem;
		margin-left: 0px;
	}

	/* For All Sections */
	.section-title h2 {
		margin: 20px 0px;
	}

	.section-title>p {
		padding: 0px;
		margin: 0px;
	}
	/* Text Size Classes */
	.headingsize {
		font-size: 1.4rem;
	}

	.subheadingsize {
		font-size: 1rem;
	}

	.paratextsize {
		font-size: 0.8rem;
	}

	.subparatextsize {
		font-size: 0.5rem;
	}

	/* Font Weight */
	.fw-2 {
		font-weight: 600;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1440px) {}