.page-404-container {
  width: 100vw;
  max-width: 1180px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  justify-content: center;
  margin: 70px auto;
  padding: 120px 20px;
  background-color: white;
  box-shadow: 0px 6.54619px 5.23696px rgb(0 0 0 / 3%), 0px 2.72402px 2.17921px rgb(0 0 0 / 2%);
}

.page-404-container .col-12 {
  display: flex;
  justify-content: center;
  flex-direction: column;

  padding: 0;
}

.page-404-container .image-parent {
  margin-bottom: 35px;
}

.page-404-container .image-parent,
.page-404-container .page-404-heading,
.page-404-container .page-404-description,
.page-404-container .back-to-home {
  text-align: center;
}

.page-404-heading .accent-404 {
  font-weight: 900;
  font-size: 48px;
  line-height: 56px;

  color: #FF6B00; 

  margin-right: 20px;
}

.page-404-heading h1 {
  font-weight: 600;
  font-size: 24px;
  line-height: 47px;

  color: #4D4D4F;
}

.page-404-description p {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;

  color: #4D4D4F;

  margin-bottom: 50px;
}

.page-404-description p .support-link {
  color: #FF6B00;

  text-decoration: underline;

  white-space: nowrap;
}

.back-to-home {
  width: 243px;
  height: 55px;

  padding: 16px 0;

  background: #FF6B00;
/* Shadow - Orange - 25% */

  box-shadow: 4px 4px 3px rgba(255, 107, 0, 0.15);
  border-radius: 60px;

  margin: 0 auto;
}

.back-to-home a {
  text-decoration: none;

  color: white;
  
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
}

/* Responsive 404 page */
@media screen and (min-width: 1200px){
  .page-404-container {
    width: 1180px;
  }
}

