.error-page-left {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.error-page-left .section-title {
  margin-bottom: 26px;
  padding-bottom: 21px;
}

.error-page-left > p {
  width: 350px;
  margin-bottom: 44px;
  color: var(--color-gray);
}

.error-page-left .btn-back-to-home {
  align-self: flex-start;
  white-space: nowrap;
}

@media screen and (max-width: 991px) {
  .error-page-left {
    align-items: center;
    text-align: center;
  }

  .error-page-left .section-title {
    font-size: 28px;
    line-height: 36px;
    padding-bottom: 22px;
  }

  .error-page-left .section-title:after {
    margin: 0 auto;
  }

  .ltr .error-page-left .section-title:after {
    right: 0;
  }

  .rtl .error-page-left .section-title:after {
    left: 0;
  }

  .error-page-left .btn-back-to-home {
    align-self: center;
  }
}

@media screen and (max-width: 380px) {
  .error-page-left > p {
    width: auto;
  }
}

.error-page-right .error-image {
  max-width: 100%;
}

@media screen and (max-width: 991px) {
  .error-page-right {
    margin-bottom: 43px;
    text-align: center;
  }

  .error-page-right .error-image {
    width: 400px;
  }
}

@media screen and (max-width: 500px) {
  .error-page-right .error-image {
    width: 80%;
  }
}

.error-page-wrap {
  margin-top: 70px;
  padding-bottom: 20px;
}

.error-page {
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .error-page {
    flex-direction: column-reverse;
  }
}