html, body {
  width: 100%;
  height: 100%;
  background-color: rgba(19, 19, 19, 1);
  font-family: 'Roboto', sans-serif;
  overflow: hidden;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  flex-direction: column;
}

.img {
  width: 300px;
  height: auto;
}

.desc,
.typewrite {
  color: #fff;
  font-size: 16px;
  margin-top: 4px;
}
.footer {
  position: absolute;
  bottom: 16px;
}

a {
  text-decoration: none;
  color: #aeaeae;
  font-size: 12px;
}

a + a {
  margin-left: 16px;
}

.footer-box {
  display: flex;
  justify-content: center;
}

.copyright {
  margin-top: 8px;
  color: #fff;
  font-size: 12px;
}

#video {
  width: 100%;
  height: 100%;
  background-color: #000;
}

.footer-desc {
  color:#fff; 
  text-align: center; 
  font-size: 12px;
  margin-bottom: 8px;
}

#wrapper {
  display: none;
}

.btn-bg {
  position: absolute;
  bottom: 120px;
}

.btn {
  width: 240px;
  /* height: 64px; */
  padding: 8px 0;
  cursor: pointer;
  border: none;
}


.btn .slogan {
  display: block;
  font-family: 'MuliRegular';
  font-weight: inherit;
  font-size: 12px;
  line-height: 1.5;
}

.btn .main {
  display: block;
  text-align: left;
  font-family: 'MuliBold';
  font-weight: inherit;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}
/* 100 217 230 */
/* 156 50 206 */
.btn-fill {
  position: relative;
  display: inline-block;
  text-align: center;
  color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 1;
  background: linear-gradient(to left, rgba(150, 45, 206, 1), rgba(76, 155, 233, 1));
}

.btn-fill:hover:before {
  -webkit-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}

.btn-fill:before {
  position: absolute;
  content: '';
  display: block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  z-index: -1;
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  background-color: #121D30;
}

.z-dimension {
  padding-left: 70px;
  background: url("../imgs/btn-logo.png") no-repeat 18px center;
  background-size: 40px;
}


.customer-item-list {
  display: flex;
}

.customer-item + .customer-item{
  margin-left: 8px;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) { 
  .mobile-only {
    display: inline-block;
  }
}