/* @import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600&display=swap");
 @import url("https://fonts.googleapis.com/css?family=Noto+Sans+SC:400,500&display=swap"); */
@-webkit-keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: translateX(-5em);
            transform: translateX(-5em);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: translateX(-5em);
            transform: translateX(-5em);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes fadingInAnim {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadingInAnim {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

* {
  padding: 0;
  margin: 0;
  list-style-type: none;
  text-decoration: none;
}

.asian-text {
  font-family: 'Noto Sans SC', sans-serif;
}

html,
body {
  font-size: 20px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
}

body {
  background-color: #F7FAFC;
}

header {
  width: 100%;
}

main {
  color: #1b1e20;
}

section {
  margin: 3em auto 1.5em auto;
}

@media (min-width: 1024px) {
  section {
    margin: 4em auto;
  }
}

.svg-container,
.svg-home,
.svg-awards {
  display: none;
}

@-webkit-keyframes spinning {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spinning {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.spinner-wrapper {
  position: fixed;
  z-index: 999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #1b1e20;
  width: 100vw;
  height: 100vh;
}

.spinner-wrapper .spinner {
  position: relative;
}

.spinner-wrapper .spinner figure {
  margin: 0;
  -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(1.4, 1.4);
          transform: translate(-50%, -50%) rotate(0deg) scale(1.4, 1.4);
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-animation: rotation 20s infinite linear;
          animation: rotation 20s infinite linear;
}

.spinner-wrapper .spinner figure div:after {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid #5afaae;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  left: 20px;
  top: 20px;
  -webkit-animation: shuffle 2s infinite;
          animation: shuffle 2s infinite;
}

.spinner-wrapper .spinner figure div:nth-child(1) {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.spinner-wrapper .spinner figure div:nth-child(1):after {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}

.spinner-wrapper .spinner figure div:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.spinner-wrapper .spinner figure div:nth-child(2):after {
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}

.spinner-wrapper .spinner figure div:nth-child(3) {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.spinner-wrapper .spinner figure div:nth-child(3):after {
  -webkit-animation-delay: -1.5s;
          animation-delay: -1.5s;
}

.spinner-wrapper .spinner figure div:nth-child(4) {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.spinner-wrapper .spinner figure div:nth-child(4):after {
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
}

.spinner-wrapper .spinner figure div:nth-child(5) {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.spinner-wrapper .spinner figure div:nth-child(5):after {
  -webkit-animation-delay: -2.5s;
          animation-delay: -2.5s;
}

.spinner-wrapper .spinner figure div:nth-child(6) {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

.spinner-wrapper .spinner figure div:nth-child(6):after {
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
}

.spinner-wrapper .spinner figure div:nth-child(7) {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.spinner-wrapper .spinner figure div:nth-child(7):after {
  -webkit-animation-delay: -3.5s;
          animation-delay: -3.5s;
}

.spinner-wrapper .spinner figure div:nth-child(8) {
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}

.spinner-wrapper .spinner figure div:nth-child(8):after {
  -webkit-animation-delay: -4;
          animation-delay: -4;
}

@-webkit-keyframes rotation {
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg) scale(1.4, 1.4);
            transform: translate(-50%, -50%) rotate(-360deg) scale(1.4, 1.4);
  }
}

@keyframes rotation {
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg) scale(1.4, 1.4);
            transform: translate(-50%, -50%) rotate(-360deg) scale(1.4, 1.4);
  }
}

@-webkit-keyframes shuffle {
  50% {
    -webkit-transform: scale(0.4, 0.4) rotate(-90deg);
            transform: scale(0.4, 0.4) rotate(-90deg);
    border-radius: 50%;
  }
}

@keyframes shuffle {
  50% {
    -webkit-transform: scale(0.4, 0.4) rotate(-90deg);
            transform: scale(0.4, 0.4) rotate(-90deg);
    border-radius: 50%;
  }
}

@-webkit-keyframes toggleNavAnim {
  0% {
    padding: 0;
  }
  20% {
    padding: .35em 0;
  }
  100% {
    padding: 0;
  }
}

@keyframes toggleNavAnim {
  0% {
    padding: 0;
  }
  20% {
    padding: .35em 0;
  }
  100% {
    padding: 0;
  }
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #1b1e20 !important;
  -webkit-animation: toggleNavAnim .3s ease;
          animation: toggleNavAnim .3s ease;
}

.relative {
  display: block;
  position: relative;
}

.hidden {
  display: none;
}

.invisible {
  -webkit-box-flex: 0.00001;
      -ms-flex-positive: 0.00001;
          flex-grow: 0.00001;
  opacity: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.visible {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  opacity: 1;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.nav-active {
  position: relative;
  color: #5afaae;
}

@media (min-width: 1024px) {
  .nav-active:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #5afaae;
  }
}

.visit-article {
  z-index: 2;
  font-weight: 500;
  color: white;
  position: relative;
  padding: 1em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.visit-article:before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #1b1e20;
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.visit-article:hover:before {
  -webkit-transform: scale(1);
          transform: scale(1);
  background-color: #4DE2A1;
}

.fa-linkedin {
  cursor: pointer;
}

.read-more {
  font-weight: 500;
  padding: 1em;
  position: relative;
  color: white;
}

.read-more:hover {
  color: #1b1e20;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.read-more:before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4DE2A1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.read-more:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 0 3px #5afaae;
          box-shadow: 0 0 0 3px #5afaae;
  opacity: 0;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.read-more:hover:before {
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  opacity: 0;
}

.read-more:hover:after {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.see-more {
  font-weight: 500;
  position: relative;
  padding: 1em;
  color: white;
}

.see-more:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.see-more:before {
  content: "";
  z-index: -1;
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4DE2A1;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.see-more:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 0 3px #5afaae;
          box-shadow: 0 0 0 3px #5afaae;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.see-more:hover:before {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.see-more:hover:after {
  -webkit-box-shadow: 0 0 0 0 #5afaae;
          box-shadow: 0 0 0 0 #5afaae;
}

.section-wrap,
.main-wrap {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 1024px) {
  .section-wrap,
  .main-wrap {
    width: 80%;
    max-width: calc(1920px * 0.8);
  }
}

.section-wrap a,
.main-wrap a {
  display: inline-block;
  font-weight: 500;
}

.section-wrap h2,
.main-wrap h2 {
  position: relative;
  font-weight: 600;
  color: #1b1e20;
  margin: .5em 0 1em 0;
}

.section-wrap h2:after,
.main-wrap h2:after {
  content: "";
  position: absolute;
  top: -0.75em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  height: 3px;
  width: 3em;
  background-color: #5afaae;
}

@media (min-width: 1400px) {
  .section-wrap h2,
  .main-wrap h2 {
    font-size: 1.75em;
  }
}

.section-wrap p,
.main-wrap p {
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1.4em;
}

.hero-container {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

@media (min-width: 768px) {
  .hero-container {
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

#homepage-bg {
  height: 92.5vh;
  max-height: 812px;
  background-image: url("images/07.jpg");
}

@media (min-width: 768px) {
  #homepage-bg {
    background-image: url("images/05-b.jpg");
    max-height: initial;
  }
}

@media (min-width: 1400px) {
  #homepage-bg {
    height: 100vh;
  }
}

#projects-bg {
  background-attachment: fixed;
  background-color: #26292b;
}

@media (min-width: 768px) {
  #projects-bg {
    background-image: url("images/project02.jpg");
  }
}

#press-bg {
  background-attachment: fixed;
  background-color: #26292b;
}

@media (min-width: 768px) {
  #press-bg {
    background-image: url("images/press.jpg");
  }
}

#awards-bg {
  background-attachment: fixed;
  background-color: #26292b;
}

@media (min-width: 768px) {
  #awards-bg {
    background-image: url("images/awards02.jpg");
  }
}

#publications-bg {
  background-attachment: fixed;
  background-color: #26292b;
}

@media (min-width: 768px) {
  #publications-bg {
    background-image: url("images/publications01.jpg");
  }
}

#grants-bg {
  background-attachment: fixed;
  background-color: #26292b;
}

@media (min-width: 768px) {
  #grants-bg {
    background-image: url("images/grants01.jpg");
  }
}

#contact-bg {
  background-attachment: fixed;
  background-color: #26292b;
}

@media (min-width: 768px) {
  #contact-bg {
    background-image: url("images/contact01.jpg");
  }
}

.background-img {
  display: none;
  z-index: -2;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-filter: brightness(30%);
          filter: brightness(30%);
  -webkit-animation: fadeOutBlack 1.5s ease;
          animation: fadeOutBlack 1.5s ease;
}

@media (min-width: 768px) {
  .background-img {
    display: -ms-grid;
    display: grid;
  }
}

@-webkit-keyframes fadeOutBlack {
  from {
    -webkit-filter: brightness(0%);
            filter: brightness(0%);
  }
  to {
    -webkit-filter: brightness(30%);
            filter: brightness(30%);
  }
}

@keyframes fadeOutBlack {
  from {
    -webkit-filter: brightness(0%);
            filter: brightness(0%);
  }
  to {
    -webkit-filter: brightness(30%);
            filter: brightness(30%);
  }
}

.alim-logo {
  width: 1em;
  height: 1em;
}

.navbar-top {
  color: white;
  background-color: #1b1e20;
  display: none;
  -webkit-animation: fadingInAnim .5s ease;
          animation: fadingInAnim .5s ease;
}

.navbar-top ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar-top ul li {
  margin: .35em 0;
}

.navbar-top ul .left-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: .7em;
}

.navbar-top ul .right-block {
  font-size: .85em;
}

.navbar-top ul a {
  color: white;
}

.navbar-top ul a:hover i {
  opacity: 1;
  color: #5afaae;
}

.navbar-top ul a:hover span {
  opacity: 1;
  color: #5afaae;
}

.navbar-top ul i {
  opacity: .5;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.navbar-top ul span {
  opacity: .5;
  font-size: .9em;
  margin: 0 1em;
  padding-right: 1em;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media (min-width: 768px) {
  .navbar-top {
    display: block;
  }
}

.alim-logo {
  position: relative;
  background-image: url("images/alim.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: .7em;
  margin-right: .5em;
}

.navbar-space-fill {
  height: 4em;
  width: 100%;
}

.navbar-main-outer {
  color: #edf1fa;
  display: block;
  background-color: #1b1e20;
  z-index: 10;
}

.navbar-main-outer .navbar-main-inner {
  margin: 0 auto;
  height: 4em;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #1b1e20;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media (min-width: 768px) {
  .navbar-main-outer .navbar-main-inner {
    background-color: initial;
  }
}

@media (min-width: 1024px) {
  .navbar-main-outer .navbar-main-inner {
    width: 80%;
    max-width: calc(1920px * 0.8);
    background-color: initial;
  }
}

.navbar-main-outer .navbar-main-inner .branding {
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 1em;
}

.navbar-main-outer .navbar-main-inner .branding a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: inherit;
}

@media (min-width: 1024px) {
  .navbar-main-outer .navbar-main-inner .branding {
    margin: 0;
    font-size: 1.2em;
  }
}

@media (min-width: 1400px) {
  .navbar-main-outer .navbar-main-inner .branding {
    font-size: 1.3em;
  }
}

@media (min-width: 2000px) {
  .navbar-main-outer .navbar-main-inner .branding {
    font-size: 1.6em;
  }
}

.navbar-main-outer .navbar-main-inner .branding span:nth-child(2) {
  color: #5afaae;
  margin-right: .25em;
}

@media (min-width: 1024px) {
  .navbar-main-outer .navbar-main-inner .nav-group {
    width: 70%;
  }
}

@media (min-width: 1400px) {
  .navbar-main-outer .navbar-main-inner .nav-group {
    width: 60%;
  }
}

.navbar-main-outer .navbar-main-inner .nav-group .nav-list {
  background-color: #1b1e20;
  position: absolute;
  top: 4em;
  right: 0;
  width: 55%;
  height: 100vh;
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .navbar-main-outer .navbar-main-inner .nav-group .nav-list {
    width: 40%;
  }
}

@media (min-width: 1024px) {
  .navbar-main-outer .navbar-main-inner .nav-group .nav-list {
    background-color: transparent;
    position: relative;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
    top: inherit;
    height: inherit;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.navbar-main-outer .navbar-main-inner .nav-group .nav-list li {
  position: relative;
  padding: 1em 0;
  margin: 0 1.3em;
}

@media (min-width: 1024px) {
  .navbar-main-outer .navbar-main-inner .nav-group .nav-list li {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    margin: 0;
    padding: 1.75em 0;
    font-size: 0.85em;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .navbar-main-outer .navbar-main-inner .nav-group .nav-list li:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #5afaae;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .navbar-main-outer .navbar-main-inner .nav-group .nav-list li:hover {
    color: #5afaae;
  }
  .navbar-main-outer .navbar-main-inner .nav-group .nav-list li:hover:before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.navbar-main-outer .navbar-main-inner .nav-group .nav-list li a {
  font-size: 1em;
  font-weight: 500;
  color: inherit;
}

@media (min-width: 1024px) {
  .navbar-main-outer .navbar-main-inner .nav-group .nav-list li a {
    font-size: 0.9em;
  }
}

@media (min-width: 1400px) {
  .navbar-main-outer .navbar-main-inner .nav-group .nav-list li a {
    font-size: 1.1em;
  }
}

@media (min-width: 2000px) {
  .navbar-main-outer .navbar-main-inner .nav-group .nav-list li a {
    font-size: 1.2em;
  }
}

@media (min-width: 1024px) {
  .navbar-main-outer .navbar-main-inner .nav-group .nav-list li:nth-child(1) {
    margin-left: 0;
  }
}

.navbar-main-outer .navbar-main-inner .nav-group .nav-reveal {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.navbar-main-outer .navbar-main-inner .nav-group button {
  -webkit-transform: scale(0.5) rotateY(0) translateX(75%);
          transform: scale(0.5) rotateY(0) translateX(75%);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.navbar-main-outer .navbar-main-inner .nav-group .spin {
  -webkit-transform: scale(0.5) rotateY(180deg);
          transform: scale(0.5) rotateY(180deg);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

@media (min-width: 1024px) {
  .navbar-main-outer .navbar-main-inner .nav-group .hamburger {
    display: none;
  }
}

.navbar-main-outer .navbar-main-inner .nav-group .hamburger-inner,
.navbar-main-outer .navbar-main-inner .nav-group .hamburger-inner::before,
.navbar-main-outer .navbar-main-inner .nav-group .hamburger-inner::after,
.navbar-main-outer .navbar-main-inner .nav-group .hamburger.is-active .hamburger-inner,
.navbar-main-outer .navbar-main-inner .nav-group .hamburger.is-active .hamburger-inner:after,
.navbar-main-outer .navbar-main-inner .nav-group .hamburger.is-active .hamburger-inner:before {
  background-color: white;
}

@media (min-width: 768px) {
  .navbar-main-outer {
    background-color: transparent;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
}

@media (min-width: 1024px) {
  .navbar-main-outer {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@-webkit-keyframes colorChange {
  0% {
    stroke: white;
  }
  25% {
    stroke: white;
  }
  70% {
    stroke: #5afaae;
  }
  100% {
    stroke: #5afaae;
  }
}

@keyframes colorChange {
  0% {
    stroke: white;
  }
  25% {
    stroke: white;
  }
  70% {
    stroke: #5afaae;
  }
  100% {
    stroke: #5afaae;
  }
}

@-webkit-keyframes scrollDown {
  0% {
    stroke-dashoffset: 69;
  }
  15% {
    stroke-dashoffset: 69;
  }
  50% {
    stroke-dashoffset: 50;
  }
  70% {
    stroke-dashoffset: 50;
  }
  100% {
    stroke-dashoffset: 69;
  }
}

@keyframes scrollDown {
  0% {
    stroke-dashoffset: 69;
  }
  15% {
    stroke-dashoffset: 69;
  }
  50% {
    stroke-dashoffset: 50;
  }
  70% {
    stroke-dashoffset: 50;
  }
  100% {
    stroke-dashoffset: 69;
  }
}

@-webkit-keyframes moveDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(3.5em);
            transform: translateY(3.5em);
  }
}

@keyframes moveDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(3.5em);
            transform: translateY(3.5em);
  }
}

@-webkit-keyframes scrollAppear {
  from {
    opacity: 0;
    bottom: 10%;
  }
  to {
    opacity: 1;
    bottom: 7.5%;
  }
}

@keyframes scrollAppear {
  from {
    opacity: 0;
    bottom: 10%;
  }
  to {
    opacity: 1;
    bottom: 7.5%;
  }
}

.scroll-icon-wrap.up {
  opacity: 0;
  bottom: 12.5%;
}

.scroll-icon-wrap {
  cursor: pointer;
  position: absolute;
  left: 50%;
  bottom: 5%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  -webkit-animation: fadingInAnim 2s ease;
          animation: fadingInAnim 2s ease;
}

@media (min-width: 768px) {
  .scroll-icon-wrap {
    bottom: 7.5%;
  }
}

.scroll-icon-wrap svg {
  height: 3em;
}

.scroll-icon-wrap svg rect {
  stroke-width: 3px;
  stroke: white;
  fill: none;
  height: 110px;
  width: 60px;
}

.scroll-icon-wrap svg line {
  stroke-width: 9px;
  stroke: white;
  fill: none;
  stroke-dasharray: 70;
  stroke-dashoffset: 69;
  -webkit-animation: scrollDown 1s ease infinite alternate, moveDown 1s ease-in-out infinite alternate, colorChange .5s ease infinite alternate;
          animation: scrollDown 1s ease infinite alternate, moveDown 1s ease-in-out infinite alternate, colorChange .5s ease infinite alternate;
}

.caret-icon-wrap {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 3%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-animation: caretDownAnim 2s ease infinite;
          animation: caretDownAnim 2s ease infinite;
}

@-webkit-keyframes caretDownAnim {
  0% {
    bottom: 5%;
    opacity: 0;
  }
  25% {
    bottom: 5%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    bottom: 3%;
    opacity: 0;
  }
  100% {
    bottom: 3%;
    opacity: 0;
  }
}

@keyframes caretDownAnim {
  0% {
    bottom: 5%;
    opacity: 0;
  }
  25% {
    bottom: 5%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    bottom: 3%;
    opacity: 0;
  }
  100% {
    bottom: 3%;
    opacity: 0;
  }
}

@media (min-width: 1024px) {
  .caret-icon-wrap {
    display: -ms-grid;
    display: grid;
  }
}

.caret-icon-wrap svg {
  height: 12px;
}

.caret-icon-wrap svg polyline {
  stroke-width: 2px;
  fill: none;
  stroke: white;
}

header {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

@media (min-width: 1024px) {
  header {
    padding: 0;
    height: 50vh;
    display: -ms-grid;
    display: grid;
  }
}

@media (min-width: 1400px) {
  header {
    height: 80vh;
  }
}

header .section-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: white;
  width: 80%;
}

@media (min-width: 768px) {
  header .section-wrap {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  header .section-wrap {
    padding-top: 0;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    padding-bottom: 0;
  }
}

@media (min-width: 1024px) {
  header .section-wrap .title-container.scroll {
    -webkit-transform: translateY(-3em);
            transform: translateY(-3em);
    opacity: .5;
  }
}

header .section-wrap .title-container {
  margin: .5em 0;
}

@media (min-width: 768px) {
  header .section-wrap .title-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
    margin-bottom: 3em;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
  }
}

@media (min-width: 1024px) {
  header .section-wrap .title-container {
    -webkit-transform: none;
            transform: none;
    margin-bottom: 0;
  }
}

@media (min-width: 1400px) {
  header .section-wrap .title-container {
    margin-bottom: 7.5em;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-animation: slideIn 1s ease;
            animation: slideIn 1s ease;
    -webkit-transform: none;
            transform: none;
  }
}

header .section-wrap .title-container a {
  margin-top: 1em;
}

@media (min-width: 768px) {
  header .section-wrap .title-container a {
    display: none;
  }
}

@media (min-width: 1024px) {
  header .section-wrap .title-container a {
    margin-top: 1em;
  }
}

header .section-wrap .title-container p {
  font-size: .7em;
  margin: 2em 0;
  text-align: left;
}

@media (min-width: 768px) {
  header .section-wrap .title-container p {
    text-align: justify;
    font-size: 1em;
    display: block;
    position: relative;
    padding-left: 4em;
    opacity: 0.75;
    width: 45%;
    font-size: 0.6em;
    margin: 1em 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
  }
  header .section-wrap .title-container p:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: #5afaae;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
  }
  header .section-wrap .title-container p:hover {
    opacity: 1;
    padding-left: 5em;
  }
  header .section-wrap .title-container p:hover:before {
    width: 8px;
  }
}

@media (min-width: 1024px) {
  header .section-wrap .title-container p {
    margin: 1.5em 0;
  }
}

@media (min-width: 1400px) {
  header .section-wrap .title-container p {
    font-size: 0.9em;
  }
}

header .section-wrap .title-container h1 {
  text-align: left;
  position: relative;
  font-size: 1.5em;
  font-weight: 600;
  padding: 1em 0;
}

header .section-wrap .title-container h1:before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 20%;
  height: 3px;
  background-color: #5afaae;
}

@media (min-width: 768px) {
  header .section-wrap .title-container h1:before {
    display: none;
  }
}

@media (min-width: 768px) {
  header .section-wrap .title-container h1 {
    text-align: initial;
    font-size: 2.2em;
  }
}

@media (min-width: 1024px) {
  header .section-wrap .title-container h1 {
    font-size: 2em;
  }
}

@media (min-width: 1400px) {
  header .section-wrap .title-container h1 {
    font-size: 2.5em;
  }
}

@media (min-width: 2000px) {
  header .section-wrap .title-container h1 {
    font-size: 3em;
  }
}

@media (min-width: 1400px) {
  #research-interest {
    margin-top: -3.5em;
  }
  #research-interest .research-title {
    color: white;
    margin-top: -3.5em;
    -webkit-transform: translateY(1.5em);
            transform: translateY(1.5em);
    opacity: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
  }
  #research-interest .research-title.visible {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@media (min-width: 1400px) {
  #research-interest {
    margin-top: -3.5em;
  }
}

#research-interest ul.research-elements {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  -webkit-transform: translateY(2em);
          transform: translateY(2em);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

#research-interest ul.research-elements.visible {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

@media (min-width: 1400px) {
  #research-interest ul.research-elements {
    width: 90%;
    margin: 0 auto;
  }
}

@media (min-width: 2000px) {
  #research-interest ul.research-elements {
    width: 97%;
  }
}

#research-interest li.research-item {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  opacity: 1;
}

@media (min-width: 768px) {
  #research-interest li.research-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100%/3);
            flex: 0 0 calc(100%/3);
  }
}

@media (min-width: 1024px) {
  #research-interest li.research-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
  }
}

#research-interest li.research-item .research-item-wrap {
  width: 100%;
  background-color: white;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: top;
      -ms-flex-pack: top;
          justify-content: top;
  margin: 0.5em;
  -webkit-box-shadow: 0 0 0.5em 0 rgba(27, 30, 32, 0.2);
          box-shadow: 0 0 0.5em 0 rgba(27, 30, 32, 0.2);
}

#research-interest li.research-item .research-item-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #edf1fa;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#research-interest li.research-item .research-item-wrap:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  background-color: #5afaae;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#research-interest li.research-item .research-item-wrap:hover:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

#research-interest li.research-item .research-item-wrap:hover .svg-wrap {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

#research-interest li.research-item .research-item-wrap:hover .path {
  stroke-width: .25em;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
}

#research-interest li.research-item .svg-wrap {
  margin: 1em 0;
  background-color: rgba(237, 241, 250, 0.5);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 4.5em;
  width: 4.5em;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: background-color 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), background-color 0.3s ease;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), background-color 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@media (min-width: 1024px) {
  #research-interest li.research-item .svg-wrap {
    margin: 2em 0;
  }
}

#research-interest li.research-item .path {
  width: 3em;
  height: 3em;
  z-index: 2;
  stroke: #4DE2A1;
  stroke-width: .35em;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  -webkit-transition: stroke-dashoffset 3s ease, -webkit-transform .3s ease;
  transition: stroke-dashoffset 3s ease, -webkit-transform .3s ease;
  transition: transform .3s ease, stroke-dashoffset 3s ease;
  transition: transform .3s ease, stroke-dashoffset 3s ease, -webkit-transform .3s ease;
}

#research-interest li.research-item .path.visible {
  stroke-dashoffset: 0;
}

#research-interest li.research-item span {
  font-weight: 600;
  margin: 0 1em 1.5em 1em;
  font-size: 0.5em;
}

@media (min-width: 768px) {
  #research-interest li.research-item span {
    margin: .25em .25em 3em .25em;
  }
}

@media (min-width: 1400px) {
  #research-interest li.research-item span {
    font-size: .75em;
  }
}

@media (min-width: 2000px) {
  #research-interest li.research-item span {
    font-size: .9em;
  }
}

#research-interest li.research-item .ico1 {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
}

#research-interest li.research-item .ico2 {
  stroke-dasharray: 250;
  stroke-dashoffset: 250;
}

#research-interest li.research-item .ico3 {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
}

#research-interest li.research-item .ico4 {
  stroke-dasharray: 250;
  stroke-dashoffset: 250;
}

#research-interest li.research-item .ico5 {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
}

.projects-title {
  opacity: 0;
  -webkit-transform: translateY(2em);
          transform: translateY(2em);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.projects-title.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

#featured-projects {
  padding-bottom: 2em;
}

#featured-projects .see-all {
  margin-top: 1em;
}

#featured-projects .projects-container {
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (min-width: 1400px) {
  #featured-projects .projects-container {
    width: 90%;
  }
}

#featured-projects .projects-container .project-item {
  overflow: hidden;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media (min-width: 1024px) {
  #featured-projects .projects-container .project-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100%/2);
            flex: 0 0 calc(100%/2);
  }
}

@media (min-width: 1400px) {
  #featured-projects .projects-container .project-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100%/3);
            flex: 0 0 calc(100%/3);
  }
}

#featured-projects .projects-container .project-item .project-item-inner {
  overflow: hidden;
  position: relative;
  height: 9em;
  margin: .25em;
}

@media (min-width: 1024px) {
  #featured-projects .projects-container .project-item .project-item-inner {
    margin: .35em;
    height: 8em;
  }
}

@media (min-width: 1400px) {
  #featured-projects .projects-container .project-item .project-item-inner {
    margin: .5em;
    height: 12em;
  }
}

#featured-projects .projects-container .project-item .project-btn {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#featured-projects .projects-container .project-item .fade-black {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  background-color: rgba(27, 30, 32, 0.5);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#featured-projects .projects-container .project-item .project {
  cursor: pointer;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#featured-projects .projects-container .project-item:hover .fade-black {
  opacity: 1;
}

#featured-projects .projects-container .project-item:hover .project-btn {
  -webkit-transform: scale(1);
          transform: scale(1);
}

#featured-projects .projects-container .project-item:hover .project {
  -webkit-filter: brightness(50%);
          filter: brightness(50%);
}

#featured-projects #dole {
  background-image: url("images/dole.jpg");
}

#featured-projects #digital-twin {
  background-image: url("images/digital-twin.jpg");
}

#featured-projects #algo {
  background-image: url("images/algoxc.jpg");
}

#featured-projects #nikkei {
  background-image: url("images/nikkei.jpg");
}

#featured-projects #smart-dining {
  background-image: url("images/smart-dining.jpg");
}

#featured-projects #tokyo {
  background-image: url("images/tokyo.jpg");
}

.keynotes-title.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.keynotes-title {
  opacity: 0;
  -webkit-transform: translateY(2em);
          transform: translateY(2em);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.glider-contain.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.glider-contain {
  opacity: 0;
  -webkit-transform: translateY(2em);
          transform: translateY(2em);
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
}

#keynotes.visible:before {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

#keynotes {
  position: relative;
  margin-bottom: 0;
}

#keynotes::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: transparent;
  -webkit-transform: translateY(2em);
          transform: translateY(2em);
  height: 112.5%;
  width: 100%;
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
}

#keynotes .glider-contain-outer {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 3em;
}

@media (min-width: 768px) {
  #keynotes .glider-contain-outer {
    width: 100%;
  }
}

#keynotes .glider-contain-outer .glider {
  width: 95%;
  margin-bottom: 2em;
}

#keynotes .glider-contain-outer .glider .glider-item .key-outer {
  cursor: pointer;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90vw;
  height: 7.5em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  #keynotes .glider-contain-outer .glider .glider-item .key-outer {
    width: 15em;
    height: 9em;
  }
}

@media (min-width: 1024px) {
  #keynotes .glider-contain-outer .glider .glider-item .key-outer {
    width: 18.5em;
    height: 12em;
  }
}

@media (min-width: 1400px) {
  #keynotes .glider-contain-outer .glider .glider-item .key-outer {
    width: 22.5em;
    height: 15em;
  }
}

#keynotes .glider-contain-outer .glider .glider-item .key-outer:hover .key-inner {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#keynotes .glider-contain-outer .glider .glider-item .key-outer:hover .circle {
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
          transform: translateX(-50%) translateY(-50%) scale(1);
  opacity: .5;
}

#keynotes .glider-contain-outer .glider .glider-item .key-outer:hover .fa-search {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

#keynotes .glider-contain-outer .glider .glider-item .key-outer:hover .rect-border {
  opacity: 1;
  outline-offset: -.5em;
}

#keynotes .glider-contain-outer .glider .glider-item .key-outer .fa-search {
  z-index: 2;
  font-size: 2em;
  color: #5afaae;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#keynotes .glider-contain-outer .glider .glider-item .key-outer .circle {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1.5);
          transform: translateX(-50%) translateY(-50%) scale(1.5);
  height: 5em;
  width: 5em;
  background-color: #1b1e20;
  border-radius: 50%;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#keynotes .glider-contain-outer .glider .glider-item .key-outer .rect-border {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  height: 100%;
  width: 100%;
  outline: solid 3px #5afaae;
  outline-offset: 0;
  opacity: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#keynotes .glider-contain-outer .glider .glider-item .key-outer .key-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.fa-chevron-right,
.fa-chevron-left {
  z-index: 2;
  color: #4DE2A1;
  font-size: 0.6em;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  /*
    &:hover:before {
        background-color: $accent-normal;
    }
    &:before {
        z-index: 1;
        position: absolute;
        content: '';
        top: 50%;
        left: 50%;
        width: 2em;
        height: 2em;
        background-color: transparent;
        border-radius: 50%;
        transition: all .6s ease;
    }*/
}

.fa-chevron-right:hover,
.fa-chevron-left:hover {
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
}

@media (min-width: 1024px) {
  .glider-next {
    right: -1em !important;
  }
}

@media (min-width: 1024px) {
  .glider-prev {
    left: -1em !important;
  }
}

.glider-btn-bg {
  z-index: 1;
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 1.2em;
  height: 1.2em;
  background-color: black;
  border-radius: 50%;
}

.glider-next,
.glider-prev {
  padding: 0;
  margin: 0;
}

@media (min-width: 1024px) {
  .glider-next,
  .glider-prev {
    -webkit-transform: translateY(0.5em);
            transform: translateY(0.5em);
  }
}

.glider-contain {
  position: relative;
}

.glider-dot.active {
  background: #4DE2A1 !important;
}

#clients {
  margin: 0;
}

#clients .clients-contain-outer .section-wrap .clients-contain {
  width: 100%;
  margin: 0 auto;
  padding: 2.4em 0;
  color: white;
}

#clients ul {
  width: 90%;
  margin: 1em auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 768px) {
  #clients ul {
    width: 70%;
    margin: 2.5em auto;
  }
}

@media (min-width: 1024px) {
  #clients ul {
    width: 80%;
    max-width: 70em;
  }
}

#clients ul li {
  display: -ms-grid;
  display: grid;
  margin: 1.25em 1.25em;
}

#clients ul li img {
  position: relative;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: .55;
  height: 1.15em;
  width: auto;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#clients ul li img:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  opacity: 1;
}

/*----------------------------END OF INDEX CSS-----------------------------*/
/*------------------------GENERIC SUBPAGES CSS-----------------------------*/
@-webkit-keyframes projectLeft {
  from {
    -webkit-transform: translateX(-7.5em);
            transform: translateX(-7.5em);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes projectLeft {
  from {
    -webkit-transform: translateX(-7.5em);
            transform: translateX(-7.5em);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes projectRight {
  from {
    -webkit-transform: translateX(7.5em);
            transform: translateX(7.5em);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes projectRight {
  from {
    -webkit-transform: translateX(7.5em);
            transform: translateX(7.5em);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes dissolveIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes dissolveIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.subpages header {
  color: white;
  padding: 1em 0;
  height: auto;
}

@media (min-width: 768px) {
  .subpages header {
    padding: .5em 0 1em 0;
  }
}

@media (min-width: 1024px) {
  .subpages header {
    padding: 2em 0;
  }
}

.subpages .project-contain {
  z-index: 2;
  width: 90%;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .subpages .project-contain {
    width: 65%;
    min-width: 1000px;
  }
}

@media (min-width: 1400px) {
  .subpages .project-contain {
    width: 65%;
    min-width: 1000px;
  }
}

.subpages .project-summary-block {
  margin: 1em 0 0 0;
  display: block;
}

.subpages .project-summary-block ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
}

.subpages .project-summary-block ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100%/1);
          flex: 0 0 calc(100%/1);
}

@media (min-width: 1024px) {
  .subpages .project-summary-block ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100%/3);
            flex: 0 0 calc(100%/3);
  }
}

.subpages .project-summary-block ul li:hover div:after {
  opacity: 1;
}

.subpages .project-summary-block ul li div {
  width: 100%;
  position: relative;
  background-color: white;
  -webkit-box-shadow: 0 0.25em 1em rgba(27, 30, 32, 0.1);
          box-shadow: 0 0.25em 1em rgba(27, 30, 32, 0.1);
  margin: .5em;
  padding: 1em;
}

@media (min-width: 768px) {
  .subpages .project-summary-block ul li div {
    background-color: rgba(27, 30, 32, 0.5);
  }
}

.subpages .project-summary-block ul li div:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  opacity: 0;
  background-color: #5afaae;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.subpages h2 {
  text-align: center;
  font-weight: 600;
  margin: .25em 0;
  font-size: 1.25em;
  color: #1b1e20;
}

@media (min-width: 768px) {
  .subpages h2 {
    color: white;
  }
}

@media (min-width: 1024px) {
  .subpages h2 {
    font-size: 1.75em;
  }
}

.subpages p {
  color: #1b1e20;
  font-size: .65em;
}

@media (min-width: 768px) {
  .subpages p {
    color: white;
  }
}

.subpages p span {
  font-weight: 600;
}

@media (min-width: 1400px) {
  .project-main .section-wrap {
    width: 70%;
    min-width: 1000px;
  }
}

ul.cat-list {
  z-index: 2;
  margin: 1em 0 2em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: .65em;
}

@media (min-width: 768px) {
  ul.cat-list {
    font-size: .75em;
  }
}

@media (min-width: 1024px) {
  ul.cat-list {
    font-size: .9em;
  }
}

ul.cat-list .cat-wrap {
  cursor: pointer;
  position: relative;
  padding: .5em;
  color: rgba(27, 30, 32, 0.35);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  /*
        &:before {
            z-index: 1;
            position: absolute;
            content: '';
            top: 50%;
            left: 50%;
            transform: translateY(-50%) translateX(-50%);
            width: 90%;
            height: 50%;
            border-radius: .5em;
            background-color: rgba($color: $light, $alpha: .5);
        }*/
}

@media (min-width: 768px) {
  ul.cat-list .cat-wrap {
    padding: 1em 1.25em;
  }
}

ul.cat-list .cat-wrap:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  background-color: #5afaae;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

ul.cat-list .cat-wrap:hover {
  color: #1b1e20;
}

ul.cat-list .cat-wrap:hover:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

ul.cat-list .cat-active {
  cursor: initial;
  position: relative;
  color: #1b1e20;
}

ul.cat-list .cat-active:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  -webkit-transform: initial;
          transform: initial;
  background-color: #5afaae;
}

.project-title {
  display: none;
}

@media (min-width: 768px) {
  .project-title {
    -webkit-animation: dissolveIn .75s ease;
            animation: dissolveIn .75s ease;
    display: -ms-grid;
    display: grid;
  }
}

.projects-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
  margin-top: 1em;
  overflow-y: hidden;
}

@media (min-width: 768px) {
  .projects-list {
    margin: 2em;
  }
}

.projects-list li.proj-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  margin-bottom: 1em;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  overflow: hidden;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  -webkit-animation: slideUpReveal .5s ease;
          animation: slideUpReveal .5s ease;
}

@-webkit-keyframes slideUpReveal {
  from {
    opacity: 0;
    -webkit-transform: translateY(2em);
            transform: translateY(2em);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideUpReveal {
  from {
    opacity: 0;
    -webkit-transform: translateY(2em);
            transform: translateY(2em);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.projects-list li.proj-item:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: .45em;
  width: calc(100% - .9em);
  height: 2px;
  background-color: #edf1fa;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.projects-list li.proj-item:hover .fade-black {
  opacity: 1;
}

.projects-list li.proj-item:hover:before {
  height: 4px;
  background-color: #5afaae;
}

@media (min-width: 768px) {
  .projects-list li.proj-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100%/2);
            flex: 0 0 calc(100%/2);
  }
}

@media (min-width: 1024px) {
  .projects-list li.proj-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100%/3);
            flex: 0 0 calc(100%/3);
  }
}

.projects-list li.proj-item .project-thumbnail-block {
  margin: 0 .45em 0 .45em;
  position: relative;
  overflow: hidden;
}

.projects-list li.proj-item .project-thumbnail-block:hover .fade-black {
  opacity: 1;
}

.projects-list li.proj-item .project-thumbnail-block:hover a {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.projects-list li.proj-item .project-thumbnail-block .fade-black {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(27, 30, 32, 0.75);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  position: absolute;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.projects-list li.proj-item .project-thumbnail-block a {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.projects-list li.proj-item .project-thumbnail-block .project-bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background-color: lightslategray;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 8em;
}

@media (min-width: 768px) {
  .projects-list li.proj-item .project-thumbnail-block .project-bg {
    height: 9em;
  }
}

@media (min-width: 1024px) {
  .projects-list li.proj-item .project-thumbnail-block .project-bg {
    height: 6em;
  }
}

@media (min-width: 1400px) {
  .projects-list li.proj-item .project-thumbnail-block .project-bg {
    height: 11em;
  }
}

.projects-list li.proj-item .project-thumbnail-block .project-bg h4 {
  -webkit-box-flex: 0.00001;
      -ms-flex-positive: 0.00001;
          flex-grow: 0.00001;
  margin: 1.5em;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .5em;
  font-weight: 600;
  color: white;
  padding: .5em 1em;
}

.projects-list li.proj-item .project-thumbnail-block .project-bg h4.showcase {
  background-color: #596fff;
}

.projects-list li.proj-item .project-thumbnail-block .project-bg h4.projects {
  background-color: #62e253;
}

.projects-list li.proj-item .project-thumbnail-block .project-bg h4.consulting {
  background-color: #f67336;
}

.projects-list li.proj-item .project-thumbnail-block .project-bg h4.teaching {
  background-color: #2d74f4;
}

.projects-list li.proj-item .project-lowerthird-block {
  position: relative;
  margin: .75em .45em;
  padding-bottom: .35em;
  text-align: left;
}

.projects-list li.proj-item .project-lowerthird-block h4 {
  color: rgba(27, 30, 32, 0.5);
  font-size: .6em;
  font-weight: 500;
}

.projects-list li.proj-item .project-lowerthird-block h3 {
  font-size: .9em;
  margin: .25em 0;
}

.projects-list li.proj-item .project-lowerthird-block p {
  font-size: .6em;
  color: rgba(27, 30, 32, 0.7);
}

/*----------------PRESS AWARDS PUBLICATIONS GRANTS CONTACT CSS-------------*/
.press-page header,
.awards-page header,
.publications-page header,
.grants-page header,
.contact-page header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.press-page header h2,
.awards-page header h2,
.publications-page header h2,
.grants-page header h2,
.contact-page header h2 {
  position: relative;
  display: none;
  margin: 1em;
  padding-bottom: 3em;
}

.press-page header h2:after,
.awards-page header h2:after,
.publications-page header h2:after,
.grants-page header h2:after,
.contact-page header h2:after {
  position: absolute;
  content: '';
  bottom: 1.75em;
  left: 50%;
  width: 2.5em;
  height: 3px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #5afaae;
}

@media (min-width: 768px) {
  .press-page header h2,
  .awards-page header h2,
  .publications-page header h2,
  .grants-page header h2,
  .contact-page header h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 768px) {
  .press-main .title-mobile,
  .awards-main .title-mobile,
  .publications-main .title-mobile,
  .grants-main .title-mobile,
  .contact-main .title-mobile {
    display: none;
  }
}

.press-list,
.awards-list,
.publications-list,
.grants-list,
.contact-list {
  margin: 2em auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow-y: hidden;
}

@media (min-width: 768px) {
  .press-list,
  .awards-list,
  .publications-list,
  .grants-list,
  .contact-list {
    margin-top: -5em;
  }
}

@media (min-width: 1024px) {
  .press-list,
  .awards-list,
  .publications-list,
  .grants-list,
  .contact-list {
    width: 80%;
  }
}

@media (min-width: 1400px) {
  .press-list,
  .awards-list,
  .publications-list,
  .grants-list,
  .contact-list {
    width: 85%;
  }
}

/* ------------------------ PRESS RELEASES CSS -----------------------------*/
.press-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
  width: 100%;
}

@media (min-width: 768px) {
  .press-item {
    width: calc(100%/2);
  }
}

@media (min-width: 1400px) {
  .press-item {
    width: calc(100%/3);
  }
}

.press-container-inner {
  background-color: white;
  margin: 1em;
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: 0 0.1em 0.75em 0 rgba(27, 30, 32, 0.15);
          box-shadow: 0 0.1em 0.75em 0 rgba(27, 30, 32, 0.15);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.press-container-inner:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #5afaae;
  -webkit-transition: all .15s ease;
  transition: all .15s ease;
}

.press-container-inner:hover {
  -webkit-box-shadow: 0 0.1em 0.75em 0 rgba(27, 30, 32, 0.35);
          box-shadow: 0 0.1em 0.75em 0 rgba(27, 30, 32, 0.35);
}

.press-container-inner:hover:after {
  height: 6px;
}

.press-container-inner:hover .fade-black {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.press-container-inner:hover .date-box:after {
  background-color: #4DE2A1;
  width: 100%;
}

.fade-black {
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  opacity: 0;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(237, 241, 250, 0.5);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.img-block {
  position: relative;
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.date-box {
  position: absolute;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 1em;
  left: 1em;
  width: 5em;
  height: 2em;
  background-color: #1b1e20;
}

.date-box:after {
  z-index: -1;
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background-color: #5afaae;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

@media (min-width: 1400px) {
  .date-box {
    width: 5em;
    height: 5em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.date-box span {
  color: white;
  text-transform: uppercase;
  margin: .1em;
}

.date-box .month-block {
  font-size: .8em;
}

@media (min-width: 1400px) {
  .date-box .month-block {
    font-size: 1.1em;
    font-weight: 600;
  }
}

.date-box .year-block {
  font-size: .8em;
}

@media (min-width: 1400px) {
  .date-box .year-block {
    font-size: .8em;
    letter-spacing: .1em;
  }
}

.text-block-wrap {
  margin: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
  font-size: .9em;
  color: #1b1e20;
  background-color: white;
}

.text-block-wrap h3 {
  position: relative;
  padding-bottom: 1em;
}

.text-block-wrap h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 10%;
  height: 3px;
  background-color: #edf1fa;
}

.text-block-wrap p {
  margin-top: 1em;
  font-size: .7em;
  opacity: .6;
}

/* ----------------------- END OF PRESS RELEASES CSS -----------------------*/
/* ------------------------------ AWARDS CSS--------------------------------*/
.awards-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
}

@media (min-width: 768px) {
  .awards-item {
    width: calc(100%/2);
  }
}

@media (min-width: 1440px) {
  .awards-item {
    width: calc(100%/3);
  }
}

@media (min-width: 1785px) {
  .awards-item {
    width: calc(100%/4);
  }
}

.awards-item-wrap {
  position: relative;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
  padding: 1.25em;
  margin: 1em;
  -webkit-box-shadow: 0em 0.15em 0.75em 0 rgba(27, 30, 32, 0.15);
          box-shadow: 0em 0.15em 0.75em 0 rgba(27, 30, 32, 0.15);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.awards-item-wrap:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #5afaae;
  -webkit-transition: all .1s ease;
  transition: all .1s ease;
}

.awards-item-wrap:hover {
  -webkit-box-shadow: 0em 0.15em 1em 0 rgba(27, 30, 32, 0.25);
          box-shadow: 0em 0.15em 1em 0 rgba(27, 30, 32, 0.25);
}

.awards-item-wrap:hover:after {
  height: 6px;
}

.awards-item-wrap:hover .svg-wrap-contain {
  -webkit-transform: translateY(-0.5em);
          transform: translateY(-0.5em);
}

.awards-item-wrap:hover .svg-wrap-behind:before {
  -webkit-filter: drop-shadow(0.5em 0.5em 1em rgba(90, 250, 174, 0.5));
          filter: drop-shadow(0.5em 0.5em 1em rgba(90, 250, 174, 0.5));
  background: white;
}

.awards-item-wrap:hover .awards-ico {
  stroke-width: 4px;
  stroke-dashoffset: 0;
}

.awards-item-wrap .svg-wrap-contain {
  position: relative;
  width: 3em;
  height: 3em;
  margin-bottom: 2.25em;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.awards-item-wrap .svg-wrap-behind {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.awards-item-wrap .svg-wrap-behind:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #4DE2A1;
  -webkit-filter: drop-shadow(0.1em 0.5em 0.65em rgba(90, 250, 174, 0.4));
          filter: drop-shadow(0.1em 0.5em 0.65em rgba(90, 250, 174, 0.4));
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

@media (min-width: 1400px) {
  .awards-item-wrap .svg-wrap-behind {
    width: 4em;
    height: 4em;
  }
}

.awards-item-wrap .awards-ico-white {
  position: relative;
  stroke: white;
  stroke-width: 3.5px;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  margin: .75em;
}

.awards-item-wrap .svg-wrap {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 1400px) {
  .awards-item-wrap .svg-wrap {
    width: 4em;
    height: 4em;
  }
}

.awards-item-wrap .awards-ico {
  position: relative;
  stroke: #4DE2A1;
  stroke-width: 3.5px;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  margin: .75em;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-transition: stroke-dashoffset 1s ease;
  transition: stroke-dashoffset 1s ease;
}

.awards-item-wrap h4 {
  text-align: left;
  font-size: .75em;
}

@media (min-width: 1400px) {
  .awards-item-wrap h4 {
    font-size: .8em;
  }
}

.awards-item-wrap p {
  text-align: left;
  margin-top: 1em;
  font-size: .5em;
  font-weight: 600;
}

.awards-item-wrap .year {
  display: block;
  text-align: left;
  margin-top: 1em;
  opacity: .25;
  letter-spacing: .075em;
  font-weight: 600;
  font-size: .8em;
}

.awards-item-wrap .medium-text {
  font-size: .7em;
}

.awards-item-wrap .small-text {
  font-size: .5em;
}

.awards-item-wrap .small-medium-text {
  font-size: .6em;
}

/* ---------------------------- END OF AWARDS CSS -------------------------*/
/* ---------------------------- PUBLICATIONS CSS -------------------------*/
.publications-list {
  background-color: white;
  -webkit-box-shadow: 0 0.25em 1em 0 rgba(27, 30, 32, 0.1);
          box-shadow: 0 0.25em 1em 0 rgba(27, 30, 32, 0.1);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.publications-list .publications-list-wrap {
  padding-bottom: 1em;
  width: 100%;
}

@media (min-width: 768px) {
  .publications-list .publications-list-wrap {
    margin: .25em 1.25em;
  }
}

.publications-list .citation-links {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 2em auto .5em auto;
}

.publications-list .citation-links .divider {
  margin: 0 .5em;
  width: 2px;
  height: 75%;
  background-color: #edf1fa;
}

.publications-list .citation-links .citation-links-wrap {
  position: relative;
  margin: 0 .5em;
  padding: .75em .5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.publications-list .citation-links .citation-links-wrap:hover {
  -webkit-transform: translateY(-0.25em);
          transform: translateY(-0.25em);
}

.publications-list .citation-links .citation-links-wrap:hover:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  opacity: 1;
}

.publications-list .citation-links .citation-links-wrap:hover h4 {
  opacity: 1;
}

.publications-list .citation-links .citation-links-wrap img {
  margin: 0 .25em;
  height: 1.25em;
}

.publications-list .citation-links .citation-links-wrap h4 {
  display: none;
  color: #26292b;
  opacity: .9;
  margin-left: .25em;
  font-size: .9em;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

@media (min-width: 768px) {
  .publications-list .citation-links .citation-links-wrap h4 {
    display: -ms-grid;
    display: grid;
  }
}

.publications-list .citation-links .citation-links-wrap:after {
  position: absolute;
  content: '';
  opacity: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #5afaae;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.publications-others-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 2.5em;
  padding-bottom: 2em;
}

.publications-others-list h4 {
  position: relative;
  text-align: left;
  color: #1b1e20;
  margin-bottom: 2em;
}

.publications-others-list h4:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: -1.1em;
  width: 6%;
  height: 3px;
  background-color: #edf1fa;
}

.publications-others-list li {
  margin: .25em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.publications-others-list i {
  color: #4DE2A1;
  font-size: .8em;
  margin-right: 1em;
}

.publications-others-list p {
  text-align: left;
  font-size: .75em;
  font-weight: 500;
}

.publications-item:hover .publications-container-inner {
  border: 2px solid white;
  -webkit-box-shadow: 0 0.35em 1.25em 0 rgba(27, 30, 32, 0.15);
          box-shadow: 0 0.35em 1.25em 0 rgba(27, 30, 32, 0.15);
}

.publications-item:hover .number-block:after {
  -webkit-transform: scaleY(0.65);
          transform: scaleY(0.65);
}

.publications-item .publications-container-inner {
  background-color: white;
  border: 2px solid #edf1fa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1em;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.publications-item .number-block {
  display: none;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 5em;
}

@media (min-width: 768px) {
  .publications-item .number-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.publications-item .number-block:after {
  position: absolute;
  content: '';
  right: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: #5afaae;
  -webkit-transform: scaleY(0.5);
          transform: scaleY(0.5);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.publications-item .number-block span {
  font-weight: 600;
  font-size: 1.1em;
}

.publications-item .journal-block {
  width: 90%;
  margin-left: .5em;
  padding: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 768px) {
  .publications-item .journal-block {
    padding: 1.5em;
  }
}

.publications-item .journal-block h3 {
  font-size: .9em;
}

.publications-item .journal-block p {
  opacity: .8;
  font-weight: 500;
  font-size: .75em;
}

/* -------------------------- END OF PUBLICATIONS CSS ------------------------*/
/* --------------------------------- GRANTS CSS -------------------------------*/
.grants-main .section-wrap {
  width: 95%;
}

@media (min-width: 1400px) {
  .grants-main .section-wrap {
    width: 90%;
  }
}

.grants-list {
  width: 80%;
  padding-bottom: 2em;
}

.grants-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.grants-wrap {
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
  margin: 1em;
  padding: 1em;
  -webkit-box-shadow: 0 0.1em 0.5em 0 rgba(27, 30, 32, 0.15);
          box-shadow: 0 0.1em 0.5em 0 rgba(27, 30, 32, 0.15);
  -webkit-transition: -webkit-box-shadow .3s ease;
  transition: -webkit-box-shadow .3s ease;
  transition: box-shadow .3s ease;
  transition: box-shadow .3s ease, -webkit-box-shadow .3s ease;
}

@media (min-width: 768px) {
  .grants-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
    padding: 2em;
    margin: .35em 1em;
  }
}

.grants-wrap:hover {
  -webkit-box-shadow: 0 0.25em 1em 0 rgba(27, 30, 32, 0.3);
          box-shadow: 0 0.25em 1em 0 rgba(27, 30, 32, 0.3);
}

.grants-wrap:hover h3:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.grants-wrap .grants-block {
  padding: 0 .5em;
  text-align: left;
}

@media (min-width: 768px) {
  .grants-wrap .grants-block {
    width: 65%;
  }
}

@media (min-width: 1024px) {
  .grants-wrap .grants-block {
    width: 100%;
  }
}

.grants-wrap .role-block {
  text-align: center;
  padding: 0 .5em;
  width: 10%;
}

.grants-wrap .fund-block {
  padding: 1em .5em;
  width: 10em;
  text-align: left;
}

@media (min-width: 768px) {
  .grants-wrap .fund-block {
    padding: 0 .5em;
    text-align: right;
  }
}

.grants-wrap h3 {
  font-size: .75em;
  position: relative;
  padding-bottom: 1.25em;
}

@media (min-width: 1024px) {
  .grants-wrap h3 {
    font-size: .75em;
  }
}

@media (min-width: 1400px) {
  .grants-wrap h3 {
    font-size: .9em;
  }
}

.grants-wrap h3:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 3em;
  height: 3px;
  background-color: #edf1fa;
}

.grants-wrap h3:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 3em;
  height: 3px;
  background-color: #5afaae;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.grants-wrap h4 {
  letter-spacing: .05em;
  font-size: 1em;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .grants-wrap h4 {
    font-size: 1.25em;
  }
}

@media (min-width: 1400px) {
  .grants-wrap h4 {
    font-size: 1.5em;
  }
}

.grants-wrap h5 {
  font-size: .8em;
}

.grants-wrap p {
  margin: 1.25em 0 .5em 0;
  font-size: .7em;
  font-weight: 500;
  opacity: .95;
}

.grants-wrap span {
  opacity: .5;
  font-weight: 600;
  font-size: .7em;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.color-green {
  color: #5afaae;
}

/* -------------------------- END OF GRANTS CSS ------------------------*/
/* ----------------------------- CONTACT CSS ---------------------------*/
.contact-item {
  width: 100%;
  margin: 0 auto;
}

.contact-wrap {
  background-color: white;
  -webkit-box-shadow: 0 0.1em 2em 0 rgba(27, 30, 32, 0.1);
          box-shadow: 0 0.1em 2em 0 rgba(27, 30, 32, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media (min-width: 768px) {
  .contact-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: top;
        -ms-flex-align: top;
            align-items: top;
    padding: 3em 3em;
  }
}

.contact-wrap .inline-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-wrap .category-block {
  margin: .5em 0;
}

@media (min-width: 768px) {
  .contact-wrap .category-block {
    margin: 1em 0;
  }
}

.contact-block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
}

@media (min-width: 768px) {
  .contact-block {
    margin: 0;
    width: initial;
  }
}

.contact-block a {
  position: relative;
  margin: .2em 0;
  display: block;
  color: #1b1e20;
  font-weight: inherit;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.contact-block a:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: #5afaae;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.contact-block a:hover {
  padding-left: 1.25em;
  color: rgba(27, 30, 32, 0.4);
}

.contact-block a:hover:after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.contact-block i {
  color: #4DE2A1;
  font-size: .7em;
  margin-right: .5em;
}

.contact-block h3 {
  position: relative;
  font-size: 1.6em;
  font-weight: 800;
  padding-bottom: 1em;
}

.contact-block h3:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  height: 3px;
  width: 2em;
  background-color: #5afaae;
}

.contact-block h4 {
  font-weight: 600;
  opacity: .5;
  font-size: .65em;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: .5em 1em .5em 0;
}

.contact-block .contact-info {
  line-height: 1.6em;
  font-weight: 600;
  font-size: .75em;
}

.contact-block #mobile-no {
  cursor: pointer;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.contact-block #mobile-no:after {
  position: absolute;
  content: 'Click to copy';
  text-align: center;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
  opacity: 0;
  bottom: -2em;
  color: rgba(27, 30, 32, 0.45);
  background-color: rgba(237, 241, 250, 0.25);
  font-size: .8em;
  padding: .25em 0;
  border-radius: .5em;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.contact-block #mobile-no:hover {
  color: #4DE2A1;
}

.contact-block #mobile-no:hover:after {
  -webkit-transform: translateX(-50%) translateY(0.5em);
          transform: translateX(-50%) translateY(0.5em);
  opacity: 1;
}

.contact-block #mobile-no:active ~ .clipboard-message {
  opacity: 1;
}

.contact-block .clipboard-message {
  text-align: center;
  width: 12em;
  opacity: 0;
  border-radius: 5%;
  color: #4DE2A1;
  margin-top: 1em;
  padding: .5em;
  background-color: rgba(77, 226, 161, 0.1);
  font-size: .7em;
  font-weight: 500;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.contact-left {
  padding: 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

@media (min-width: 768px) {
  .contact-left {
    width: 35%;
    padding: 0;
  }
}

.contact-right {
  padding: 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

@media (min-width: 768px) {
  .contact-right {
    width: 65%;
    padding: 0;
  }
}

form {
  font-size: 14px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.field {
  width: 100%;
  overflow: hidden;
  margin: .5em 0;
}

@media (min-width: 768px) {
  .field {
    margin: 0;
  }
}

input,
textarea,
button {
  font-size: 1em;
  font-family: "Montserrat", sans-serif;
}

input,
textarea {
  font-weight: 500;
  width: inherit;
  padding: 1.25em;
  border: none;
  background-color: #F9FBFF;
}

textarea {
  resize: none;
  height: 10em;
}

.submit-btn button {
  overflow: hidden;
  font-weight: 600;
  z-index: 1;
  position: relative;
  width: 15em;
  height: 5em;
  border: none;
  background-color: transparent;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  margin-right: 1em;
}

.submit-btn button:hover {
  color: white;
}

.submit-btn button:hover:before {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.submit-btn button:hover:after {
  opacity: 0;
  outline-offset: -50px;
}

.submit-btn button:before {
  z-index: -1;
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  background-color: #4DE2A1;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.submit-btn button:after {
  z-index: -1;
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: 3px solid #5afaae;
  outline-offset: -3px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.message-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.success {
  font-weight: 500;
  padding: 1.5em;
  color: #4DE2A1;
  background-color: rgba(77, 226, 161, 0.25);
  border: 1px solid rgba(77, 226, 161, 0.5);
}

.error {
  font-weight: 500;
  padding: 1.5em;
  color: #b94a48;
  background-color: #f2dede;
  border: 1px solid rgba(185, 74, 72, 0.3);
}

/*--------------------------------- FOOTER ---------------------------------*/
footer {
  color: white;
  background-color: #1b1e20;
}

footer .footer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 768px) {
  footer .footer-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

footer .footer-item-wrap {
  margin: .25em 0;
}

@media (min-width: 768px) {
  footer .footer-item-wrap {
    margin: .5em 0;
  }
}

footer .copyright-block {
  padding-top: 1em;
}

@media (min-width: 768px) {
  footer .copyright-block {
    padding: 0;
  }
}

footer .copyright-block h4 {
  opacity: .35;
  font-weight: 500;
  font-size: .7em;
  letter-spacing: .025em;
}

.profiles-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.profiles-block .icon-wrap {
  margin: 0 .25em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 2em;
  height: 2em;
}

.profiles-block .icon-wrap:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(237, 241, 250, 0.15);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.profiles-block .icon-wrap:hover .icon {
  opacity: 1;
  fill: #5afaae;
}

.profiles-block .icon-wrap:hover:before {
  opacity: 1;
}

.profiles-block .icon {
  position: relative;
  fill: white;
  opacity: .45;
  width: .85em;
  height: .85em;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
/*# sourceMappingURL=main.css.map */
