/*this color use of website background #1977cc*/
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
	font-family: "Open Sans", sans-serif;
	color: #444444;
}

a {
	color: #1977cc;
	text-decoration: none;
}

a:hover {
	color: #3291e6;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #fff;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #1977cc;
	border-top-color: #d1e6f9;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: #1977cc;
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all 0.4s;
}

.back-to-top i {
	font-size: 28px;
	color: #fff;
	line-height: 0;
}

.back-to-top:hover {
	background: #298ce5;
	color: #fff;
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

.datepicker-dropdown {
	padding: 20px !important;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
	padding: 60px 0;
	overflow: hidden;
}

.section-bg {
	background-color: #f1f7fd;
}

.section-title {
	padding-bottom: 15px;
}

.section-title h2 {
	font-size: 28px;
	text-align: center;
	font-weight: bold;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
	color: #2c4964;
}

.section-title h2::before {
	content: "";
	position: absolute;
	display: block;
	width: 130px;
	height: 4px;
	background: #ddd;
	bottom: 1px;
	left: calc(50% - 60px);
}

.section-title h2::after {
	content: "";
	position: absolute;
	display: block;
	width: 48px;
	height: 6px;
	background: #1977cc;
	bottom: 0;
	left: calc(50% - 20px);
}

.section-paragraph {
	font-weight: 500;
	font-size: 17px;
}

.text-label {
	font-size: 22px;
	font-weight: 600;
	background-color: #1977cc;
	padding: 10px;
	border-radius: 8px;
	color: white;
}
.section-bg-img {
	background-image: url(../img/section-bg-img.jpg);
	overflow: hidden;
	height: 300px;
	background-position: revert;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	opacity: 0.75;
}

.overlay {
	width: 100%;
	height: 300px;
	background-color: rgb(0 0 0 / 53%);
	position: absolute;
	left: 0;
	z-index: 999;
}

.section-bg-img-title {
	font-size: 50px;
	font-weight: 600;
	color: #fff;
	text-shadow: 2px 2px 5px black;
}

.section-bg-img-title:after {
	content: "";
	border-bottom: 4px solid #fff;
	width: 11%;
	display: block;
	margin-left: 15px;
	padding-top: 11px;
	box-shadow: 0px 2px #000000;
}

hr {
	color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	background: #fff;
	transition: all 0.5s;
	z-index: 997;
	padding: 15px 0;
	box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#header.header-scrolled {
	top: 0;
}

/*#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #2c4964;
}*/

#header .logo img {
	max-height: 48px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
	padding: 0;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
}

.navbar > ul > li {
	position: relative;
	white-space: nowrap;
	padding: 8px 0 8px 20px;
}

.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 17px;
	color: #2c4964;
	white-space: nowrap;
	transition: 0.3s;
	border-bottom: 2px solid #fff;
	padding: 2px 6px;
}

.navbar a i,
.navbar a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
	color: #1977cc;
	border-color: #1977cc;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
	color: #2c4964;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
	color: #fff;
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: block;
	}

	.navbar ul {
		display: none;
	}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(28, 47, 65, 0.9);
	transition: 0.3s;
	z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	background-color: #fff;
	overflow-y: auto;
	transition: 0.3s;
}

.navbar-mobile > ul > li {
	padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
	padding: 10px 20px;
	font-size: 15px;
	color: #2c4964;
	border: none;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
	color: #1977cc;
}
/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
#Home .bg-img {
	background-image: url(../img/home-bg.jpg);
	overflow: hidden;
	height: 500px;
	background-position: revert;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	opacity: 0.75;
}

#Home .bg-img-title {
	padding-top: 30px;
	color: white;
	font-size: 6rem;
	text-shadow: 2px 2px 5px black;
	padding-left: 5rem;
}

#Home .bg-img-para {
	color: white;
	padding-left: 6rem;
	text-align: left;
	font-size: 21px;
	text-shadow: 2px 2px 5px black;
}

#Home .overlay {
	width: 100%;
	height: 500px;
	background-color: rgb(0 0 0 / 53%);
	position: absolute;
	left: 0;
	z-index: 999;
}

/*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/
#About .about-img {
	border: 8px solid #1977cc;
	border-radius: 5px;
	width: 100%;
}
#About .card-header {
	background-color: #1977cc;
}
#About .card-link {
	color: white;
	font-size: 20px;
	font-weight: 600;
}

/*--------------------------------------------------------------
# Academics Page
--------------------------------------------------------------*/
#Academics .card-row {
	background-color: #1977cc;
	border-radius: 12px;
	box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
}
#Academics .card-img {
	padding: 18px 0px 18px 7px;
	width: 100%;
}
#Academics .card-text {
	text-align: center;
	padding-top: 30px;
	font-size: 40px;
	font-weight: 700;
	color: #fff;
}
#Academics .card-text1 {
	text-align: center;
	color: #fff;
	font-weight: 500;
}

#Academics .departments-box {
	border: 3px solid #1977cc;
	position: relative;
	border-radius: 20px;
}
#Academics .departments-icon-box {
	width: 70px;
	background-color: #1977cc;
	padding: 9px;
	border-radius: 47px;
	position: absolute;
	left: 279px;
	top: -35px;
}

#Academics .icon-right {
	left: 71rem !important;
}
#Academics .icon-left {
	left: 6rem !important;
}
/*--------------------------------------------------------------
# Facilities Page
--------------------------------------------------------------*/
#Facilities .list-row {
	background-color: #fff;
	border-radius: 10px;
	padding: 41px;
	box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
}
#Facilities .list-icon {
	font-size: 21px;
	color: #1977cc;
}

#Facilities .list-text {
	font-size: 14px;
	padding-left: 13px;
	font-weight: 600;
}
#Facilities .laboratories-img {
	width: 90%;
	border-radius: 20px;
	height: 600px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
#Facilities .hostel-bg-img {
	background-image: url(../img/hostel-bg-img.jpg);
	overflow: hidden;
	height: 400px;
	background-position: revert;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	opacity: 0.75;
}
#Facilities .side-border {
	border-right: 2px solid #ffeeee;
}
/*--------------------------------------------------------------
# Admission Page
--------------------------------------------------------------*/
#Admission .para-box {
	width: 62rem;
	background-color: #f1f7fd;
	padding: 31px;
	border-radius: 17px;
	margin: auto;
	box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
}
/*--------------------------------------------------------------
# Courses Offered Page
--------------------------------------------------------------*/
#coursesOffered .pharmacy-img {
	width: 90%;
	border-radius: 20px;
	height: 600px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
#Contact .detail-box {
	background-color: #fff;
	padding: 34px;
	box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
	border-radius: 7px;
}

#Contact .detail-box1 {
	background-color: #fff;
	padding: 10px;
	box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
	border-radius: 7px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	color: #444444;
	font-size: 14px;
	background: #f1f7fd;
}

#footer .footer-top {
	padding: 60px 0 30px 0;
	background: #fff;
	box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#footer .footer-top h4 {
	font-size: 20px;
	font-weight: bold;
	color: #444444;
	position: relative;
	padding-bottom: 12px;
}

#footer .footer-top .footer-links {
	margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#footer .footer-top .footer-links ul i {
	padding-right: 2px;
	color: #1c84e3;
	font-size: 18px;
	line-height: 1;
}

#footer .footer-top .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}

#footer .footer-top .footer-links ul a {
	color: #777777;
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
	text-decoration: none;
	color: #1977cc;
}

#footer .footer-top .social-links .iconBox {
	font-size: 17px;
	display: inline-block;
	background: #1977cc;
	color: #fff;
	line-height: 1;
	padding: 8px 0;
	margin-right: 10px;
	border-radius: 17%;
	text-align: center;
	width: 30px;
	height: 30px;
	transition: 0.3s;
}
#footer .footer-top .social-links span {
	color: #777777;
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}
#footer .footer-top .social-links .iconBox:hover {
	background: #1c84e3;
	color: #fff;
	text-decoration: none;
}

/*--------------------------------------------------------------
# Media Query 
--------------------------------------------------------------*/

/*iphone 6/7/8 iphone x media query*/
@media screen and (max-width: 380px) and (min-width: 331px) {
	#Home .bg-img-title {
		padding-top: 0px;
		color: white;
		font-size: 4rem;
		text-shadow: 2px 2px 5px black;
		padding-left: 2rem;
	}

	#Home .bg-img-para {
		padding-left: 2rem;
		font-size: 19px;
	}

	.section-bg-img-title:after {
		width: 44%;
		margin-left: 0px;
	}

	#Academics .departments-icon-box {
		left: 133px;
	}
	#Academics .icon-right {
		left: 8rem !important;
	}
	#Academics .icon-left {
		left: 8rem !important;
	}

	#Facilities .side-border {
		border-right: none;
	}
	#Facilities .hostel-bg-img {
		height: 100%;
	}
	#Facilities .laboratories-img {
		width: 100%;
		height: 100%;
	}
	#Admission .para-box {
		width: 20rem;
	}
	#coursesOffered .pharmacy-img {
		width: 100%;
		height: 100%;
	}
	.txt {
		text-align: center !important;
	}
}

/*iphone 6/7/8 plus  media query*/
@media screen and (max-width: 700px) and (min-width: 381px) {
	#Home .bg-img-title {
		padding-top: 0px;
		color: white;
		font-size: 4rem;
		text-shadow: 2px 2px 5px black;
		padding-left: 2rem;
	}

	#Home .bg-img-para {
		padding-left: 2rem;
		font-size: 17px;
	}

	.section-bg-img-title:after {
		width: 44%;
		margin-left: 0px;
	}
	#Academics .departments-icon-box {
		left: 160px;
	}
	#Academics .icon-right {
		left: 10rem !important;
	}
	#Academics .icon-left {
		left: 10rem !important;
	}

	#Facilities .side-border {
		border-right: none;
	}
	#Facilities .hostel-bg-img {
		height: 100%;
	}
	#Facilities .laboratories-img {
		width: 100%;
		height: 100%;
	}
	#Admission .para-box {
		width: 23rem;
	}
	#coursesOffered .pharmacy-img {
		width: 100%;
		height: 100%;
	}
	.txt {
		text-align: center !important;
	}
}

/*ipad  media query*/
@media screen and (max-width: 1024px) and (min-width: 768px) {
	#Home .bg-img-title {
		padding-top: 0px;
		color: white;
		font-size: 4rem;
		text-shadow: 2px 2px 5px black;
		padding-left: 3rem;
	}
	#Home .bg-img-para {
		padding-left: 3rem;
		font-size: 18px;
	}

	.section-bg-img-title:after {
		width: 25%;
		margin-left: 2px;
	}
	#Academics .departments-icon-box {
		left: 315px;
	}
	#Academics .icon-right {
		left: 20rem !important;
	}
	#Academics .icon-left {
		left: 20rem !important;
	}
	#Facilities .hostel-bg-img {
		height: 100%;
	}
	#Facilities .laboratories-img {
		width: 100%;
		height: 100%;
	}
	#Admission .para-box {
		width: 44rem;
	}
	#coursesOffered .pharmacy-img {
		width: 100%;
		height: 100%;
	}
	.txt {
		text-align: center !important;
	}
}
.view-pdf-btn {
	background-color: #1977cc;
}
.view-pdf-btn:hover {
	background-color: #298ce5 !important;
	color: #fff;
}
