/*
COLOR
green: #2eca7f
blue: rgba(26, 45, 98, 1)	//heading
blue hex: #1a2d62
*/

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');



body{
	font-family: "Jost", sans-serif;
}
h3{
	font-weight: 700;
	color: #212121;
}

.headingOne{
	font-size: 28px;
	margin-top: 18px;
	margin-bottom: 20px;
	font-weight: 700;
	color: #222;
	margin-bottom: 20px;
	position: relative;
}/*
.headingOne:after{
	position: absolute;
	content: '';
	left: 0;
	bottom: -5px;
	width: 100px;
	height: 2px;
	background-image: linear-gradient(to right, #fca311, #fff);
}

.ListStyle2{
	margin-bottom: 50px;
}
.ListStyle2 li{
	padding-bottom: 10px;
	margin-left: -20px;
	list-style: upper-roman;
}
*/


.home_pic_container{
	border-radius: 15px;
	padding: 40px 00px;
	margin-top: 10px;
	display: flex;
}
.home_pic_container .img{
	width: 160px;
}

.home_pic_container .details{
	margin-top: 20px;
	color: #212121;
	text-align: left;
	padding-left: 00px;
}
.home_pic_container .details h4{
	font-weight: 700;
	font-size: 24px;
	color: #000;
}
.home_pic_container .details h5{
	color: #444;
	font-weight: 600;
	font-size: 18px;
	padding-top: 0px;
}
@media (max-width: 768px){
	.home_pic_container{
		border-radius: 15px;
		padding: 40px 10px;
		margin-top: 0px;
		display: flex;
	}
	.home_pic_container .details h4{
		font-size: 16px;
		color: #000;
		margin-top: 0;
		padding-top: 0;
	}	
	.home_pic_container .details h5{
		color: #444;
		font-weight: 600;
		font-size: 14px;
		padding-top: 0px;
	}
}

.heroHeading{
	padding-top: 150px;
	font-weight: 800;
	font-size: 60px;
}
.heroHeading span{
	color: #2eca7f;
}
@media (max-width: 768px){
	.heroHeading{
		padding-top: 120px;
		padding-bottom: 0;
		font-size: 28px;		
	}
}



.home_content p,
ul li,
table tr td{
	color: #212121;
	font-size: 17px;
}
.home_content h1{
	font-weight: 800;
}
.home_content h2{
	position: relative;
	margin-bottom: 20px;
	font-weight: bold;
	font-size: 26px;
}
.home_content h2:before{
	position: absolute;
	content: "";
	width: 300px;
	height: 3px;
	border-radius: 5px;
	background: linear-gradient(to right, #2eca7f, transparent );
	bottom: -5px;
	left: 0;
}

@media (max-width: 768px){
	.home_content h2{
		margin-bottom: 20px;
		font-size: 18px;
	}
	.home_content p{
		color: #212121;
		font-size: 16px;
		text-align: left;
	}

}

/*IMGBOX*/

		.imgBx{
			width: 100%;
			margin: auto;
			text-align: center;
			margin-bottom: 50px;
			transition: 0.3s;
		}
		.imgBx .img{
			width: 130px;
			height: 140px;
			border: 0px solid #555;
			overflow: hidden;
			margin: auto;
			border-radius: 5px;
			transition: all 0.3s;
			border: 2px solid #fff;
			box-shadow: 0 5px 5px #eee;
		}
		.imgBx .img img{
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
		.imgBx .details .title{
		    font-size: 18px;
		    font-weight: 600;
		    color: #2eca7f;
		    text-transform: capitalize;
		    margin-top: 10px;
		    position: relative;
		    transition: 0.3s;
		}

.imgBx .details{
	margin-top: 0;
	padding-top: 0;
}

.imgBx:hover .img{
	box-shadow: 0 0 15px #ddd;
}
.imgBx:hover .details .title{
	color: #212121;
	transition: 0.3s;
}

/*DEPTBOX*/
.deptBx{
	padding: 20px;
	padding-bottom: 50px;
	box-shadow: 0 0 25px #efefef;
	border-radius: 5px;
	height: 200px;
	position: relative;
}
.deptBx h3{
	margin-bottom: 50px;
	font-weight: 900;
	color: #212121;

}
.deptBx:hover{
	box-shadow: 0 0 35px #efefef;
}
.deptBx a{
	position: absolute;
	bottom: 20px;
}



/*NEWSBOX*/
.card{
	border-radius: 5px;
}
.card .card-body{
	height: 250px;
	overflow-y: scroll;	
}
.newsBxOuter .card:nth-child(1){
	margin-top: 30px;
}

.news-item .day{
	background: #2eca7f;
	background: #fff;
	color: #2eca7f;
	box-shadow: 0 0 1px #2eca7f;
	border-radius: 5px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 24px;
	text-align: center;
	font-weight: 700;
}
.fas
{
    margin-right:4px !important; /*override*/
}

.pagination .fas
{
    margin-right:0px !important; /*override*/
}

.pagination a
{
    color:#fff;
}

.card ul
{
    padding:0px;
    margin:0px;
    list-style:none;
}

.news-item
{
    padding:0;
    margin-top:10px;
    margin-bottom: 10px;
    border-bottom:0px dotted #ddd;
    color: #333;
}
.card-header h3{
	font-weight: 500;
	letter-spacing: 1px;
	font-size: 20px;
	text-transform: uppercase;
	padding-bottom: 8px;
	padding-top: 8px;
	font-family: "Oswald", sans-serif;
}

.news-item table tr td{
	color: #333;
	font-size: 16px;
	line-height: 20px;
	vertical-align: top;
}

.news-item table tr td a{
	color: #333;
	font-size: 16px;
}
.news-item table tr td a:hover{
	color: #2eca7f;
}
.news-item table tr td b{
	font-size: 13px;
	font-weight: bold;
	color: #212121;
	margin-top: 0px;
	display: inline-block;
}

@media(max-width:768px){
	.newsBxOuter .card:nth-child(1){
		margin-top: 00px;
	}
	.news-item .day{
		font-size: 20px;
	}
	.news-item table tr td{
		font-size: 14px;
	}

}
/*
.upcoming-events{
	counter-reset: section;
}
.upcoming-events .news-item table .day:before{
	counter-increment: section;
	content: counter(section);
}
*/


/*FOOTER*/

.footer_social a {
	color: #aaa;
	transition: all 0.3s;
}
.footer_social a:hover{
	color: #fff;
}

/*PEOPLE*/
.peopleHeading{
	text-align: center;	
	margin-bottom: 50px;
	font-weight: bold;
}
.peopleHeading span{
	font-weight: 500;
}

.deptdivouter{
	margin-top: 100px;
	margin-bottom: 100px;
}

.blinker{
	font-weight: 900;
	font-size: 10px;
	font-style: italic;
    color: red;
	animation-name: blink;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}
@keyframes blink{
	0%, 100%{
		color: red;
	}
	50%{
		color: blue;
	}
}

.heading-blinker{
	font-size: 12px;
	text-transform: uppercase;
	animation-name: heading-blinker;
    animation-duration: 1s;
    animation-iteration-count: infinite;	
}
@keyframes heading-blinker{
	0%, 100%{
		color: #2eca7f;
	}
	50%{
		color: rgba(26, 45, 98, 1);
	}	
}


/*TABLE*/
.event-type{
	color: #999;
	font-weight: bold;
	font-size: 14px;
}



.listStyleOne{
	list-style: none;
}

.listStyleOne li{
	list-style: none;
	margin-left: 15px;
	margin-bottom: 10px;
	color: #212121;
}

.listStyleOne li:before {    
    font-family: 'FontAwesome';
    content: '\f0da';
    margin:0 5px 0 -15px;
    color: #2eca7f;
}
.listStyleOne li a{
	font-weight: 400;
}
.listStyleOne li span{
	color: #005f73;
	font-weight: 600;
	font-size: 14px;
}

.apply-now{
	display: inline-block;
	padding: 2px 5px;
	font-size: 14px;
	border-radius: 2px;
	font-weight: bold;
	color: #fff;
	animation: applyNow 2s linear infinite;
	transition: all 0.2s;
}
@keyframes applyNow{
	0%, 100%{
		background: #c1121f;
	}
	50%{
		background: #669bbc;
	}	
}
.apply-now:hover{
	border-radius: 8px;
}

/* WhatsApp Floating Button */
.help {
  position: fixed;
  bottom: 10px;
  right: 70px;
  z-index: 999;
}

.help img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help img:hover {
  transform: scale(1.1);
}
