.custom-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;

}

#banner{padding:0px !important;}


.cta-btn{display:flex;}

.custom-banner::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #083E5F 0%, #54C3BC 100%);
  opacity: 0.9; /* control transparency over video */
  z-index: -1;
}


.banner-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.banner-content {

    display: flex;
    z-index: 2;
    text-align: left;
    flex-direction: column;
    max-width: 1280px;
    width: 100%;gap:2.5rem;
    padding: 5%;
}




.banner-text {
  font-size: 2rem;
 
}

.banner-btn {
     padding: 10px 24px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    gap: 1.5rem;
    border: 1px solid #FFFFFF;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 600;
}

.banner-content h2{
font-size:var(--banner-head);font-weight:300;    line-height: 1;
}
.banner-content h2 span{font-weight:400;}



.banner-thumb {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 150px;
}

.banner-thumb img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}