/*
negocio/plantillas/panels/404/style.css
*/
@keyframes MoveUpInitial {
  to {
    transform: translate3d(0, -105%, 0);
  }
}
@keyframes MoveUpEnd {
  from {
    transform: translate3d(0, 100%, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes MoveUpSoft {
  from {
    transform: translate3d(0, 35%, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes MoveUpTiny {
  from {
    transform: translate3d(0, 15%, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes ZoomOut {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.hero.hero-404 .hero-body,
section.hero.hero-404 .hero-body {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero.hero-404 .hero-body.hero-body-img:before,
section.hero.hero-404 .hero-body.hero-body-img:before {
  display: none;
}
.hero.hero-404 .hero-body .container-lg,
section.hero.hero-404 .hero-body .container-lg {
  text-align: center;
  color: white;
}
.hero.hero-404 .hero-body .container-lg h1,
section.hero.hero-404 .hero-body .container-lg h1 {
  font-size: 26rem;
  line-height: 1em;
  color: #003a5d;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero.hero-404 .hero-body .container-lg h1 span,
section.hero.hero-404 .hero-body .container-lg h1 span {
  font-family: "FontAwesome";
  color: #003a5d;
  margin: 1rem;
  padding: 0 3rem;
  background: #f2b228;
}
.hero.hero-404 .hero-body .container-lg h1 span:nth-child(2),
section.hero.hero-404 .hero-body .container-lg h1 span:nth-child(2) {
  background: #ff8d6b;
}
.hero.hero-404 .hero-body .container-lg h1 span:last-child,
section.hero.hero-404 .hero-body .container-lg h1 span:last-child {
  background: #aec8e5;
}
@media (max-width: 767px) {
  .hero.hero-404 .hero-body .container-lg h1,
  section.hero.hero-404 .hero-body .container-lg h1 {
    font-size: 18rem;
    margin: 0.6rem;
  }
}
@media (max-width: 549px) {
  .hero.hero-404 .hero-body .container-lg h1,
  section.hero.hero-404 .hero-body .container-lg h1 {
    font-size: 12rem;
  }
  .hero.hero-404 .hero-body .container-lg h1 span,
  section.hero.hero-404 .hero-body .container-lg h1 span {
    padding: 0 1rem;
    margin: 0.2rem;
  }
}
.hero.hero-404 .hero-body .container-lg p,
section.hero.hero-404 .hero-body .container-lg p {
  font-size: 1.6rem;
  line-height: 1.4em;
  font-weight: normal;
  margin-bottom: 2rem;
  margin-top: 4rem;
}
.hero.hero-404 .hero-body .container-lg a.button,
section.hero.hero-404 .hero-body .container-lg a.button {
  display: inline-block;
}
.hero.hero-404 .hero-body .logo404,
section.hero.hero-404 .hero-body .logo404 {
  position: absolute;
  width: 25.9rem;
  height: 13.5rem;
  left: 6.4rem;
  top: 3.5rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

