.notFoundHeader{
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}
.innerErrorPageHeader{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 60px;
}
.error-wrap{
  width: 100%;
  text-align: center;
}
.notfoundsubTitle{
  font-size: 22px;
  color: var(--color2);
}
.notfoundTitle{
  font-size: 40px;
  color: #000;
  line-height: 60px;
  position: relative;
}
.notfoundTitle::after{
  position: absolute;
  content: '';
  background-color: var(--color2);
  height: 3px;
  width: 48px;
  border-radius: 10px;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -5px;
}
@media (max-width:760px){
  .notfoundTitle{
    font-size: 22px;
    line-height: 33px;
    padding-bottom: 10px;
  }
  .notfoundsubTitle{
    font-size: 16px;
  }
  .notFoundHeader{
    height: 600px;
    margin-bottom: 60px;
  }
}