@font-face {
  font-family: "Segoe UI Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Segoe UI Regular"), url("../../fonts/Segoe UI.woff") format("woff");
}
@font-face {
  font-family: "Segoe UI Bold";
  font-style: normal;
  font-weight: normal;
  src: local("Segoe UI Bold"), url("../../fonts/Segoe UI Bold.woff") format("woff");
}
:root {
  --main-font: "Segoe UI Regular", sans-serif;
  --main-font: "Segoe UI Bold", sans-serif;
}

body {
  background: #fff url("../../theme/img/bg-maintenance.png") no-repeat;
  background-position: center right;
  font-family: var(--main-font);
  background-size: contain;
  position: relative;
  min-height: 100vh;
  margin: 0;
}

@media screen and (max-width: 991px) {
  body {
    background: #fff;
  }
}
* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

.wrapper {
  margin-top: 150px;
  padding: 30px;
  display: flex;
  width: 100%;
  flex-flow: column;
  align-items: center;
  justify-content: center;

}
@media screen and (min-width: 991px) {
  .wrapper {
    padding: 40px 60px;
  }
}
@media screen and (min-width: 991px) {
  .wrapper {
    max-width: 100%;
  }
}

.logo {
  display: inline-block;
  margin-bottom: 60px;
}
.logo img {
  height: 70px;
}

.heading {
  margin: 0;
  font-size: 17px;
  line-height: 27px;
  color: #242424;
  font-family: var(--main-font);
}

.alert {
  margin: 40px 0;
  background-color: #f3feff;
  border: 1px solid #e1fdff;
  border-radius: 4px;
  padding: 20px;
  color: #0399a0;
  font-size: 17px;
}
.alert a {
  font-family: var(--main-font);
}

.contact {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact li {
  margin-bottom: 20px;
}
.contact li:last-child {
  margin-bottom: 0;
}
.contact li a {
  display: flex;
  align-items: center;
  color: #242424;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.contact li a:hover {
  color: #0399a0;
}
.contact li a img {
  height: 18px;
  width: 18px;
  margin-right: 10px;
  fill: inherit;
}/*# sourceMappingURL=maintenance.css.map */