*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

.header{
	min-height: 100vh;
	width: 100%;
	background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url(images/sunset.jpeg);
	background-position: center;
	background-size: cover;
	position: relative;
}

.logo{
/*	margin: 2.5%;*/
	width: 40%;
}

nav{
	display: flex;
	justify-content: space-between;
	padding: 2% 6%;
	align-items: center;
}

.nav-links{
	flex: 1;
	text-align: right;
}

.nav-links ul li{
	display: inline-block;
	padding: 8px 12px;
	position: relative;
}

.nav-links ul li a{
	color: white;
	text-decoration: none;
	font-size: 14px;
}

.nav-links ul li::after{
	content: '';
	width: 0%;
	height: 2px;
	background: #b34a04;
	display: block;
	margin: auto;
	transition: 0.5s;
}

.nav-links ul li:hover::after{
	width: 100%;
}

.text-box{
	width: 90%;
	color: white;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
}

.text-box h1{
	font-size: 62px;
}

.text-box p{
	margin: 10px 0 40px;
	font-size: 14px;
}

.hero-btn{
	padding: 10px 20px;
	color: white;
	cursor: pointer;
	background: transparent;
	border: solid 1px white;
	position: relative;
	transition:all 0.5s ease;
}

.hero-btn:hover{
	background-color: #b34a04;
	border:1px solid #b34a04;
}

nav .fa{
	display: none;

}

   				/*------------------------------ Courses -----------------------------*/

.course{
	width: 80%;
	margin: auto;
	padding-top: 10%;
	text-align: center;
}

.course h1{
	font-size: 36px;
	font-weight: 600;
}

.course p{
	color: rgb(96, 96, 96);
	font-size: 16px;
	font-weight: 300;
	line-height: 25px;
	padding: 10px;
}

.course p span{
	font-weight: 700;
	font-size: 17px;
}


.layout{
	margin-top: 5%;
	display: flex;
	justify-content: space-between;
}

.course-box{
	border-radius: 10px;
	flex-basis: 31%;
	background-color: #f5e2cb;
	margin-bottom: 5%;
	transition: 0.5s ease;
	padding: 20px 12px;
}

.course-box:hover{
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
}

   				/*------------------------------ Campus -----------------------------*/

.campus{
	width: 80%;
	margin: auto;
	text-align: center;
}

.campus h1{
	margin-top: 10%;
	font-size: 36px;
	font-weight: 600;
}

.campus p{
	color: rgb(96, 96, 96);
	font-size: 14px;
	font-weight: 300;
	padding: 10px;
}

.campus-box{
	flex-basis: 32%;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
}

.campus-box img{
	height: 450px;
	width: 100%;
	background-size: cover;
	background-position: center;
	display: block;
}

.Layer{
	background: transparent;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: 0.5s ease;
}

.Layer:hover{
	background: rgba(255, 62, 41, 0.7);
}

.Layer h3{
	width: 100%;
	color: white;
	font-size: 24px;
	font-weight: 500;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	transition: 0.5s ease;
}

.Layer:hover h3{
	bottom: 49%;
	opacity: 1;
}

   				/*------------------------------ facilities -----------------------------*/

.facilities{
	width: 80%;
	margin: auto;
	text-align: center;
}

.facilities h1{
	margin-top: 10%;
	font-size: 36px;
	font-weight: 600;
}

.facilities p{
	color: rgb(96, 96, 96);
	font-size: 14px;
	font-weight: 300;
	padding: 10px;
}

.facilities-box{
	flex-basis: 32%;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
}

.facilities-box img{
	width: 100%;
	height: 200px;
	border-radius: 10px;
	background-size: cover;
	background-position: center;
	display: block;
}

.description h3{
	margin: 20px 10px;
}

.facilities-box h3{
	text-align: left;
	padding: 20px 0px 10px 0px;
}

.facilities-box p{
	text-align: left;
	padding: 0;
}

   				/*------------------------------ Testimonial -----------------------------*/

.testimonial{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 100px;
}

.testimonial h1{
	margin-top: 10%;
	font-size: 36px;
	font-weight: 600;
}

.testimonial p{
	color: rgb(96, 96, 96);
	font-size: 12px;
	font-weight: 300;
	padding: 0px;
}

.testimonial-box{
	flex-basis: 44%;
	border-radius: 10px;
	background: #f5e2cb;
	text-align: left;
	margin-bottom: 20%;
	cursor: pointer;
	padding: 25px;
	display: flex;
}
.testimonial-box img{
	height: 60px;
	border-radius: 50%;
	margin-left: 5px;
	margin-right: 30px;
}

.testimonial-box h3{
	margin-top: 15px;
}

.testimonial-box .fa{
	color: red;
}

   				/*------------------------------ Enroll -----------------------------*/

.enroll{
	margin: 100px auto;
	width: 80%;
	height: 300px;
	background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url(images/contact.jpeg);
	background-size: cover;
	background-position: bottom;
	border-radius: 10px;
	text-align: center;
	padding: 100px 0;
}

.enroll h1{
	color: white;
	font-weight: 600;
	margin-bottom: 40px;
	padding: 0;
}

.enroll button{
	text-align: center;
	padding: 10px 50px 10px 50px;
	color: white;
	cursor: pointer;
	background: transparent;
	border: solid 1px white;
	transition:all 0.5s ease;
}

.enroll button:hover{
	background-color: #b34a04;
	border:1px solid #b34a04;
}

   				/*------------------------------ Footer -----------------------------*/

 footer{
 	text-align: center;
 	width: 60%;
 	margin: auto;
 }

 footer p{
 	margin-top: 30px;
 	color: rgb(96, 96, 96);
 	font-size: 15px;
 }

 footer .fa{
 	color: rgb(255, 72, 5);
 	cursor: pointer;
 	margin-top: 30px;
 	margin-right: 20px;
   font-size: 24px;
 }

 .credit{
 	font-size: 20px;
 	color: rgb(96, 96, 96);
 	margin-bottom: 40px;
 	margin-top: 10px;
 	padding-top: 0;
 }

