.hero-video {
    height: 550px;
    overflow: hidden;
    position: relative;
}

.hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the video */
    min-width: 100%; /* Cover the width */
    min-height: 100%; /* Cover the height */
    width: auto; /* Keep aspect ratio */
    height: auto; /* Keep aspect ratio */
    z-index: -1; /* Push video behind content */
    object-fit: cover; /* Ensure the video covers the container */
}

.hero-video .content {
    display: block;
    position: absolute;
    max-width: 500px;
    outline: none;
    background-color: rgba(135, 135, 135, 0.49);
    padding: 20px;
    margin: -20px;
    top: 134px;
    color: rgb(255, 255, 255);
}

.hero-video .content .title {
    font-size: 46px;
}

.hero-video .content .description {
    font-size: 20px;
}

.home_slider {
    display: none;
}