@import url("https://use.typekit.net/gaz8eub.css");
body {
  overflow: hidden;
  margin: 0%;
  background: black;
  font-size: 16px;
  font-family: "myriad-pro", sans-serif;
  font-weight: 400;
  box-sizing: border-box;
}

.scalable-screen {
  width: 1920px;
  height: 1080px;
  /* background: white; */
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
}

.scaleable-wrapper {
  resize: both;
  position: relative;
  background: black;
  max-height: 1920px;
}

.scale {
  left: 50% !important;
  top: 50% !important;
}

.screen-saver-content {
  position: absolute;
  bottom: 4vh !important;
}

.screen-saver {
  height: 100% !important;
}

.full-size-video {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
  position: absolute;
}

.full-size-video-phase {
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: -100;
}

.title-phases {
  position: absolute;
  z-index: 2;
  width: 100%;
}
.title-phases h1 {
  text-align: center;
  font-weight: 400;
}
.title-phases h3 {
  font-weight: 300;
  font-size: 1.75rem;
  text-align: center;
}

.video-background-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, transparent, transparent, transparent, black, black);
  opacity: 0.75;
}

.vp-height {
  height: 100vh;
  overflow: hidden;
  background-color: green;
}

.position-relative {
  position: relative;
}

.hide {
  display: none !important;
}

.fade-in {
  animation: fadeIn ease 2s;
  -webkit-animation: fadeIn ease 2s;
  -moz-animation: fadeIn ease 2s;
  -o-animation: fadeIn ease 2s;
  -ms-animation: fadeIn ease 2s;
}

.fade-in-short {
  animation: fadeIn ease 0.5s;
  -webkit-animation: fadeIn ease 0.5s;
  -moz-animation: fadeIn ease 0.5s;
  -o-animation: fadeIn ease 0.5s;
  -ms-animation: fadeIn ease 0.5s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animated {
  background-image: url(/css/images/logo.png);
  background-repeat: no-repeat;
  background-position: left top;
  padding-top: 95px;
  margin-bottom: 60px;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInTop {
  0% {
    opacity: 0;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.fadeInTop {
  -webkit-animation-name: fadeInTop;
  animation-name: fadeInTop;
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@keyframes pulse {
  50% {
    opacity: 0;
  }
}
@-webkit-keyframes pulse {
  50% {
    opacity: 0;
  }
}
.pulse {
  animation-iteration-count: infinite;
  -webkit-animation-name: pulse;
  animation-name: pulse;
  padding: 0% !important;
}

@keyframes ripple {
  100% {
    opacity: 0;
    transform: scaleX(3) scaleY(3);
    -webkit-transform: scaleX(3) scaleY(3);
  }
  50% {
    opacity: 0;
    transform: scaleX(3) scaleY(3);
    -webkit-transform: scaleX(3) scaleY(3);
  }
}
@-webkit-keyframes ripple {
  100% {
    opacity: 0;
    transform: scaleX(3) scaleY(3);
    -webkit-transform: scaleX(3) scaleY(3);
  }
  50% {
    opacity: 0;
    transform: scaleX(3) scaleY(3);
    -webkit-transform: scaleX(3) scaleY(3);
  }
}
@-webkit-keyframes cursor-handle {
  100% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  0% {
    opacity: 0.7;
  }
}
.ripple-animation {
  animation-iteration-count: infinite;
  animation-duration: 3s;
  -webkit-animation-name: ripple;
  animation-name: ripple;
}

.cursor-animation {
  animation-iteration-count: infinite;
  animation-duration: 3s;
  -webkit-animation-name: cursor-handle;
  animation-name: cursor-handle;
}

.img-container {
  position: fixed;
  top: 30% !important;
  left: 60% !important;
}

.tk-myriad-pro-semi-condensed {
  font-family: "myriad-pro-semi-condensed", sans-serif;
}

.tk-myriad-pro-condensed {
  font-family: "myriad-pro-condensed", sans-serif;
}

.tk-myriad-pro {
  font-family: "myriad-pro", sans-serif;
}

.tk-myriad-pro-semiextended {
  font-family: "myriad-pro-semiextended", sans-serif;
}

.mar-3 {
  margin: 30px;
}

.mar-top-3 {
  margin-top: 30px;
}

.mar-bottom-3 {
  margin-bottom: 30px;
}

.mar-left-3 {
  margin-left: 30px;
}

.mar-right-3 {
  margin-right: 30px;
}

.pad-3, .navbar-bottom {
  padding: 30px;
}

.pad-top-3 {
  padding-top: 30px;
}

.pad-bottom-3 {
  padding-bottom: 30px;
}

.pad-left-3 {
  padding-left: 30px;
}

.pad-right-3 {
  padding-right: 30px;
}

button {
  border: none !important;
  padding: 0 !important;
  outline: none !important;
  cursor: pointer;
}
button:hover, button:active, button:focus {
  border: none;
  outline: none;
}

.btn-home {
  background-image: url("../img/home_btn.png");
  background-position: left;
  background-repeat: no-repeat;
  background-color: transparent;
  width: 180px;
  height: 71px;
  transition-property: opacity;
  transition-duration: 0.25s;
  transition-timing-function: linear;
}
.btn-home:hover {
  transition-property: opacity;
  transition-duration: 0.25s;
  transition-timing-function: linear;
  opacity: 0.8;
}

.btn-question {
  background-image: url("../img/question_btn.png");
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  width: 100px;
  height: 71px;
  transition-property: opacity;
  transition-duration: 0.25s;
  transition-timing-function: linear;
}
.btn-question:hover {
  transition-property: opacity;
  transition-duration: 0.25s;
  transition-timing-function: linear;
  opacity: 0.8;
}

.btn-references {
  background-image: url("../img/ref_btn.png");
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  width: 180px;
  height: 71px;
  transition-property: opacity;
  transition-duration: 0.25s;
  transition-timing-function: linear;
}
.btn-references:hover {
  transition-property: opacity;
  transition-duration: 0.25s;
  transition-timing-function: linear;
  opacity: 0.8;
}

.btn-jak {
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-size: contain;
  width: 200px;
  height: 71px;
  transition-property: background;
  transition-duration: 0.25s;
  transition-timing-function: linear;
}
.btn-jak.active {
  background-image: url("../img/jak_active_btn.png");
}
.btn-jak.inactive {
  background-image: url("../img/jak_inactive_btn.png");
}

.btn-pathways {
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-size: contain;
  width: 200px;
  height: 71px;
  transition-property: background;
  transition-duration: 0.25s;
  transition-timing-function: linear;
}
.btn-pathways.active {
  background-image: url("../img/pathways_active_btn.png");
}
.btn-pathways.inactive {
  background-image: url("../img/pathways_inactive_btn.png");
}

.text-animated-pathways {
  background-repeat: no-repeat;
  background-position: left top;
  padding-top: 15px;
  margin-bottom: 60px;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated-pathways {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  top: 0px;
  left: -547px;
}

.animated-pathways2 {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  top: -615px;
  left: -650px;
}

.animated-pathways3 {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  top: -625px;
  left: -535px;
}

.animated-jak {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  top: -621px;
  left: -533px;
}

.animated-jak2 {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  top: -615px;
  left: -651px;
}

.animated-jak3 {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  top: -627px;
  left: -535px;
}

.animated-effects {
  animation: show 2s linear;
}

.animated-effects-chart {
  animation-name: showchart;
  animation-duration: 4s;
  position: absolute;
  top: 430px;
  left: 398px;
}

.animated-effects-chart2 {
  animation-name: showchart;
  animation-duration: 4s;
  position: absolute;
  top: 387px;
  left: -79px;
}

.animated-expansion {
  animation: show 2s linear;
  position: absolute;
  top: 400px;
  left: -89px;
}

.animated-expansion-chart {
  animation-name: showchart;
  animation-duration: 4s;
  position: absolute;
  top: 427px;
  left: -74px;
}

.animated-expansion-chart2 {
  animation-name: showchart;
  animation-duration: 4s;
  position: absolute;
  top: 82px;
  left: -473px;
}

.phase-btn {
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-size: contain;
  width: 172px;
  height: 68px;
  transition-property: background;
  transition-duration: 0.25s;
  transition-timing-function: linear;
}
.phase-btn:hover {
  transition-property: opacity;
  transition-duration: 0.25s;
  transition-timing-function: linear;
  opacity: 0.8;
}
.phase-btn.pre-active2 {
  background-image: url("../img/prev_phaseii_btn.png");
}
.phase-btn.pre-active3 {
  background-image: url("../img/prev_phaseiii_btn.png");
}
.phase-btn.next-active1 {
  background-image: url("../img/next_phasei_btn.png");
}
.phase-btn.next-active2 {
  background-image: url("../img/next_phaseii_btn.png");
}
.phase-btn.pre-inactive {
  background-image: url("../img/prev_inactive_btn.png");
}
.phase-btn.next-inactive {
  background-image: url("../img/next_inactive_btn.png");
}

.arrow-btn {
  background-image: url("../img/arrow_btn.png");
  background-size: 52px;
  background-position: center;
  background-repeat: no-repeat;
}
.arrow-btn:hover {
  opacity: 0.8;
}

.arrow-inac-back-btn {
  background-image: url(../img/arro_left_inactive.png);
  background-size: 65px;
  background-position: center;
  background-repeat: no-repeat;
}
.arrow-inac-back-btn:hover {
  opacity: 0.8;
}

.arrow-inac-next-btn {
  background-image: url(../img/arrow_right_inactive.png);
  background-size: 65px;
  background-position: center;
  background-repeat: no-repeat;
}
.arrow-inac-next-btn:hover {
  opacity: 0.8;
}

.arrow-back-btn {
  background-image: url(../img/arrow_left.png);
  background-size: 65px;
  background-position: center;
  background-repeat: no-repeat;
}
.arrow-back-btn:hover {
  opacity: 0.8;
}

.arrow-next-btn {
  background-image: url(../img/arrow_right.png);
  background-size: 65px;
  background-position: center;
  background-repeat: no-repeat;
}
.arrow-next-btn:hover {
  opacity: 0.8;
}

.days-btn {
  background-image: url(../img/day_31_56_btn.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 140px;
  height: 59px;
  box-shadow: -1px 3px 5px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -1px 3px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 3px 5px 0px rgba(0, 0, 0, 0.75);
}
.days-btn:hover {
  opacity: 0.8;
}

.close-btn {
  background-image: url("../img/btn-close.png");
  width: 181px;
  height: 70px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
}
.close-btn:hover {
  opacity: 0.8;
}

.modal-xl {
  max-width: 1600px !important;
}

.modal-backdrop.show {
  opacity: 0.7;
}

.modal-dialog {
  pointer-events: all !important;
}
.modal-dialog .modal-content {
  background-color: transparent;
}
.modal-dialog .modal-content .modal-header {
  background-color: transparent;
  background-image: url("../img/modal-header.png");
  background-position: center;
  background-size: cover;
  border: none;
}
.modal-dialog .modal-content .modal-body {
  background-color: transparent;
  background-image: url("../img/modal-body.png");
  background-position: center;
  background-size: cover;
}
.modal-dialog .modal-content .modal-body ul {
  padding-left: 0;
  margin: 0;
}
.modal-dialog .modal-content .modal-body ul li {
  list-style: none;
  color: white;
  font-size: 18px;
  margin-bottom: 12px;
}

.modal-footer {
  border: none !important;
  justify-content: center;
  background-color: transparent;
  padding-bottom: 0;
}

.modal-title {
  color: white;
}

.navbar-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-bottom: 20px;
}

.absolute-container {
  position: absolute;
  height: 100%;
  width: 100%;
}

.background-image-container {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 1080px;
  width: 1920px !important;
  max-width: 100% !important;
}

.blink-me {
  animation: blinker 2s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0.5;
  }
}
@-webkit-keyframes blinker {
  50% {
    opacity: 0.5;
  }
}
@keyframes show {
  0% {
    opacity: 0;
    transform: translateX(-20px);
    -webkit-transform: translateX(-20px);
  }
  50% {
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }
}
@-webkit-keyframes show {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes showchart {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes showchart {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.home-container .phase1 {
  position: absolute;
  display: block;
  width: 99px;
  height: 74px;
  top: 46%;
  left: 25.3%;
}
.home-container .phase1-1 {
  position: absolute;
  display: block;
  width: 319px;
  height: 140px;
  top: 35%;
  left: 19.5%;
}
.home-container .phase2 {
  position: absolute;
  display: block;
  width: 203px;
  height: 203px;
  top: 54%;
  left: 17%;
}
.home-container .phase2-1 {
  position: absolute;
  display: block;
  width: 125px;
  height: 44px;
  top: 50%;
  left: 17%;
}
.home-container .phase2-2 {
  position: absolute;
  display: block;
  width: 87px;
  height: 54px;
  top: 45%;
  left: 17%;
}
.home-container .phase3 {
  position: absolute;
  display: block;
  width: 199px;
  height: 203px;
  top: 54%;
  left: 28%;
}
.home-container .phase3-1 {
  position: absolute;
  display: block;
  width: 125px;
  height: 44px;
  top: 50%;
  left: 32%;
}
.home-container .phase3-2 {
  position: absolute;
  display: block;
  width: 87px;
  height: 54px;
  top: 45%;
  left: 34%;
}
.home-container .jak-stat {
  position: absolute;
  display: block;
  width: 69px;
  height: 54px;
  top: 66%;
  left: 70.5%;
}
.home-container .jak-stat-1 {
  position: absolute;
  display: block;
  width: 413px;
  height: 414px;
  top: 35%;
  left: 61.5%;
}

.img-content-phases {
  position: absolute;
  top: -50px;
  left: 25%;
}

.pathways-container a {
  position: absolute;
  display: block;
  width: 443px;
  height: 132px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.pathways-container a:hover {
  filter: contrast(2);
  -webkit-filter: contrast(2);
}
.pathways-container .inhibit1 {
  top: 26%;
  left: 3%;
  background-image: url("../img/inhibit1.png");
}
.pathways-container .inhibit2 {
  top: 40%;
  left: 3%;
  background-image: url("../img/inhibit2.png");
}
.pathways-container .inhibit3 {
  top: 54%;
  left: 3%;
  background-image: url("../img/inhibit3.png");
}
.pathways-container .inhibit4 {
  top: 26%;
  right: 3%;
  background-image: url("../img/inhibit4.png");
}
.pathways-container .inhibit5 {
  top: 40%;
  right: 3%;
  background-image: url("../img/inhibit5.png");
}
.pathways-container .inhibit6 {
  top: 54%;
  right: 3%;
  background-image: url("../img/inhibit6.png");
}

.cursor-pointer {
  cursor: pointer !important;
}

.donor-container .chart {
  position: absolute;
  top: 33%;
  left: 10%;
}
.donor-container .result {
  position: absolute;
  top: 43%;
  left: 18.75%;
}

.navbar-container ul li {
  list-style: none;
}
.navbar-container ul li a {
  width: 239px;
  height: 79px;
  position: absolute;
  transition-property: background;
  transition-duration: 0.25s;
  transition-timing-function: linear;
  cursor: pointer;
}
.navbar-container ul li a.active, .navbar-container ul li a:hover {
  transition-property: background;
  transition-duration: 0.25s;
  transition-timing-function: linear;
}
.navbar-container ul li:nth-child(1) a {
  top: 19px;
  left: 74px;
}
.navbar-container ul li:nth-child(1) a.active, .navbar-container ul li:nth-child(1) a:hover {
  background-image: url("../img/inflammatorySelected.png");
  background-repeat: no-repeat;
  background-position: center;
}
.navbar-container ul li:nth-child(2) a {
  top: 19px;
  left: 379px;
}
.navbar-container ul li:nth-child(2) a.active, .navbar-container ul li:nth-child(2) a:hover {
  background-image: url("../img/donorSelected.png");
  background-repeat: no-repeat;
  background-position: center;
}
.navbar-container ul li:nth-child(3) a {
  top: 19px;
  left: 685px;
}
.navbar-container ul li:nth-child(3) a.active, .navbar-container ul li:nth-child(3) a:hover {
  background-image: url("../img/tregSelected.png");
  background-repeat: no-repeat;
  background-position: center;
}
.navbar-container ul li:nth-child(4) a {
  top: 19px;
  left: 991px;
}
.navbar-container ul li:nth-child(4) a.active, .navbar-container ul li:nth-child(4) a:hover {
  background-image: url("../img/alloreactiveSelected.png");
  background-repeat: no-repeat;
  background-position: center;
}
.navbar-container ul li:nth-child(5) a {
  top: 19px;
  left: 1296px;
}
.navbar-container ul li:nth-child(5) a.active, .navbar-container ul li:nth-child(5) a:hover {
  background-image: url("../img/macrophageSelected.png");
  background-repeat: no-repeat;
  background-position: center;
}
.navbar-container ul li:nth-child(6) a {
  top: 19px;
  left: 1601px;
}
.navbar-container ul li:nth-child(6) a.active, .navbar-container ul li:nth-child(6) a:hover {
  background-image: url("../img/effectsSelected.png");
  background-repeat: no-repeat;
  background-position: center;
}

.inflammatory-content {
  background-image: url("../img/background_chart.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 100% !important;
  width: 100% !important;
}

.arrow-chart-btn {
  height: 70px !important;
  width: 70px !important;
  border-radius: 50px;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  position: absolute;
  top: 50% !important;
}

.arrow-btns-container {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
}

.charts-content {
  position: absolute;
  top: 35%;
  width: 100%;
  height: 50%;
  left: 0%;
  right: 15%;
}

.disable-click {
  pointer-events: none;
}

.opacity-disabled {
  opacity: 0.3;
}

.btn-fade-anim {
  animation: example ease 2s;
  -webkit-animation: example ease 2s;
  -moz-animation: example ease 2s;
  -o-animation: example ease 2s;
  -ms-animation: example ease 2s;
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: 3;
  -webkit-animation-name: example;
  -webkit-animation-duration: 2s;
  -webkit-animation-timing-function: ease;
}

@keyframes fadeCurve {
  0%, 100% {
    filter: brightness(1);
    -webkit-filter: brightness(1);
  }
  50% {
    filter: brightness(2.5);
    -webkit-filter: brightness(2.5);
  }
}
@-webkit-keyframes fadeCurve {
  0%, 100% {
    filter: brightness(1);
    -webkit-filter: brightness(1);
  }
  50% {
    filter: brightness(2.5);
    -webkit-filter: brightness(2.5);
  }
}
@keyframes example {
  0% {
    filter: brightness(1);
    filter: contrast(1);
    -webkit-filter: brightness(1);
    -webkit-filter: contrast(1);
  }
  50% {
    filter: brightness(0.6);
    filter: contrast(0.6);
    -webkit-filter: brightness(0.6);
    -webkit-filter: contrast(0.6);
  }
  100% {
    filter: brightness(1);
    filter: contrast(1);
    -webkit-filter: brightness(1);
    -webkit-filter: contrast(1);
  }
}
@-moz-keyframes fadeCurve {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeCurve {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.references {
  position: absolute;
  text-align: center;
  width: 100%;
}
.references img {
  margin-bottom: 15px;
}
.references h5 {
  margin: 0;
  width: 100%;
  font-weight: 400;
  color: white;
  font-size: 1.4rem;
  line-height: 1.3;
}

.indications {
  position: absolute;
  text-align: left;
  color: gray;
  font-size: 14px;
}

#title-1,
#title-2 {
  font-size: 2.1rem;
  font-weight: bold;
}

#subtitle-1,
#subtitle-2 {
  font-size: 1.6rem;
}

.img-cont {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.overlay {
  width: 85%;
  position: absolute;
  height: 1000px;
  overflow: hidden;
  animation: overlay normal ease 5s;
  animation-fill-mode: forwards;
}

.overlay-text {
  width: 85%;
  position: absolute;
  height: 5%;
  overflow: hidden;
  animation: overlay normal ease 5s;
  animation-fill-mode: forwards;
}

.overlay1 {
  opacity: 0;
  width: 95%;
  position: absolute;
  height: 1000px;
  overflow: hidden;
  animation: overlay1 normal ease 4s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

@keyframes overlay {
  0% {
    opacity: 0;
    width: 0%;
  }
  100% {
    opacity: 1;
    width: 100%;
  }
}
@keyframes overlay1 {
  0% {
    opacity: 0;
    width: 85%;
  }
  100% {
    opacity: 1;
    width: 100%;
  }
}
.overlay-results-bar {
  width: 100%;
  height: 0px;
  bottom: 0px;
  position: absolute;
  overflow: hidden;
  animation: overlayBar normal ease 3s;
  animation-fill-mode: forwards;
}

@keyframes overlayBar {
  0% {
    height: 0px;
  }
  100% {
    height: 100%;
  }
}
@-webkit-keyframes overlayBar {
  0% {
    height: 0px;
  }
  100% {
    height: 100%;
  }
}

/*# sourceMappingURL=styles.css.map */
