*{
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans saref;

}
.header{
	min-height: 100vh;
	width: 100%;
	background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(banner.jpg);
	background-position: center;
	background-size: cover;
	position: relative;
}
nav{
	display: flex;
	padding: 2% 6%;
	justify-content: space-between;
	align-items: center;
}
nav img{
	width: 120px;
	border-radius: 50px;
}
.nav-links{
	flex: 1;
	text-align: right;
}
.nav-links ul li{
	list-style: none;
	display: inline-block;
	padding: 8px 12px;
	position: relative;
	cursor: pointer;

}
.nav-links ul li a{
	color: yellow;
	text-decoration: none;
	font-size: 13px;
	cursor: pointer;
}
a:hover{
	color: #F3B80D;
}
.nav-links ul li::after{
	content:'';
	width: 0%;
	height: 2px;
	background: #F3B80D;
	display: block;
	margin: auto;
	transition: 0.5s;
}
.nav-links ul li:hover::after{
	width: 100%;

}
.text-box{
	width: 90%;
	color:  #F3B80D;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%, -50%);
	text-align: center;

}
.text-box h1{
	font-size: 62px;
	margin-top: 15%;

}
h1:hover{
	color: 
	#F3B80D;
}
h3:hover{
	color: #3498DB ;
}
h2:{
	color: red;
}

.text-box p{
	margin: 10px 0 40px;
	font-size: 14px;
	color: #fff;
}
.hero-btn{
	display: inline-block;
	text-decoration: none;
	color: #fff;
	border:1px solid #fff;
	padding: 12px 34px;
	font-size: 18px;
	background: transparent;
	position: relative;
	cursor: pointer;
	border-radius: 30px;
}
.hero-btn:hover{
	border: 1px solid #f44336;
	background: #f44336;
	transition: 1s;
}
.container{
		width: 90%;
		padding: 20px;
		margin: 100px auto;	 
		display: flex;
		flex-direction: row;
		justify-content: center;
	}
	h4{
		color: white;
		text-align: center;
	}



	.box{
		width: 250px;
		margin: 0 10px;
		box-shadow: 0 0 20px 2px rgba(0, 0, 0, .1);
		transition: 1s;

	}
	.box img{
		display: block;
		width:100%;
		border-radius: 5px;
	}
	.box:hover{
		transform: scale(1.3);
		z-index: 2;
	}

h2{
	color: white;
	text-align: center;
}
address{
	color: white;
	text-align: center;
	font-size: 22px;
}

nav .fa{
	display: none;
}


marquee{
	color: black;
	background-color: #F3B80D;
	font-size: 20px;
}
.social-media{
	display: flex;
	margin-top: 20px;
	margin-left: 35%;
}
.icon{
	width: 60px;
	height: 50px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-right: 25px;
	margin-bottom: 50px;
	border-radius: 5px;
	overflow: hidden;
	transition: transform 0.5s;
}
.icon img{
	width: 58px;


}
.icon a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #ff1616;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: 0.5s;
}
.icon a:hover{
	opacity: 1;
}
.icon:hover{
	transform: translateY(-5px);
}
.course{
	width:97%;
	margin:auto;
	text-align:center;
	padding-top:100px;

}
h1{
	font-size: 36px;
	font-weight: 600;
	text-align: center;
}
p{
	color: blue;
	font-size: 14px;
	font-weight: 300;
	line-height: 22px;
	padding: 10px;
	text-align: center;

}
.row{
	margin-top: 5%;
	display: flex;
	justify-content: space-between;

}
h1{
	color: white;
}
.course-col{
	flex-basis: 31%;
	background: #F3B80D;
	border-radius: 10px;
	margin-bottom: 5%;
	padding: 20px 12px;
	box-sizing: border-box;
	transition: 0.5s;
}
h3{
	text-align: center;
	font-weight: 600;
	margin: 10px 0;

}
.course-col:hover{
	box-shadow: 24px 12px 12px blue;

}
@media(max-width: 700px){
	.row{
		flex-direction: column;
			}



@media(max-width: 700px){
	.text-box h1{
	font-size: 20px;
}


.nav-links ul li{
	display: block;
}
.nav-links{
	position: absolute;
	background: blue;
	height: 100vh;
	width: 200px;
	top: 0;
	right: -200px;
	text-align: left;
	z-index: 2;
	transition: 1s;
}

nav .fa{
	display: block;
	color: #fff;
	margin: 10px;
	font-size: 22px;
	cursor: pointer;
}

.nav-links ul{
	padding: 30px;
}







