/*
  
*/
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #666666;
  font-family: 'Maven Pro', sans-serif;
}

a {
  color: #f46e42;
}

a:hover, a:active, a:focus {
  color: #f48460;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Prelaoder */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../img/preloader.svg") no-repeat center center;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  padding: 6px 12px 9px 12px;
  font-size: 16px;
  border-radius: 2px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

.back-to-top:focus {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #f48460;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  padding: 30px 0;
  height: 92px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header #logo {
  float: left;
}

#header #logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-family: 'Maven Pro', sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a, #header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 26px;
  }
  #header #logo img {
    max-height: 40px;
  }
}

#header.header-fixed {
  background: rgba(52, 59, 64, 0.9);
  padding: 20px 0;
  height: 78px;
  transition: all 0.5s;
}

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

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

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero h1 {
  margin: 30px 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}

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

#hero h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 24px;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

#hero .btn-get-started {
  font-family: 'Maven Pro', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  background: #f48460;
  border: 2px solid #f48460;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
  float: right;
  margin: 0;
}

@media (max-width: 768px) {
  #nav-menu-container {
    display: none;
  }
}

/* Nav Meu Styling */
.nav-menu a {
  padding: 0 8px 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-family: 'Maven Pro', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 13px;
  outline: none;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #f48460;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .menu-active > a:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.nav-menu ul {
  margin: 4px 0 0 0;
  border: 1px solid #e7e7e7;
}

.nav-menu ul li {
  background: #fff;
}

.nav-menu ul li:first-child {
  border-top: 0;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li a:hover {
  background: #f48460;
  color: #fff;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

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

@media (max-width: 768px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(52, 59, 64, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #f48460;
}

#mobile-nav ul .menu-item-active {
  color: #f48460;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(52, 59, 64, 0.9);
  display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

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

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
.section-header .section-title {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 5px;
}

.section-header .section-description {
  text-align: center;
  padding-bottom: 40px;
  color: #999;
}

/* About Us Section
--------------------------------*/
#about {
  background: #fff;
  padding: 80px 0;
}

#about .about-container .background {
  min-height: 300px;
  /*background: url(../img/about-img.jpg) center top no-repeat;*/
  margin-bottom: 10px;
}

#about .about-container .content {
  background: #fff;
}

#about .about-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}



#about .about-container p {
  line-height: 26px;
}

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

#about .about-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#about .about-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #f48460;
}

#about .about-container .icon-box .icon i {
  color: #f48460;
  font-size: 24px;
}

#about .about-container .icon-box .title {
  margin-left: 80px;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 18px;
  text-transform: uppercase;
}

#about .about-container .icon-box .title a {
  color: #111;
}

#about .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

/* Facts Section
--------------------------------*/
#facts {
  background: #f7f7f7;
  padding: 80px 0 60px 0;
}

#facts .counters span {
  font-size: 48px;
  display: block;
  color: #f48460;
}

#facts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: 'Maven Pro', sans-serif;
  font-size: 14px;
}

/* Services Section
--------------------------------*/
#services {
  background: #fff;
  background-size: cover;
  padding: 20px 0 0 0;
}

#services .box {
  
  padding: 50px 20px;
  margin-bottom: 50px;
  text-align: center;
  border: 1px solid #e6e6e6;
  height: 200px;
  position: relative;
  background: #fafafa;
}

#services .icon {
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  transition: 0.2s;
  border-radius: 50%;
  border: 6px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 72px;
  height: 72px;
  background: #f48460;
}

#services .icon a {
  display: inline-block;
}

#services .icon i {
  color: #fff;
  font-size: 24px;
}

#services .box:hover .icon {
  background: #fff;
  border: 2px solid #f48460;
}

#services .box:hover .icon i {
  color: #f48460;
}

#services .box:hover .icon a {
  color: #f48460;
}

#services .title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

#services .title a {
  color: #111;
}

#services .description {
  font-size: 14px;
  line-height: 24px;
}
.box .description {
	font-size:16px !important;
	text-align: initial;
	line-height: 22px !important;
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  /*background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/call-to-action-bg.jpg) fixed center center;*/
  background-size: cover;
  padding: 30px 0 30px 0;
  background:  #d5dce9;
}
/* #call-to-action a{
	color: #fff !important;
} */

#call-to-action .cta-title {
  /*color: #fff;*/
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #fff;
}

@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: 'Maven Pro', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #f48460;
  border: 2px solid #f48460;
}

/* Portfolio Section
--------------------------------*/
#portfolio {
  background: #f7f7f7;
  padding: 40px 0 0 0;
  margin-top: 70px;
}

#portfolio #portfolio-wrapper {
  padding-right: 15px;
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 45px 0;
  list-style: none;
  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 10px;
  display: inline-block;
  padding: 10px 22px;
  font-size: 12px;
  line-height: 20px;
  color: #666666;
  border-radius: 4px;
  text-transform: uppercase;
  background: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover, #portfolio #portfolio-flters li.filter-active {
  background: #f48460;
  color: #fff;
}

#portfolio .portfolio-item {
  position: relative;
  height: 200px;
  overflow: hidden !important;
  margin-bottom: 15px;
  transition: all 350ms ease;
  transform: scale(1);
}

#portfolio .portfolio-item a {
  display: block;
  margin-right: 15px;
}

#portfolio .portfolio-item img {
  position: relative;
  top: 0;
  transition: all 600ms cubic-bezier(0.645, 0.045, 0.355, 1);
  width:350px;
}

#portfolio .portfolio-item .details {
  height: 50px;
  background: #f48460;
  position: absolute;
  width: 100%;
  height: 78px;
  bottom: -78px;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

#portfolio .portfolio-item .details h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  padding: 8px 0 2px 8px;
  margin: 0;
}

#portfolio .portfolio-item .details span {
  display: block;
  color: #fff;
  font-size: 13px; 
  padding-left: 6px;
  padding-right: 11px;
  background: #f48460;
}

#portfolio .portfolio-item:hover .details {
  bottom: 0px;
}

#portfolio .portfolio-item:hover img {
  top: -30px;
}

/* Team Section
--------------------------------*/
#team {
  background: #fff;
  padding: 30px 0 0 0;
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
}

#team .member .pic {
  margin-bottom: 15px;
  overflow: hidden;
  /*height: 260px;*/
}

#team .member .pic img {
  max-width: 70%;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  color: #b3b3b3;
}

#team .member .social a:hover {
  color: #f48460;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/* Contact Section
--------------------------------*/
#contact {
  background: #f7f7f7;
  padding: 80px 0 40px 0;
}
#contact p{
	font-size: 17px;
}
#contact h6{
	font-size: 20px;
}
#contact #google-map {
  height: 300px;
  margin-bottom: 20px;
}

#contact .info {
  color: #333333;
}

#contact .info i {
  font-size: 32px;
  color: #f48460;
  float: left;
}

#contact .info p {
  padding: 0 0 10px 50px;
  margin-bottom: 20px;
  line-height: 22px;
  font-size: 14px;
}

#contact .info .email p {
  padding-top: 5px;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 17px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 7px 0;
  border-radius: 50%;
  text-align: center;
  width: 34px;
  height: 32px;
  transition: 0.3s;
}

#contact .social-links a:hover {
  background: #f48460;
  color: #fff;
}

#contact .form #sendmessage {
  color: #f48460;
  border: 1px solid #f48460;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show, #contact .form #errormessage.show, #contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input, #contact .form textarea {
  box-shadow: none;
  font-size: 14px;
}

#contact .form button[type="submit"] {
  background: #f48460;
  border: 0;
  padding: 3px 13px;
  color: #fff;
  transition: 0.4s;
}

#contact .form button[type="submit"]:hover {
  background: #f48460;
}

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

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #ccc;
}
/*custome css start*/
.visionaryone{
  background: #4db99a;
  padding: 14px;
  min-height: 362px;
}
.visionaryone .readmorelink a {
margin-bottom:-10px;
bottom: 13px !important;
right: 23px !important;
position:absolute;	
}
.visionaryone p{
   color: #fff;
   font-size: 16px;
}
.visionaryone h4{
  color: #fff;
}
.icelink1 a:hover{
	color: #fff;
  background: rgba(0, 0, 0, 0.3);
  padding: 7px 7px 7px 7px;
  border-radius: 6px;
}
.scolarlink a:hover{
	color: #fff;
  background: rgba(0, 0, 0, 0.3);
  padding: 7px 7px 7px 7px;
  border-radius: 6px;
}
.readmorelink a{
  color: #fff;
  padding: 7px 7px 7px 7px;
  border-radius: 6px;
  }
  .readmorelink a:hover{
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  padding: 7px 7px 7px 7px;
  border-radius: 6px;
  }
  .readmorelink1 a{
  color: #f46e42;
  padding: 7px 7px 7px 7px;
  border-radius: 6px;
  float: right;
  }
  .readmorelink1 a:hover{
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  padding: 7px 7px 7px 7px;
  border-radius: 6px;
  }
.readmorelink{
  text-align: right;
}
.item {
    display: none;
    position: relative;
    transition: (.1s ease-in-out left);
}
.section-header .section-description{
	padding: 0 !important;
}
.polymerlink{
	text-align: right;
}
.scontent{
	background: #f46e42;
}
.scontent1{
	background: #e7e8e9;
	padding: 20px 0 20px 0;
}
.mshipcontent{
	background:#e7e8e9;
}
scontent3{
	background: #f46e42;
}
.scontentpara{
	color: #fff;    
  text-align: inherit;
	margin-top: 19px;
  margin-left: -10px;
  margin-right: 150px;
  line-height: 26px !important;
  font-size: 16px !important;
  width:100%;
}

.rcontentpara{
	color:#231f20;   
  text-align: inherit;
	margin-top: 10px;    
	line-height: 32px !important;
	font-size: 17px !important;
}
.scontentpara1{
	text-align: justify;
    margin-top: 0px;
    margin-left: -17px;
    margin-right: 130px;
}
.scontentpara1 p{
  margin-left: 5px;
	margin-bottom: 2px !important;
	font-size: 15px;
  color: #231f20;
  line-height: 20px;    
}

.scontentpara1 img{
	float: left; 
	margin-right: 8px;
}

#about {    
 padding: 60px 0 20px 0!important;
}
#about1 {    
  padding: 0!important;
}

.aboutice{
	background-color: #edb5a3;
}
#services .box {
  padding: 30px 20px;
}
#call-to-action .cta-title{
	text-align:center;
}
.contactsection{
	background: #171717;
	padding: 30px;
}
#contact{
	padding: 0;
}
#footer{
	padding: 10px !important;
	background: #fff !important;   
  color: #343b40 !important;
}
.patient{
	background: url(../img/background-1.jpg);
	height: 180px;
	text-align: center;
	padding-top: 22px;
}
.patient a{
	color: #fff;
}
.patient p{
	color: #fff;
	text-decoration: none;
}
.scholars{
	background: url(../img/background-2.jpg);
	height: 180px;
	text-align: center;
	padding-top: 22px;
}
.scholars a{
	color: #fff;
}
.scholars p{
	color: #fff;
}
.publication{
	background: url(../img/background-2.jpg);
	height: 180px;
	text-align: center;
	padding-top: 22px;
}
.publication a{
	color: #fff;
}
.publication p{
	color: #fff;
}
.books{
	background: url(../img/background-1.jpg);
	height: 180px;
	text-align: center;
	padding-top: 22px;
}
.books a{
	color: #fff;
}
.books p{
	color: #fff;
}
 .carousel-caption {
    right: 0;
    text-align: left;    
    max-width: 364px; 
    margin-bottom: 120px;
    background: rgba(0, 0, 0, 0.4);    
    padding: 12px 0px 0px 17px;
    border-radius: 6px;	
}
.carousel-caption h6, h4{
	margin-bottom: 13px !important;
}
.carousel-caption p{
	margin-bottom: 20px !important;
}
.section-description1{
	margin: 0 75px 0 75px;
	text-align: center;
}
.researchlink{
	padding: 60px;
}
.icemain{
	padding: 40px;
}
.icemain h6{
	font-weight: 600;
    font-size: 15px;
    color: #231f20;
	margin: 0;
}
.icemain h2{
	text-align: center;
	color: #231f20;
	margin-bottom: 0 !important;
	font-weight: 800;
}
.icemain p{
	font-size: 14px;
    color: #231f20;
}
.icelink{
	text-align: right;    
    padding-top: 150px;	
}
.icelink a{
	color: #dc6c48;
}
.iceslider{
	background-color: #f2cbbf;
    width: 100%;    
    height: 78px;
    padding: 11px 5px;
    border-radius: 4px;
}
.honorcontent{
	padding: 0;
}
.honorcontent h2{
 
  margin-bottom: 0 !important;
  color: #231f20;
  font-weight: 800;
}
.mshipcontent2{
	padding: 41px 0 0 0;
}
.mshipcontent2 h2{
  text-align: center;
	margin-bottom: 0 !important;
	color: #231f20;
	font-weight: 800;
}
.mshipcontent3{
  padding: 0;
}
ul.mcontentpara1 {
  list-style-type: none;
}
.mcontentpara1 img {
  float: left;
  margin-right: 8px;
}
.mcontentpara1 {
  text-align: justify;
  margin-top: 0px;
  margin-left: -48px;
  /* margin-right: 137px; */
}
.mcontentpara1 p{

  margin-left: 31px;
margin-bottom: 2px !important;
font-size: 15px;
  color: #231f20;
  line-height: 20px;
  
}
.underline2{
	margin-left: 35px;
}
#services .box{
  height: 505px !important;
  width: 292px !important;
  padding: 0 !important;
  background: #f9fcfc;
  border: 0;
  box-shadow: 0px 2px #dcdfe2;
}
/*#services .box :hover{
  -ms-transform: scale(1.1); /* IE 9
  -webkit-transform: scale(1.1); /* Safari 3-8
  transform: scale(1.1);
}*/
.lpostimg{
	width: 290px;
}
.lposthead{
	padding: 30px 30px 0 30px;
}
.lposthead h5{
	font-size: 15px !important;    
	color: #231f20 !important;
	text-align: left;
    margin-top: 15px;
	margin-left: 14px;
}
.lposthead p{
	font-size: 14px !important;    
/*color: #231f20 !important;
  color: #fff !important;*/	
	text-align: justify;
    margin-left:14px;
    margin-right:12px;
  margin-bottom: 3px !important;
  line-height: 19px !important;
}

.latestpost h2{
	text-align: center;
	margin-bottom: 0 !important;
    color: #231f20;
	font-weight: 800;
}
.descriptionhead{
	color: #f46e42;
}
.scholrsarea p{
	font-size: 13px;
	color: #000;
  margin-bottom: 2px !important;
  margin-left: 10px;	
}
.scholrsarea h6{	
  margin-left: 10px;	
}
.scholrsarea img{
  border: 4px solid #fff ;
}
.scholrsarea .fixp{
  height: 117px;
}
.scholrsarea p span{
	
	color: #d56c00 !important;
  
}
ul.scontentpara1{
	list-style-type: square;	
}
ul.icemainlist{
	list-style-type: square;
    color: #b37b69;	
}

.scolararea1 h2{
	text-align: center;
	margin-bottom: 0 !important;
    color: #231f20;
	font-weight: 800;
}
.scolarlink {
	text-align: right;
	color: #fff;
	margin-bottom:10px;
}
.scolarlink a{
	color: #fff;
}
.booksjrnlsarea h2{
	text-align: center;
	margin-bottom: 10px !important;
    color: #231f20;
	font-weight: 800;
}
#team .member1 .pic1 img{
	width: 90%;
}
.member h6{
	color:#231f20;
}
.statisticsarea{
	background: url(../img/background-3.jpg);
}
.statisticsarea1{
	padding: 25px;
}
.statisticsarea1 h2{
	text-align: center;
	margin-bottom: 0 !important;
    color: #231f20;
	font-weight: 800;
}
.gratitudearea {
  margin-top: 20px;
}
.gratitudearea h2{	
	text-align: center;
	margin-bottom: 0 !important;
    color: #231f20;
	font-weight: 800;
}
.statisticsarea1 p{
	text-align: center;
	color: #fff;
	
}
.statisticsarea1 h3{	
	color: #fff !important;
}
.gratitudehead .box{
	height: 350px !important;
	border: 1px solid #e6e6e6;
    width: 270px !important;
    padding: 0 !important;
}
.gprof{
    width: 283px;
	
}
.gprof p{
  padding: 0;
    margin: 1px 0 0px 0;
    width: 283px;
    font-size: 15px;
    bottom:0;
}
.lposthead1 .description{
	min-height: 208px;
	font-size: 15px !important;
    color: #231f20 !important;
    
	width: 100%;
    text-align: center;
	padding: 5px 10px;
}
#portfolio {
    background: #edb5a3 !important;    
}
.locationamap img{
	width: 100%;
}
.contactarea h5{
	color: #fff;    
    font-weight: 500;
	margin-bottom: 10px !important;
}
.contactarea p{
	font-size: 12px;
    color: #fff;
	margin-bottom: 5px !important;
}
.bulletimg img{
	float: left;
	margin-right: 5px;
}
.bulletimg p{
	margin-left: 20px;
	margin-bottom: 15px !important;
}
.bulletimg1 img{
	float: left;
	margin-right: 5px;
}
.bulletimg1 p{
	margin-left: 20px;
	margin-bottom: 5px !important;
}
.form-control{
	width: 100% !important;
}
.social-links{
	padding-top: 60px !important;
}
.locationamap p{
	padding-top: 65px;
}
.icelink1{
	text-align: right;
	margin-bottom:10px;
}
.icelink-books a{
  color: #f46e42;
  float: right;
}
#about .section-description1{
	line-height: 30px !important;
}
.underline{
	text-align: center;
}
.researchtitle{
	margin-left: 6px;
	margin-bottom: 0 !important;
	color:#231f20;
	font-weight: 800;
}
.polymerman h2{
	text-align: center;
    color: #231f20;
	margin-bottom: 0 !important;
	font-weight: 800;
}
.underline3{
	margin-left: 13px;
	float: left;
}
.underline3 h2{
	margin-bottom: 0px !important;
    color: #231f20;
	font-weight: 800;
}
.pmanimg img{
	width:100%; 
  margin-left: -15px;
  }
 .pmanimg2{ 
	width: 100%;
    margin-top: 10px;
}

.honorimg img{
	height: 496px; 
  margin-left: -15px;
  margin-top: 47px;
}

.statisticspara{
	font-size: 25px; 
	font-weight: 600;
}
.gallerylink {
    text-align: right;
    color: #fff;
    margin-bottom: 0px;
}
.gallerylink a {
    color: #fff;
}
.gallerylink a:hover {
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    padding: 1px 10px 0px 10px;
    border-radius: 6px;
}

/*--custome media quries--*/
@media only screen and (width: 1900px){
  .pmanimg img {
    height: 480px;
    margin-left: -15px;
    width: 100%;
  }
  .researchlink {
    padding: 60px;
    margin-top: 40px;
  }
  .aboutdigramimg {
    width: 100%;
    padding: 43px;
    height: 839px;
  }
  .aboutdigramimg2 {
    width: 500px;
    padding-top: 200px;
  }
}

@media only screen and (width: 1680px){
  .pmanimg img {    
    width: 100%;
  }
  .researchlink {
    padding: 60px;
    margin-top: 40px;
  }
  .aboutdigramimg {
    width: 100%;
    padding: 43px;
    height: 925px;
  }
  .aboutdigramimg2 {
    width: 500px;
    padding-top: 200px;
  }
  .rcontentpara {    
    margin-top: 28px;   
  }
}

@media only screen and (width: 1600px){
  .pmanimg img {    
    width: 100%;
  }
  .researchlink {
    padding: 60px;
    margin-top: 40px;
  }
  .aboutdigramimg {
    width: 100%;
    padding: 43px;
    height: 925px;
  }
  .aboutdigramimg2 {
    width: 500px;
    padding-top: 200px;
  }
  .rcontentpara {    
    margin-top: 28px;   
  }
}


@media(width: 800px){
  #header #logo img{
    width: 80%;
  }
.nav-menu > li{
  margin-left: 0;
  }
.nav-menu a{
  padding: 0px 0px 0px 6px;  
  }
#nav-menu-container{
  margin-top: 15px;
}
.carousel-caption{
  margin-bottom: 50px;
 }
 .visionaryone{
  min-height: 449px;
 }
 .pmanimg img{
   width: 100%;
 }
 .scontentpara {
  color: #fff;
  text-align: inherit;
  margin-top: 11px !important;
  margin-left: -26px;  
  line-height: 17px !important;
  font-size: 14px !important;
  text-align: justify;
 }
 #about {
  padding: 20px 0 0px 0!important;
 }
 .rcontentpara {
  color: #231f20;
  text-align: justify;
  margin-top: 5px;
  margin-bottom: 15px;
  line-height: 27px !important;
  font-size: 17px !important;
 }
 .patient{
  background-repeat: no-repeat;
 }
 .scholars{
  background-repeat: no-repeat;
 }
 .publication{
  background-repeat: no-repeat;
 }
 .books{
  background-repeat: no-repeat;
 }
 .researchlink {
  padding: 22px 76px 25px 76px;
 }
 .icemain {
  padding: 15px;
 }
 .ul.icemainlist{
  margin-left: -23px;
 }
 .honorcontent {
  padding: 10px 0 0 0;
 }
 .honorspace {
  margin-bottom: 3px !important;
 }
 .scontentpara1 {
  text-align: justify;
  margin-top: 0px;
  margin-left: -31px;
  margin-right: 20px;
 }
 #services .box{
  width: 230px !important;
  margin-bottom: 25px;
 }
 .box .description{
  font-size: 15px !important;
 }
 .lpostimg {
  width: 230px;
 }
 .scholrsarea img{
  width: 78px;
 }
 .scholrsarea h6{
   margin-left: 0;
 }
 .scholrsarea p {
  font-size: 11px;
  color: #000;
  margin-bottom: 2px !important;
  margin-left: 0px;  
  line-height: 15px !important;
 }
 .underline3 {
  margin-left: 13px;
  float: none;
}
#portfolio #portfolio-flters li{
  margin: 0;
  font-size: 11px;
  padding: 6px 16px;
 }
 #portfolio #portfolio-flters{
  margin: 0 15px 25px 0;
 }
 .gprof {
  width: 60px;
 }
}

@media (max-width: 768px) {
  #about .about-container .title {
    padding-top: 15px;
  }
  .visionaryone{
    height: 440px;
  }
  .pmanimg img{
    width: 100%;
    height: 425px;
  }
  .scontentpara{
    margin-top: 10px !important;
    margin-left: -25px !important;
    width: unset !important;
    margin-right: 0px !important;
    line-height: 15px !important;
    font-size: 14px !important;
  }
  .patient{
    background-repeat: no-repeat;
    margin-bottom: 14px;
  }
  .scholars{
    background-repeat: no-repeat;
    margin-bottom: 14px;
  }
  .publication{
    background-repeat: no-repeat;    
  }
  .books{
    background-repeat: no-repeat;   
  }
  .honorcontent {
    padding: 10px 0 0 0;
  }
  .honorspace {
    margin-bottom: 0px !important;
  }
  .scontentpara1{
    text-align: left;
    margin-top: 0px;
    margin-left: -30px;
    margin-right: 0;
  }
  .scontentpara1 p {
    margin-left: 5px;
    margin-bottom: 2px !important;
    font-size: 14px;
    color: #231f20;
    line-height: 15px;
  }
  #services .box{
    width: 230px !important;
    margin-bottom: 25px;
  }
  .box .description{
    font-size: 15px !important;
  }
  .lpostimg {
    width: 230px;
  }
  .scholrsarea img{
    width: 78px;
   }
   .scholrsarea h6{
     margin-left: 0;
   }
   .scholrsarea p {
    font-size: 11px;
    color: #000;
    margin-bottom: 2px !important;
    margin-left: 0px;  
    line-height: 15px !important;
  }
  .gprof {
    width: 60px;
  }
  .underline3 {
    margin-left: 13px;
    float: none;
  }
  #portfolio #portfolio-flters li{
    margin: 0;
    font-size: 11px;
    padding: 6px 16px;
  }
  #portfolio #portfolio-flters{
    margin: 0 15px 25px 0;
  }  
}
@media only screen and (width: 412px) {
  .pmanimg img{
    width: 412px;
    height: 300px;	
  }
  .section-description1{
	  margin:0;
	  text-align: left;
  }
  .scontent {   
    width: 412px !important;
  }
  .icemain {
    padding: 5px;
  }
  .icemain h6{
	font-size: 18px;
  }
  .icemain p{
	font-size: 17px;  
  }
  .polymerman p{
	font-size: 18px;  
  }
  .visionaryone{
	height: 300px;
	margin-bottom: 11px
  }
  #about{
	padding: 30px 0 0px 0!important;  
  }  
  #mobile-nav-toggle{
	  display: inline;
  }
  .img-fluid{
	  max-width: 100%;
  }
  .scontentpara{
	margin-left: 0px !important;
    margin-right: 0px;
	margin-top: 20px !important;
	line-height: 27px !important;
    font-size: 17px !important;    
  }
  .rcontentpara {
    color: #231f20;    
    margin-top: 0px;
    line-height: 27px !important;
    font-size: 17px !important;
  }
  .researchlink {
    padding: 38px;
  }
  .patient{
  background-repeat: no-repeat;  
  margin-bottom: 10px;
  margin-left: 25px;
  }
  .scholars{
  background-repeat: no-repeat; 
  margin-bottom: 10px;
  margin-left: 25px;  
  }
  .honorcontent h2 {
    margin-bottom: 0 !important;
    color: #231f20;
    font-weight: 800;   
    text-align: center;
}
.honorcontent .underline2{
  text-align: center;
}
.researchtitle {  
  text-align: center;
}
.rsrchunderline .underline1{
  text-align: center;
}
  .publication{
  background-repeat: no-repeat;  
  margin-bottom: 10px;
  margin-left: 25px;
  }
  .books{
  background-repeat: no-repeat;
  margin-left: 25px;  
  }
  .icelink {    
    padding-top: 0px;
  }
  .iceslider{
	height: 39px;
  }
  .scontentpara1 {
    text-align: left;    
    margin-left: 0px;
    margin-right: 0px;
  }
  .honorcontent p{
	margin-left: 0px !important;
    font-size: 17px;	
    line-height: 25px;
  }
  
  .mcontentpara1{
    text-align: left;
    margin-top: 0px;
    margin-left: -45px;
  }
  .mshipcontent3 {
    padding: 0 16px;
  }
  .scholrsarea .fixp {
    height: auto;
  }
  #services .box{
	width: 380px !important;
	height: 505px !important;
  }
  .lpostimg {
    width: 380px;
  }
  
  .lposthead{
	  padding:0;
  }
  .scholrsarea p{
	  font-size: 17px ;
	  margin: 0 0 15px 0;
  }
  .statisticspara {
    font-size: 38px;
    font-weight: 600;
  }
  .statisticsarea1 p{
	font-size: 20px;  
  }
  .gratitudehead .box{
	width: 330px !important;
    margin-bottom: 15px;	
  }
  .lposthead1 .description{
	  margin-bottom: -39px;
  }
  .gprof{
	  width: 342px;
	  text-align: center;
  }
  .gncimg{
	  margin-top: 40px;
  }
  .underline3{
    float: none;
    text-align: center;
  }
  #portfolio #portfolio-flters{
	  margin: 0 0 20px 0;
  }
  #portfolio #portfolio-flters li{
	  margin: 3px 3px;
	  padding: 8px 25px;
  }
  #portfolio .portfolio-item img{
	    width: 385px;
  }
}
@media only screen and (max-width: 360px){
  .visionaryone {
    height: 300px;
    margin-bottom: 11px;
  }
  .pmanimg img{
    width: 360px !important;
    height: 288px !important;	
  }
  .section-description1{
	  margin:0;
	  text-align: left;
  }
  .scontent {   
    width: 360px;
  }
  .researchtitle {  
    text-align: center;
  }
  .rsrchunderline .underline1{
    text-align: center;
  }
  .honorcontent .underline2{
    text-align: center;
  }
  .icemain {
    padding: 10px;
  }
  #mobile-nav-toggle{
	  display: inline;
  }
  .img-fluid{
	  max-width: 100%;
  }
  .scontentpara{
	margin-left: 0px !important;
    margin-right: 0px;
	line-height: 26px !important;
    font-size: 16px !important;
  }
  
  .researchlink {
    padding: 38px;
  }
  .rcontentpara{
	line-height: 26px !important;
    font-size: 16px !important;
  }
  .patient{
  background-repeat: no-repeat;  
  margin-bottom: 10px;
  }
  .scholars{
  background-repeat: no-repeat; 
  margin-bottom: 10px; 
  }
  .publication{
  background-repeat: no-repeat;
  margin-bottom: 10px;  
  }
  .books{
  background-repeat: no-repeat; 
  }
  .icelink {    
    padding-top: 0px;
  }
  .iceslider{
	height: 39px;
  }
  .scontentpara1 {
    text-align: left;    
    margin-left: 0px;
    margin-right: 0px;
  }
  .scontentpara1 p{
    font-size: 16px;
    color: #231f20;
    line-height: 26px;
  }
  .honorcontent p{
	  margin-left: 0px !important;
  }
  .rcontentpara{
    margin-top: 5px;
  }
  #services .box{
	width: 331px !important;
  }
  .lpostimg {
    width: 329px;
  }
  .mcontentpara1{
    text-align: left;
    margin-top: 0px;
    margin-left: -45px;
  }
  .mshipcontent3 {
    padding: 0 16px;
  }
  .scholrsarea .fixp {
    height: auto;
  }
  .lposthead{
	  padding:0;
  }
  .statisticspara {
    font-size: 38px;
    font-weight: 600;
  }
  .statisticsarea1 p{
	font-size: 20px;  
  }
  .gratitudehead .box{
	width: 330px !important;
    margin-bottom: 15px;	
  }
  .lposthead1 .description{
	  margin-bottom: 0;
  }
  .gprof{
	  width: 342px;
	  text-align: center;
  }
  .underline3{
    float: none;
    text-align: center;
  }
  #portfolio #portfolio-flters{
	  margin: 0 0 20px 0;
  }
  #portfolio #portfolio-flters li{
	  margin: 3px 3px;
	  padding: 8px 25px;
  }
  .scholrsarea p {
    font-size: 14px;
  
  }
  #about {
    padding: 20px 0 0 0!important;
  }
}

/*--media quries end--*/
/*custome css en*/

.control-box {
  width: 100%;
  }
  .carousel-control{
      background: #666 !important;
      border: 0px;
      border-radius: 0px;
      display: inline-block;
      font-size: 34px;
      font-weight: 200;
      line-height: 18px;
      opacity: 0.5;
      padding: 4px 10px;
      margin: 30px -20px 0;
      height: 30px;
      width: 30px;
      }

      .text-block {
        position: absolute;
        bottom: 20px;
        right: 20px;
        background-color: black;
        color: white;
        padding-left: 20px;
        padding-right: 20px;
    }
	
.honorspace {
	margin-bottom:10px;
}
.card {
	margin:2px !important;
}
/*uma css*/
.visionaryone{
  background: #4db99a;
  padding: 20px;
  /*min-height:235px;*/
}
.visionaryone h4{
  color: #fff;
  font-size:20px;
  font-weight:600;
}
a {
  color: #fff;
}



.bot-txt{
	position:absolute;
	bottom:20px;
}

/* ==================================== */

img.d-block.img-fluid {
  width: 100%;
}

.wrapper {
  column-count: 2;
  column-gap: 50px;
  padding: 50px;
}

.left-side {
  float: left;
  padding: 1%;
}

.profile-section {
  background-color: #f46e42;
  color: white;
  padding: 50px;
  text-align: justify;
  width: 93%;
}

.form-group {
  margin-bottom: 10px!important;
}

