/* ========================================
>>> Error 404
======================================== */
.error {
  text-align: center;
}

.error .text {
  margin-top: 60px;
  font-size: 1.6rem;
  line-height: 1.375;
}

.error .btn-slide {
  display: inline-block;
  position: relative;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  font-size: 1.2rem;
  line-height: 54px;
  text-align: center;
  border: 3px solid #000;
  transition: all 0.3s ease-in-out;
  margin-top: 70px;
}

.error .btn-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}

.error .btn-slide:hover {
  color: #000;
}

.error .btn-slide:hover::before {
  left: auto;
  right: 0;
  width: 0;
}

@media screen and (max-width: 560px) {
  .error {
    padding: 0 20px;
  }
  .error .text {
    margin-top: 60px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}
