*{
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
	scroll-behavior: smooth;
}
/*--- Headerbanner section ---*/
.header{
	min-height: 100vh;
	width: 100%;
	background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url("images/HomeBanner1.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: 200px;
}
.nav-links{
	flex: 1;
	text-align: right;
}
.nav-links ul li{
	list-style: none;
	display: inline-block;
	padding: 8px 12px;
	position: relative;
}
.nav-links ul li a{
	color: #fff;
	text-decoration: none;
	font-size: 13px;
}
.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%;
}
.text-box{
	width: 50%;
	color: #fff;
	position: absolute;
	top: 30%; /* 50% - 30%*/
	left: 25%; /* 50% - 25%*/
	transfrom: translate(-50%, -50%);
	text-align: center;
}
.text-box h1{
	font-size: 62px;
	font-family: "Racing Sans One"; /* Logo Font used on Banner title */
}
.text-box h2{
	font-size: 36px;
}
.text-box p{
	margin: 10px 0 40px;
	font-size: 16px;
	color: #fff;
}
.hero-btn{
	display: inline-block;
	text-decoration: none;
	color: #fff;
	border: 1px solid #fff;
	padding: 12px 34px;
	font-size: 16px;
	background: transparent;
	position: relative;
	cursor: pointer;
}
.hero-btn:hover{
	border: 1px solid #f44336;
	background: #f44336;
	transition: 1s;
}
.hdivider{
	text-align: center;
}

nav .fa{
	display: none;
}

@media(max-width: 700px){
	/* Hide horizontal scrollbar starts here*/
	html, body {
		overflow-x: hidden; 
		-ms-overflow-style: none; /* IE and Edge */
		scrollbar-width: none; /* Firefox */
		width: 100%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
	}
	body {
		position: relative;
	}
	body::-webkit-scrollbar { /* For Webkit browsers like Chrome, Safari, Opera */
		display: none;
	}
	/* Hide horizontal scrollbar ends here*/
	.text-box{
		top: 14%; /* 50% - 24%*/
		left: 25%; /* 50% - 25%*/
	}
	.text-box h1{
		font-size: 36px;
		text-align: center;
	}
	.text-box h2{
		font-size: 22px; /* 26px */
		/*margin: 10px 0;*/
	}
	.text-box p{
		margin: 10px 0;
	}
	.hero-btn{
		padding: 12px 20px;
}
	.black-btn2{
		margin-bottom: 15px;
	}
	.nav-links ul li{
		display: block;
	}
	.nav-links{
		position: absolute; 
		background: #f44336;
		height: 100vh;
		width: 200px;
		top: 0;
		right: -200px;
		text-align: left;
		z-index: 2;
		transition: 1s;
	}
	nav img{
	width: 80px;
}
	nav .fa{
		display: block;
		color: #fff;
		margin: 10px;
		font-size: 22px;
		cursor: pointer;
	}
	.nav-links ul{
		padding: 30px;
	}
	.contact-col img{
		max-height: 97%;
		max-width: 97%;
	}
}


/*--- WhyChooseUs section ---*/
.whychooseus{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 50px; /*-- 100px --*/
}
h1{
	font-size: 36px;
	font-weight: 600;
}
p{
	color: #333; /*-- Was #777 before, but was deemed to light --*/
	font-size: 14px;
	font-weight: 300;
	line-height: 22px;
	padding: 10px;
	text-align: center;
}
.row{
	margin-top: 2%; /*-- 5%; --*/
	display: flex;
	justify-content: space-between;
}
.row2{
	margin-top: 0%; /*-- 5%; --*/
	display: flex;
	justify-content: space-between;
}
.whychooseus-col{
	flex-basis: 31%;
	background: #fff; /*-- Was #fff3f3 before, but was deemed not white enough --*/
	border-radius: 10px;
	margin-bottom: 2%; /*-- 5% margin on hoverbox--*/
	padding: 20px 12px; 
	box-sizing: border-box;
	transition: 0.5s;
}
h3{
	text-align: center;
	font-weight: 600;
	margin: 10px 0;
}
.whychooseus-col:hover{
	box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
@media(max-width: 700px){
	.row{
		flex-direction: column;
	}
}
/*-- WhyChooseUs black button --*/
.text-box2 a{
	color: #fff;
}
.black-btn2{
	color: #000;
	border: 1px solid #000;
	background: #000;
}
.black-btn2:hover{
	border: 1px solid #f44336;
	background: #f44336;
}


/*-- Campus section --*/
.campus{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 50px;
}
.campus-col{
	flex-basis: 32%;
	border-radius: 10px;
	margin-bottom: 20px; /*-- 30px --*/
	position: relative;
	overflow: hidden;
}
.campus-col img{
	width: 100%;
	display: block;
}
.layer{
	background: transparent;
	height: 100%;
	width: 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%; /*-- position of London/NewYork/Washington --*/
	opacity: 1;
}
.layer p{
	width: 100%;
	font-weight: 500;
	color: #fff;
	font-size: 16px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
	opacity: 0;
	transition: 0.5s;
}
.layer:hover p{
	bottom: 40%; /*-- position of blah blah blah --*/
	opacity: 1;
}


/*-- Facilities section --*/
.facilities{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 50px;
}
.facilities-col{
	flex-basis: 31%;
	border-radius: 10px;
	margin-bottom: 5%;
	text-align: left;
}
.facilities-col img{
	width: 100%;
	border-radius: 10px;
}
.facilities-col p{
	padding: 0;
	text-align: center;
}
.facilities-col h3{
	margin-top: 16px;
	margin-bottom: 15px;
	text-align: center;
}


/*-- Testimonials section--*/
.testimonials{
	width: 80%;
	margin: auto;
	padding-top: 50px;
	text-align: center;
}
.testimonials-col{
	flex-basis: 44%;
	border-radius: 10px;
	margin-bottom: 5%;
	text-align: left;
	background: #fff3f3;
	padding: 25px;
	cursor: pointer;
	display: flex;
}
.testimonials-col img{
	height: 40px;
	margin-left: 5px;
	margin-right: 30px;
	border-radius: 50%;
}
.testimonials-col p{
	padding: 0;
}
.testimonials-col h3{
	margin-top: 15px;
	text-align: left;
}
.testimonials-col .fa{
	color: #f44336;
}
@media(max-width: 700px){
	.testimonials-col img{
		margin-left: 0px;
		margin-right: 15px;
	}
}


/*-- CTA section--*/
.cta{
	margin: 10px auto; /*-- 100px auto --*/
	width: 100%;
/*	background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),url(images/banner2.jpg);*/
	background-position: center;
	background-size: cover;
	/*-- border-radius: 10px; --*/
	text-align: center;
	padding: 120px 0;
}
.ctahome{
	background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),url(images/Smallbanner.jpg);
}
.ctaabout{
	background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),url(images/Smallbanner2.jpg);
}
.ctacareer{
	background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),url(images/Smallbanner3.jpg);
}
.ctaopenpositions{
	background-color: #1C2232;
}
.cta h1{
	color: #fff;
	margin-bottom: 20px;
	padding: 0;
}
.cta h4{
	color: #fff;
	margin-bottom: 5px;
	padding: 0;
}
.cta p{
	color: #fff;
	margin-bottom: 40px;
	padding: 0;
}
@media(max-width: 700px){
	.cta h1{
		font-size: 24px;
	}
}


/*-- LetUsConnect section--*/
.connect{
	margin: 10px auto; /*-- 100px auto --*/
	width: 80%;
	text-align: center;
	padding: 40px 0px 5px;
}
.connect h1{
	color: #000;
	margin-bottom: 20px;
	padding: 0;
}
.connect p{
	color: #000;
	margin-bottom: 40px;
	padding: 0;
}
@media(max-width: 700px){
	.cta h1{
		font-size: 24px;
	}
}


/*-- Footer section--*/
.footer{
	width: 100%; /*-- 80% --*/
	text-align: center;
	padding: 5px 0; /*-- 30px 0 --*/
	margin: auto;
}
.footer h4{
	margin-bottom: 25px;
	margin-top: 20px;
	font-weight: 600;
}
.icons .fa{
/*	color: #f44336;*/
	margin: 0 10px;
	cursor: pointer;
	padding: 1px 0;
	color: #064851;
}
.footer .footerlinks{
	color: #000;
	text-decoration: none;
	font-size: 13px;
}
.fa-heart-o{
	color: #f44336;
}
.footer-col{
	background: #fff; /*----- Used to be #fff3f3;--------*/
	margin-bottom: 0%; /*----- Used to be 2%;--------*/
	padding: 1px 5px;
	text-align: center;
	flex-basis: 100%;
}
h3{
	text-align: center;
	font-weight: 600;
	margin: 0px 0px;
}
@media(max-width: 700px){
	.row{
		flex-direction: column;
	}
}



/*----------  ABOUT US page ----------------------*/

.sub-header{ /*-- for other pages apart from Index --*/
	height: 50vh; /*-- 50vh; This is the height of the sub-header --*/
	width: 100%;
	background-position: center;
	background-size: cover;
	text-align: center;
	color: #fff;
}
.sub-header1{ /*-- for About page --*/
	background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url("images/PGBanner1.jpg");
}
.sub-header2{ /*-- for Services --*/
	background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url("images/PGBanner6.jpg");
}
.sub-header3{ /*-- for Careers page --*/
	background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url("images/PGBanner2.jpg");
}
.sub-header4{ /*-- for Contact page --*/
	background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url("images/PGBanner7.jpg");
}
.sub-header h1{ 
	margin-top: 50px; /*-- This moves the page title up/down --*/
	font-size: 3em;
	font-weight: 600;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 1px;
}
@media(max-width: 700px){
	.sub-header h1{ 
	margin-top: 100px; /*-- This moves the page title up/down --*/
	font-size: 3em;
	}
	.sub-header h3{ 
	font-weight: 600;
	}
}
.about-us{
	width: 80%;
	margin: auto;
	padding-top: 25px;
	padding-bottom: 25px;
}
.about-us2{ /*-- Background imaged version of about-us similar ot the sub-header class --*/
	width: 100%;
	background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url("images/HomeBanner2.jpg");
	background-position: center;
	background-size: cover;
	color: #fff;
}
.about-col{ /*-- Half panel --*/
	flex-basis: 48%;
	padding: 2px 2px 3px;
}
.about-col-alignleft{
	font-size: 13px;
	color: #333;
	text-align: left;
}
.about-col-alignright{
	font-size: 13px;
	color: #333;
	text-align: right;
}
.about-colbiggerleft{ /*-- Half panel --*/
	flex-basis: 73%;
	padding: 2px 2px 3px;
}
.about-colbiggerleft p{
	text-align: left;
}
.about-colsmallerright{ /*-- Half panel --*/
	flex-basis: 23%;
	padding: 2px 2px 3px;
}
.about-colparent{ /*-- Half panel Parent--*/
	flex-basis: 48%;
	padding: 25px 2px 3px;
}
.about-colparentfull{ /*-- Full panel Parent--*/
	flex-basis: 100%;
	padding: 2px 2px 33px;
}
.about-colparentfullcenter{ /*-- Full panel Parent with Centered text--*/
	flex-basis: 100%;
	padding: 2px 2px 3px;
	text-align: center;
}
.about-col2{ /*-- Quarter panel --*/
	flex-basis: 24%;
	padding: 25px 2px;
}
.about-col2nested{ /*-- Quarter panel Nested, no space--*/
	flex-basis: 48%;
	padding: 1px 0px;
}
.about-col2nested2{ /*-- Quarter panel Nested, with space--*/
	flex-basis: 48%;
	padding: 1px 10px;
}
.about-col3{ /*-- OneThird panel --*/
	flex-basis: 31%;
	padding: 1px 2px;
}
.about-col img{ /*-- Half panel Image --*/
	width: 100%;
}
.about-col2 img{ /*-- Quarter panel Image --*/
	width: 100%;
}
.about-col3 img{ /*-- OneThird panel Image --*/
	width: 100%;
}
.about-col h1{
	padding-top: 0;
}
.about-col2nested h2{
	padding-top: 0;
}
.about-col p{
	padding: 15px 0 25px;
	text-align: left;
}
.black-btn{
	border: 1px solid #000;
	background: transparent;
	color: #000;
}
.black-btn:hover{
	color: #fff;
}
.white-btn{
	border: 1px solid #FFF;
	background: transparent;
	color: #FFF;
}
.red-btn{
	border: 1px solid #f44336;
	background: transparent;
	color: #f44336;
}
.red-btn:hover{
	color: #fff;
}




/*----------  BLOG page ----------------------*/
.blog-content{
	width: 80%;
	margin: auto;
	padding: 60px 0;
	
}
.blog-left{
	flex-basis: 65%;
}
.blog-left img{
	width: 100%;
}
.blog-left h2{
	color: #222;
	font-weight: 600;
	margin: 30px 0;
}
.blog-left p{
	color: #999;
	padding: 0;
}
.blog-right{
	flex-basis: 32%;
}
.blog-right h3{
	background: #f44336;
	color: #fff;
	padding: 7px 0;
	font-size: 16px;
	margin-bottom: 20px;
}
.blog-right div{
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #555;
	padding: 8px;
	box-sizing: border-box;
}
.comment-box{
	border: 1px solid #ccc;
	margin: 50px 0;
	padding: 10px 20px;
}
.comment-box h3{
	text-align: left;
}
.comment-form input, .comment-form textarea{
	width: 100%;
	padding: 10px;
	margin: 15px 0;
	box-sizing: border-box;
	border: none;
	outline: none;
	background: #f0f0f0;
}
.comment-form button{
	margin: 10px 0;
}
@media(max-width:700px){
	.sub-header h1{
		font-size: 24px;
	}
}



/*----------  Contact Us page  ---------------------*/
.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 h2{
	font-family: "Racing Sans One";
}
.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 p{
	padding: 0;
}
.contact-col div h5{
	font-size: 20px;
	margin-bottom: 5px;
	color: #555;
	font-weight: 400;
}
.contact-col input, .contact-col textarea{
	width: 100%;
	padding: 15px;
	margin-bottom: 17px;
	outline: none;
	border: 1px solid #ccc;
	box-sizing: border-box;
}



/*----------  Captcha Section for Contact Us page  ---------------------*/
#captchaBackground {
    height: 220px;
    width: 250px;
    background-color: #2d3748;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#captchaHeading {
    color: white;
}

#captcha {
    height: 50%;
    width: 50%;
    font-size: 30px;
    letter-spacing: 3px;
    margin: auto;
    display: block;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#submitButton {
/*
    margin-top: 2em;
    margin-bottom: 2em;
    background-color: #08e5ff;
    border: 0px;
    font-weight: bold;
*/
}

#refreshButton {
/*    background-color: #08e5ff;*/
/*    border: 0px;*/
/*    font-weight: bold;*/
}

#textBox {
/*    height: 25px;*/
}

.incorrectCaptcha {
    color: #FF0000;
}

.correctCaptcha {
    color: #7FFF00;
}