@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,600|Roboto+Mono:300,400");

* {
  box-sizing: border-box;
}

html {
  background:
    linear-gradient(rgba(34, 41, 65, 0.45), rgba(46, 55, 86, 0.45)),
    url("../img/bg-image-asset.webp");
  background-size: cover;
  background-position: right;
  width: 100%;
  overflow: hidden !important;
  height: 100vh;
}

.hero-head header {
  height: 75px;
}

.hero-head header .navbar-item img {
  height: 75px;
  max-height: none;
}

.hero-head header .navbar-item .is-primary {
  border-color: white !important;
  color: white !important;
}

.hero-head header .navbar-item .is-primary:hover {
  background: rgba(0, 0, 0, 0) !important;
  border-color: white !important;
  color: white !important;
  transition: all 0.2s ease-in-out;
}

.navbar-item:hover {
  background-color: transparent !important;
}

.hero-body .title {
  font-family: "Montserrat", sans-serif;
  font-weight: 300 !important;
  font-size: 4rem !important;
  letter-spacing: 15px;
  color: #ffffff !important;
}

.hero-body .subtitle .countdown {
  color: #ffffff;
  font-family: "Roboto Mono", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  padding-top: 15px;
  letter-spacing: 2px;
  font-size: 2.5rem;
}

.hero-foot {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-foot ul li {
  display: inline;
  padding: 16px;
}

.hero-foot a {
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    opacity: 1\9;
  }

  to {
    opacity: 1;
  }
}

.fade {
  opacity: 0;
  animation: fadeIn ease-in 1;
  animation-fill-mode: forwards;
  animation-duration: 2s;
}

.fade.fadeOne {
  animation-delay: 0.7s;
}

.fade.fadeTwo {
  animation-delay: 1s;
}

.fade.fadeThree {
  animation-delay: 1.1s;
}

.fade.fadeThree span {
  font-size: 0.8rem;
}

.w-100 {
  width: 100%;
}
  .navbar-brand {
    align-items: center;
    justify-content: center;
    width: 100%;
  }

@media (max-width: 1024px) {

}
@media (max-width: 767px) {
  .hero-body .title {
    font-size: 2.5rem !important;
  }
  .hero-body .subtitle .countdown {
    font-size: 2rem;
  }

  html {
    background:
      linear-gradient(rgba(34, 41, 65, 0.45), rgba(46, 55, 86, 0.45)),
      url("../img/bg-image-asset.webp");
    background-position: center;
  }
}