@-webkit-keyframes arrow-animation {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 100%;
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    opacity: 0%;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 100%;
  }
}

@keyframes arrow-animation {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 100%;
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    opacity: 0%;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 100%;
  }
}

h2 {
  text-align: left;
  font-size: 1.5em;
  margin: 24px 0px;
  color: #CCCCCC;
}

header {
  top: 0px;
}

.research-hero {
  height: 100vh;
  display: -ms-grid;
  display: grid;
}

.research-hero-bg {
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  position: absolute;
  width: 100%;
  -webkit-filter: saturate(0.5) brightness(0.3);
          filter: saturate(0.5) brightness(0.3);
}

.research-hero-filter {
  height: 100vh;
  position: absolute;
  width: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#19191900), color-stop(#19191900), color-stop(#19191900), to(#191919ff));
  background-image: linear-gradient(#19191900, #19191900, #19191900, #191919ff);
}

.research-hero-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-row-align: self-end;
      align-self: self-end;
  z-index: 2;
  -ms-grid-column-align: center;
      justify-self: center;
  margin: 0px 30px;
  max-width: 600px;
  gap: 1.5em;
}

.research-hero-content .research-title {
  font-size: 1.5em;
  text-align: center;
}

.research-hero-content .research-meta {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  justify-items: center;
}

.research-hero-content .research-meta .research-date {
  -ms-grid-column-align: self-end;
      justify-self: self-end;
}

.research-arrow {
  height: 50px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -ms-grid-column-align: center;
      justify-self: center;
  -webkit-animation: arrow-animation infinite 2s;
          animation: arrow-animation infinite 2s;
}

.research-arrow .arrow-fill {
  fill: #CCCCCC;
}

.research-arrow:hover .arrow-fill {
  fill: #00B6FF;
}

.research-main {
  width: 100vw;
  padding: 10vh 0vh;
  display: -ms-grid;
  display: grid;
  justify-items: center;
}

.research-content {
  text-align: left;
  width: 45vw;
}

@media screen and (max-device-width: 991px) {
  .research-content {
    width: 85vw;
  }
}

.research-content a {
  color: #00B6FF;
  display: initial;
}

.research-content img {
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  margin-bottom: 30px;
}

.researches-list {
  -ms-grid-rows: auto;
      grid-template-rows: auto;
}

code {
  scrollbar-color: #00B6FF #ffffff00;
  scrollbar-width: auto;
}

code *::-moz-selection {
  color: white !important;
  background-color: black;
}

code *::selection {
  color: white !important;
  background-color: black;
}

code::-moz-selection {
  color: white !important;
  background-color: black;
}

code::selection {
  color: white !important;
  background-color: black;
}

code::-webkit-scrollbar {
  background-color: #ffffff00;
  height: 1em;
}

code::-webkit-scrollbar-track {
  background-color: #ffffff00;
}

code::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-image: -webkit-gradient(linear, left top, right top, from(#00B6FF), to(#00B6FF));
  background-image: linear-gradient(90deg, #00B6FF, #00B6FF);
}

code::-webkit-scrollbar-thumb:hover {
  background-image: -webkit-gradient(linear, left top, right top, from(#0000FF), to(#00B6FF));
  background-image: linear-gradient(90deg, #0000FF, #00B6FF);
  border: none;
}

.hljs {
  border-radius: 10px;
  padding: 1em;
  margin: 2em 0em;
  max-width: 100%;
}
