#content1 {
    width: 100%;
    height: 800px;
    position: relative;
}

#content1 img {
    position: absolute;
    width: 100%;
    height: 800px;
    object-fit: cover;
    object-position: center;
}

#content1 .overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    padding-left: 3rem;
    color: white;
}

#content1 .overlay h1 {
    font-size: 6vh;
    color: #F89C24;
}

#content1 h5 {
    margin-top: 25%;
    font-size: 2vh;
}

/* FOR LAPTOP SMALL SIZE */

@media screen and (max-width: 1320px) and (min-width: 1024px) {
    #content1 {
        height: 650px;
    }

    #content1 img {
        height: 650px;
    }
}

/* FOR TABLET DEVICE */

@media screen and (max-width: 1023px) and (min-width: 600px) {
    #content1 {
        height: 500px;
    }

    #content1 img {
        height: 500px;
    }
}

/* FOR MOBILE DEVICE */

@media screen and (max-width: 600px) {
    #content1 {
        height: 700px;
    }

    #content1 img {
        height: 700px;
    }

    #content1 .overlay h1 {
        margin-top: 40%;
    }
    
    #content1 .overlay{
        padding: 1rem;
    }
}