/* styling for contact page  */
.contact-box {
  display: grid;
  justify-content: center;
  justify-items: center;
  grid-template-columns: repeat(3, 33%);
}


@media (width < 900px) {
  .contact-box {
    grid-template-columns: repeat(2, 50%);
     }
}


.contact-highlight {
  font-weight: bold;
  color: #196db6;
}

.contact-card {
  display: flex;
  flex-direction: column;
  }

  .contact-card  p {
    text-align: center;
  }
 
  .contact-card  a {
    text-align: center;
    margin: 0;
    padding: 0;
  }


.contact-title h3 {
  text-transform: uppercase;
  font-size: 1.7em;
  margin-block: auto;
}

.head-shot {
  /* justify-self: center; */
  width: initial;
  height: 160px;
  display: block;
  margin-inline: auto;
}



/*  Switch to small screen - single column  */
@media (max-width: 600px) {
  .contact-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .head-shot {
    display: none;
      }

  .sub-contact-box {
    width: 90%;
    }
}
