@charset "utf-8";
/* CSS Document */
body {
  background: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}
.container {
  position: relative;
}
/*=============================
Top Section==================*/
.top-bar {
  background: #0b3e6b;
  padding: 3px 0;
}
ul.social-link {
  margin: 6px 0 0 0;
  padding: 0;
  text-align: right;
}
ul.social-link li {
  display: inline-block;
  padding-left: 15px;
}
ul.social-link li span {
  display: inline-block;
  background: #fff;
  height: 18px;
  width: 18px;
  text-align: center;
  border-radius: 50%;
}
ul.social-link li span i {
  font-size: 11px;
  color: #0b3e6b;
  font-family: "FontAwesome";
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  font-style: normal;
  margin: 0;
}

ul.top-address {
  margin: 4px 0 0 0;
  padding: 0;
}
ul.top-address li {
  display: inline-block;
  font-size: 15px;
  padding-right: 39px;
}
ul.top-address li i {
  font-size: 18px;
  color: #fcfeff;
  font-family: "FontAwesome";
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  font-style: normal;
}
ul.top-address li a {
  color: #fcfeff;
  text-decoration: none;
}

/*========================
Main Section============*/
.main-bar {
  background: #fef4d9;
  text-align: center;
  padding: 4px 0;
}
.main-blk {
  display: inline-block;
  vertical-align: middle;
}
.main-blk {
  font-size: 18px;
  line-height: 25px;
  color: #272033;
  font-family: "Nirmala UI";
  font-weight: bold;
  margin-top: 20px;
  padding: 0;
  text-transform: uppercase;
}
.main-blk-r {
  text-align: right;
}
.main-blk-l {
  text-align: left;
}
.main-blk span {
  font-size: 35px;
  color: #054f95;
}
.main-blk b {
  font-size: 12px;
}
.logo {
  display: inline-block;
  vertical-align: middle;
}
.logo img {
  max-width: 100%;
}
/*==============================
Navigation Section============*/
.navbar-default {
  background: #ee5a15;
  border-left: 0;
  border-bottom: 3px solid #fff;
}
.navbar {
  min-height: 0;
  border-radius: 0;
  margin: 0;
  text-align: center;
}
.navbar-brand {
  height: auto;
  padding: 15px;
}
.navBlock {
  float: none;
  padding: 0;
  margin: 0 auto;
}
.navbar-nav {
  float: none;
}
.navbar-nav li {
  font-size: 14px;
  font-weight: 600;
  border-right: 1px solid #ff996a;
  text-transform: uppercase;
}
.navbar-nav li:last-child {
  border: none;
}
.navbar-nav > li > a {
  color: #fff !important;
  padding: 10px 16px;
}
.navbar-nav > li > a:hover {
  background: #6d381f !important;
}
.navbar-nav > li > a.active {
  background: #6d381f !important;
}
.navbar-toggle {
  margin-top: 8px;
}
.nav-btn {
  display: inline-block;
  font-size: 22px;
  line-height: 34px;
  color: #000;
  font-weight: 900;
  text-align: center;
  width: 122px;
  height: 36px;
  outline: none;
  background: #ffd801;
  border: 1px solid #fff;
  border-radius: 10px;
  margin-top: 8px;
}

/*2nd ul*/
.navbar-nav ul {
  position: absolute;
  top: 100%;
  left: 0px;
  width: 250px;
  z-index: 1000;
  background-color: #f1773e;
  padding: 0px;
  border-radius: 5px;

  opacity: 0;
  visibility: hidden;
  display: block;
  transform: translateY(50px);
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
}
.navbar-nav li:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
}
.navbar-nav ul li {
  width: 100%;
  text-align: left;
  border-right: none;
  line-height: 38px;
  list-style: none;
  margin: 0px;
  border-bottom: 1px solid #ddd;
}
.navbar-nav ul li a {
  font-weight: 500;
  font-size: 15px;
  padding: 10px 11px;
  color: #fff;
}
.navbar-nav ul li a:hover {
  color: #f5ecec !important;
  text-decoration: none;
}
.navbar-nav ul li a.active {
  color: #f3e00d !important;
}

.navbar-nav ul li a.active.secondlabel {
  color: #f5ecec !important;
}
/*.navbar-nav ul ul{
	position:absolute;
	top:80px;
	left:100%;	
	}*/
.navbar-nav ul ul {
  position: absolute;
  top: 0;
  left: 100%;
  border-left: 1px solid #ddd;
  visibility: visible;
}
/*ul.navbar-nav > li:hover > ul, ul.navbar-nav > li:hover > ul li:hover > ul{
	opacity:1;
	visibility:visible;	
	}*/
.navbar-nav li.has-sub ul {
  visibility: hidden;
}

.navbar-nav li.has-sub:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
}

.caret {
  color: #f3e00d;
  margin-left: 4px;
  border-top: 6px dashed;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
}
/*.navbar-default .navbar-nav > li.has-sub > a::after,.navbar-default .navbar-nav > li > ul li.has-sub > a::after{
	content: '\f107';
	font-family: 'FontAwesome';
	margin-left: 10px;
	}
.navbar-default .navbar-nav > li > ul li.has-sub > a::after{content:"\f105"}*/

/*==========================
Bannar Section============*/
.carousel-inner > .item > a > img,
.carousel-inner > .item > img,
.img-responsive,
.thumbnail a > img,
.thumbnail > img {
  height: auto;
  max-width: 100%;
}
.carousel-indicators li {
  background: #fff;
  border: 2px solid #fff;
  margin: 0 10px !important;
}
.carousel-indicators li.active {
  background: #005aa9;
  border: 2px solid #fff;
}

.carousel-control {
  opacity: 1;
}
.carousel-control.left,
.carousel-control.right {
  background-image: none;
}
.carousel-control .glyphicon-menu-left {
  left: 50%;
  margin-left: 8px;
}
.carousel-control .glyphicon-menu-right {
  right: 50%;
  margin-right: 8px;
}
.carousel-control .glyphicon-menu-left,
.carousel-control .glyphicon-menu-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
  background: #e2e4f9;
  padding: 7px 15px;
}
.glyphicon-menu-left:before,
.glyphicon-menu-right:before {
  color: #ee5a15;
}
/*==========================
Welcome Section============*/
.welcome-sec {
  padding: 30px 0 50px;
}
.sec1-lft {
  width: 100%;
  display: table;
}
.common-head {
  font-size: 30px;
  color: #005aa8;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin: 30px 0 15px 0;
}
.common-innerhead {
  font-size: 30px;
  color: #005aa8;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin: 15px 0 15px 0;
}
.sec1-lft img {
  max-width: 100%;
}
.sec1-lft img.home-img {
  border: 2px solid #ccc;
  border-radius: 5px;
}
.common-para {
  font-size: 15px;
  line-height: 26px;
  font-family: "Open Sans", sans-serif;
  color: #404040;
  margin: 15px 0 0 0;
}
.sec1-rgtBox {
  display: table;
  width: 100%;
  background: #005aa9;
  padding: 10px;
  margin-top: 30px;
  border-radius: 3px;
}
.sec1-rgtBox h1 {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin: 5px 0 12px 0;
}
.s1-innrBox {
  background: #fff;
  padding: 2px 2px 46px 2px;
}
.s1-innrBox ul {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
.s1-innrBox ul li {
  display: inline-block;
  background: #f4faff;
  list-style: none;
  border-bottom: 1px solid #e1e1e1;
  padding: 13px 15px 5px;
}
.s1-innrBox ul li:nth-child(2) {
  background: #fff;
}
.s1-innrBox ul li:last-child {
  border: none;
}
.s1-innrBox ul li span {
  font-size: 15px;
  line-height: 15px;
  color: #ee5a15;
  font-family: "Be Vietnam";
  font-weight: bold;
  text-decoration: underline;
}
.s1-innrBox ul li p {
  font-size: 15px;
  line-height: 22px;
  color: #5a5a5a;
}
.btn-primary {
  float: right;
  color: #fff;
  font-size: 15px;
  background-color: #f26800 !important;
  border-color: #f26800 !important;
  font-weight: 600;
  padding: 0px 10px 3px 10px;
  margin: 10px 10px 0 0;
}
.btn-primary:hover {
  background: #f26800;
  border-color: #f26800 !important;
}
.form-position {
  float: left;
  width: 100%;
  padding: 0 10px;
}
.frmElement {
  float: left;
  width: 100%;
  margin-top: 10px;
}
.input-fields {
  float: left;
  width: 100%;
  background: #f7f7f7;
  font-size: 18px;
  color: #000;
  border: 1px solid #d7d7d7;
  height: 40px;
  font-weight: 300;
  font-style: italic;
  outline: none;
  padding-left: 10px;
}
.user-btn {
  background-color: #6b6b6b !important;
  border-color: #6b6b6b !important;
}
.user-btn:hover {
  background: #6b6b6b !important;
  border-color: #6b6b6b !important;
}
/*==========================
Message Section============*/
.message-sec {
  background: url(../images/mesg-strp.jpg) no-repeat center bottom;
}
/*.message-sec{background:url(../images/mesg-strp.jpg) no-repeat center center;}*/
.prncplBox {
  width: 100%;
  display: table;
  text-align: center;
  position: relative;
  border: 2px solid #034287;
}
.prnc-nm {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #1d7dd0;
  font-size: 18px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 4px 0;
}
.prnc-nm span {
  font-size: 16px;
  font-weight: 400;
}
.prnc-nm span.prindeg {
  font-size: 14px;
}
#exTab1 {
  background-color: #fef3d9;
  width: 100%;
  display: table;
  padding-bottom: 10px;
}
.nav-pills > li {
  width: 50%;
  text-align: center;
  border-bottom: 1px solid #005aa9;
}
.nav-pills > li + li {
  margin-left: 0;
}
.nav-pills > li a {
  font-size: 24px;
  color: #005aa9;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:focus,
.nav-pills > li.active > a:hover {
  background: #005aa9;
}

.nav > li > a:focus,
.nav > li > a:hover {
  background: #fef3d9;
}

#exTab1 .nav-pills > li > a {
  border-radius: 0;
}

#exTab1 .tab-content {
  width: 100%;
  height: 150px;
  display: table;
  padding: 10px 10px 0 20px;
}
#exTab1 .tab-content h3 {
  color: #404040;
  font-size: 15px;
  line-height: 24px;
  margin: 0;
  padding: 10px 0 10px 120px;
  position: relative;
}
#exTab1 .tab-content h3 img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.msg-btn {
  margin-top: 10px;
}

.prnBlock {
  width: 100%;
  display: table;
  /*padding: 34px 0;*/
  padding: 55px 0;
  color: #fff;
}
.prnc-hd {
  font-size: 26px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.prnc-para {
  font-size: 15px;
  line-height: 24px;
  margin: 0;
}
.main-section {
  padding: 15px 0px 30px 0px;
}
/*==========================
Section 1============*/
.section-1 {
  padding: 50px 0;
  text-align: center;
}
.sec1-head {
  margin: 0;
}
.sec1Box {
  background: #fef4d9;
  display: table;
  width: 100%;
  border: 1px solid #d5d5d5;
  padding: 6px 0 6px 20px;
  position: relative;
  margin-top: 50px;
  overflow: hidden;
  border-radius: 5px;
  height: 250px;
}
.sec1Box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #005aa8;
  width: 5px;
  height: 100%;
}
.s1-hd {
  font-size: 24px;
  margin: 18px 0 0 0;
}
.s1-pra {
  margin: 17px 0 12px 0;
  line-height: 24px;
}
.read-more {
  font-size: 15px;
  text-decoration: underline;
  font-weight: 600;
}
.read-more a,
.read-more a:hover {
  color: #ee5a15;
}
.img-fluid {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}
.photogall .img-fluid,
.prncplBox .img-fluid {
  margin-top: 0px;
}
/*.sec1Box .common-head {
    font-size: 22px;
}*/

/*==========================
Section 2============*/
.section-2 {
  padding: 50px 0;
  background: #f8f8f8;
}
.sec2Box {
  display: table;
  width: 100%;
  background: #f5c884;
  border: 1px solid #e9e9e9;
  padding-bottom: 20px;
  border-radius: 6px;
  overflow: hidden;
}
.s2box-head {
  background: #005aa9;
  font-size: 22px;
  line-height: 34px;
  color: #fff;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  padding: 7px 0 7px 12px;
}
.s2box-para {
  font-size: 15px;
  line-height: 26px;
  color: #373737;
  margin: 23px 0 0 0;
}
.s2-imgmrn {
  margin: 30px auto 0;
  display: block;
}

ul.s2-list {
  padding: 0 0 0 0;
  margin-top: 60px;
}
ul.s2-list li {
  background: #3259ad;
  width: 100%;
  text-align: center;
  font-size: 20px;
  line-height: 22px;
  list-style: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  padding: 15px 0;
  text-transform: uppercase;
  margin-top: 15px;
  border-radius: 5px;
  -webkit-box-shadow: 1px 2px 0 3px #e3e3e3;
  box-shadow: 1px 2px 0 3px #e3e3e3;
}
ul.s2-list li a,
ul.s2-list li a:hover {
  color: #fff;
  text-decoration: none;
}
ul.s2-list li:nth-child(2) {
  background: #7d8f26;
}
ul.s2-list li:nth-child(3) {
  background: #0c91e2;
}
ul.s2-list li:nth-child(4) {
  background: #ec4733;
}
ul.s2-list li:nth-child(5) {
  background: #0373ae;
}
ul.s2-list li:nth-child(6) {
  background: #f99123;
}

.s2-tenderBox {
  margin: 60px auto 0;
  width: 100%;
  height: 390px;
}
.s2-innrBox {
  background: #fff;
  padding: 12px;
  width: 100%;
  display: table;
}
.s2-innrBox ul {
  padding: 0;
  margin: 0 0 34px 0;
}
.s2-innrBox ul li {
  background: url(../images/ten-arw.png) no-repeat left 12px;
  font-size: 15px;
  list-style: none;
  font-style: italic;
  font-weight: 600;
  border-bottom: 1px solid #e5e5e5;
  padding: 8px 0 8px 28px;
}
.s2-innrBox ul li a {
  color: #f26800;
  text-decoration: underline;
}
.s2-innrBox ul li:last-child {
  border: none;
}

.s2-photoBox {
  display: table;
  width: 100%;
  background: #fff;
  padding: 10px 10px 13px 10px;
  margin-top: 60px;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
  height: 390px;
}
.s2-photoBox h1 {
  font-size: 24px;
  color: #005aa9;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin: 5px 0 12px 0;
}
ul.img-list {
  padding: 0;
  margin: 0;
}
ul.img-list li {
  width: 46.3%;
  list-style: none;
  display: inline-block;
  vertical-align: top;
  margin: 3px 5.3px;
  position: relative;
}
.glry-w {
  width: 100%;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: rgba(0, 90, 169, 0.4);
}
ul.img-list li:hover .overlay {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
/*==========================
Logos Strip============*/
.logos-strip {
  background: #fff;
  padding: 25px 0;
}
/*==========================
Footer Section============*/
footer {
  background: url(../images/ftr-bg.jpg) no-repeat center top;
  padding: 55px 0 0 0;
  height: 400px;
  position: relative;
  border-top: 5px solid #f26800;
}
ul.ftr-list {
  width: 100%;
  margin: 0;
  padding: 0;
}
ul.ftr-list li {
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  font-size: 22px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
ul.ftr-list li span {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  text-transform: none;
}
ul.ftr-list li:first-child {
  margin-bottom: 20px;
}
.ftr-facil {
  width: 100%;
}
.ftr-facil h1 {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-top: 0;
  padding-bottom: 5px;
  border-bottom: 1px solid #fff;
}
ul.facil-points {
  width: 100%;
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
}
ul.facil-points li {
  width: 100%;
  background: url(../images/ftr-bult.png) no-repeat left 7px;
  font-size: 15px;
  padding: 2px 0 2px 20px;
}
ul.facil-points li a,
ul.facil-points li a:hover {
  color: #fff;
}
ul.link-points {
  width: 100%;
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
}
ul.link-points li {
  width: 100%;
  font-size: 15px;
}
ul.link-points li a,
ul.link-points li a:hover {
  color: #fff;
  text-decoration: none;
}
ul.link-points li i {
  font-size: 18px;
  color: #fcfeff;
  font-family: "FontAwesome";
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  font-style: normal;
}
.ftr-folw {
  margin-top: 25px;
}
ul.ftr-social {
  padding: 0;
  margin: 10px 0 0 0;
}
ul.ftr-social li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
ul.ftr-social li span {
  display: inline-block;
  background: #fff;
  height: 36px;
  width: 36px;
  text-align: center;
  border-radius: 50%;
}
ul.ftr-social li span i {
  font-size: 20px;
  line-height: 36px;
  color: #0b3e6b;
  font-family: "FontAwesome";
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  font-style: normal;
  margin: 0;
}
.google-map {
  width: 100%;
  display: inline-block;
  vertical-align: middle;
}
.footer-btm {
  background: #f26800;
  padding: 15px 0;
  text-align: center;
}
.footer-btm p {
  font-size: 14px;
  color: #fff;
  margin: 0;
}
.footer-btm p img {
  margin: 0 8px;
}
/*==========================
Scrolling Icon============*/
#toTop {
  background-color: #005aa8;
  border-radius: 4px 4px 0 0;
  bottom: 0;
  color: #fff;
  display: none;
  height: 40px;
  position: fixed;
  right: 15px;
  text-align: center;
  text-transform: uppercase;
  width: 48px;
  opacity: 0.9;
  z-index: 100000;
  transition: all 0.2s ease-in-out 0s;
  font-size: 28px;
}

/*=======Department=======*/
.department-sec {
  padding: 15px 0 0;
}
.common-head {
  font-size: 22px;
  color: #005aa8;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin: 30px 0 15px 0;
}
.common-innerhead {
  font-size: 26px;
  color: #005aa8;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  /*margin: 15px 0 0 0;*/
  text-align: center;
  margin-top: 0px;
}
.phys-rgt {
  float: left;
  width: 100%;
  margin-top: 30px;
}
.phys-rgt img {
  max-width: 100%;
  width: 100%;
}
.commonphys-rgt {
  float: left;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
}
.commonphys-rgt img {
  max-width: 100%;
  width: 100%;
}
#deptTab1 {
  background-color: #ffffff;
  width: 100%;
  display: table;
  padding-bottom: 10px;
  border: 1px solid #e9e9e9;
  /*margin-top: 70px;*/
  margin-top: 0px;
  line-height:1.6;
}
.deptnav-pills > li {
  width: 33.3%;
  text-align: center;
  background: #e7e7e7;
  border-bottom: none;
}
.deptnav-pills > li + li {
  margin-left: 0;
}
.deptnav-pills > li a {
  font-size: 20px;
  padding: 7px 15px;
  color: #4f4f4f;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.deptnav-pills > li.active > a,
.deptnav-pills > li.active > a:focus,
.deptnav-pills > li.active > a:hover {
  background: #005aa9;
}

.deptnav-pills > li > a:focus,
.deptnav-pills > li > a:hover {
  background: #e7e7e7;
}

#deptTab1 .nav-pills > li > a {
  border-radius: 0;
}

#deptTab1 .tab-content {
  width: 100%;
  height: 150px;
  display: table;
  padding: 0 10px;
}
#deptTab1 .tab-content h3 {
  color: #404040;
  font-size: 15px;
  line-height: 24px;
  margin: 0;
  padding: 20px 10px;
  position: relative;
}
ul.fac-list {
  margin: 0;
  width: 100%;
  display: table;
  padding: 30px 0;
}
ul.fac-list li {
  list-style: none;
  display: inline-block;
  width: 31%;
  position: relative;
  text-align: left;
  border-right: 1px solid #e9e9e9;
  margin-right: 2%;
  margin-bottom: 2%;
  /*float: left;*/
}
ul.fac-list li:last-child {
  margin-right: 0;
  border: none;
}
ul.fac-list li img {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
ul.fac-list li p {
  font-size: 12px;
  line-height: 30px;
  color: #000;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}
ul.tb3-list {
  margin: 0;
  padding: 15px 0;
}
ul.tb3-list li {
  background: url(../images/bult-icn.png) no-repeat left 5px;
  font-size: 14px;
  list-style: none;
  color: #000;
  padding-left: 30px;
  margin-top: 10px;
}
.department-sec2 {
  background: #f8f8f8;
  margin: 40px 0;
}
.img-block img {
  max-width: 100%;
  width: 100%;
}

.show-tab,
.show-mob {
  display: none;
}
.show-desk {
  display: block;
}

/*------------------------------------*/

.commonsec1-rgtBox {
  margin-top: 20px;
  display: table;
  width: 100%;
  background: #005aa9;
  padding: 10px;
  margin-top: 30px;
  border-radius: 3px;
}
.commonsec1-rgtBox h1 {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin: 5px 0 12px 0;
}
.pagination_link {
  float: right;
}
#page_links {
  background-color: #fa8d01;
  border: 1px solid #000000;
  font-size: 18px;
  padding: 0 10px;
}
#page_a_link {
  font-family: "Open Sans";
  font-size: 12px;
  border: 1px #000000 solid;
  color: #fff;
  background-color: #1c7bcc;
  padding: 2px 8px;
  margin: 3px;
  text-decoration: none;
}
#nt-example1 li {
  border-bottom: 1px solid #eee;
  line-height: 25px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  font-size: 14px;
  list-style: none;
}
#nt-example1 span {
  font-weight: 600;
  font-size: 12px;
  color: #1c7bcc;
}
#nt-example1 li h5 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}
ul#nt-example1 {
  padding-left: 0px;
}
.navbar-nav ul li a.active {
  color: #054f95;
  font-weight: bold;
}
.navbar-nav ul li:hover {
  background-color: #0b3e6b;
}
article {
  display: inline-block;
  width: 18%;
  margin: 0 auto;
  margin-right: auto;
  height: auto;
  margin-right: 1%;
}
.portfolio-item {
  border: 1px solid #ddd;
  margin-bottom: 20px;
  padding: 0 0 0px;
}
.portfolio-item .gallery_cat_img {
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  max-width: 100%;
  min-height: 135px;
}
.folio-info-gallery h5 {
  text-transform: none;
  padding: 0px 5px;
}
.main-hdng h3 {
  margin-bottom: 20px;
  font-size: 20px;
}
.separetor-middle {
  width: 50%;
  height: 1px;
  float: none;
  background: #ececec;
  margin: 10px auto 35px;
}
.separetor-middle-inner {
  width: 50%;
  height: 100%;
  background: #ee5a15;
  margin: 0px auto;
  position: relative;
}
.separetor-middle-bullet {
  width: 6px;
  height: 6px;
  background: #ee5a15;
  position: absolute;
  left: 48%;
  top: -2px;
  border-radius: 100%;
}
ul.comlist li {
  margin-bottom: 10px;
}
.abtimg {
  float: left;
  margin: 0 15px;
  border: 2px solid #ccc;
  border-radius: 4px;
  margin-left: 0px;
}
.sub-header {
  text-align: center;
  font-weight: normal;
  margin-left: 13px;
}
.bread-txt {
  color: #ee5a15;
}
.sub-header h3 {
  font-size: 13px;
  color: #27477a;
  font-family: "Roboto", sans-serif;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 28px;
  text-align: left;
  margin-top: 0px;
}
.subhead .sub-header h3 {
  font-size: 24px;
}
.subhead .sub-header {
  margin-left: 0px;
}
.bred_img {
  margin: 20px 0px;
}
.contact-add {
  border: 1px solid #ccc;
  padding: 10px 20px;
  margin-top: 30px;
}
.contact-add h3 {
  margin-top: 0px;
}
.sepp {
  width: 50px;
  height: 2px;
  background: #27477a;
  margin-bottom: 15px;
  display: block;
}
.princial-message-div h2 {
  margin-bottom: 5px;
  font-size: 24px;
  color: #27477a;
  font-family: "Roboto", sans-serif;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 28px;
}
.princial-message-div h4 {
  margin-bottom: 30px;
  color: #abadaf;
  font-style: italic;
  font-size: 14px;
}
.deptselect {
  text-align: center;
  margin-bottom: 20px;
}
.facultydept {
  display: inline-block;
  width: 30%;
}
.staff-profile {
  border: 1px solid #ccc;
  padding: 6px;
  margin-top: 12px;
  margin-bottom: 12px;
  border-radius: 4px;
  min-height: 158px;
}
.staff-profile img {
  border: 1px solid #ccc;
  height: 100%;
  min-height: 100px;
}
.academic-prof {
  border: 1px solid #ccc;
  padding: 6px;
  margin-top: 12px;
  margin-bottom: 12px;
  border-radius: 4px;
  min-height: 158px;
  line-height: 25px;
  display: flex;
  min-height: 195px;
}
.academic-prof img {
  border: 1px solid #ccc;
  height: 100%;
  min-height: 100px;
}

.facultydetails table tr td {
  line-height: 30px;
}
.facultydetails table img {
  border: 2px solid #054f95;
  padding: 3px;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  min-height: 180px;
}
.commonphys-rgt.imgdiv {
  margin-top: 52px;
}
.commonphys-rgt.imgdiv img {
  height: 300px;
}
.comlist li::before {
  content: "\f101";
  position: relative;
  top: 0px;
  left: -17px;
  color: #005aa8;
  font-family: "FontAwesome";
}
.comlist {
  list-style: none;
}
.commol li {
  margin-bottom: 10px;
}
.commol span {
  margin-left: 10px;
}
.yearwise td.yearwisetd a {
  border: 2px solid #8c7c0e;
  padding: 5px 20px;
  clear: both;
  display: inline-block;
  margin-bottom: 22px;
  color: #1c7bcc !important;
}
.dialogBase {
  background-color: #f4f4f4;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  margin-bottom: 30px;
  margin-top: 10px;
}
.dialogBase tr td {
  padding: 0px 4px 4px 4px;
}
.formHeadingBkg td {
  background: #054f95;
  color: #fff;
  font-size: 16px;
  padding: 7px 0;
  text-align: left;
  text-shadow: 1px 1px 1px #333;
  vertical-align: middle;
}
.formHeadingBkg td a {
  color: #fff;
}
.formHeadingBkg td a strong {
  font-size: 16px !important;
}
.dselbkg td {
  padding: 8px !important;
  vertical-align: middle;
}
form#frmRegistration {
  border: 1px solid #ccc;
}
#frmRegistration tr td {
  padding: 0px 10px;
}
#frmRegistration input.form-control,
#frmRegistration textarea.form-control,
#frmRegistration select.form-control {
  margin-bottom: 20px;
}
#frmRegistration .table-responsive table > tbody > tr > td,
#frmRegistration .table-responsive table > tfoot > tr > td {
  border: none;
}
.home .login {
  border: none;
  padding: 0px;
  border-radius: 0px;
}
.login {
  border: 2px solid #ee5a15;
  padding: 50px 30px 30px 30px;
  border-radius: 6px;
}
.login .form-control {
  height: 45px;
  margin-bottom: 10px;
}
.login .ValidationErrors {
  margin: 0 0 9px 0px !important;
}
.login .buttons .btn {
  padding: 6px 50px !important;
  margin-top: 32px;
  background-color: #ee5a15;
  border-color: #ee5a15;
}
.login .register {
  float: right;
  margin-top: 20%;
  background-color: #054f95;
  padding: 28px 32px;
  border-color: #1c7bcc;
  border: 1px solid transparent;
  border-radius: 4px;
  text-transform: uppercase;
}
.login .register a {
  color: #fff;
  font-size: 18px;
}
.login .forgotpwd {
  float: left;
  margin-top: 30px;
  background-color: #ee5a15;
  padding: 6px 12px;
  border-color: #ee5a15;
  border: 1px solid transparent;
  border-radius: 4px;
}
.login .forgotpwd a {
  color: #fff;
  font-size: 14px;
}
.tbl_forgot_pwd .formTextWithBorder {
  margin-top: 30px;
}
.bred_img img {
  border: 1px solid #ccc;
  border-radius: 2px;
}
.abtright {
  margin-top: 60px;
}
/*.singleimg {
    border: 1px solid #ccc;
    padding: 0;
    height: 152px;
    margin-right: 10px;
}*/
.footerimg {
  max-width: 100%;
  height: auto;
  border: 1px solid #ccc;
  /* padding: 9px;
    min-height: 135px;*/
}
.right-caret {
  border-bottom: 6px solid transparent;
  border-top: 6px solid transparent;
  border-left: 6px solid #f3e00d;
  display: inline-block;
  height: 0;
  opacity: 1;
  vertical-align: middle;
  width: 0;
  margin-left: 20px;
}
/*.breadtitle{
	margin-top: 10px;
}*/
.frmElemts label {
  float: left;
  width: 30%;
  padding: 10px 0 0 0;
  height: 50px;
  text-align: left;
}
.inputbg-contact {
  background: #fff;
  height: 41px;
  border-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  width: 65%;
  border: 1px solid #b4b4b4;
  font-size: 15px;
  color: #797777;
  padding: 2px 6px;
  float: left;
}
.submit-bt-contact {
  border: 1px solid #081744;
  width: 20%;
  padding: 10px 15px;
  color: #081744;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  margin: 35px 0 10px 0;
}
textarea.messageBox {
  clear: left;
  clear: right;
  text-align: left;
  width: 65%;
  height: 130px;
  font-size: 15px;
  padding: 5px 3px 0 8px;
  outline: none;
  border-radius: 5px 5px 5px 5px;
  border-color: #c2bfbf;
  margin-left: 20px;
  resize: none;
  margin: 0 auto 5px auto;
  display: block;
  border: 1px solid #b4b4b4;
  color: #797777;
  float: left;
}
.inner-accod {
  margin: 30px 0px;
}
.panel-group.inner-accod .panel {
  margin-bottom: 10px;
}
.inner-accod h4.panel-title {
  font-size: 30px;
  color: #005aa8;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin: 15px 0 15px 0;
  text-align: center;
}
.inner-accod .fa {
  margin-left: 1rem;
}
.contfooter a {
  font-size: 13px;
}
.missionvision-sec {
  padding: 30px 0 50px;
}
.missionvision-sec #exTab1 .tab-content h3 img {
  top: 65%;
}

/*------------------------------------*/
@media (max-width: 1200px) {
  .navbar-nav > li {
    font-size: 14px;
  }
  .navbar-nav > li > a {
    padding: 10px 8px;
  }

  .sec1Box {
    min-height: 224px;
  }
  ul.img-list li {
    width: 45.4%;
  }
  .s2-innrBox ul {
    margin-bottom: 10px;
  }
}
@media (max-width: 1185px) {
  .s1-innrBox ul li {
    padding: 13px 7px 5px;
  }
  .sec1Box {
    min-height: 224px;
  }
}

@media (max-width: 1010px) {
  .show-desk {
    display: none;
  }
  .show-mob {
    display: none;
  }
  .show-tab {
    display: block;
  }

  .main-blk {
    margin-top: 17px;
  }
  .main-blk span {
    font-size: 28px;
  }

  .navbar-nav > li {
    font-size: 11px;
  }
  .navbar-nav > li > a {
    padding: 10px 5px;
  }

  .welcome-sec {
    padding: 10px 0 30px;
  }
  .sec1Box {
    padding: 6px 0 6px 6px;
    min-height: 266px;
  }
  .s1-innrBox ul li {
    padding: 13px 2px 5px 3px;
  }

  .message-sec {
    background: url(../images/mesg-strp.jpg) no-repeat center bottom -12px;
  }
  .prnBlock {
    padding: 10px 0;
  }
  .prnc-para {
    font-size: 14px;
    line-height: 22px;
  }

  ul.s2-list {
    margin-top: 50px;
  }
  .s2-tenderBox {
    margin: 52px auto 0;
  }
  .s2-photoBox {
    margin-top: 53px;
  }
  ul.s2-list li {
    font-size: 15px;
  }
  ul.img-list li {
    width: 43.8%;
  }

  /*=======Department=======*/
  .department-sec {
    padding: 0;
  }
  #deptTab1 {
    margin-top: 30px;
  }
  .deptnav-pills > li a {
    font-size: 20px;
    padding: 10px 10px;
  }
  .department-sec2 {
    margin: 50px 0;
  }

  ul.ftr-list li {
    font-size: 18px;
    line-height: 22px;
  }
  .ftr-facil h1 {
    font-size: 16px;
  }
  ul.link-points li {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .show-desk {
    display: none;
  }
  .show-tab {
    display: none;
  }
  .show-mob {
    display: block;
  }

  ul.top-address li {
    padding: 0;
  }
  ul.social-link {
    padding: 0;
  }
  ul.social-link li {
    padding-left: 6px;
  }

  .main-bar {
    padding: 10px 0;
  }
  .main-blk {
    margin: 10px 0 0 0;
  }
  .main-blk-l {
    text-align: center;
  }

  .navbar {
    padding: 0px 0;
  }
  .navBlock {
    float: left;
  }
  .navbar-nav {
    margin: 10px 0;
  }
  .navbar-nav li {
    font-size: 14px;
    border: none;
    text-align: left;
  }
  .navbar-default .navbar-toggle {
    background: #054f95;
  }
  .navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
  }
  .navbar-default .navbar-toggle:focus,
  .navbar-default .navbar-toggle:hover {
    background-color: #4389ca;
  }

  .carousel-control .glyphicon-menu-left,
  .carousel-control .glyphicon-menu-right {
    background: none;
  }
  .carousel-inner > .item > a > img,
  .carousel-inner > .item > img,
  .img-responsive,
  .thumbnail a > img,
  .thumbnail > img {
    height: 165px;
  }

  .common-head {
    font-size: 26px;
    text-align: center;
    margin: 15px 0 20px;
  }
  .common-innerhead {
    font-size: 26px;
    text-align: center;
    margin: 15px 0 20px;
  }
  .s1-innrBox ul li {
    padding: 13px 10px 5px;
  }
  .sec1-rgtBox {
    margin-top: 20px;
  }

  .message-sec {
    background: none;
  }
  #exTab1 {
    margin-top: 30px;
  }
  #exTab1 .tab-content {
    height: 202px;
  }
  .prnBlock {
    padding: 0;
    margin-top: 20px;
    color: #2d2d2d;
  }

  .section-1 {
    padding: 10px 0 30px;
  }
  .s1-hd {
    margin-bottom: 18px;
  }
  .sec1Box {
    margin-top: 20px;
    min-height: auto;
  }

  .section-2 {
    padding: 0 0 30px;
  }
  ul.s2-list {
    margin-top: 30px;
  }
  .sec2Box {
    margin-top: 30px;
  }
  .s2-photoBox {
    margin-top: 30px;
  }
  ul.img-list li {
    width: 30.3%;
  }

  /*=======Department=======*/
  .deprt-head {
    margin: 15px 0 0 0;
    text-align: left;
  }
  .deprt-para {
    margin-top: 12px;
  }
  .phys-rgt {
    margin-top: 20px;
  }
  .department-sec2 {
    margin: 30px 0;
  }
  .deptnav-pills > li a {
    font-size: 16px;
    padding: 10px 0px;
  }
  ul.fac-list {
    padding: 25px 0 10px;
  }
  ul.fac-list li {
    width: 100%;
    margin: 0 0 20px 0;
  }
  ul.fac-list li:last-child {
    margin: 0;
  }
  ul.fac-list li {
    border: none;
  }
  ul.tb3-list li {
    font-size: 16px;
  }
  ul.fac-list li img {
    width: 100px;
  }

  footer {
    padding: 25px 0;
    height: auto;
    background-size: cover;
  }
  .google-map {
    margin-top: 10px;
  }
  #toTop {
    bottom: 332px;
  }
  /*.footerimg {
    margin-bottom: 30px;
 }*/
  .singleimg {
    text-align: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 500px) {
  ul.img-list li {
    width: 46.1%;
  }
  .submit-bt-contact {
    width: 100%;
  }
  input#code_captcha {
    width: 100% !important;
  }
}

/*=======Animation=======*/
.animated {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUp {
  from {
    transform: translate3d(0, 30px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    transform: translate3d(0, 30px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/* =========Evenys & Activity========= */
.single-side-left {
  width: 100%;
  margin: 0 50px 0 0;
  float: left;
}
.single-sidebar-widget {
  margin-bottom: 50px;
}
.single-sidebar-widget:last-child {
  margin-bottom: 0;
}
.single-sidebar-widget .special-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.single-sidebar-widget .special-links li:last-child {
  margin-bottom: 0;
}
.single-sidebar-widget .special-links li a {
  background: #f5f2f2;
  border-left: 5px solid #f5f2f2;
  color: #242424;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
  position: relative;
  padding: 8px 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.single-sidebar-widget .special-links li:hover a,
.single-sidebar-widget .special-links li.active a {
  /* background: #39b49b; */
  background: #ee5a15;
  color: #fff;
  border-left: 5px solid #064d3e;
}
.single-sidebar-widget .special-links li:hover a:after,
.single-sidebar-widget .special-links li.active a:after {
  color: #fff;
}
.single-sidebar-widget .special-links li a:after {
  content: "\f101";
  font-family: "FontAwesome";
  position: absolute;
  top: 0;
  right: 20px;
  line-height: 42px;
  color: #6a6969;
  font-weight: normal;
}

.services_tab h3 {
  font-size: 22px !important;
  font-weight: 700;
}
.services_tab span.date {
  font-size: 16px;
  font-weight: 600;
  color: #f78738;
  margin-bottom: 10px;
}
.services_tab .photo {
  width: 100%;
  padding: 4px;
  border: 1px solid #dddddd;
  width: 24%;
  margin: 5px 2px;
  height: 150px;
}
.tab-content {
  float: left;
  width: 98%;
  margin-top: 0px;
}
.dept_img{
	height:240px;	
}