*{
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
 }
.header{
	min-height: 100vh;
	width: 100%;
	background-image: url(images/earth.jpg);
	background-position: center;
	background-size: cover;
	position: relative;
	   }
nav{
	display:flex;
	padding: 0% 0%;
	justify-content: space-between;
	align-items: right;
   }
nav img{
	width:145px;
	padding: 0px 0px;
	   }
.nav-links{
	flex: 1;
	text-align: right;
		  }
.nav-links ul li{
	list-style: none;
	display: inline-block;
	padding: 30px 12px;
	position: relative;
				}
.nav-links ul li a{
	color: #fff;
	text-decoration: none;
	font-size: 13 px;
				}
.nav-links ul li::after{
	content:'';
	width: 0%;
	height: 2px;
	background: #f44336;
	display: block;
	margin: auto;
	transition: 0.5s;
}
.nav-links ul li:hover::after{
	width:100%;
}
								/* dropdown hover */
								
.dropbtn {
  background-color: transparent;
  color: white;
  /* padding: 16px; */
  font-size: 16px;
  border: none;
  display: inline-block;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  z-index: 1;
  right: 0;
}

.dropdown-content a {
  color: black;
  font-size: 13px;
  padding: 10px 10px;
  text-decoration: none;
  display: block;
  text-align: center;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: #f44336;}

.text-box{
	width: 90%;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
        }
.text-box h1{
	font-size: 60px;
}
.text-box p{
	margin: 10px 0px 40px;
	font-size: 14px;
	color: #fff;
}
.hero-btn{
	display: inline-block;
	text-decoration: none;
	font-size: 14px;
	color: #fff;
	border: 1px solid #fff;
	padding: 45px,45px;
	position: relative;
	background: transparent;
	cursor: pointer;
}
.hero-btn:hover{
	border: 1px solid #f44336;
	background: #f44336;
	transition: 1s;
}
.red-btn{
	display: inline-block;
	text-decoration: none;
	font-size: 14px;
	color: #000000;
	border: 1px solid #000000;
	padding: 45px,45px;
	position: relative;
	/* background: transparent; */
	cursor: pointer;
}
nav .fa{
	display: none;
}


h1{
	font-size: 36px;
	font-weight: 600;
}
.row{
	margin-top: 2%;
	display: flex;
	justify-content: space-between;
}

.col{
	/* margin-top: 2%; */
	width: 100%;
	justify-content:space-between;
}

h3{
	text-align: center;
	font-weight: 600px;
}
h2{
	text-align: center;
	font-weight: 400px;
}


.service{
	min-height: 50vh;
	width: 80%;
	padding-top: 20px;
	text-align:center;
	margin: auto;
	background-image:  /* linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.1)) *//* , */url(images/map.jpg);
	background-position: center;
	background-size: cover;
	position: relative;
}
.service-col{
	flex-basis: 30%;
	border-radius: 15px;
	margin-bottom: 10px;
	margin-left: 200px;
	margin-right: 200px;
	padding: 50px 50px;
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
}
.service-col:hover{
	box-shadow: 0 0 25px 0px rgba(0,0,0,0.5);
}
	 
.service-col a{
	cursor: pointer;
}
.service-col img{
	width: 100%;
	height: 100%;
	display: block;
}	   
	   
.layer{
	background: transparent;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: 0.5s;
}
.layer:hover{
	background: rgba(226,0,0,0.7);
}
.layer h3{
	width: 100%;
	font-weight: 500;
	color: #fff;
	font-size: 26px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
	opacity: 0;
	transition: 0.5s;
}
.layer:hover h3{
	bottom: 49%;
	opacity: 1;
}
											/* testimonials */
		
	.testimonials{
		width: 100%;
		margin: auto;
		padding-top: 30px;
		text-align: center;
		background-color: #dde80c;
	}
	.test-col{
		flex-basis: 40%;
		border-radius: 10px;
		margin-bottom: 5%;
		margin-left: 5%;
		margin-right: 5%;
		text-align: left;
		background: #0cdefa;
		padding: 15px;
	
		display: flex;
	}
	.test-col p{
		padding: 0;
	}
	.test-col h3{
		margin-top: 15px;
		text-align: left;
	}
	.test-col .fa{
		color: #f03b0a;
	}
				/* footer */
.footer{
	min-height: 15vh;
	width: 100%;
	padding-top: 1px;
	background-color: #F9CB9C;
	position: relative;
	   }

.about-box{
	width: 40%;
	height: 50%;
	margin-left: 10px;
}	   

.about-box h3{
	font-size: 15px;
	text-align: left;
}
.about-box p{
	margin: 1px 4px 4px;
	font-size: 15px;
	justify-content: left;
	color: #21130d;
}	   

.abt-btn{
	display: inline-block;
	text-decoration: none;
	font-size: 14px;
	color: #000000;
	border: 2px solid #000000;
	border-radius: 5px;
	padding: 15px,15px;
	position:relative;
	background: transparent;
	cursor: pointer;
	margin-left: 5px;
}
.abt-btn:hover{
	border: 1px solid #fff;
	background: #fff;
	transition: 1s;
}
							/* location */
			
.loc-box{
	
	width: 100%;
	height: 100%;
	margin-right: 50px;
	margin-top: 0;
}	
.loc-box h3{
	font-size: 15px;
	text-align: left;
}
.loc-box p{
	font-size: 15px;
	justify-content: left;
	margin-top: 0px;
	color: #21130d;
}	   		
.fa-solid{
	width: 20px;
	height: 10px;
}

.icons{
	width: 100%;
	height: 100%;
	margin-right: 150px;
	margin-top: 0;
}	
.icons h3{
	font-size: 15px;
	text-align: left;
}
.fa-brands{
	width: 24px;
	height: 10px;
}
														/* connect via social */
														

														
																/* about us page */
																
.sub-header{
	width: 100%;
	height: 40vh;
	background-image: linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.1)),url(images/about.jpg);
	/* background-color: #8E44AD; */
	text-align: center;
	color: #fff;
}
.sub-header h1{
	margin-top: 100px;
}
.about-us{
	width: 100%;
	margin-left: 300px;
	padding-top: 40px;
	padding-bottom: 50px;
}
.about-col{
	flex-basis: 90%;
	padding: 30px 20px;
}
.about-col img{
	width: 30%;
	height: 80%;
	border-radius: 150px;
	
}
									/* academics */
.acad-header{
	width: 100%;
	height: 40vh;
	background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0)),url(images/acadcover.jpg);
	background-position: center;
	background-color: #8E44AD;
	text-align: center;
	color: #fff;
}
.flexbox1{
	width: 100%;
	height: 100%;
  margin-left: 50px;
}
.flexbox1 h3{
	color: black;
	font-family:'Kaushan Script', cursive;
}
.flexbox1 img{
  border-radius: 20px;
  width: 50%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.flexbox2 img{
  margin-top: 100px;
  border-radius: 20px;
  width: 50%;
 
}
.academic-col h1{
	font-family:'Kaushan Script', cursive;
	color: white;
	font-size: 30px;
	font-weight: 100px;
	margin-left: 20px;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
}
.academic-col h2{
	font-family:'Kaushan Script', cursive;
	color: white;
	text-align: center;
	margin-left: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
}
.academic-col p{
	font-family:'Kaushan Script';
	font-size: 25px;
	color: yellow;
	margin-left: 20px;
	margin-right: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
}
.academic-col{
	background: linear-gradient(rgba(0,0,0,0.5),rgba(0, 0, 0, 0)),url(images/acadbg.png);
}
.acad-flex{
	width: 80%;
	margin: auto;
	display: flex;
	flex-wrap: nowrap;
	text-align: center;
	background-color: #ccffc1;
	border: 10px solid green;
}


.academic-col ul
{
	padding: 10px 10px;
	margin-left: 50px;
	background-color: #81F4F4;
	width: 80%;
	border-radius: 30px;
}
.academic-col ul h3{
	text-align: left;
	padding-bottom: 20px;
}
@media screen and (max-width: 1500px){
	.acad-flex{
		width: 100%;
		padding-right: 30px;
		flex-wrap: wrap;	
	}
	.flexbox1 img{
		width: 100%;
		height: 100%;
	}
	.flexbox2 img{
		display: none;
	}
}
					/* professional */
.pro-header{
	width: 100%;
	height: 40vh;
	background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(images/profcover.jpg);
	background-position: center;
	text-align: center;
	color: #fff;
}
									/* slideshow */
* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #000000;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
.prof-col{
background-color:#fff200;}

.slideshow-container img{
	margin-left: 150px;
	align-items: center;
}					
.text{
	font-family:Norwester,serif;
	font-style: normal;
	text-align: center;
	margin-bottom: 200px;
	padding-left: 20px;
	padding-bottom: 300px;
	font-size: 40px;
	font-weight: bold;
	font-variant: small-caps;
}	

.prof-col h1{
	text-align:center;
	font-family:Norwester,serif;
	font-style: normal;
	text-align: center;
	
	padding-left: 20px;
	font-size: 40px;
	font-weight: bold;
	font-variant: small-caps;
}

.prof-col p{
	margin-left: 10px;
	margin-right: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
}

.prof-col ul{
	padding: 20px 20px;
	margin-left: 50px;
	background-color:#eff702;
	width: 80%;
	border-radius: 0px;
}
													/* contact us */
													
.cont-header{
	width: 100%;
	height: 40vh;
	background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(images/contact.jpg);
	background-position: center;
	text-align: center;
	color: #fff;
}
.location{
	width: 80%;
	margin: auto;
	padding: 80px 0;
}
.location iframe{
	width: 100%;
}
	
.contact-us{
	
	width: 80%;
	margin:auto;
}
.contact-col{
	flex-basis: 48%;
	margin-bottom: 30px;
}
.contact-col div{
	
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}
.contact-col div .fa{
	font-size: 28px;
	color:#f44336;
	margin: 10px;
	margin-right: 30px;
}
.contact-col div .fa-regular{
	font-size: 28px;
	color:#f44336;
	margin: 10px;
	margin-right: 30px;
}
.contact-col input,.contact-col textarea{
	width: 100%;
	padding: 15px;
	margin-bottom: 17px;
	outline: none;
	border: 1px solid #ccc;
}

.contact-col h3{
	padding-bottom: 50px;
	padding-top: 5px;
}

@media(max-width: 770px){
	.text-box h1{
	font-size: 20px;
	}
	.nav-links ul li{
		display: block;
		padding: 15px;
	}
	.nav-links{
	position: fixed;
	background: #f44336;
	height: 100vh;
	width: 180px;
	top: 0;
	right:-200px;
	z-index: 2;
	text-align: left;
	transition: 1s;
		  }
nav .fa{
	display: block;
	color: #fff;
	font-size: 22px;
	cursor: pointer;
	margin: 10px;
	}
	.nav-links ul{
		padding:15px;
	}
nav .dropbtn{
	padding:15px;
}
	.row{
		flex-direction: column;
	}
	
	.academic-col ul{
		margin-left: 30px;
	}
	.cont-col{
		flex-direction: column;
	}
	.cont-col img{
		width: 40%;
		margin-left: 70px;
	}
	.service{
		width: 100%;
		/* height: 90%; */
	}
	.service h1{
		font-size: 20px;
	}
	.service-col{
	flex-basis: 12%;
	border-radius: 15px;
	margin-bottom: 10px;
	margin-left: 50px;
	margin-right: 50px;
	padding: 50px 50px;
	overflow: hidden;
	position: relative;
}
	.service-col img{
	width: 80%;
	height:100%;
	margin-left: 13%;
	}	
	.layer h3{
	width:80%;
	font-weight: 25px;
	color: #f44336;
	font-size: 20px;
	bottom: 0;
	left: 75%;
	transform: translateX(-80%);
	position: absolute;
	opacity: 1;
}

	.about-col img{
	width: 80px;
	height:80px;
	margin-left: 120px;
	margin-bottom: 20px;
	border-radius: 50px;
	
}
	.about-box{
		width:95%;
		height:100%;
	}
	.about-box h3{
		text-align: center;
		font-style: bold;
	}
	.about-box p{
	font-style: bold;
	text-align: left;
	}
	.loc-box{
		width:95%;
		height:100%;
	}
	.loc-box h3{
		text-align: center;
	}
	
	.icons{
		width:95%;
		height:100%;
	}
	.icons h3{
		text-align: center;
	}
	
nav .fa-brands{
		padding-left: 80px;
		cursor: pointer;
		align-items: center;
	}
	
	.sub-header h1{
		padding-bottom:80px;
	}
	.sub-header{
		background-image: linear-gradient(rgba(0,0,0,0.1),rgba(0,0,0,0.1)),url(images/about.jpg);
	}
	.about-us{
	width: 100%;
	margin-left: 5px;
	padding-top: 10px;
	padding-bottom: 10px;
}
.about-col{
	flex-basis: 100%;
	padding: 10px 10px;
}
.about-col p{
	text-align: left;
}


.mySlides img{
	margin-left: 50px;
}
.mySlides .text{
	font-size: 25px;
	font-weight: 50px;
	padding-bottom: 170px;
	margin-bottom:0px;
	text-align: center
}
.prof-col ul{
	margin-left: 30px;
}

html, body {overflow-x: hidden;}
}	
	

	