/* Colors */
/* Fonts */
body .page-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 1; }
  body .page-404 .page-404-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(14, 22, 61, 0.4);
    z-index: -2; }
  body .page-404 .page-404-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 30px; }
    body .page-404 .page-404-content .page-404-error {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 0;
      font-family: var(--secondary_font_family);
      font-weight: 700;
      font-size: 500px;
      line-height: 500px;
      color: #ffffff;
      opacity: 0.05;
      letter-spacing: -0.03em;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      z-index: -1;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none; }
    body .page-404 .page-404-content .page-404-title {
      font-family: var(--secondary_font_family);
      max-width: 730px;
      font-size: 60px;
      line-height: 1.1em;
      margin-top: 10px;
      margin-bottom: 60px;
      position: relative;
      font-weight: 600;
      color: #ffffff; }
    body .page-404 .page-404-content .page-404-button {
      box-sizing: border-box;
      height: 50px;
      min-width: 170px;
      margin: auto;
      padding: 0 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid var(--primary_color);
      color: #ffffff;
      font-family: var(--secondary_font_family);
      font-weight: 700;
      font-size: 16px;
      line-height: 22px;
      position: relative;
      z-index: 1; }
      body .page-404 .page-404-content .page-404-button:before {
        content: "";
        display: block;
        position: absolute;
        height: 100%;
        width: 0;
        left: 0;
        top: 0;
        background-color: var(--primary_color);
        transition: width 0.3s ease;
        z-index: -1; }
      body .page-404 .page-404-content .page-404-button:hover:before {
        width: 100%; }

@media screen and (max-width: 1024px) {
  body .page-404 .page-404-content .page-404-error {
    font-size: 50vw; } }

@media screen and (max-width: 640px) {
  body .page-404 .page-404-content .page-404-title {
    font-size: 48px;
    margin-bottom: 40px; } }

@media screen and (max-width: 480px) {
  body .page-404 .page-404-content .page-404-title {
    font-size: 42px; } }
