html, body {
  zoom: 1;
}
body {
  font-size: 16px;
}

ul, li {
  padding: 0;
  list-style: none;
}

.container {
  max-width: 1200px !important;
  min-width: 1000px !important;
}
.empty {
  padding: 20px;
  max-width: 400px;
  margin: 0 auto;
}
.empty p {
  font-size: 16px;
  color: #999;
  margin-top: 30px;
  text-align: center;
}
/* navbar */
.navbar-custom {
  transition: all 0.2s ease;
}
.navbar-custom .navbar {
  min-height: 80px;
}
.navbar-custom .navbar-brand .logo {
  width: 136px;
  height: 38px;
}
.navbar-custom.navbar-dark .navbar-nav .nav-link {
  color: #ffffff;
}
.navbar-custom.navbar-light .navbar-nav .nav-link {
  color: #333333;
}
.navbar-custom .dropdown-menu {
  margin-top: 0;
}
.navbar-custom .dropdown:hover > .dropdown-menu {
  display: block;
}

/* footer */
.footer {
  width: 100%;
  min-height: 80px;
  text-align: center;
  padding: 20px 0;
  background-color: #040C28;
}

.footer p {
  color: #F0F0F0;
  line-height: 22px;
  font-size: 14px;
  margin: 0;
}

.footer a {
  color: #F0F0F0;
  font-size: 14px;
}

.footer img {
  width: 12px;
  height: 12px;
  vertical-align: -5%;
  margin-right: 3px;
}

/* scroll-down */
.scroll-down {
  position: absolute;
  z-index: 10;
  bottom: 10px;
  width: 100%;
  left: 0;
  text-align: center;
}

.scroll-down a {
  display: inline-block;
  color: #fff;
  text-align: center;
}

.scroll-down .scroll-title {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 13px
}

.scroll-down .scroll-mouse {
  width: 30px;
  height: 50px;
  border-radius: 20px;
  position: relative;
  display: inline-block;
  border: 2px solid #fff
}

.scroll-down .scroll-mouse .whell {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  margin-left: -3px;
  animation: fadeInDown 1s linear 0s infinite backwards;
  background-color: #fff
}

a.back-to-top {
  position: fixed;
  z-index: 999;
  right: 0.75rem;
  bottom: 0.75rem;
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 0;
  text-indent: -9999px;
  background: #ffffff url(../img/icon_top.png) no-repeat center 47%;
  background-size: 1.125rem 1.125rem;
}
a.back-to-top:hover {
  background-color: #f2f6fc;
}