
.ht-banner {
  position: relative;
  overflow: hidden;
  background-size: cover;
  text-align: center;
  background-position: bottom;
}

.dot-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 5; /* above background, below text if needed */
}

.ht-banner .dot {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1c1c1c; /* initial black */
}

.ht-banner h1 span {
  font-size: 210px;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1;
}

.ht-banner-title {
  position: relative;
  overflow: hidden;
  height: 200px;     /* make sure it’s tall enough for one line of text */ */
}

.ht-banner-title span {
  opacity: 0;
  position: absolute;
  inset: 0;
  text-align: center;
  z-index: 99;
  transform: translate(-50%,50% + 20px);
  white-space: nowrap; 
} 

.ht-banner__container{
  max-width: 920px;
  margin: 0 auto;
}

.ht-banner-description {
  max-width: 800px;
  text-align: right;
  margin-left: auto;
}

@media only screen and (max-width: 992px) {

  .ht-banner-title {
    height: 70px;
  }

  .ht-banner h1 span {
    font-size: 80px;
    line-height: 1;
  }


