#error_page {
  height: 650px;
}
@media (max-width: 767px) {
  #error_page img {
    width: 250px;
    height: auto;
  }
}
#error_page p {
  font-size: 21px;
  font-size: 1.3125rem;
}
@media (max-width: 767px) {
  #error_page p {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media (max-width: 767px) {
  #error_page {
    padding: 60px 0 0 0;
    height: 500px;
  }
}

.search_bar {
  position: relative;
  padding: 5px;
}
.search_bar input[type='text'] {
  border: 0;
  height: 50px;
  font-weight: 500;
  padding-left: 15px;
  color: #555;
  background-color: white;
  background-color: white;
}
.search_bar input[type='text']:focus {
  border: 0;
  box-shadow: none;
  color: #555;
}
.search_bar input[type='submit'] {
  position: absolute;
  right: 10px;
  color: #fff;
  font-weight: 600;
  top: 10px;
  border: 0;
  padding: 0 25px;
  height: 40px;
  cursor: pointer;
  border-radius: var(--border-radius-small);
  background-color: var(--color-1);
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.search_bar input[type='submit']:focus {
  outline: none;
}
.search_bar input[type='submit']:hover {
  color: #2a2a2a;
  background-color: var(--color-3);
}
