/* Start 404 page */
svg {
  animation: pop 0.4s ease-in;
  width: 200px;
}

/*Animate cogs*/
#cog1, #cog2, #cog3 {
  animation: spin 4s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
  animation-delay: 0.6s;
}

#cog1 {
  fill: #3992a4;
}

#cog2 {
  animation: spinback 4s linear infinite;
  animation-delay: 0.6s;
  fill: #888;
}

#cog3 {
  fill: #ab986c;
}

@-webkit-keyframes pop {
  0% {
    transform: scale(0);
  }
  90% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spinback {
  100% {
    transform: rotate(-360deg);
  }
}
.error-container {
  text-align: center;
  margin-bottom: 5%;
}
.error-container a {
  text-decoration: none;
}

.animate-404 {
  margin: 20px auto 0;
  border-radius: 50%;
  overflow: hidden;
  width: 170px;
  height: 170px;
  position: relative;
  background-color: #f9f9f9;
  box-shadow: inset 0px 0px 5px 0px rgba(50, 50, 50, 0.1);
}
.animate-404 svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-47%, -50%);
}

.error-code {
  font-size: 100px;
  color: #3992a4;
  line-height: 1em;
}

.error-desc {
  color: #ab986c;
}

.home-btn {
  width: 40%;
  height: 60px;
  background-color: #efefef;
  display: block;
  margin: auto;
  border-radius: 10px;
  padding: 4px;
  font-size: 14px;
}
.home-btn p {
  font-weight: bold;
  margin-bottom: 3px;
  margin-top: 4px;
}
.home-btn:hover {
  background-color: #ab986c;
  color: #fff;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
@media (max-width: 1199px) {
  .home-btn {
    width: 90%;
  }
}

/*# sourceMappingURL=press-file.css.map */
