*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	text-decoration: none;
	list-style: none;
	border: none;
	outline: none;
	scroll-behavior: smooth;
	font-family: 'Work Sans', sans-serif;
}

:root{
	--h1-font: 5rem;
	--h2-font: 2.9rem;
	--p-font: 1.1rem;

	--bg-color: #0071ce;
	--text-color: #ffffff;
	--main-color: #1aa090;
	--other-color: #ffffff;
	--text2-color: #2c4a6c;
}
body{
	background: var(--bg-color);
	color: var(--text-color);
}
header{
	width: 100%;
	position: fixed;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 30px 15%;

	background: #fff;
}
.logo img{
	width: 250px;
}
.navbar{
	display: flex;
	
}
.navbar a{
	padding: 10px 25px;
	font-size: 20px;
	font-weight: 400;
	color: #2c4a6c;
	transition: all .40s ease;
	font-family: Poppins;
}
.navbar a:hover{
	color: #172534;
}
.h-btn{
	display: flex;
	align-items: center;
}
.h-btn2{
	display: inline-block;
	padding: 10px 18px;
	background: var(--bg-color);
	color: var(--text-color);
	font-size: 18px;
	font-weight: 500;
	margin-left: 20px;
	transition: all .40s ease;
}
.h-btn1{
	color: #2c4a6c;
	font-weight: 500;
	font-size: 18px;
}
.h-btn2:hover{
	transform: translateX(-7px);
}
#menu-icon{
	color: var(--bg-color);
	font-size: 36px;
	margin-left: 5px;
	z-index: 10001;
	cursor: pointer;
	display: none;
}

section{
	padding: 80px 15% 70px;
}
.home{
	position: relative;
	height: 100vh;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	gap: 4.5rem;
	
}
.home-text h1{
	font-size: 80px;
	line-height: 1.2;
	margin-bottom: 20px;
	font-family: Poppins;
}

.home img {
	width: 350px;
}

.home-text p{
	font-size: 16px;
	color: var(--other-color);
	line-height: 25px;
	margin-bottom: 2.5rem;
	text-align: justify;
	font-family: Poppins;

	margin-top: 15px;
}
.h-search form{
	position: relative;
	width: 410px;
	max-width: 100%;
}
.h-search form input:first-child{
	display: inline-block;
	width: 100%;
	padding: 17px 130px 16px 15px;
	border: 2px solid var(--main-color);
	border-radius: .70rem;
}
.h-search form input:last-child{
	position: absolute;
	display: inline-block;
	padding: 12px 30px;
	background: var(--main-color);
	color: var(--text-color);
	font-size: 14px;
	cursor: pointer;
	border-radius: .70rem;
	box-shadow: 0px 0px 5px #fff, 0px 0px 15px #868686;
	top: 6px;
	right: 6px;
}
.home-img{
	width: 760px;
	height: 760px;
}
.home-img img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.course {
	background-color: #ffff;
}

.course-content{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, auto));
	align-items: center;
	gap: 2rem;
	margin-top: 4.5rem;

}
.row{
	position: relative;
	
}
.row img{
	width: 100%;
	height: auto;
	border-radius: 8px;
	margin-bottom: 20px;
}
.row h5{
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #2c4a6c;
}

.row .list img {
	width: 20px;
	min-width: 20px;
	margin-right: 10px;

}

.list{
	display: flex;
	align-items: center;
	gap: 2rem;
}
.list a{
	color:#2c4a6c;
	font-size: var(--p-font);
	display: flex;
	font-family: Poppins;
}
.Residence-list i{
	font-size: 15px;
	color: var(--bg-color);
}
.center-btn{
	text-align: center;
	margin-top: 4rem;
	
}

.h-btn3{
	display: inline-block;
	padding: 18px 28px;
	background: #0071ce;
	color: #ffffff;
	font-size: 17px;
	border-radius: 8px;
	font-weight: 500;
	transition: all .50s ease;
}
.h-btn3:hover{
	transform: translateY(-7px) scale(0.9);
}
.btn{
	display: inline-block;
	padding: 18px 28px;
	background: var(--text-color);
	color: #2c4a6c;
	font-size: 17px;
	border-radius: 8px;
	font-weight: 500;
	transition: all .50s ease;
}
.btn:hover{
	transform: translateY(-7px) scale(0.9);
}

.about{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	gap: 4.5rem;
}
.about-img img{
	height: auto;
	width: 100%;
}
.about-text h2{
	font-size: 20px;
	margin-bottom: 25px;
}
.about-text p{
	font-size: var(--p-font);
	color: var(--other-color);
	line-height: 30px;
	margin-bottom: 50px;
	text-align: justify;
	font-family: Poppins;
}
.partners{
	padding: 20px 15% 0px;
	background-color: #f9f6f2;
	position: relative;

}
.center-left h2{
	font-family: 'Poppins', sans-serif;
	color: #0071ce;
	font-size: var(--h2-font); 
}

.center-left {
	margin: 0 40px;
	height: 100%;
	overflow: auto;
}

.partners-content{
	display: grid;
	gap: 1.8rem;
	font-size: 0;
	
	grid-template-columns: repeat(28, 1fr);
	
}

/*
.partners-content{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	
	

	margin-top: 40PX;

	text-align: center;

	cursor: pointer;

}

*/

.f-imgp img{
	width: 261px;
	border-radius: 16px;
	object-fit: cover;
	margin-bottom: 30px;
}


.f-img p{

	padding: 1rem;
	margin-top: 30px;
	text-align: center;

	font-size: 1.6rem;
	color: #2c4a6c;
	
	border-radius: 5px;
	
}


.contact{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, auto));
	gap: 2rem;
	
}
.contact-content h4{
	margin-bottom: 1.5rem;
	font-size: 20px;
}
.contact-content li{
	margin-bottom: 16px;
}
.contact-content li a{
	display: block;
	color: var(--other-color);
	font-size: 15px;
	font-weight: 400;
	transition: all .45s ease;
	
}
.contact-content li a:hover{
	transform: translateY(-3px) translateX(-5px);
	color: var(--text-color);
}

.contact img{
	width: 140px;
	margin-top: -40px;
	

}
.contact-content p{
	color: var(--other-color);
	font-size: var(--p-font);
	line-height: 30px;
	margin: 20px 0;
}
.contact-content .icons a{
	display: inline-block;
	font-size: 22px;
	color: var(--other-color);
	margin-right: 17px;
	transition: all .45s ease;
	cursor: pointer;
}
.icons a:hover{
	transform: translateY(-3px);
	color: var(--text-color);
}

@media (max-width: 1790px){
	header{
		padding: 18px 6%;
	}
	section{
		padding: 70px 6% 60px;
	}
	header.sticky{
		padding: 7px 6%;
	}
}

@media (max-width: 1425px){
	:root{
		--h1-font: 4.5rem;
	    --h2-font: 2.0rem;
	    --p-font: 1rem;
	}
	.home-img{
		width: 540px;
		height: 540px;
	}
	.home-img img{
		width: 100%;
		height: 100%;
		margin-top: 10%;
		object-fit: contain;
	}
	header{
		padding: 15px 5%;
	}
	section{
		padding: 70px 5% 60px;
	}
	header.sticky{
		padding: 7px 5%;
	}
}

@media (max-width: 1170px){
	#menu-icon{
		display: block;
	}
	.navbar{
		position: absolute;
		top: 100%;
		right:-100%;
		width: 270px;
		height: 100vh;
		display: flex;
		flex-direction: column;
		background: #fff;
		padding: 20px 15px;
		gap: 0.5rem;
		text-align: left;
		transition: all .50s ease;
	}
	.navbar a{
		display: block;
		font-size: 20px;
		padding: 15px;
	}
	.navbar.open{
		right: 0;
	}
	:root{
		--h1-font: 4rem;
	    --h2-font: 2rem;
	    --p-font: 1rem;
	}
	.home{
		grid-template-columns: 1fr;
		gap: 1rem;
		height: 120vh;
	}
	.home-text{
		order: 2;
		width: 100%;
		max-width: 900px;
	}

	.home-img{
		margin: 5px auto;
		padding-top: 20px;
	}
	
	.about{
		grid-template-columns: 1fr;
	}
}


@media (max-width: 550px){
	:root{
		--h1-font: 3.4rem;
	    --h2-font: 2rem;
	    --p-font: 1rem;
	}
	.logo img{
		width: 110px;
	}
	.home{
		gap: 15px;
		height: 110vh;
	}

	.home img {
		width: 150px;
	}
	
	.home-text h1{
		font-size: 40px;
		line-height: 1.2;
	}	
	.home-text p{
		font-size: 13px;
		line-height: 25px;
	}
	.home-img{
		width: 330px;
		height: 330px;
	}
	.home-img img{
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	.center-left h2 {
		font-size: 20px;
	}

	.f-imgp img{
		width: 200px;
	}

	.Subscribe-content{
		padding: 4rem 1rem;
	}
}

@media (max-width: 320px){
	:root{
		--h1-font: 3.4rem;
	    --h2-font: 2rem;
	    --p-font: 1rem;
	}
	.logo img{
		width: 100px;
	}
	.home{
		gap: 15px;
		height: 110vh;
	}
	
	.h-btn {
		display: none;
	}

	.home img {
		width: 100px;
	}
	
	.home-text h1{
		font-size: 40px;
		line-height: 1.2;
	}	
	.home-text p{
		font-size: 10px;
		line-height: 15px;
	}
	.home-img{
		width: 240px;
		height: 240px;
	}
	.home-img img{
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	.center-left h2 {
		font-size: 20px;
	}

	.f-imgp img{
		width: 140px;
	}


	.Subscribe-content{
		padding: 4rem 1rem;
	}
}

