/**
* Template Name: Gp - v2.0.0
* Template URL: https://bootstrapmade.com/gp-free-multipurpose-html-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  /* font-family: "Open Sans", sans-serif; */
  color: #202020;
}

a {
  color: #ffc451;
}

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

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

.align-center{
  text-align: center;
}
span.email-icon{
   
    background: url(../images/fa-icon/mail.png) 0 0 no-repeat fixed;
    overflow: hidden;
    color: #FFFFFF
 
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #ffc451;
  color: #151515;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #151515;
  color: #ffc451;
}

p{
  font-family: Abel;
  font-size:18px;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #ffc451;
  border-top-color: #151515;
  border-bottom-color: #151515;
  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);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled, #header.header-inner-pages {
  background: rgba(0, 0, 0, 0.8);
}

#header .logo {
  font-size: 32px;
  margin: 0;
  margin-top: -8px;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
 
}

#header .logo a span {
  color: #ffc451;
}

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 18px;
  /* font-family: "Open Sans", sans-serif; */
  font-family: Abel;
  font-weight: 500;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #ffc451;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 24px;
  font-weight: 500;
  text-transform: none;
  color: #151515;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #151515;
  background: #ffc451;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Get Startet Button */
.get-started-btn {
  color: #fff;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #ffc451;
}

.get-started-btn:hover {
  background: #ffbb38;
  color: #343a40;
}

@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 7px 20px 8px 20px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  top: 20px;
  right: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

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

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #202020;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #ffffff;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #151515;
  text-decoration: none;
  background: #ffc451;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 83vh;
  /* background: url("../img/hero-bg.jpg") top center; */
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: #202020;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #ffc451;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
}

#hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #ffc451;
}

#hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

#hero .icon-box h3 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

#hero .icon-box h3 a:hover {
  color: #ffc451;
}

#hero .icon-box:hover {
  border-color: #ffc451;
}
.heading_container{
    margin-top: 20px;
	width:100%;
  }

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: auto;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

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

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

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ffde9e;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #151515;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Poppins", sans-serif;
 
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #ffc451;
}

.about .content p:last-child {
  margin-bottom: 0;
}
 

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: whitesmoke;
  min-height: 40px;
  margin-top: 74px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

 

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #151515;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}

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

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
  color: #ffc451;
}

#footer .footer-top .footer-info p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #292929;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  font-family:Abel;
}

#footer .footer-top .social-links a:hover {
  background: #ffc451;
  color: #151515;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  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: #ffc451;
  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: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ffc451;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: rgb(63, 63, 63);
  border-radius:20px;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input {
  border: 1;
  padding: 4px;
  width: calc(100% - 110px);
  margin-bottom: 1rem;;
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  
    right: 1px;
    border-radius: 15px;
    bottom: 1px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 6px 20px;
    background: #ffc451;
    color: #151515;
    transition: 0.3s;  
    width: 7rem;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #bd933f;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}






/**==================================*/
.container{
  width:90%;
}
.w3-lobster {
  font-family: "Abel", serif;
  font-weight: 700;
}

#headingtext{
  background-color: #202020;
  padding-bottom: 10px;
}
/* #headingtext .container.heading_container{
  margin-top: 0px;
  padding-top: 0px;
} */
.heading_block{
  color: #FFC451;
  font-size: 35px;
  font-weight: 600;
  margin-top: 0px;
  font-family: Abel;
}
.about{
  background-image: url('../images/divider1.jpg');
  background-size: cover;
  background-color: rgb(34, 33, 33);
  background-attachment: fixed;
  background-blend-mode: overlay;
  color: #ffc451;
}
.about p {
  color:#ffffff;
  font-size:18px;
  font-weight: 100;
  text-align: justify;
  text-justify: inter-word;
  font-family: abel;
}
.about hr{
  background-color: #FFC451;
  width: 100%;
}


.announcements{
  background-color: #fafafa;
  background-attachment: fixed;
  background-blend-mode: overlay;
  color: #926d23;
}
.announcements hr{
  background-color: #926d23;
  width: 100%;
}
.announcements .card-header{
  font-weight: 700;
  background-color: #cecece !important;
  font-size: 1.2rem;
}
.announcements .card-footer a {
    color: #956d23;
    font-weight: 600;
    font-size: 1.0rem;
}
.announcements .card-body a {
  color: #883310;
  font-weight: 500;
  font-size: 1.2rem;
  text-decoration: underline;
}

.announcements .event-card span{
  font-family: Abel;
  font-size:18px;
}







.research{
  background-image: url('../images/divider7.jpg');
  background-size: cover;
  background-color: rgb(66, 62, 62);
  background-attachment: fixed;
  background-blend-mode: overlay;
  color: #ffc451;
}
.research p {
  color:#ffffff;
  font-size:18px;
  font-weight: 100;
  text-align: justify;
  text-justify: inter-word;
  font-family: abel;
}
.research hr{
  background-color: #FFC451;
  width: 100%;
}


.publications{
  background-image: url('../images/divider_publication.jpg');
  background-size: cover;
  /* background-color: #d8d5d5; */
  background-attachment: fixed;

  background-blend-mode: overlay;
  color: #926d23;
}
.publications hr{
  background-color: #926d23;
  width: 100%;
}
.publication_btn{
  background-color: #211616;
  color: #926d23;
  font-size:1.5rem;
  text-decoration: none;
}
.publication_btn:hover{
  color: #dfab43;
}
.publication_btn.focus, .publication_btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(0,123,255,.25);
}


.programs{
  background-image: url('../images/divider4.jpg');
  /* background-size: cover; */
  background-color: rgb(46, 46, 46);
  background-attachment: fixed;

  background-blend-mode: overlay;
  color: #ffc451;
}
.programs p {
  color:#ffffff;
  font-size:18px;
  font-weight: 100;
  text-align: justify;
  text-justify: inter-word;
  font-family: abel;
}
.programs hr{
  background-color: #ffc451;
  width: 100%;
}


.people{
  /* background-image: url('../images/divider4.jpg'); */
  /* background-size: cover; */
  background-color: #fafafa;
  background-attachment: fixed;

  background-blend-mode: overlay;
  color: #926d23;
}
.people p {
  color:#926d23;
  font-size:16px;
  font-weight: 700;
  margin-bottom: 0px;
  /* text-align: justify;
  text-justify: inter-word; */
  font-family: Abel;
}

.people p.peaple_name{
    font-weight: 900;
    color: #c74a00;
    border: 0px;
    font-size: 1.3rem;
    margin-bottom: 5px;
}
.people p.email-text{
  font-weight: 400;
  font-size: 0.9rem;
  /* word-break: break-all; */
  color:#ffc451;
}

.people hr{
  background-color: #926d23;
  width: 100%;
}
 

.people_dept_section .card {
  max-width: 11.5rem;
  min-width: 11.5rem;
  min-height: 11rem;
  /* max-height: 16rem; */
  background-color: #fffcea;
  border: 1px solid #f1b800;
}

.people_dept_section .card.card-alumni {
  max-width: 11.5rem;
  min-width: 11.5rem;
  min-height: 16rem;
  /* max-height: 16rem; */
  background-color: #fffcea;
  border: 1px solid #f1b800;
}




.people_dept_section .card.card-alumni .card-body {
  min-height: 11rem;
  max-height: 11rem;
  overflow: auto;
  padding-bottom: 2px !important;
}
.people_dept_section .card .card-body {
  min-height: 8rem;
  max-height: 8rem;
  overflow: auto;
  padding-bottom: 2px !important;
}

.people_dept_section .card-footer{
   background-color:  #410e0e;  /*291b1b */
   max-width: 11.5rem;
   white-space: nowrap;
   overflow: auto;
   padding-left: 10px;
   padding-right: 5px;
   padding-bottom: 0;
   height: 46px;
}
.people_dept_section .card.card-widther {
  max-width: 13.5rem;
  min-width: 13.5rem;
  min-height: 16rem;
}

.people_dept_section .card.card-widther .card-footer{
  max-width: 13.5rem;
}

.people_dept_section .card-img-top-custom {
  /* margin-left:1.5rem; */
  margin-top:1rem;
  /* width: 80%;
  max-height: 150px; * /
  /* height: 10vw; * /
  object-fit:contain;*/
}
.people_dept_header {text-align: center; margin-top:3rem; margin-bottom: 1rem;}
.people_dept_header h4{ font-size:2rem;}







.gallery{
  background-image: url('../images/divider8.jpg');
  background-size: cover;
  background-color: rgb(46, 46, 46);
  background-attachment: fixed;

  background-blend-mode: overlay;
  color: #ffc451;
}
.gallery p {
  color:#ffffff;
  font-size:14px;
  font-weight: 100;
  text-align: justify;
  text-justify: inter-word;
}
.gallery hr{
  background-color: #ffc451;
  width: 100%;
}


.outreach{
  background-image: url('../images/divider_outreach.jpg');
  background-size: cover;
  background-color: rgb(212, 212, 212);
  background-attachment: fixed;

  background-blend-mode: overlay;
  color: #543a04;
}
.outreach h4 { font-weight: 900; text-decoration: underline;}
.outreach p,.outreach ul {
  color:#543a04;
  font-size:18px;
  font-weight: 700;
  text-align: justify;
  text-justify: inter-word;
  font-family: Abel;
}
.outreach hr{
  background-color: #543a04;
  width: 100%;
}


.contact{
  background-image: url('../images/divider_outreach.jpg');
  background-size: cover;
  background-color: rgb(49, 49, 49);
  background-attachment: fixed;
  background-blend-mode: overlay;
  color: #ffc451;
}
 
.contact p {
  color:#ffc451;
  font-size:18px;
  font-weight: 700;
  text-align: justify;
  text-justify: inter-word;
  font-family: Abel;
}
.contact hr{
  background-color: #ffc451;
  width: 100%;
}


/* .carousel {
  position: relative;
} */

.carousel-caption {
  position: absolute;
  background: rgba(0,0,0,0.4);
  padding: 21px 10px;
}

/* .carousel-control-prev,
.carousel-control-next {
  width: 5%;
} */





/* .slick-slider {
  margin:0 -15px;
}
.slick-slide {
  padding:10px;
  margin-right:15px;
  margin-left:15px;
} */
.slick-prev:before, .slick-next:before { 
  color:#926d23 !important;
  zoom:1.5;
}
.contact .info i {
  font-size: 20px;
  background: #ffc451;
  color: #151515;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 2rem;
}


.people-link {

  position: absolute;
  background-color: #de6a17;
  width: 78px;
  text-align: center;
  font-size: 13px;
  bottom: 2.5rem;
  right: 0.5rem;
  color: white;
  border-radius: 10px;

  
/* 
  position: absolute;
   
  width: 29px;
  text-align: center;
  font-size: 18px;
  top: 0.1rem;
  right: 0.3rem;
  color: white;
  border-radius: 20px; */
}
.people-link a {color:white;}
.people-link:hover {
  background-color: #ab4e0c;
}

/* .carousel-cell {
  width: 28%;
  height: 200px;
  margin-right: 10px;
  background: #8C8;
  border-radius: 5px;
   
}

.carousel-cell.is-selected {
  background: #ED2;
}

/* cell number * /
.carousel-cell:before {
  display: block;
  text-align: center;
  /* content: counter(carousel-cell); * /
  line-height: 200px;
  font-size: 80px;
  color: white;
}
.flickity-page-dots { bottom: 10px; } */



/**------Gallery Hover-----*/
.hovereffect {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
}

.hovereffect .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
}

.hovereffect img {
  display: block;
  position: relative;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.hovereffect:hover img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0 0 0 1 0" /><feGaussianBlur stdDeviation="3" /></filter></svg>#filter');
  filter: grayscale(1) blur(3px);
  -webkit-filter: grayscale(1) blur(3px);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.hovereffect h2 {
  text-transform: uppercase;
  text-align: center;
  position: relative;
  font-size: 17px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.6);
}

.hovereffect a.info {
  display: inline-block;
  text-decoration: none;
  padding: 7px 14px;
  border: 1px solid #fff;
  margin: 50px 0 0 0;
  background-color: transparent;
}

.hovereffect a.info:hover {
  box-shadow: 0 0 5px #fff;
}

.hovereffect a.info, .hovereffect h2 {
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  opacity: 0;
  filter: alpha(opacity=0);
  color: #fff;
  text-transform: uppercase;
}

.hovereffect:hover a.info, .hovereffect:hover h2 {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* #people {width: 1600px;}  */
#people .container {
  padding: 0;
  /* max-width: 100%; display: block; border: 1px solid red; */
}
/* .full-width-div {
  position: relative;
  width: 100%;
  left: 0;
} */



::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(80, 5, 5, 0.3); 
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(80, 5, 5, 0.3); 
}
.mx-auto-custom {
  margin-right: auto !important;
  margin-left: auto !important;
 }

/* 
 .people_dept_section .card-columns {
  column-count: 2;
}
 
 @media (min-width: 576px) {
  .people_dept_section .card-columns {
      column-count: 3;
  }
}

@media (min-width: 768px) {
  .people_dept_section .card-columns {
      column-count: 4;
  }
}

@media (min-width: 992px) {
  .people_dept_section .card-columns {
      column-count: 5;
  }
}

@media (min-width: 1200px) {
  .people_dept_section .card-columns {
      column-count: 6;
  }
} */

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

@media only screen and (max-width:1000px){/*if it is 1000px change the font to 12 pt and so on for each resolution you need.*/
  .centered{font-size:12pt!important;}
}
@media only screen and (max-width:1000px){/*if it is 800px change the font to 11 pt and so on for each resolution you need.*/
  .container.heading_container{
    margin-top: 20px;
  }
  #headingtext{
    display: none!important;
  }
  .heading_block{
    width: 100%;
    font-size: 25px;
  }
  #hero{
    /* padding-top:70px; */
    padding-bottom: 0px;
    height: 33vh;
    padding-top: 10vh;
  }
  .people_dept_section .card {
    max-width: 11rem;
    min-width: 11rem;
    min-height: 12rem;
  }
  .people p {
      font-size:12px;
  }
}
@media only screen and (max-width:600px){
  #headingtext,.heading_block{
    display: none!important;
  }
  #hero{
    padding-bottom: 0px;
    height: 33vh;
    padding-top: 10vh;
  }
  #header .logo img {
    max-height: 45px;
    margin-top: 7px;
  }

  .people_dept_section .card-deck {
    display: flex;
    justify-content: flex-start;
    flex-flow: row wrap; 
    align-items: stretch;
    margin-left:20px;
     
  }
  .people_dept_section .card-deck .card {
    display: block;
    flex-basis: 33.3%; /* change this value for each breakpoint*/
  }


  .mx-auto-custom {
    margin-right: 10px !important;
    margin-left: 10px !important;
   }


  .carousel-caption { 
    margin-bottom: -54px;
    font-size: 10px;
    padding-top: 2px;
   }
   .carousel-caption p{ 
    font-size: 12px;
   }

   .carousel-indicators{display: none;}

   .publication_btn{
    font-size:1rem;
  }
  .people_dept_section .card,.people_dept_section .card.card-alumni, .people_dept_section .card.card-widther {
    max-width: 9.5rem;
    min-width: 9.5rem;
    min-height: 9rem;
  }
  .people_dept_section .card .card-body {
    min-height: 6.2rem;
    max-height: 6.2rem;
    overflow: auto;
    padding-bottom: 2px !important;
  }
  .people_dept_section .card.card-alumni .card-body {
    min-height: 8rem;
    max-height: 8rem;
    overflow: auto;
    padding-bottom: 2px !important;
  }

  .people p {
    font-size:12px;
   }
   .people p.peaple_name {
    font-size: 1rem;
  }
  #contact h2.contact-header{
    font-size: 1.5rem;
  }

  .people-link { 
    width: 63px;
    font-size: 14px;
    bottom: 2.6rem;
    right: 2.6rem; 
  }


}
@media only screen and (max-width:400px){
  .centered{font-size:9pt!important;}
  .people_dept_section .card-deck {
    display: flex;
    justify-content: flex-start;
    flex-flow: row wrap; 
    align-items: stretch;
    margin-left:10px;
   
  }
}
@media only screen and (max-width:360px){
  .centered{font-size:8pt!important;}
  .people_dept_section .card-deck {
    display: flex;
    justify-content: flex-start;
    flex-flow: row wrap; 
    align-items: stretch;
    margin-left:1px;
    
  }

}