.banner.video-bnr {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner.video-bnr .banner_video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.banner.video-bnr .banner_video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.banner_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.52);
  z-index: 1;
}
.banner_nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 24px 40px;
  gap: 36px;
}
.banner_nav a {
  color: #fff !important;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.banner_nav a:hover {
  opacity: 1;
  text-decoration: underline !important;
}
.banner.video-bnr .container {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.banner_eyebrow {
  font-size: 17px;
  margin-bottom: 16px;
  opacity: 0.9;
  color: #fff !important;
}
.banner.video-bnr .banner_content h1 {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 28px;
  color: #fff !important;
}
.banner.video-bnr .banner_content p {
  font-size: 17.6px;
  line-height: 1.8;
  max-width: 820px;
  margin: 0 auto 36px;
  color: #fff !important;
}
.banner_cta {
  display: inline-block;
  background: #E83C2E !important;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 40px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
}
.banner_cta:hover {
  background: #C8321F !important;
  transform: translateY(-1px);
}
@Media (max-width: 767px) {
  .banner_nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.4);
  }
  .banner_nav a {
    font-size: 13px;
  }
}