.header{
    background-image: url("../../images/contatoheader.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
}

.header-image-title{
    width: auto;
    height: 18rem;
    position: absolute;
    left: 8rem;
    bottom: 5rem;
}

/*config header for tablet 768px*/
@media screen and (max-width: 768px){

    .header-image-title{
        height: 10em;
    }
    .header{
        background-image: url("../../images/contatoheader_mobile.jpg");
    }
}

/*config header for mobile 483px*/
@media screen and (max-width: 481px){
    .header {
        height: 55vh;
    }
    .header-image-title{
        display: none;
    }
}

@media screen and (max-height: 530px){
    .header-image-title{
        height: 10em;
    }

}