#error-block {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
#error-block .error-logo {
  margin: 50px auto;
  margin-bottom: 30px;
  text-align: center;
}
#error-block .error-logo i {
  font-size: 100px;
  color: #003366;
}
@media only screen and (max-width: 767px) {
  #error-block .error-logo i {
    font-size: 80px;
  }
}
#error-block .error-title {
  font-size: 46px;
  color: #003366;
  text-align: center;
  font-weight: 900;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #error-block .error-title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  #error-block .error-title {
    font-size: 28px;
  }
}
#error-block .error-description {
  color: #003366;
  font-size: 24px;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #error-block .error-description {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  #error-block .error-description {
    font-size: 18px;
  }
}
#error-block .error-button {
  margin: 0px auto;
  text-align: center;
  margin-top: 50px;
}
#error-block .error-button a {
  display: inline-block;
  color: #fff;
  padding: 10px 50px;
  background: #4A8FD5;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
#error-block .error-button a:hover {
  background: #003366;
}
