.hero-sec {
    position: relative;
    width: 100%;
    height: calc(100vh - 124px);
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Adjust darkness */
}
.hero-content {
    position: relative;
    color: var(--white);
    z-index: 1;
}
.hero-content p{
    color: var(--white);;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.09px;
}
.hero-content h1{
    line-height: 1;
}
.video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
@media only screen and (max-width: 1199px) {
    .hero-content img {
        max-width: 180px;
    }
}