body {
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
  font-family: "futura-pt", sans-serif;
  font-size: 19px;
  letter-spacing: 2px;
  font-weight: 400;
}

h1 {
  margin-bottom: 0;
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-size: 63px;
  color: #0B0B0B;
  text-transform: uppercase;
}

h2 {
  font-size: 23px;
  font-weight: 400;
  color: #8B8B8B;
  text-transform: uppercase;
}

.bold {
  text-transform: uppercase;
  font-weight: 700;
}

.container {
  height: 100vh;
}

.pt-12 {
  padding-top: 96px;
}

.pb-12 {
  padding-bottom: 96px;
}

.py-12 {
  padding-top: 96px;
  padding-bottom: 96px;
}

.p-8 {
  padding: 64px;
}

.pb-8 {
  padding: 64px;
}

.bg-dark {
  background: #0B0B0B !important;
}

.bg-image {
  height: 100%;
  background-image: url("../bg-image-elbemo.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 992px) {
  body {
    overflow-x: hidden;
    overflow-y: visible;
  }
  .container {
    height: auto !important;
  }
  .bg-image {
    height: 300px !important;
  }
}