.contact_wrapper {
  margin: 0 auto;
  max-width: 100%;
}

.contact_wrapper a{
 
  box-sizing: border-box;
}

.column_profile {
  float: left;
  width: 33.3%;
  margin-bottom: 16px;
  padding: 0 8px;
  box-sizing: inherit;
  box-sizing: border-box; 
}

.profile_card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.profile_container {
  padding: 0 16px;
}

.profile_container::after, .row::after {
  content: "";
  clear: both;
  display: table;
}

.profile_title {
  color: grey;
}

.contact_button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 16px 32px;
  color: white;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  width: 100%;
}

.contact_button:hover {
  background-color: #555;
  color: white;
}

@media screen and (max-width: 980px) {
  .column_profile {
    width: 50%;
    display: block;
  }
}

@media screen and (max-width: 568px) {
  .column_profile {
    width: 100%;
    display: block;
  }
}