* {
  margin: 0;
  outline: none;
  border: none;
  padding: 0;
  list-style: none;
  background-color: transparent;
  text-decoration: none;
  letter-spacing: 0;
  font-family: Lato, sans-serif;
  box-sizing: border-box;
}
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.71428571;
  overflow-x: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
body .bg-box {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
}
@media screen and (max-width: 992px) {
  body .bg-box {
    position: relative;
    height: 110px;
  }
}
body .bg-box .ele {
  width: 100%;
}
body .bg-box::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
body main {
  padding-bottom: 40px;
  flex-grow: 1;
}
.pic,
.logo,
.video {
  font-size: 0;
  line-height: 0;
}
.pic .ele,
.logo .ele,
.video .ele {
  width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Merriweather Sans, sans-serif;
  font-weight: 400;
  text-transform: none;
  color: #3c3c3c;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container:after,
.container:before {
  content: ' ';
  display: table;
}
.container:after {
  clear: both;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
