#content1 {
    position: relative;
    height: 100%;
}

#content1 video {
    object-fit: cover;
    width: 100%;
}

#content1 .overlay {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    color: white;
    background-color: rgba(0, 0, 0, 0.1);
}

#content1 .overlay .title {
    position: absolute;
    bottom: 30%;
    left: 5%;
    width: 45%;
}

#content1 h1 {
    font-size: 5vh;
}

#content1 h5{
    font-size: 2vh;
}

/* FOR LAPTOP SMALL SIZE */

@media screen and (max-width: 1320px) and (min-width: 1024px) {}

/* FOR TABLET DEVICE */

@media screen and (max-width: 1023px) and (min-width: 600px) {
    #content1 .overlay .title {
        bottom: 10%;
        width: 80%;
    }
}

/* FOR MOBILE DEVICE */

@media screen and (max-width: 600px) {
    #content1 video {
        height: 900px;
    }
    #content1 .overlay .title {
        bottom: 10%;
        width: 100%;
    }
}