/* -------------------------------
               404
------------------------------- */
.not-found {
  min-height: 600px;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 40px 20px;
}

.not-found-container {
  width: 100%;

  max-width: 700px;

  text-align: center;
}

/*=============================
        Typography
=============================*/

.not-found-label {
  display: inline-block;

  padding: 8px 18px;

  border: 1px solid var(--border, #dcdfe4);

  border-radius: 999px;

  color: var(--primary);

  font-size: 0.85rem;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  margin-bottom: 30px;
}

.not-found-title {
  font-size: clamp(3rem, 6vw, 5rem);

  line-height: 1.3;

  color: var(--black);

  margin-bottom: 20px;
}

.not-found-text {
  max-width: 540px;

  margin: 0 auto;

  color: var(--text, #6b7280);

  line-height: 1.9;

  font-size: 1.05rem;
}

/*=============================
        Button
=============================*/

.not-found-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  margin-top: 45px;

  padding: 16px 34px;

  background: var(--primary);

  color: #fff;

  text-decoration: none;

  border-radius: 50px;

  font-weight: 600;

  transition: 0.3s;
}

.not-found-btn:hover i {
  transition: all 0.4s ease;
}

.not-found-btn:hover i {
  transform: translateX(-4px);
}

/*=============================
        Responsive
=============================*/

@media (max-width: 768px) {
  .not-found {
    padding: 30px 20px;
  }

  .not-found-label {
    margin-bottom: 22px;
  }

  .not-found-text {
    font-size: 1rem;
  }

  /* .not-found-btn {
    width: 100%;
  } */
}
