html,body,.navbar{
	margin: 0;
	padding: 0;
}
ul, li {
    list-style: none;
}
a {
	text-decoration: none;
}

.container{
  width: 100%;
  height: calc(100vh - 72px);
}
.header{
  width: 100%;
  height: 72px;
  background-color: #ffffff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
}
.header-container{
  margin: 0 auto;
  max-width: 1260px;
  padding: 0 10px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header-logo{
  margin-right: 10%;
}
.navbar{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.navbar li {
  height: 100%;
  display: block;
  float: left;
  margin: 0px 0px;
  position: relative;
  min-width: 50px;
  text-align: center;
  padding: 0px 20px;
}
.navbar li a{
  line-height: 72px;
  color: #888888;
}
.navbar li.active:after {
    width: 50px;
}
li.active>a{
color: #000000;
}
.header.opaque .fixed .navbar li:after {
    visibility: visible;
    opacity: 1;
}
.navbar li:after {
    background: #E60020;
    content: "";
    height: 4px;
    width: 0px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    border-radius: 50px;
}


.footer{
      margin-top: 0px;
    padding: 0px 0 0;
    width: 100%;
    height: 313px;
    background: #000;
    /* color: rgba(255, 255, 255, 0.48); */
    background: #fbfbfb;
    clear: both;
    position: relative;
    font-size: 14px;
    line-height: 22px;
    text-align: left;
}
.footer-logo {
    padding: 50px 10px 30px 10px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    max-width: 1260px;
}
.footer .logoimg {
    width: 140px;
    height: 30px;
}
.footer-text{
    padding: 20px 10px;
    margin: 0 auto;
    color: #5F6464;
    position: relative;
    overflow: hidden;
    max-width: 1260px;
}
.ftNav{
  margin: 5px 0;
}
.ftNav a{
  display: inline-block;
  padding: 0 10px;
  position: relative;
  color: #5F6464;
}
.ftNav a:first-child {
    padding-left: 0;
}
.footer a {
    color: #5F6464;
    font-size: 14px;
}