/**
 * If using a CSS pre-processor, tell it to overwrite this file. If not, place
 * your custom CSS modifications here.
 */

 @font-face {font-family: 'nunito-light'; src: url('Nunito-Light.ttf');}
 @font-face {font-family: 'nunito-regular'; src: url('Nunito-Regular.ttf');}
 @font-face {font-family: 'nunito-semibold'; src: url('Nunito-SemiBold.ttf');}
 @font-face {font-family: 'nunito-bold'; src: url('Nunito-Bold.ttf');}

 html, body{
  padding: 0;
  margin: 0;
  font: 16px nunito-regular;
}
a{
  text-decoration: none;
  transition: all 0.6s ease;
}
a:hover,
a:focus{}

/* Genral Styles*/
.front-section{
  padding: 0;
}
.p-0{
  padding: 0;
}
.m-0{
  margin: 0;
}
.height-0{
  min-height: 0 !important;
  height: 0 !important;
  overflow: hidden;
}
.section-heading{
  font: 36px nunito-semibold;
  color: #17a399;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0.75em;
  position: relative;
}
.section-heading::after {
  content: url('../images/sh-underline.png');
  display: block;
  position: absolute;
  top: 25%;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}
.btn-readmore{
  background-color: #ffb100;
  border: 1px solid #ffb100;
  border-radius: 0;
  padding: 10px 20px;
  color: #fff;
}
.btn-readmore:hover,
.btn-readmore:focus{
  background-color: transparent;
  color: #ffb100;
}

/*Navigation*/
.navbar-default{
  background-color: #fafafa;
  border-color: #fafafa;
}
.navbar{
  border-radius: 0px;
  margin-bottom: 0;
}
.navbar .logo img{
    height: 80px;
}

/*Top Navigation */
.top_nav{}
.top_nav .search-block-form{}
.top_nav .search-block-form .form-group{
  margin-top: 8px;
  margin-bottom: 8px;
}
.top_nav .search-block-form .form-group .input-group{
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #ddd;
  background-color: #eeeeee;
}
.top_nav .search-block-form .form-group .input-group .form-search.form-control{
  border: 0;
  background-color: transparent;
  box-shadow: none;
}
.top_nav .search-block-form .form-group .input-group .form-search.form-control::placeholder{}
.top_nav .search-block-form .form-group .input-group .input-group-btn{
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  overflow: hidden;
}
.top_nav .search-block-form .form-group .input-group .input-group-btn .button{
  background-color: transparent;
  border-color: transparent;
  background: url('../images/search-icon.png') no-repeat center center / contain;
  width: 41px;
  height: 100%;
  border-radius: 0;
  color: transparent;
  padding: 0;
}

/* Main Navigation */
.main_nav .navbar-nav{}
.main_nav .navbar-nav li{}
.main_nav .navbar-nav li a{
  color: #2e2d2c;
  font: 16px nunito-semibold;
}
.main_nav .navbar-nav li.active a,
.main_nav .navbar-nav li.active a:hover,
.main_nav .navbar-nav li.active a:focus,
.main_nav .navbar-nav li a:hover,
.main_nav .navbar-nav li a:focus{
  color: #17a399;
  background-color: transparent;
}

/* Navbar item props */
.main_nav .navbar-nav li a::before{
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 auto;
  background-color: #17a399;
  border-radius: 50%;
  text-align: center;
  opacity: 0;
  transition: all 0.6s ease;
}
.main_nav .navbar-nav li.active a::before, 
.main_nav .navbar-nav li a:hover::before, 
.main_nav .navbar-nav li a:focus::before {
  opacity: 1;
}
/* Dropdown */
.main_nav .navbar-nav li.dropdown .dropdown-menu li{}
.main_nav .navbar-nav li.dropdown .dropdown-menu li a{
  color: #2e2d2c;
  background-color: transparent;
}
.main_nav .navbar-nav li.dropdown .dropdown-menu li.active a,
.main_nav .navbar-nav li.dropdown .dropdown-menu li a:hover,
.main_nav .navbar-nav li.dropdown .dropdown-menu li a:focus{
  color: #fff;
  background-color: #17a399;
}
.main_nav .navbar-nav li.dropdown .dropdown-menu li a::before{
  content: '';
  display: none;
  width: 0;
  height: 0;
}

/**** Site Banner ****/
/**********************************/
.banner-wrap{
  position: relative;
  width: 100%;
}
.banner-wrap .banner-img{
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.banner .banner-img-wrap img{
  width: 100%;
  height: auto;
}
.banner-wrap .banner-body{
    font: 48px nunito-semibold;
    color: #17a399;
    position: absolute;
    top: 35%;
    left: 5%;
    transform: translate(0, -50%);
    animation: moveFromLeft 1.5s ease-out;
}
@keyframes moveFromLeft{
  0%{
    opacity: 0;
    transform: translate(-18em, -50%);
    -webkit-transform: translate(-18em, -50%);
  }

  100%{
    opacity: 0.7;
    transform: translateX(0, -50%);
    -webkit-transform: translateX(0, -50%);
  }
}

/* Academics Section */
.acad-section{
  padding: 3em 2em;
}
.acad-wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 2em;
}
.acad-item{
  display: block;
  text-align: center;
  text-decoration: none !important;
  margin-bottom: 20px;
}
.acad-item .acad-ico{
  display: block;
  height: 133px;
  width: 133px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.acad-item .acad-ico.ico1{
  background-image: url("../images/acad-ico1.png");
}
.acad-item:hover .acad-ico.ico1{
  background-image: url("../images/acad-ico1-hvr.png");
}
.acad-item .acad-ico.ico2{
    background-image: url("../images/acad-ico2.png");
}
.acad-item:hover .acad-ico.ico2{
  background-image: url("../images/acad-ico2-hvr.png");
}
.acad-item .acad-ico.ico3{
  background-image: url("../images/acad-ico3.png");
}
.acad-item:hover .acad-ico.ico3{
  background-image: url("../images/acad-ico3-hvr.png");
}
.acad-item .acad-ico.ico4{
    background-image: url("../images/acad-ico4.png");
}
.acad-item:hover .acad-ico.ico4{
  background-image: url("../images/acad-ico4-hvr.png");
}
.acad-item .acad-ico.ico5{
  background-image: url("../images/acad-ico5.png");
}
.acad-item:hover .acad-ico.ico5{
  background-image: url("../images/acad-ico5-hvr.png");
}
.acad-item .acad-title{
  font: 18px nunito-semibold;
  color: #4d4d4d;
}
.acad-item:hover .acad-title{
  color: #ffb100;
}
.acad-foot{
  margin-top: 2em;
  text-align: center;
}
/* Facilities Section */
.fac-section{
  background: url('../images/fac-bg.jpg') no-repeat center center / cover;
  position: relative;
  padding: 3em 2em;
}
.fac-head{
  margin: 0;
  position: absolute;
  left: 35%;
}
.fac-head .section-heading{
  text-align: left;
}
.fac-head .section-heading::after {
  top: 25%;
  left: 0;
  transform: translateX(0%);
}
.fac-item{
  display: flex;
  flex-wrap: wrap;
}
.fac-item .fac-img{
  flex-grow: 0;
  flex-shrink: 0;
  width: 30%;
  overflow: hidden;
  margin-right: 2em;
}
.fac-item .fac-img img{
  width: 100%;
  height: 100%;
}
.fac-item .fac-content{
  width: 65%;
  margin-top: 6%;
}
.fac-item .fac-content .fac-title{}
.fac-item .fac-content .fac-text{}
.fac-foot{
  margin-top: 2em;
  text-align: right;
  position: static;
  bottom: 0;
  right: 0;
}
/* Slick */
.fac-section .slick__arrow{
  position: static;
  height: auto;
  margin: 0;
  transform: none;
  top: 89%;
  left: 34%;
  width: auto;
}
.fac-section .slick-arrow{
  position: static;
  display: inline-block;
  transform: none;
  margin-right: 10px;
}
.fac-section .slick-arrow.slick-prev::before{
  content: url('../images/arrow-prev.png');
}
.fac-section .slick-arrow.slick-next::before{
  content: url('../images/arrow-next.png');
}

/* Highlights Section */
.highlights-fp{
  box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.5);
  -webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.5);
  -moz-box-shadow: 1px 3px 5px 0px rgba(0,0,0,0.5);
  padding: 3em 2em;
}
.highlights-head{}
.hi-item{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-bottom: 1px dashed #bfbfbf;
  padding: 1em;
}
.hi-item .hi-date{
  width: 100%;
}
.hi-item:hover .hi-date{}
.hi-item .hi-date .date-inner{
  display: flex;
  align-items: center;
  justify-content: center;
}
.hi-item:hover .hi-date .date-inner{
  /* background-color: #17a39a; */
}
.hi-item .hi-date .day-month{
  flex-grow: 0;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  font: 20px nunito-regular;
  line-height: 1;
  background-color: #1a1a1a;
  color: #fff;
  padding: 5px;
  margin-right: 5px;
  transition: all 0.6s ease;
}
.hi-item:hover .hi-date .day-month{
  background-color: #17a399;
}
.hi-item .hi-date .year{
  font: 20px nunito-semibold;
  background-color: #1a1a1a;
  color: #fff;
  width: 120px;
  height: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s ease;
}
.hi-item:hover .hi-date .year{
  background-color: #ffb100;
}
.hi-item .hi-content{
  flex-grow: 1;
}
.hi-item .hi-content .hi-title,
.hi-item .hi-content .hi-title a{
  font: 18px nunito-bold;
  color: #1a1a1a !important;
  text-decoration: none !important;
}
.hi-item:hover .hi-content .hi-title,
.hi-item:hover .hi-content .hi-title a{
  color: #17a39a !important;
}
.hi-item .hi-content .hi-body{
  font: 14px nunito-light;
  color: #1a1a1a;
}
.hi-item .hi-content .hi-body .hi-text{
}
.hi-item .hi-content .hi-body .hi-lnk{
  /* text-align: right; */
}
.hi-item .hi-content .hi-body .hi-lnk a{
  color: #ffb100;
  font: 12px nunito-regular;

}
.highlights-foot{
  margin-top: 2em;
  text-align: center;
}
/* Notification Section */
.notification-fp{
  padding: 3em 2em;
}
.notif-item{
  margin-bottom: 10px;
}
.notif-item::after{
  content: '';
  display: block;
  width: 100%;
  border: 1px dashed #17a399;
}
.notif-item .noti-inner{
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.notif-item .notif-date{
  flex-grow: 0;
  flex-shrink: 0;
  border: 1px solid #1a1a1a;
  width: 110px;
  height: 110px;
  margin-right: 10px;
  padding: 5px;
}
.notif-item:hover .notif-date{
  border-color: #17a399;
}
.notif-item .date-inner{
  background-color: #1a1a1a;
  color: #fff;
  text-align: center;
  padding: 1.5em 0.5em;
  width: 100%;
  height: 100%;
  transition: all 0.6s ease;
}
.notif-item:hover .date-inner{
  background-color: #17a399;
}
.notif-item .date-inner .day{
  font: 32px nunito-bold;
  line-height: 1;
}
.notif-item .date-inner .month-year{
  font: 24px nunito-semibold;
}
.notif-item .notif-content{
  flex-grow: 1;
}
.notif-item .notif-content .notif-title,
.notif-item .notif-content .notif-title a{
  font: 18px nunito-bold;
  color: #1a1a1a !important;
  text-decoration: none !important;
  margin-top: 0;
}
.notif-item:hover .notif-content .notif-title,
.notif-item:hover .notif-content .notif-title a{
  color: #17a399 !important;
}
.notif-item .notif-content .notif-body{
  font: 14px nunito-light;
  color: #1a1a1a;
}
.notif-item .notif-content .notif-body .notif-text{}
.notif-item .notif-content .notif-body .notif-lnk{
  text-align: right;
}
.notif-item .notif-content .notif-body .notif-lnk a{
  color: #ffb100;
  font: 12px nunito-regular;
}


/* Gallery */
.gallery-fp{
  background-color: #f6f6f6;
  padding: 3em 2em;
}
.gallery-fp .view-content{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 2em;
}
.gallery-fp .gallery-item{
  display: block;
  width: 235px;
  height: 235px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin: 0 2em 20px 2em;
  margin-bottom: 20px;
}
.gallery-fp .gallery-item .gallery-img{
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.gallery-fp .gallery-item .gallery-img img{
  width: 100%;
  height: 100%;
  transform: scale(1);
}
.gallery-fp .gallery-item .gallery-title{
  color: #fff;
  text-align: center;
  font: 16px nunito-semibold;
  opacity: 0;
}
.gallery-fp .gallery-item .gallery-title span{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 95%;
  transform: translate(-50%, -50%);
}
.gallery-fp .gallery-item .gallery-title::before{
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 177, 0, 0.6);
  /* opacity: 0; */
}
.gallery-fp .gallery-item:hover .gallery-title{
  opacity: 1;
}
.gallery-foot{
  margin-top: 2em;
  text-align: center;
}

/* Map Section */
.map-section{
  position: relative;
}
.gm-style .place-card,
.gm-style .place-card-large{
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  background-color: transparent !important;
  color: transparent !important;
}
.map-section .map{}
.map-section .map iframe{
  border: 0;
  width: 100%;
  height: 450px;
}
.map-section .map-content{
  text-align: center;
  padding: 2em;
  position: absolute;
  top: 35%;
  left: 20%;
  z-index: 10;
  background-color: #fff;
  transform: translate(-50%, -50%);
}
.map-section .map-content .content-title{
  font: 14px nunito-semibold;
  color: #17a399;
}
.map-section .map-content .content-text{
  font: 18px nunito-semibold;
  color: #1a1a1a;
}
.map-section .map-content .content-text .content-bold{}
.map-section .map-content .content-text .content-small{
  font: 14px nunito-bold;
  color: #1a1a1a;
}

/* Footer */
.footer{
  margin: 0;
  background-color: #fff;
  position: relative;
  text-align: center;
  padding: 0;
}
.footer a{
  font: 21px nunito-semibold;
  color: #1a1a1a;
  display: inline-block;
  vertical-align: middle;
}
.footer-social{
  padding-top: 2em;
}
.social-links{
  margin: 1em 0;
  padding-top: 2em;
}
.social-links a.sicon{
  display: inline-block;
  margin-right: 8px;
  width: 60px;
  height: 60px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.social-links a.sicon.twtr{
  background-image: url('../images/twtr.png');
}
.social-links a.sicon.fb{
  background-image: url('../images/fb.png');
}
.footer-links{
  margin: 1em 0;
}
.footer-links a{
  padding: 5px;
}
.footer-bottom{
  margin: 1em 0;
  padding-bottom: 2em;
}
.footer-bottom,
.footer-bottom a{
  font: 14px nunito-regular;
}
.bottom-border{
  display: block;
  height: 50px;
  background-color: #17a399;
  /* margin: 0 -15px; */
}
/*Inner page*/
.inner-page {
  background: url('../images/internal-bg.jpg') no-repeat center center / cover;
  min-height: calc(100vh - 175.6px);
  color: #000;
}
.inner-page #page-title{
  font: 36px nunito-bold;
  border: none;
  color: #17a39a;
  margin: 20px 0 10px;
  line-height: 1.5;
}
.inner-page h2{
  font: 30px nunito-bold;
}
.inner-page h3{
  font: 24px nunito-bold;
  color: #1a1a1a;
}
.inner-page h4{
  font: 18px nunito-bold;
  color: #ffb100;
}
.inner-page a{
  color: #17a399;
}
.inner-page a:hover,
.inner-page a:focus{
  color: #17a399;
}
.inner-page ul{}
.inner-page ul li{
  list-style-image: url('../images/bullet.png');
  padding: 0.5em 0;
}
.inner-page .breadcrumb{
  margin: 0 -15px;
  padding: .5rem rem;
  border-radius: 0;
}
.inner-page .breadcrumb li{
  font: 14px nunito-regular;
}
.inner-page .breadcrumb li a{
  color: #17a399;
}
.inner-page .breadcrumb li.active{
  color: #17a399;
}
.inner-page .breadcrumb > li + li::before {
  color: #1a1a1a;
}
.inner-page .main-content{
  padding-bottom: 3em;
  box-sizing: border-box;
}
.inner-page .align-left{
  margin-right: 10px;
}
.inner-page .align-right{
  margin-left: 10px;
}
.field--name-field-date{
  font-weight: bold;
  margin-bottom: 8px;
}
/* Download Icon */
.tFile {
  background: url('../images/download_icon.png') no-repeat center center / contain;
  width: 16px;
  height: 16px; 
  display: block; 
  overflow: hidden; 
  text-indent: 100%; 
  white-space: nowrap;
  margin: 0 auto;
}
/*Notice Pages*/
.notice-wrap{
  margin-bottom: 20px;
}
.notice-wrap .notice-date{
  font-weight: bold;
  margin-bottom: 8px;
}
/*Gallery Page*/
.gallery-item{
  margin-bottom: 20px;
}
.gallery-item .gallery-img{
  height: 150px;
  width: 220px;
  overflow: hidden;
  margin: 0 auto 1em;
}
.gallery-item .gallery-img img{
  height: 100%;
  width: auto;
  transform: scale(1);
  transition: all 0.6s ease;
}
.gallery-item:hover .gallery-img img {
  transform: scale(1.2);
}
.gallery-item .gallery-title{
  text-align: center;
  height: 40px;
}
/* Core Team */
.view-core-team .view-content::after{
  content: '';
  clear: both;
  display: block;
  height: 0;
}
.team-item{
  text-align: center;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  width: 220px;
  margin: 0 auto 20px;
  transition: all 0.6s ease;
}
.team-item:hover{
  box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.5);
  -webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.5);
  -moz-box-shadow: 1px 3px 5px 0px rgba(0,0,0,0.5);
}
.team-item .team-img{
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.team-item .team-img img{
  width: 100%;
  height: 100%;
}
.team-item .team-body{
  padding: 1em 0.5em;
  height: 120px;
}
.team-item .team-body .team-name{
  font: 16px nunito-semibold;
  color: #17a399;
}
.team-item .team-body .team-designation{}
/*Site Map*/
.sitemap{
  padding: 0 1.5em;
}
.sitemap h2{
  font: 30px nunito-bold;
  margin-top: 0;
}
.sitemap .caret{
  display: none;
}
.sitemap ul{
  list-style-type: disc;
  float: none;
  background: transparent;
  padding: 0 0 0 1.5em;
  margin: 0 !important;
}
.sitemap ul li{
  /* list-style-image: url('../images/list-bullet.png'); */
  float: none;
  display: list-item;
}
.sitemap ul li a{
  padding: 0;
  color: #171F32;
  display: inline-block;
}
.sitemap ul li a:hover{
  text-decoration: underline;
  background-color: transparent;
}
.sitemap-item ul li ul{
  position: initial;
  display: block;
  border: none;
  border-radius: 0;
  box-shadow: none;
  list-style: circle;
}
/* Reponsive*/
@media screen and (max-width: 576px){}
@media screen and (max-width: 768px){
  .navbar .logo {
    margin-right: 0;
  }
  .navbar .logo img {
    width: 100%;
    height: auto;
  }
  .main_nav .navbar-nav li a::before {
    width: 0;
    height: 0;
  }
  .banner-wrap .banner-body {
    font-size: 100%;
    top: 27%;
  }
  .acad-section {
    padding: 2em 1em;
  }
  .fac-section {
    padding: 2em 1em;
  }
  .fac-head {
    position: static;
  }
  .fac-item {
    flex-direction: column;
    margin: 1em 0;
  }
  .fac-item .fac-img {
    width: 400px;
    height: auto;
    max-width: 100%;
    margin-right: 0;
  }
  .fac-item .fac-content {
    width: 100%;
  }
  .fac-section .slick__arrow {
    position: static;
    text-align: center;
  }
  .fac-foot {
    text-align: center;
    position: static;
  }
  .fac-section .slick--skin--boxed-carousel .slick-list {
    margin: 0 30px;
  }
  .highlights-fp {
    padding: 2em 1em;
  }
  .notification-fp {
    padding: 2em 1em;
  }
  .gallery-fp {
    padding: 2em 1em;
  }
  .map-section .map-content {
    position: static;
    transform: translate(0,0);
  }
  .contact-table td {
    display: block;
    width: 100% !important;
    max-width: 100%;
  }
}
@media screen and (min-width: 576px){}
@media screen and (min-width: 768px){
  .top_nav .search-block-form {
    float: right;
    width: 250px;
  }
  .top_nav .search-block-form::after {
    content: '';
    clear: both;
    display: block;
  }
  .banner-wrap .banner-body {
    font: 32px nunito-semibold;
    top: 29%;
  }
  .fac-item .fac-content {
    width: 64%;
  }
  .map-section .map-content {
    left: 30%;
  }
}
@media screen and (min-width: 992px){
  .banner-wrap .banner-body {
    font: 48px nunito-semibold;
  }
  .fac-section .slick__arrow {
    position: absolute;
  }
  .fac-foot {
    position: absolute;
    bottom: 10%;
    right: 5%;
  }
  .map-section .map-content {
    left: 20%;
  }
}
@media screen and (min-width: 1200px){}