/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
  margin: 0;
}
html {
  position: relative;
  min-height: 100%;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #272829;
}

a {
  color: #149ddd;
}

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

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

@media screen and (max-width: 480px) {
  [data-aos-delay] {
    transition-delay: 0s !important;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  right: 15px;
  bottom: 15px;
  background: #149ddd;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 7px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #44c2fc;
  transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  min-height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  transition: all ease-in-out 0.5s;
  z-index: 9997;
  transition: all 0.5s;
  padding: 0 15px;
  background: #040b14;
  overflow-y: auto;
}

#header .profile img {
  margin: 15px auto;
  display: block;
  width: 120px;
  border: 8px solid #2c2f3f;
}

#header .profile h1 {
  font-size: 24px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  -moz-text-align-last: center;
  text-align-last: center;
  font-family: "Poppins", sans-serif;
}

#header .profile h1 a {
  color: #fff;
  text-decoration: none;
}

#header .profile h1 a:hover {
  color: #149ddd;
  text-decoration: none;
}

#header .profile .social-links a {
  font-size: 24px;
  display: inline-block;
  background: #212431;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 46px;
  height: 46px;
  transition: 0.3s;
}

#header .profile .social-links a:hover {
  background: #149ddd;
  color: #fff;
  text-decoration: none;
}

#header .copyright-container {
  margin-top: 20px;
  padding: 15px 0 15px;
  color: #a8a9b4;
  font-size: 14px;
  position: static;
  /*left: 0;*/
  bottom: 0;
  width: auto;
  /*z-index: 9999;
  background: #040b14;*/
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
}


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

#header .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
}

#main {
  margin-left: 300px;
}

@media (max-width: 1199px) {
  #header {
    left: -300px;
  }
  #main {
    margin-left: 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

#sidebar {
    padding-top: 30px;
}

#sidebar * {
  margin: 0;
  padding: 0;
  list-style: none;
}

#sidebar.active {
  margin-left: -250px;
}

#sidebar ul.components {
  position: relative;
  white-space: nowrap;
}

#sidebar ul li a {
  display: flex;
  align-items: center;
  color: #a8a9b4;
  padding: 12px 15px;
  transition: 0.3s;
  font-size: 15px;
}

#sidebar ul li a i {
  font-size: 30px;
  padding-right: 8px;
  color: #6f7180;
}

#sidebar ul li a:hover, #sidebar ul li.active>a {
  text-decoration: none;
  color: #fff;
}

#sidebar ul li a:hover i, #sidebar ul li.active>a i {
  color: #149ddd;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  font-size: 20px;
  transition: all 0.4s;
  outline: none !important;
  background-color: #149ddd;
  color: #fff;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 50px;
  cursor: pointer;
}

.mobile-nav-toggle:hover {
  background-color: #44c2fc;
}

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: url(../img/hero-bg.png) top center no-repeat;
  background-size: cover;
  padding: 40px 0;
}

#hero h1 {
  margin: 0
  font-size: 48px;
  font-weight: 700;
  color: #012970;
}

#hero h2 {
  color: #444444;
  margin: 0px 0 30px 0;
  font-size: 26px;
}

#hero ul {
  list-style-type: none;
}

.hero .hero-img {
  text-align: right;
}


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

@media (max-width: 991px) {
  .hero {
    height: auto;
    padding: 120px 0 60px 0;
  }
  .hero .hero-img {
    text-align: center;
    margin-top: 80px;
  }
  .hero .hero-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero h2 {
    font-size: 24px;
  }
  .hero .hero-img img {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
  padding: 20px 10px 30px;
  overflow: hidden;
}

.section-bg {
  background: #f5f8fd;
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #173b6c;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 100px;
  height: 3px;
  background: #149ddd;
  bottom: 0;
  left: 0;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #173b6c;
}

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

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 2px;
  color: #149ddd;
}

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

/*--------------------------------------------------------------
# Partners
--------------------------------------------------------------*/
.partners .section-title {
  margin-bottom: 0;
  padding-bottom: 0;
}

.partners .carousel {
  padding-top: 0;
  margin: -20px;
}

.partners .partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #f1eeed;
  border-bottom: 1px solid #f1eeed;
  border-top: 1px solid #f1eeed;
  border-left: 1px solid #f1eeed;
  overflow: hidden;
  background: #fff;
  height: 100px;
}

.partners .partner-logo img {
  transition: all 0.3s ease-in-out;
  max-height: 60px;
  width: auto;
  max-width: 180px;
  height: auto;
  margin: auto;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.partners .partner-logo:hover img {
  -webkit-filter: none;
  filter: none;
  transform: scale(1.1);
}

.partners .carousel-control-next, .partners .carousel-control-prev,  .partners .carousel-indicators {
  filter: invert(100%);
}

.partners .carousel {
  margin: 0 20px 0;
}

.partners .carousel-control-prev {
  margin-left: -15px;
}

.partners .carousel-control-next {
  margin-right: -15px;
}

@media (max-width: 991px) {
  .partners .carousel-control-prev {
  margin-left: -85px;
}

.partners .carousel-control-next {
  margin-right: -85px;
}
}

@media (max-width: 768px) {
  .partners .carousel-control-prev {
  margin-left: -15px;
}

.partners .carousel-control-next {
  margin-right: -15px;
}
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 10px 10px 0;
  background: #f9f9f9;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
  word-break: keep-all;
}

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

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

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

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

/*--------------------------------------------------------------
# Group
--------------------------------------------------------------*/
.group .member {
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.3s;
  margin: 15px;
  min-width: 250px;
}

.group .member .member-img {
  position: relative;
  overflow: hidden;
}

.group .member .member-img:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.group .member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: rgba(255, 255, 255, 0.5);
  z-index: 2;
}

.group .member .social a {
  transition: color 0.3s;
  color: rgba(1, 41, 112, 0.5);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.group .member .social a:hover {
  color: rgba(1, 41, 112, 0.8);
}

.group .member .social i {
  font-size: 48px;
}

.group .member .member-info {
  padding: 10px 15px 20px 15px;
}

.group .member .member-info a:hover {
  color: #44c2fc;
}

.group .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #012970;
}

.group .member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #aaaaaa;
}

.group .member .member-info p {
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: #5e5e5e;
  word-break: keep-all;
}

.group .member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.group .member:hover .social {
  right: 8px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts {
  padding-bottom: 30px;
}

.facts .count-box {
  padding: 30px;
  width: 100%;
}

.facts .count-box i {
  display: block;
  font-size: 50px;
  color: #149ddd;
  float: left;
}

.facts .count-box span {
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  color: #050d18;
  margin-left: 60px;
}

.facts .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #122f57;
}

.facts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #122f57;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.facts .count-box a:hover {
  color: #44c2fc;
}

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume .section-title {
  padding-bottom: 10px;
}

.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #050d18;
}

.resume .resume-title:first-child {
  margin-top: 0;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #1f5297;
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #050d18;
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  background: #e4edf9;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item ul li:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #1f5297;
}

/*--------------------------------------------------------------
# Research topics
--------------------------------------------------------------*/

.topics .carousel-control-next,
.topics .carousel-control-prev, .topics .carousel-indicators  /*, .carousel-indicators */ {
    filter: invert(100%);
}

.topics .carousel-control-prev {
  margin-left: -55px;
}

.topics .carousel-control-next {
  margin-right: -55px;
}

.topics .carousel-indicators {
  margin-bottom: -25px;
}

.topics .carousel-inner {
  width: 600 px;
}

.topics .carousel-inner .carousel-item .video-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 75%;
}

/* Then style the iframe to fit in the container div with full height and width */
.topics .carousel-inner .carousel-item .responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.topics .responsive {
  max-width: 600px;
  height: auto;
}

.topics p {
  padding-left: 50px;
  padding-right: 50px;
}

/*--------------------------------------------------------------
# Infrastructure
--------------------------------------------------------------*/
.infrastructure .infrastructure-item {
  margin-bottom: 30px;
}

.infrastructure .cover {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.infrastructure .cover img {
  height:300px;
}

.infrastructure #infrastructure-filters {
  padding: 0;
  margin: 20px auto 10px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  padding: 2px 15px;
}

.infrastructure #infrastructure-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #272829;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.infrastructure #infrastructure-filters li:hover {
  color: #44c2fc;
}


.infrastructure #infrastructure-filters li.filter-active {
  color: #149ddd;
}

.infrastructure #infrastructure-filters li:last-child {
  margin-right: 0;
}

.infrastructure .infrastructure-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(255, 255, 255, 0.75);
}

.infrastructure .infrastructure-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.75);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.infrastructure .infrastructure-wrap img {
  transition: 1s;
}

.infrastructure .infrastructure-wrap .infrastructure-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.infrastructure .infrastructure-wrap .infrastructure-info h4 {
  font-size: 20px;
  font-weight: 700;
}

.infrastructure .infrastructure-wrap .infrastructure-info p {
  font-weight: 600;
  font-size: 14px;
  padding: 0;
  margin: 0;
}

.infrastructure .infrastructure-wrap .infrastructure-links {
  text-align: center;
  z-index: 4;
}

.infrastructure .infrastructure-wrap .infrastructure-links a {
  color: #fff;
  background: #173b6c;
  margin: 10px 2px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.infrastructure .infrastructure-wrap .infrastructure-links a i {
  font-size: 24px;
  line-height: 0;
}

.infrastructure .infrastructure-wrap .infrastructure-links a:hover {
  background: #44c2fc;
}

.infrastructure .infrastructure-wrap:hover img {
  transform: scale(1.2);
}

.infrastructure .infrastructure-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.5;
}

.infrastructure .infrastructure-wrap:hover .infrastructure-info {
  opacity: 1;
}

.infrastructure .infrastructure-wrap:hover .infrastructure-info::before {
  top: 15px;
  left: 15px;
}

.infrastructure .infrastructure-wrap:hover .infrastructure-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Publications
--------------------------------------------------------------*/
.publications {
  margin-bottom: 50px;
}

.publications .carousel {
  margin-bottom: 30px;
}

.publications .carousel-main .carousel-cell {
  width: 100%;
  cursor: text;
  margin-right: 10px;
  border-radius: 5px;
}

.publications .carousel-nav .flickity-prev-next-button {
  width: 30px;
  height: 30px;
  margin: 3px;
  background: transparent;
}

.publications .carousel-nav .flickity-prev-next-button.previous {
  left: -40px;
}

.publications .carousel-nav .flickity-prev-next-button.next {
  right: -40px;
}
/* hide disabled button */
.publications .carousel-nav .flickity-prev-next-button:disabled {
  display: none;
}

.publications .carousel-nav .carousel-cell {
  cursor: pointer;
  height: 20px;
  width: auto;
  display: inline-block;
  padding: 10px 15px 15px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #272829;
  transition: all 0.3s ease-in-out;
}

.publications .carousel-nav .carousel-cell:hover, .publications .carousel-nav .flickity-prev-next-button:hover {
  color: #44c2fc;
}

.publications .carousel-nav .carousel-cell.is-nav-selected {
  color: #149ddd;
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  text-align: center;
  padding: 6px 15px 15px;
}

.publications h4  {
  display:block;
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #050d18;
  margin-bottom: 10px;
  text-align: center;
}
/*--------------------------------------------------------------
# Grants
--------------------------------------------------------------*/
.grants .grants-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #050d18;
}

.grants .grants-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #1f5297;
  position: relative;
}

.grants .grants-item h4  {
  display:block;
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
}

.grants .grants-item h5 {
  font-size: 16px;
  background: #e4edf9;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.grants .grants-item ul {
  padding-left: 20px;
}

.grants .grants-item ul li {
  padding-bottom: 10px;
}

.grants .grants-item:last-child {
  padding-bottom: 0;
}

.grants .grants-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #1f5297;
}

/*--------------------------------------------------------------
# Teaching
--------------------------------------------------------------*/
.teaching .teaching-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #050d18;
}

.teaching .teaching-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #1f5297;
  position: relative;
}

.teaching .teaching-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
}

.teaching .teaching-item h5 {
  font-size: 16px;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.teaching .teaching-item ul {
  padding-left: 20px;
}

.teaching .teaching-item ul li {
  padding-bottom: 10px;
}

.teaching .teaching-item:last-child {
  padding-bottom: 0;
}

.teaching .teaching-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #1f5297;
}
