.error {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.error__image {
  width: 1078px;
  position: absolute;
  z-index: -1;
  left: 50%;
  top: -260px;
  transform: translateX(-50%);
}
@media screen and (max-width: 900px) {
  .error__image {
    width: 375px;
    top: -50px;
  }
}
.error__title {
  margin-bottom: 24px;
}
.error__content {
  max-width: 625px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 262px 0 82px;
}
@media screen and (max-width: 900px) {
  .error__content {
    padding: 196px 0 64px;
  }
}
.error__content-text {
  max-width: 464px;
  margin-bottom: 16px;
  font-size: var(--font-size-s);
  line-height: var(--line-height-s);
}
