* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
html,
body {
  position: relative;
  width: 100%;
  min-width: 1280px;
  height: 100%;
  overflow: hidden;
}
body {
  display: flex;
  flex-direction: column;
}
a:link,
a:visited,
a:hover,
a:active {
  color: #515154;
  text-decoration: none;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
  padding: 0 100px;
  z-index: 9;
}
header.sticky {
  padding: 10px 100px;
  background: rgba(0, 0, 0, 0.6);
}
header.sticky .logo {
  color: #f5f5f7;
}
header .logo {
  position: relative;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  font-size: 2em;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}
.banner {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  /* background: url(../images/bg-6.jpg) contain; */
  background-image: url('../images/bg-6.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  /* background-size: 100%; */
  background-position: 50% 60%;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner .phone-wrap{
  position: absolute;
  bottom: 50px;
  left: 80px;
  font-size: 26px;
  font-weight: bold;
  color: #fff;
}

footer {
  /* position: absolute;
  bottom: 0; */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 30px 100px 24px;
  background: #f5f5f7;
}
footer div,
footer a {
  margin: 0 16px;
  color: #515154;
}
footer .link:hover {
  color: #2b90f8;
}
