/* 404 error page */
.error-section {
    margin: 10rem 0;
}

.error-section img {
    background-size: contain;
}
.inner-error {
    text-align: center;
    align-items: center;
}

.error-section h1 {
    font-size: 8rem;

    font-weight: bold;
    color: #000;
}

.error-section h2 {
    font-weight: bold;
    color: #000;
}

.error-section p {
    color: #000;
}

.btn-1 {
  z-index: 1;
  overflow: hidden;
  background: transparent;
  position: relative;
  padding: 8px 50px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1em;
  letter-spacing: 2px;
  transition: 0.2s ease;
  font-weight: bold;
  margin: 5px 0px;
}
.btn-1.green {
  border: 4px solid var(--primary-color);
  color: #0e0620;
}
.btn-1.green:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: var(--primary-color);
  z-index: -1;
  transition: 0.2s ease;
}
.btn-1.green:hover {
  color: var(--white-color);
  background: var(--primary-color);
  transition: 0.2s ease;
}
.btn-1.green:hover:before {
  width: 100%;
}