#content4 {
    position: relative;
}

#content4 .parallax {
    /* The image used */
    background-image: url("../../images/foto-3.png");
    /* Set a specific height */
    min-height: 650px;
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#content4 .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 650px;
    text-align: center;
    color: white;
}

#content4 .overlay h1 {
    padding-top: 10%;
}

#content4 .overlay h5 {
    padding: 0px 150px;
    font-size: 2vh;
}

/* FOR LAPTOP SMALL SIZE */

@media screen and (max-width: 1320px) and (min-width: 1024px) {
    #content4 .overlay h5 {
        padding: 0px 50px;
    }
    #content4 .overlay {
        height: 550px;
    }
    #content4 .parallax {
        min-height: 550px;
    }
}

/* FOR TABLET DEVICE */

@media screen and (max-width: 1023px) and (min-width: 600px) {
    #content4 .overlay h5 {
        padding: 0px 50px;
        font-size: 1.6vh;
    }
    #content4 .overlay {
        height: 450px;
    }
    #content4 .parallax {
        min-height: 450px;
    }
}

/* FOR MOBILE DEVICE */

@media screen and (max-width: 600px) {
    #content4 .overlay h1 {
        padding-top: 30%;
    }
    #content4 .overlay h5 {
        padding: 0px 15px;
    }
}