* {
  margin: 0;
  padding: 0;
}

body {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

.flex {
  display: flex;
  align-items: center;
}
.flex.space_around {
  justify-content: space-around;
}

.error_main {
  background: #8f69f2;
}

header.error_page {
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  z-index: 9;
}
header.error_page .logo img {
  height: 72px;
}
header.error_page .menu a {
  color: #333;
  font-family: "Switzer-Regular";
  margin: 0 15px;
}
header.error_page .menu a:hover {
  color: #0080c5;
}

.error_banner {
  width: 100%;
  height: 100vh;
  background-position: center !important;
  background-size: cover !important;
  position: relative;
}
.error_banner .text {
  color: #fff;
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 95%;
}
.error_banner .text h1 {
  font-family: "Kudryashev Headline";
  text-shadow: 1px 3px 1px rgba(72, 65, 65, 0.3);
  margin-bottom: 15px;
}
.error_banner .text a {
  background: #0080c5;
  display: inline-block;
  margin-top: 18px;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Switzer-Semibold";
  color: #fff;
  border: 1px solid #0080c5;
  transition: 0.5s;
}
.error_banner .text a:hover {
  background: #fff;
  border: 1px solid #fff;
  color: #0080c5;
}

@media (max-width: 1400px) {
  .container {
    max-width: 1250px;
  }
  header.error_page {
    padding: 5px 0;
  }
  header.error_page .logo img {
    height: 62px;
  }
  .error_banner .text {
    bottom: 10%;
  }
}
@media (max-width: 1000px) {
  header.error_page .logo img {
    height: 50px;
  }
  header.error_page .menu a {
    margin: 0 10px;
  }
}
@media (max-width: 500px) {
  header.error_page {
    text-align: center;
  }
  header.error_page .menu {
    display: none;
  }
  .error_banner {
    height: 58vh;
    margin-top: 60px;
  }
  .error_banner .text {
    bottom: -20px;
  }
}/*# sourceMappingURL=style.css.map */