.maincontent {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  border: none;
}



.video-section {
  position: relative;
  overflow: hidden;
}
.video-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 15, 15, .5);
  z-index: 1;
}
.video-section video {
  min-width: 200vh;
  height: auto;
  z-index: 0;
}

.hero-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 1800px;
  width: 75%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.hero-overlay{
  color: #fff;
font-size: 1.4rem;

}

.hero-overlay>ul{
  list-style-type: "*";
}

@media (max-height: 900px) {
  .video-section video {
      min-width: 250vh;
  }
}

@media (max-width: 1300px) {
  .hero-wrapper {
      width: 90%;
  }
}

@media (max-width: 981px) {
  .video-section::after {
      display: none;
  }
  .video-section video {
      min-width: auto;
  }

  .hero-wrapper {
      position: relative;
      top: 0;
      left: 0;
      width: 100%;
      transform: none;
      background-color: #ececec;
      flex-direction: column;
  }
  .estimate-box {
      max-width: 800px;
      margin: auto;
      padding: 25px 15px;
  }

  .hero-overlay{
    margin-top: 20px;
    color: var(--accent-color);
  }
}