div.sense-fade-animate, body.sense-fade-animate::before {
  content: "";
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: black;
  z-index: 999999;
  transition: opacity 0.5s linear;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  -webkit-flex-direction: column;
}
div.sense-fade-animate:not(.is-faded), body.sense-fade-animate:not(.is-faded)::before {
  opacity: 0;
  pointer-events: none;
}
div.sense-fade-animate p {
  display: block;
  text-align: center;
  color: white;
  font-family: Cabin;
  font-size: 50px;
  line-height: 60px;
  transition: opacity 0.3s linear, transform 0.5s ease;
  margin: 5px 0;
}
div.sense-fade-animate:not(.is-faded) p {
  opacity: 0;
  transform: translateY(10px);
}
div.sense-fade-animate p:nth-child(1) {
  transition-delay: 0.4s;
}
div.sense-fade-animate p:nth-child(2) {
  transition-delay: 0.6s;
  color: #57b3cc;
}
div.sense-fade-animate.faded-text p {
  opacity: 0;
  transition: opacity 0.5s linear;
  transition-delay: 0s !important;
}
