html, body {
  height: 100%; 
  margin: 0;
  padding: 0;
  font-family: 'Kanit', sans-serif;
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0
}

.coming-soon-page {
  background: url(../images/lar.jpg) no-repeat center;
  background-size: cover; 
  min-height: 100vh;
  position: relative;
  z-index: 0;
  display: grid;
  align-items: center;
  padding: 3em 0 1em;
  padding-bottom: 0;
}


.coming-soon-page:before {
  content: "";
  background: #222;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  opacity: .7;
}

.coming-page-info .logo-center {
  text-align: center;
}

.coming-page-info .coming-block {
  margin: 0px auto 0px;
  max-width: 750px;
  text-align: center;
  padding: 3em 0em 6em;
  display: grid;
}

.coming-page-info h1 {
  margin: 0;
  font-size: 100px;
  font-weight: 700;
  color: #fff;
  line-height: 1em;
  text-shadow: 20px 20px 0px rgba(0, 0, 0, .25);
}

.coming-page-info h4 {
  font-size: 30px;
  margin-bottom: .7em;
  margin-top: .2em;
  color: #c0aa83;
}

.coming-page-info p {
  color: #eee;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  max-width: 400px;
  margin: auto;
}

.progress {
  border-radius: 20px;
  height: 30px;
  background-color: #777;
  position: relative;
}
.progress .progress-bar {
  border-radius: 20px;
  position: absolute;
  height: 100%;
  background-color: red;
  width: 20%;
  animation: none;
}

@keyframes progress-animation {
  0% {
      width: 0%;
  }

  100% {
      width: 100%
  }

}

footer {
  color: #fff;
  padding: 15px;
  background-color: #034ea2;
  text-align: center;
  bottom: 0;
  width: 100%;
}
footer p {
  text-align: center;
  text-decoration: none;
  font-size: 16px;
}

.imgLogo {
  padding-top: 5px;
}

.titulo {
  font-size: 65px!important;
}