

* {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

.contact-header{
    background-image: linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 0.856) 0%, 
        rgba(0, 0, 0, 0.877) 60%, 
        rgb(0, 0, 0) 100%
    ), url(background/Attorneys\ offices.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    height: 40vh;
    color: white;
    text-align: left;
    padding: 0px 90px;
    box-sizing: border-box;
}

.contact-header p{
    font-size: 18px;
}

.contact-header .text-head{
    font-size: 2.2em;
    font-weight: 600;
    margin-bottom: 20px;
}

@media (max-width: 600px){
    .contact-header{
    padding: 0 40px;
  }
}