.page-404 {
  width: 100%;
  height: 100vh;
  background-color: #f6eee3;
  position: relative;
}

.page-404 .bg-pc {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  position: absolute;
  user-select: none;
  top: 0;
  left: 0;
}

.page-404 .bg-mb {
  user-select: none;
  display: none;
}

.page-404 .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  padding: 0 1rem;
  width: 100%;
}

.page-404 .content p {
  margin-bottom: 1rem;
}

.page-404 .content .text-error {
  color: var(--text-body-75, rgba(46, 46, 46, 0.75));
  text-align: center;
  font-family: Matter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
}

.page-404 .content .text-404 {
  color: var(--Text-Title-Dark-green, #043424);
  text-align: center;
  font-family: 'Clash Grotesk';
  font-size: 7.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 7.75rem */
  letter-spacing: 0.3875rem;
  text-transform: uppercase;
}

.page-404 .content .title {
  color: var(--Text-Body-T1, #2e2e2e);
  text-align: center;
  font-family: 'Clash Grotesk';
  font-size: 3rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 3.6rem */
  text-transform: capitalize;
}
.page-404 .content .description {
  color: var(--text-body-75, rgba(46, 46, 46, 0.75));
  text-align: center;
  font-family: Manrope;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 1.3125rem */
  max-width: 16.75rem;
}

.page-404 .content .btn {
  display: flex;
  padding: 0.75rem 1.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 2.8125rem;
  border: none;
  background: var(--Test, #2e871c);
  color: var(--Text-Title-White, #fff);
  transition: all 0.3s ease-in-out;
}

.page-404 .content .btn:hover {
  background: #5e9c58;
}

@media (max-width: 768px) {
  .page-404 .bg-pc {
    display: none;
  }

  .page-404 .bg-mb {
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: bottom;
    position: absolute;
    top: 0;
    left: 0;
  }

  .page-404 .content {
    position: static;
    padding-top: 6.25rem;
    transform: translate(0, 0);
  }

  .page-404 .content p {
    margin-bottom: 0.5rem;
  }

  .page-404 .content .text-error {
    font-size: 0.75rem;
    line-height: 120%;
    letter-spacing: 0.04169rem;
  }

  .page-404 .content .text-404 {
    font-size: 4rem;
    line-height: 100%; /* 4rem */
    letter-spacing: 0.2rem;
  }

  .page-404 .content .title {
    font-size: 1.5rem;
  }

  .page-404 .content .description {
    font-size: 0.875rem;
    max-width: 100%;
  }

  .page-404 .content .btn {
    margin-top: 1rem;
  }
}
