.error-wrap {
    margin: 200px 0 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 16px;
  }
  .error-card {
    width: 100%;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .error-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .error-title {
    margin: 0;
    text-align: center;
    font-weight: 400;
    font-size: 36px;
    line-height: 46px;
    text-transform: capitalize;
  }
  .error-sub {
    margin: 0;
    text-align: center;
    font-size: 21px !important;
    line-height: 26px;
  }
  .back-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--global--color-cristal-blue);
    text-decoration: none;
    font-size: 16px;
    line-height: 21px;
  }
  .back-home:hover {
    opacity: 0.85;
  }
  .error404 .remark,
  .error404 .page-banner {
    display: none;
  }
  .back-home {
    color: var(--global--color-cristal-blue);
    display: inline-flex;
    margin: 0;
    vertical-align: top;
    margin-top: 10px;
  }
  
  .back-home .dot-back {
    width: 21px;
    height: 21px;
    display: inline-block;
    vertical-align: top;
    border: 1px solid var(--global--color-cristal-blue);
    border-radius: 100%;
    position: relative;
  }
  
  .back-home .dot-back:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: scale(0.263);
    background-color: var(--global--color-cristal-blue);
    border-radius: 100%;
    animation-duration: 0.8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
    will-change: transform;
  }
  
  .back-home:hover .dot-back:before {
    animation-name: rippleWith;
  }
  
  .back-home .dot-back:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translate3d(-50%, -50%, 0);
    border: 3px solid var(--global--color-cristal-blue);
    border-radius: 100%;
    opacity: 0;
    animation-duration: 0.8s;
    animation-delay: 0.4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
    will-change: transform, opacity;
  }
  
  .back-home:hover .dot-back:after {
    animation-name: ripple;
  }

  @media (max-width: 767.98px) {
    .error-wrap{
      max-height: 540px;
      padding: 0 20px;
    }
    .error-title{
      font-size: 28px;
      line-height: 38px;
    }
  }