.home-hero-video-wrapper {
    width: 100%;
    overflow: hidden;
}

.home_slider_hero {
    position: relative;
    width: 100%;
}

.service_flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.home_slider_content {
    flex: 1;
    min-width: 300px;
    padding: 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    z-index: 1;
}

.home_slider_content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: -1;
}

.home_slider_content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.slider_measurable {
    color: #ffcc00;
}

.home_slider_content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.ttm-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ffcc00;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ttm-btn:hover {
    background-color: #ffdd33;
    transform: translateY(-2px);
}

.col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.w-100 {
    width: 100%;
}

video {
    height: auto;
    max-width: 100%;
    display: block;
}

@media (max-width: 992px) {
    .home_slider_content {
        padding: 40px 20px;
    }
    
    .home_slider_content h1 {
        font-size: 2rem;
    }
    
    .col-lg-9, .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}