.mx-card-notfound {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-image: var(--mx-card-notfound-url);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0.5rem;
    position: relative;
    overflow: hidden;
    border: 5px solid #fff;
    border-radius: 20px;

    /* Matrix */
    /* margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
    margin-right: 4rem !important;
    margin-left: 4rem !important; */
    /* Netive */
    margin-right: 8rem !important;
    margin-left: 8rem !important;
    margin-top: 1rem !important;
    margin-bottom: 1em !important;
}
.mx-card-notfound::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Matrix */
    /* background-color: rgba(255, 255, 255, 0.65); */
    /* Netive */
    background-color: rgba(223, 208, 253, 0.65);

    z-index: 0;
}
.mx-card-notfound>* {
    position: relative;
    z-index: 1;
}
.header-notfound {
  color: #ffffff;
  position: relative;
  background: var(--header-notfound-url) no-repeat center center;
  background-size: cover;
}
.header-notfound::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  /* Matrix */
  /* background-color: rgba(21, 26, 72, 0.65); */
  /* Netive */
  background-color: rgba(97, 21, 247, 0.65);

  z-index: 0;
}
.header-notfound > * {
  position: relative;
  z-index: 1;
}

.title-notfound {
  font-size: 1.25rem;
}
@media (max-width: 991.98px) {
    .mx-card-notfound {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }
    .title-notfound {
      font-size: 1rem;
    }
}