.Singlewrapper {
  max-width: 1000px;
  width: 85%;
  margin: 10px auto 10px auto;
  padding: 0;

  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  justify-content: center;

  -webkit-flex-flow: column wrap;
  flex-flow: column wrap;
}

.SingleProfile {
  list-style: none;
  margin: auto auto 20px auto;
  max-width: 800px;
  width: 90%;
  padding: 10px;
  font-family: Verdana, Geneva, sans-serif;

  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  justify-content: flex-start;

  align-items: center;

  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
}

.SingleProfile ul {
  list-style: none;
}

.SingleProfile li {
}

.SingleProfile li > ul > li {
  padding: 0;
}

.SingleImg {
  overflow:hidden;
  width: 245px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-clip: content-box;
}

.SingleImg:before {
  content:'';
  padding-top:100%; /* vertical value as  100% equals width */
  float:left;
}

.SingleName {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 30px;
}

.SingleTitle {
  font-size: 18px;
}

.SingleUni {
  font-size: 18px;
}

h2 {
  font-family: Agency, sans-serif;
  text-align: center;
}

p {
  font-family: helvetica;
  text-align: justify;
}

.SingleDescription {
  text-align: center;
  margin: 20px 0 20px 0;
}

.SingleDescription a {
  text-align: center;
  font-family: AgencyBold, sans-serif;
  font-size: 20px;
}

@media all and (max-width:600px) {
  .SingleProfile {
    -webkit-flex-flow: column wrap;
    flex-flow: column wrap;
  }
  .SingleProfile li {
    margin: auto;
  }
  .SingleImg {
    width: 90%;
    max-width: 245px;
  }
}
