/* common */
::-moz-selection { background: #404040; color: #fff; }
::selection { background: #404040; color: #fff;}

/* autofill */
@-webkit-keyframes autofill {
    to {
        color: #00051b;
        background: #fff;}
}
input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;}
    

/* pre-loader */ 
.pre-loader {
  background: linear-gradient(-45deg, #131210c7, #327e8c);
  color: #fff;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  pointer-events: none;
  width: 100px;
  height: 100px;
  box-sizing: border-box;
  position: fixed;
  z-index: 9999;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;}
.pre-loader:after, .pre-loader:before {
  position: absolute;
  content: "";
  background-color: currentcolor;
  top: 50px;
  left: 50px;
  height: 2px;
  -webkit-transform-origin: left center;
          transform-origin: left center;}
.pre-loader:after {
  width: 40px;
  -webkit-animation: pre-loader 2s linear infinite;
          animation: pre-loader 2s linear infinite;}
.pre-loader:before {
  width: 30px;
  -webkit-animation: pre-loader 8s linear infinite;
          animation: pre-loader 8s linear infinite;}
@-webkit-keyframes pre-loader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes pre-loader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}



/* custom */
.p-b-30 {
  padding-bottom: 30px !important;}


/* button */
button,
.a-btn {
    white-space: nowrap;
    line-height: normal;
    border-radius: 3px;
    padding: 8px 15px;
    font-size: 14px;
    text-transform: capitalize;
    cursor: pointer;
    border: none;
    background: #101010;
    color: #fff;
    font-weight: bold;}
    
/* h1 */
h1 {
  font-size: 40px;
  padding-bottom: 40px;
  padding-top: 55px;
  text-align: center;}



/* wrapper */   
.wrapper {
  width: 100%;
  height: auto;
  margin: 0 auto;}
@media (min-width: 1200px) {
.wrapper {
  max-width: 2000px;
  padding: 0 100px;}
}
@media (max-width: 1199px) {
.wrapper {
   padding: 0 70px;}
}  
@media (max-width: 991px) {
.wrapper {
   padding: 0 50px;}
} 
@media (max-width: 767px) {
.wrapper {
   padding: 0 30px;}
} 
 
 
/* header */
header {
  position: absolute;
  background: #fff;
  height: 70px;
  padding-left: 50px;
  padding-right: 50px;
  top: 0;
  width: 100%;
  z-index: 100;}
/* a-logo */
header .a-logo {
  display: flex;
  margin-top: 13px;
  text-decoration: none;}
header .a-logo h3 {
  font-size: 25px;
  margin-bottom: 0;
  color: #000;
  padding-top: 6px;
  padding-left: 10px;}
header .a-logo img {
  max-width: 100%;
  height: 45px;}


/* marquee-top */
.marquee-top {
  position: absolute;
  z-index: 10;
  top: 70px;
  left: 0;
  right: 0;
  width: 100%;
  height: 35px;
  background-color: #ffffffbf;}
.marquee-top a {
  color: #f74542;
  margin-right: 25px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding-top: 8px;
  font-size: 13px;
  letter-spacing: 1px;}
.marquee-top a:hover {
  color: #e51815;}
.marquee-top a:not(:last-of-type):after {
  content: '';
  position: absolute;
  top: 8px;
  right: -15px;
  width: 1px;
  height: 20px;
  background-color: #231f20;}



/* toggle-btn */
.toggle-btn {
  height: 36px;
  opacity: 1;
  transition: height 0ms 0ms, opacity 600ms 0ms;
  background: transparent;
  box-shadow: none;
  width: 50px;
  position: fixed;
  right: 35px;
  top: 17px;
  z-index: 1;
  padding: 0;}
.toggle-btn:focus {
  outline: none;}
.toggle-btn span {
  background-color: #327e8c;
  position: absolute;
  bottom: 0;
  left: 5px;
  right: 0;
  height: 2px;
  width: 38px;
  transition: all .3s ease-in-out;}
.toggle-btn:not(.toggle_btn_on) {
  border: 1px solid #ccc;
  background: #fff;}
.toggle-btn:not(.toggle_btn_on) span:first-child {
  transform: translate3d(0, -4px, 0);
  top: 10px;}
.toggle-btn:not(.toggle_btn_on) span:nth-child(2) {
  top: 16px;}
.toggle-btn:not(.toggle_btn_on) span:last-child {
  transform: translate3d(0, 4px, 0);
  top: 22px;}
/* toggle_btn_on */
.toggle_btn_on span {
  top: 12px;}
.toggle_btn_on span:first-child {
  transform: rotate(135deg) translate3d(0, 0, 0);}
.toggle_btn_on span:last-child {
  transform: rotate(-135deg) translate3d(0, 0, 0);}
.toggle_btn_on span:nth-child(2) {
  opacity: 0;}
@media (min-width: 992px) {
.toggle-btn {
  display: none;}
}
@media (max-width: 991px) {
.toggle_btn_on span {
  background-color: #8e8e8e;}
}

/* menu */
.menu {
  box-sizing: border-box;
  float: right;
  height: 50px;
  padding: 5px 0 5px 5px;
  overflow: hidden;
  position: relative;
  transition: 1.3s cubic-bezier(0.53, 0, 0.15, 1.3);
  margin-top: 10px;}
/* ul */
.menu ul {
  margin-top: 8px;}
 .menu li {
  padding-left: 20px;
  white-space: nowrap;
  visibility: visible;
  opacity: 1;
  transition: .3s;
  transform: rotateY(0deg);
  list-style: none;
  text-transform: capitalize;}
 .menu.expanded li {
  padding-left: 12px;
  padding-right: 12px;}
 .menu li a {
  font-size: 15px;
  transition: .3s;
  text-transform: uppercase;}
 .menu li a.active {
    font-weight: bold;}

@media (min-width: 992px) {
.menu:not(.expanded) li:nth-of-type(5) {
   padding-right: 0;}
 .menu ul {
   height: 25px;
   padding-left: 0;
   overflow: hidden;}
 .menu li {
  float: left;}
 .menu li a,
 .menu li a:hover {
    color: #327e8c;}
}
@media (max-width: 991px) {
.menu {
  width: 42px;}
 .menu.expanded {
  width: 240px;
  height: 100vh;
  position: fixed;
  right: 0;
  background: #fff;
  box-shadow: 0 0 5px #ccc;
  margin-top: 0;}
 .menu li {
    padding-top: 20px;}
 .menu li a,
 .menu li a:hover {
    color: #327e8c;}
 }


/* section */
section:not(#home) {
  padding-top: 30px;
  padding-bottom: 70px;}
section:nth-child(odd) {
  background: #f7f7f7;}


	
/* nice-box */
.nice-box {
  text-align: center;}
.lightbox-card.nice-box  {
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
    box-shadow: #cccdce 0 0 9px 0;}
.lightbox-card.nice-box img {
    width: 100%;
    display: block;
    height: 250px;
    object-fit: cover;}
.nice-box .caption {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 40px;
  width: 100%;
  padding: 12px 10px;
  background: #101010;}
.nice-box .caption h3 {
  margin-top: 0;
  color: #fff;
  font-size: 14px;
  text-transform: capitalize;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;}

/* hover */
.lightbox-card.nice-box img {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;}
.lightbox-card.nice-box:hover img {
  -webkit-transform: scale(1.08);
    transform: scale(1.08);}
.tz-gallery .lightbox:before {
    position: absolute;
    top: 43%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    font-family: 'FontAwesome';
    content: '\f00e';
    pointer-events: none;
    z-index: 10;
    transition: 0.4s;}
.tz-gallery .lightbox:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    content: '';
    transition: 0.4s;}
.tz-gallery .lightbox:hover:after,
.tz-gallery .lightbox:hover:before {
    opacity: 1;}	
@media screen and (max-width: 991px) {
.lightbox-card.nice-box img {
    height: 200px;}
}	
@media screen and (max-width: 767px) {
.nice-box .caption h3 {
   font-size: 14px;} 
}	
@media screen and (max-width: 499px) {
.lightbox-card.nice-box img {
    height: 150px;}
}


/* home */
#home .carousel-item,
#home .carousel-item img {
  height: 100vh;}
#home .carousel-item {
  padding-top: 70px;}
#home .carousel-item img {
  object-fit: cover;}
#home .carousel-caption {
  background: #327e8c4a;
  max-width: 900px;
  bottom: 70px;
  right: initial;
  left: initial;
  text-align: left;}
#home .carousel-caption h3 {
  font-size: 40px;
  font-weight: bold;}
#home .carousel-caption h4 {
  margin-top: 15px;
  font-size: 18px;}
@media (max-width: 767px) {
#home .carousel-caption h3 {
  font-size: 30px;}
}


/* about */
#about p:first-letter {
   padding-left: 10px;} 


/* contact */
#contact h2 {
  text-align: center;
  text-transform: capitalize;}
/* info_quick-links, iframe */
#contact .info_quick-links, 
#contact iframe {
    border: 1px solid #d0d3da;
    border-radius: 3px;
    background: #fff;
    min-height: 500px;}
    
/* iframe */	
#contact iframe {
  width: 100%;
  padding: 5px;}

/* info_quick-links */ 
#contact .info_quick-links {
    padding: 50px 20px 20px;}
.info_quick-links,
.info_quick-links a {
    color: #4c4c4c;}  
.info_quick-links table th,
.info_quick-links table td {
    padding-top: 10px;}  
.info_quick-links table th {
    padding-left: 25px;
    white-space: pre-line;}
.info_quick-links table td {
    text-align: center;} 
.info_quick-links table td .fa {
  border: 1px solid #dfe0e2;
  padding: 7px;
  width: 40px;
  height: 30px;
  color: #327e8c;}
	
  
/* quick-links */	
#contact .quick-links {
  margin-top: 50px;
  text-align: center;}
#contact .quick-links h2 {
  padding-bottom: 10px;}
#contact .quick-links a {
  margin-right: 10px;} 

/* sosial-media */	
#contact .sosial-media {
  margin-top: 50px;
  text-align: center;}
#contact .sosial-media h2 {
  padding-bottom: 10px;}
#contact .sosial-media a {
  margin-right: 10px;}
#contact .sosial-media .fa {
    color: #2b2b2b;
    font-size: 16px;}
#contact .sosial-media a:hover .fa {
    color: #000;} 
@media (max-width: 767px) {	
#contact iframe {
  height: auto;
	margin-top: 20px;}
}
  




/* faculty */
#faculty .item {
  background-color: #fff;
  padding: 25px 20px;
  height: 100%;
  box-shadow: 5px 3px 30px #c9c9c9b8;
  border-radius: 5px;}
#faculty .item .img-primary {
  max-height: 200px;}
#faculty .item .name {
  margin-top: 25px;
  text-transform: uppercase;
  font-weight: bold;}
#faculty .item label {
  font-size: 12px;
  margin-bottom: 0;
  color: #666;
  margin-top: 12px;}
#faculty .item .designation {
  font-size: 13px;}
#faculty .item .qualification {
  font-size: 13px;}





/* footer */
footer {
  width: 100%;
  background: #101010;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;}
footer p {
  color: #fff;
  font-size: 13px;
  margin-bottom: 0;
  letter-spacing: 1px;}
footer p a {
  color: #929292;}


/* login */
.login {
  margin: 0 auto;
  width: 90%;
  max-width: 370px;
  background: #fefeff;
  box-shadow: 0 0 5px #d3ccda;
  padding: 70px 30px 20px;
  margin-top: 20px;
  margin-bottom: 20px;}
.login .body h3 {
  margin-bottom: 10px;
  margin-top: 50px;
  color: #6f6662;
  font-size: 16px;}	
.login .body img {
  max-width: 300px;
  height: 80px;
  margin-bottom: 10px;}
.login .body input {
  width: 100%;
  padding: 10px 0 10px;
  margin-bottom: 15px;
  font-size: 17px;
  font-weight: bold;
  border: none;
  outline: none;
  background: #fff;
  border-bottom: 1px solid #ccc;}
.login .body button {
  width: 100%;
  margin-top: 20px;
  padding: 15px;}
.login .body p {
  font-size: 12px;
  text-align: center;
  margin-bottom: 0;}
.login .body p:first-of-type {
  margin-top: 45px;}