.layout-31-outer-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.layout-31-inner-wrapper {
  border: 1px solid #ffffff;
  padding: 15px;
}

.layout-31-profile-inner-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.layout-31-title h6 {
  margin-bottom: 0;
  font-weight: 600;
}

.layout-31-profile-inner-card p {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) and (min-width: 0px) {
  .layout-31-outer-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

