/**
 * If using a CSS pre-processor, tell it to overwrite this file. If not, place
 * your custom CSS modifications here.
*/
@font-face {font-family: 'raleway-regular'; src: url('Raleway-Regular.ttf');}
@font-face {font-family: 'raleway-medium'; src: url('Raleway-Medium.ttf');}
@font-face {font-family: 'raleway-semibold'; src: url('Raleway-SemiBold.ttf');}
@font-face {font-family: 'raleway-bold'; src: url('Raleway-Bold.ttf');}

html, body{
  padding: 0;
  margin: 0;
  font: 16px raleway-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;
}
.text-white{
  color: #fff !important;
}
.section-heading{
  font: 36px raleway-semibold;
  color: #fa0005;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0.75em;
  position: relative;
}
.section-heading::after {
  content: url('../images/sh-underline.png');
  display: block;
  position: absolute;
  top: 35%;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}
.section-heading.text-white::after{
    content: url('../images/sh-underline-w.png');
}
.section-heading.text-white.text-left{
  text-align: left !important;
}
.section-heading.text-white.text-left::after{
  content: url('../images/sh-underline-w.png');
  display: block;
  position: absolute;
  top: 35%;
  left: 0;
  right: auto;
  transform: translateX(0);
}

.btn-readmore{
  background-color: #fa0004;
  border: 1px solid #fff;
  border-radius: 0;
  padding: 10px 20px;
  color: #fff;
}
.btn-readmore:hover,
.btn-readmore:focus{
  /* background-color: transparent; */
  color: #fff;
}
/*Navigation*/
.navbar-default{
  background-color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.8);
  /* border: 1px solid #000 !important; */
}
.navbar{
  border-radius: 0px;
  margin-bottom: 0;
  /* width: 95%; */
  /* margin: 1em auto 0 auto; */
}
.navbar .logo img{
    height: 75px;
}
/*Top Navigation */
.top_navigation{}
.top_navigation .search-block-form{}
.top_navigation .search-block-form .form-group{
  margin-top: 8px;
  margin-bottom: 8px;
}
.top_navigation .search-block-form .form-group .input-group{
  border-radius: 0;
  overflow: hidden;
  border-bottom: 1px solid #fa0005;
  background-color: transparent;
}
.top_navigation .search-block-form .form-group .input-group .form-search.form-control{
  border: 0;
  background-color: transparent;
  box-shadow: none;
}
.top_navigation .search-block-form .form-group .input-group .form-search.form-control::placeholder{}
.top_navigation .search-block-form .form-group .input-group .input-group-btn{
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  overflow: hidden;
}
.top_navigation .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;
}
.top_navigation .search-block-form .form-group .input-group .input-group-btn .button .icon::before{}

/* Main Navigation */
.main_navigation{}
.main_navigation .navbar-nav{}
.main_navigation .navbar-nav li{}
.main_navigation .navbar-nav li a{
  color: #1a1a1a;
  font: 14px raleway-medium;
  padding: 8px 15px;
}
.main_navigation .navbar-nav li.active a,
.main_navigation .navbar-nav li.active a:hover,
.main_navigation .navbar-nav li.active a:focus,
.main_navigation .navbar-nav li a:hover,
.main_navigation .navbar-nav li a:focus{
  color: #fa0005;
  background-color: transparent;
}
/* Navbar item props */
.main_navigation .navbar-nav li a::before{
    content: '';
    display: block;
    width: 9px;
    height: 9px;
    background-color: #fa0004;
    border-radius: 50%;
    text-align: center;
    opacity: 0;
    margin: 0 auto;
    transition: all 0.6s ease;
}
.main_navigation .navbar-nav li.active a::before, 
.main_navigation .navbar-nav li a:hover::before, 
.main_navigation .navbar-nav li a:focus::before {
    opacity: 1;
}
/* Dropdown */
.main_navigation .navbar-nav li.dropdown .dropdown-menu li{}
.main_navigation .navbar-nav li.dropdown .dropdown-menu li a{
  color: #333;
  background-color: transparent;
}
.main_navigation .navbar-nav li.dropdown .dropdown-menu li.active a,
.main_navigation .navbar-nav li.dropdown .dropdown-menu li a:hover,
.main_navigation .navbar-nav li.dropdown .dropdown-menu li a:focus{
  color: #fff;
  background-color: #fa0004;
}
.main_navigation .navbar-nav li.dropdown .dropdown-menu li a::before{
  content: '';
  display: none;
  width: 0;
  height: 0;
}
/* Banner */
.banner-wrap{
  position: relative;
  overflow: hidden;
}
.banner-wrap .banner-img{}
.banner-wrap .banner-img img{
  width: 100%;
  height: auto;
}
.banner-wrap .banner-ticker{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  animation: moveFromLeft 1.5s ease-out;
}
.banner-wrap .banner-ticker img{}
@keyframes movesFromRight{
  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%);
  }
}
@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%);
  }
}
/* services section */
.fp-sevices{
  background: url("../images/services-bg.jpg") no-repeat center center / cover;
  padding: 3em 2em;
}
.fp-sevices .view-content{
  margin-top: 3em;
}
.service-item{
  display: block;
  text-align: center;
  padding: 1em;
  text-decoration: none !important;
}
.service-item .service-ico-wrap{
  width: 81px;
  height: 89px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.service-item .service-ico-wrap .service-ico{}
.service-item .service-ico-wrap .service-ico img{}
.service-item .service-ico-wrap .service-ico-hvr{
  position: absolute;
  top: 0;
  opacity: 0;
  transition: all 0.6s ease;
}
.service-item:hover .service-ico-wrap .service-ico-hvr{
  opacity: 1;
}
.service-item .service-ico-wrap .service-ico-hvr img{}
.service-item .service-body{}
.service-item .service-body .service-title{
  font: 16px raleway-semibold;
  color: #666;
  text-decoration: none !important;
}
.service-item:hover .service-body .service-title{
  color: #fa0005
}
.service-item .service-body .service-content{
  font: 14px raleway-semibold;
  color: #666;
  padding: 0em 2em 2em;
  text-decoration: none !important;
}
.service-item .service-foot{
  position: relative;
}
.service-item .service-foot::before{
  content: '';
  display: block;
  height: 1px;
  background-color: #ddd;
  transition: all 0.6s ease;
}
.service-item .service-foot::after{
  content: '';
  display: block;
  width: 80px;
  height: 10px;
  background-color: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}
.service-item:hover .service-foot::before{
  background-color: #fa0004;
}
.service-item:hover .service-foot::after{
  background-color: #fa0005;
}
/* Services Slick */
.fp-sevices .slick .slick__slide:focus {border:0}
.fp-sevices .slick__arrow{}
.fp-sevices .slick__arrow .slick-arrow{}
.fp-sevices .slick__arrow .slick-prev::before{
  content: url('../images/arrow-prev.png');
}
.fp-sevices .slick__arrow .slick-next::before{
  content: url('../images/arrow-next.png');
}
.service-foot{
  text-align: center;
  margin-top: 2em;
}

/* Resource Secton */
.rc-section{
  margin: 0;
  background: url('../images/rc-bg.jpg') no-repeat center center / cover;
}
.rc-wrap{
  padding: 7em 5em;
}
.rc-wrap .rc-content{}
.rc-wrap .rc-points{
  font: 18px raleway-semibold;
  color: #fff;
  padding-left: 1em;
}
.rc-wrap .rc-points li{
  padding: 0.75em 1em;
}
.rc-wrap .rc-points li a{
  color: #fff;
  text-decoration: none;
}
.rc-wrap .rc-foot{
  margin-top: 2em;
}
.rc-img{
  position: relative;
}
.rc-img img{
  position: absolute;
  top: -5px;
  right: 0;
  z-index: 9;
  /* width: 100%; */
}
/* Highlights */
.fp-highlights{
  background: url("../images/hl-bg.jpg") no-repeat center center / cover;
  padding: 3em 2em;
}
.fp-highlights .view-content{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 3em;
}
.hl-item{
  display: block;
  width: 380px;
  max-width: 90%;
  height: 350px;
  border: 1px solid #ddd;
  background-color: #fff;
  margin: 0 auto 20px auto;
  transition: all 0.6s ease;
}
.hl-item:hover{
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.hl-item .hl-head{
  border-bottom: 1px solid #d1d2d6;
  padding: 1em 1.5em;
}
.hl-item .hl-head .hl-date{
  font: 21px raleway-regular;
  color: #444c58;
}
.hl-item .hl-body{
  padding: 1.75em 1.5em;
}
.hl-item .hl-body .hl-title,
.hl-item .hl-body .hl-title a{
  color: #444c58;
  font: 18px raleway-semibold;
  margin-top: 0;
  text-decoration: none;
  transition: all 0.6s ease;
}
.hl-item:hover .hl-body .hl-title,
.hl-item:hover .hl-body .hl-title a{
  color: #fa0005;
}
.hl-item .hl-body .hl-content{
  font: 14px raleway-medium;
  line-height: 1.5;
  color: #444c58;
}
.hl-item .hl-foot{
  padding: 1.5em;
}
.hl-item .hl-foot .hl-lnk{
  font: 14px raleway-medium;
  color: #fa0005;
}
.highlights-foot{
  margin-top: 2em;
  text-align: center;
}

/* Research & Training */
.rt-section{
  background: url('../images/rt-bg.jpg') no-repeat center center / cover;
  padding: 3em 2em;
}
.rt-wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin-top: 3em;
}
.rt-item{
  display: block;
  width: 330px;
  height: 330px;
  max-width: 100%;
  border: 1px solid #fff;
  padding: 5px;
  text-align: center;
  text-decoration: none;
  margin-bottom: 20px;
}
.rt-item .rt-in{
  position: relative;
  width: 100%;
  height: 100%;
}
.rt-item .rt-in .rt-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(250,0,4, 0.8);
  padding: 5em;
  opacity: 0;
  transition: all 0.6s ease;
}
.rt-item:hover .rt-in .rt-overlay{
  opacity: 1;
}
.rt-item .rt-in .rt-overlay::after{
  content: url('../images/rt-arrow.png');
  display: block;
  position: absolute;
  bottom: -4px;
  right: 0;
}
.rt-item .rt-in .rt-overlay .rt-ico{
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  overflow: hidden;
}
.rt-item .rt-in .rt-overlay .rt-ico img{
  width: 100%;
  height: 100%;
}
.rt-item .rt-in .rt-overlay .rt-title{
  font: 24px raleway-bold;
  margin-top: 10px;
  color: #fff;
}
.rt-item .rt-in .rt-img{
  width: 100%;
  height: 100%;
}
.rt-item .rt-in .rt-img img{
  width: 100%;
  height: 100%;
}
/* Gallery */
.fp-gallery{
  padding: 3em 2em;
}
.fp-gallery .view-content{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  /* align-items: center; */
  margin-top: 3em;
}
.gal-item{
  display: block;
  width: 250px;
  max-width: 100%;
  text-align: center;
  text-decoration: none;
  margin-bottom: 20px;
}
.gal-item .gal-img{
  display: block;
  width: 100%;
  height: 230px;
  overflow: hidden;
  padding: 5px;
  border: 1px solid #c0c7cd;
  border-radius: 4px;
  margin-bottom: 20px;
}
.gal-item .gal-img img{
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: all 0.6s ease;
}
.gal-item:hover .gal-img img{
  transform: scale(1.1);
}
.gal-item .gal-title,
.gal-item .gal-title a{
  font: 18px raleway-medium;
  color: #444c58;
  text-decoration: none;
}
.gal-foot{
  margin-top: 2em;
  text-align: center;
}
/* Footer */
/*Footer Top*/
.footer{
  margin: 0;
  padding: 0 15px;
}
.footer-top{
  background: #fa0004;
  color: #fff;
  text-align: center;
}
.footer-top .footer-menu{}
.footer-top .footer-menu a{
  font: 16px raleway-regular;
  color: #fff;
  padding: 15px 15px;
  display: inline-block;
  vertical-align: middle;
}
/* Footer Bottom */
.footer-bottom{
  background: #fa0004;
  color: #fff;
  padding: 0.75em 0;
  font: 14px raleway-regular;
}
.footer-bottom a{
  color: #fff;
}
.footer-bottom .fbot-txt{}
.footer-bottom .copy-lnk{
  text-align: left;
}
.footer-bottom .power-lnk{
  text-align: right;
}
/* Footer Middle */
.footer-mid{
  background: url('../images/footer-bg.jpg') no-repeat center center / cover;
  color: #fff;
  font: 14px raleway-medium;
  padding: 3em 2em;
}
.footer-col{}
.footer-col .footer-heading{
  font: 22px raleway-semibold;
  color:#fff;
  min-height: 22px;
  position: relative;
  margin-bottom: 0.75em;
}
.footer-col .footer-heading::after{
  content: url('../images/ft-underline.png');
  display: block;
  position: absolute;
  top: 10px;
}
.footer-col .footer-content{
  line-height: 1.5;
}
.footer-col .footer-lnk{
  color: #fff;
  text-decoration: underline;
}
.footer-col .footer-list{
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-col .footer-list li{
  border-bottom: 1px solid #fff;
  padding: 0.5em 0;
}
.footer-col .footer-list li:last-child{
  border-bottom: 0;
}
.footer-col .footer-list li a{
  color: #fff;
  text-decoration: none !important;
}
.footer-col .footer-contact{
  display: flex;
}
.footer-col .contact-ico{
  flex-grow: 0;
  width: 18px;
  height: 18px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  margin-right: 10px;
}
.footer-col .contact-ico.phone-ico{
  background: url('../images/phn-ico.png') no-repeat center center / contain;
}
/*Inner page*/
.inner-page {
  /* background: url('../images/internal-bg.png') no-repeat fixed center center / cover; */
  /* Pattren */
  /* background: url('../images/pattren.png') repeat fixed center center; */
  min-height: calc(100vh - 175.6px);
  color: #333;
  line-height: 1.5;
}
.inner-page #page-title{
  font: 36px raleway-semibold;
  border: none;
  color: #fa0005;
  margin: 20px 0 10px;
}
.inner-page h2{
  font: 30px raleway-semibold;
}
.inner-page h3{
  font: 24px raleway-semibold;
  color: #1a1a1a;
}
.inner-page h4{
  font: 18px raleway-semibold;
  color: #444c58;
}
.inner-page a{
  /* font: 14px MontserratRegular; */
  color: #fa0005;
}
.inner-page a:hover,
.inner-page a:focus{
  color: #fa0004;
}
.inner-page ul{}
.inner-page ul li{
  list-style: none;
  /* list-style-image: url('../images/list-bullet.png'); */
  padding: 0.5em 0;
  display: flex;
  align-items: center;
}
.inner-page ul li::before{
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background-color: #fa0004;
  border-radius: 50%;
  flex-shrink: 0;
  flex-grow: 0;
}
.inner-page .breadcrumb{
  margin: 0 -15px;
  padding: .5rem 2rem;
  background-color: #f5f5f5;
  border-radius: 0;
}
.inner-page .breadcrumb li{
  font: 14px raleway-regular;
}
.inner-page .breadcrumb li a{
  color: #fa0004;
}
.inner-page .breadcrumb li.active{
  color: #1a1a1a;
}
.inner-page .breadcrumb > li + li::before {
    color: #fa0004;
}
.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;
}

.field--name-field-images.field--type-image {display: flex; flex-wrap: wrap; align-items: center; justify-content: center; flex-direction: column;}

.field--name-field-images.field--type-image .field--item {margin: 0.25em 0; padding: 0.25em 0;}

/*Gallery Page*/
.gallery-item{
  margin-bottom: 20px;
}
.gallery-item .gallery-img{
  height: 200px;
  width: 100%;
  overflow: hidden;
  margin: 0 auto 1em;
}
.gallery-item .gallery-img img{
  height: 100%;
  width: 100%;
  transform: scale(1);
  transition: all 0.6s ease;
}
.gallery-item:hover .gallery-img img {
  transform: scale(1.2);
}
.gallery-item .gallery-title{
  /* font: 20px poppins-semibold; */
  text-align: center;
  height: 40px;
}
/*Notice Pages*/
.notice-wrap{
  margin-bottom: 20px;
}
.notice-wrap .notice-date{
  font-weight: bold;
  margin-bottom: 8px;
}
.notice-wrap .notice-title{}
/* Team Member */
.view-our-team .view-content::after{
  content: '';
  clear: both;
  display: block;
  height: 0;
}
.team-item{
  display: block;
  padding: 5px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 20px;
}
.team-item .img{
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.team-item .img img{
  width: 100%;
  height: 100%;
}
.team-item .body{
  padding: 1em 0.75em;
}
.team-item .body .title{
  margin: 0;
  color: #fa0004;
  font: 16px raleway-bold;
}
.team-item .body .designation{
  margin: 10px 0 0 0;
}
.pagination{}
.pagination li{
  display: inline !important;
}
.pagination li::before {
  content: '';
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
/* Download Icon */
.t-file{
  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;
}
/*Site Map*/
.sitemap{
  padding: 0 1.5em;
}
.sitemap h2{
  font: 30px raleway-semibold;
  margin-top: 0;
}
.sitemap .caret{
  display: none;
}
.sitemap ul{
  float: none;
  background: transparent;
  padding: 0 0 0 1.5em;
  margin: 0 !important;
}
.sitemap ul li{
  float: none;
  display: list-item;
}
.sitemap ul li a{
  padding: 0;
  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;
  }
  .main_navigation .navbar-nav li a::before {
    content: '';
    display: none;
    width: 0;
    height: 0;
  }
  .fp-sevices {
    padding: 2em 1em;
  }
  .fp-sevices .slick--skin--boxed-carousel .slick-list{
    margin: 0 30px;
  }
  .service-item .service-body .service-content {
    padding: 0em 1em 2em;
  }
  .rc-wrap {
    padding: 2em 1em;
  }
  .rc-img img {
    position: static;
    width: 100%;
  }
  .fp-highlights{
    padding: 2em 1em;
  }
  .rt-section {
    padding: 2em 1em;
  }
  .fp-gallery {
    padding: 2em 1em;
  }
  .footer-mid{
    padding: 2em 1em;
  }
  .footer-bottom .copy-lnk,
  .footer-bottom .power-lnk{
    text-align: center !important;
  }
  .contact-table td{
    display: block;
    width: 100% !important;
    max-width: 100%;
  }
  
}
@media screen and (min-width: 576px){}
@media screen and (min-width: 768px){
  /* for hover dropdown */
  /* .main_nav .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
    margin: 0;
  } */
  .top_navigation .search-block-form {
    float: right;
    width: 250px;
  }
  .top_navigation .search-block-form::after{
    content: '';
    clear: both;
    display: block;
    height: 0;
  }
  .rc-wrap {
    padding: 5em 2em;
  }
  .rc-img img {
    width: 100%;
  }
  .fp-highlights {
    padding: 3em 1em;
  }
}
@media screen and (min-width: 992px){
  /* .path-frontpage .navbar{
    position: absolute;
    z-index: 999;
    width: 100%;

}
.path-frontpage .navbar .logo{}
.path-frontpage .navbar .logo img{} */
}
@media screen and (min-width: 1200px){
  .rc-wrap {
    padding: 6em 5em;
  }
}