/* Banner */
.banner {
  height: 80dvh;
  position: relative;
  background: #000;
  /* avoids white bars */
}

.banner video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* show 100% of the video */
  object-position: center;
  background-color: #000;
  /* prevents gaps */
}


/* Scroll-down button */
.scroll-down-btn {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  border: none;
  padding: 14px 18px;
  border-radius: 50%;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  animation: bounce 1.6s infinite ease-in-out;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
}

/* Hover */
.scroll-down-btn:hover {
  background: rgba(255, 255, 255, 0.95);
}

/* Bounce animation */
@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* Smooth scroll everywhere */
html {
  scroll-behavior: smooth;
}

@media (max-width:1250px) {
  .banner {
    height: calc(100vw * 0.5625);
    /* perfect 16:9 */
  }
}

@media (max-width:1000px) {
  .scroll-down-btn {
    height: 30px !important;
    width: 30px !important;
    padding: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    bottom: 15px;
  }
  
  .banner-cont h3 .light-text {
    color: #000;
    font-family: Lato, sans-serif;
    font-size: 35px;
    word-wrap: break-word;
    padding: 0 50px 0 50px;
    width: 100%;
    display: flex;
  }
}

.banner-cont {
  padding: 40px 10px;
}

.banner-cont h1 {
  color: black;
  font-size: 48px;
  font-family: Playfair Display, sans-serif;
  font-weight: 600;
  word-wrap: break-word;
  text-align: center;
}

.banner-cont h3 {
  text-align: center;
}

.banner-cont h3 .light-text {
    color: #000;
    font-family: Lato, sans-serif;
    font-size: 35px;
    word-wrap: break-word;
    padding: 0 200px 0 200px;
    width: 100%;
    display: flex;
    font-weight: 300;
    padding-top: 20px;
}
}

.banner-cont h3 .heavy-text {
  color: black;
  font-size: 35px;
  font-family: Lato, sans-serif;
  font-weight: 700;
  word-wrap: break-word;
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

@media (max-width: 1024px){
  .banner-cont h3 .light-text {
    padding: 20px 40px;
  }
}

@media (max-width: 870px) {
  .banner-cont h1 {
    font-size: 28px;
  }

  .banner-cont h3 .light-text,
  .banner-cont h3 .heavy-text {
    font-size: 24px;
  }
}