#content1 {
    position: relative;
    height: 800px;
}

#content1 video {
    object-fit: cover;
    width: 100%;
    height: 800px !important;
}

#content1 .overlay {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 800px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
}

#content1 .overlay .title {
    text-align: center;
}

#content1 h1 {
    margin-top: 20%;
    font-size: 6vh;
}

#content1 h5 {
    font-size: 2vh;
    padding: 0px 15px;
}

/* FOR LAPTOP SMALL SIZE */

@media screen and (max-width: 1320px) and (min-width: 1024px) {
    #content1 {
        height: 600px;
    }
    #content1 video {
        height: 600px !important;
    }
    #content1 .overlay {
        height: 600px;
    }
}

/* FOR TABLET DEVICE */

@media screen and (max-width: 1023px) and (min-width: 600px) {
    #content1 {
        height: 500px;
    }
    #content1 video {
        height: 500px !important;
    }
    #content1 .overlay {
        height: 500px;
    }
}

/* FOR MOBILE DEVICE */

@media screen and (max-width: 600px) {
    #content1 {
        height: 700px;
    }
    #content1 video {
        height: 700px !important;
    }
    #content1 .overlay {
        height: 700px;
    }
    #content1 .overlay .title {
        text-align: center;
    }
    #content1 h1 {
        margin-top: 45%;
    }
}