.main-banner {
  min-height: 600px;
  overflow: hidden;
}
.main-banner .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.main-banner .video-background video {
  position: absolute;
  top: 35%;
  left: 50%;
  max-width: 1000px;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}
.main-banner .container-xxl {
  position: relative;
  z-index: 1;
}
.main-banner .col-lg-7 {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 0.8s ease-out 3s forwards;
}

@media only screen and (min-width: 1025px) {
  .main-banner {
    min-height: 800px;
  }
  .main-banner video {
    top: 40%;
  }
}
@media only screen and (min-width: 1300px) {
  .main-banner {
    min-height: 900px;
  }
  .main-banner video {
    top: 40%;
  }
}
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}