@import url("https://use.typekit.net/ttl5sto.css");
.fyra-body {
  position: relative;
  background-color: #363241;
  height: 100vh;
  margin: 0;
}

.center-content {
  position: absolute;
  left: 50%;
  top: 45%;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation-name: fadeIn;
  animation-delay: 0.3s;
  animation-duration: 2s;
  /* or: Xms */
  padding-left: 15px;
  padding-right: 15px;
  max-width: 380px;
  width: 100%;
  animation-fill-mode: forwards;
  /* or: backwards, both, none */
}
.center-content p {
  margin-top: 50px;
  margin-bottom: 50px;
  color: #E4E4EF;
  font-family: proxima-nova, sans-serif;
  font-size: 19px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 1.5px;
  line-height: 23px;
  text-align: center;
}
.center-content a {
  display: table;
  height: 44px;
  width: 150px;
  border-radius: 31.5px;
  background-color: #E4E4EF;
  color: #222230;
  font-family: proxima-nova, sans-serif;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1.5px;
  line-height: 44px;
  text-align: center;
  margin: auto;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
}
.center-content a:hover {
  background-color: #fff;
}
.center-content img {
  margin: auto;
  display: table;
  max-width: 100%;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.foot-text {
  opacity: 0.7;
  color: #E4E4EF;
  font-family: proxima-nova, sans-serif;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 23px;
  text-align: center;
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeInFromBottom;
  animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-delay: 0.3s;
  max-width: 505px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
.foot-text a {
  color: #E4E4EF;
  transition: all 0.3s;
}
.foot-text a:hover {
  color: #fff;
}
.foot-text .bull {
  padding-left: 6px;
  padding-right: 6px;
}

@media all and (max-width: 767px) {
  .foot-text .bull-1 {
    padding: 0px;
    display: block;
    visibility: hidden;
    line-height: 1px;
  }
}
@keyframes fadeInFromBottom {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.7;
  }
}
.bg-vid {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}
