.custom-page-header{
  height: 200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  background-color: rgb(247,247,247);
  transition: all 0.5s ease;
  
}

.custom-page-header > h1{
	font-family: "Proxima Nova Bold", sans-serif;
  font-size: 29px;
}

.custom-page-header > p{
    margin-top: 17px;
    margin-bottom: 0;
    width: 60%;
    text-align: center;
}

.custom-page-header > .underline{
    height: 4px;
    width: 90px;
    background-color: #ff0018;
}

@media only screen and (max-width: 900px){
  .custom-page-header > p{
      width: 80%;
  }
}

@media only screen and (max-width: 700px){
  .custom-page-header > p{
      width: 89%;
  }
}

@media only screen and (max-width: 600px){
  .custom-page-header{
    height: 150px;
  }

  .custom-page-header > h1{
      font-size: 24px;
  }
}

@media only screen and (max-width: 414px){
  .custom-page-header > p{
    width: 91%;
    line-height: 15px;
  }
}