
/* CONTACT PORTRAIT — approved portrait integrated without altering other pages */
.contact-portrait{
  margin:34px 0 0;
  overflow:hidden;
  background:#d8c3a0;
}
.contact-portrait img{
  display:block;
  width:100%;
  height:auto;
}

@media (min-width:1101px){
  .contact-portrait{
    max-height:420px;
  }
  .contact-portrait img{
    width:100%;
    height:420px;
    object-fit:cover;
    object-position:38% 32%;
  }
}

@media (max-width:1100px){
  .contact-portrait{
    margin-top:28px;
  }
}

@media (max-width:700px){
  .contact-portrait{
    width:100vw;
    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);
    margin-top:28px;
  }
  .contact-portrait img{
    width:100%;
    height:auto;
  }
}
