/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 .instructor-info .social-links .col{
	padding: 10px;
}
.instructor-info .social-links .fb{
	color:#3b5998;
	display: block;
	margin-right: 10px;
	float:left;
}
.instructor-info .social-links .tw{
	color:#00acee;
	display: block;
	margin-right: 10px;
	float:left;
}
.instructor-info .social-links .ln{
	color:#0e76a8;
	display: block;
	margin-right: 10px;
	float:left;
}

.instructor-info .social-links{
	display: block;
	margin-left: auto;
	margin-right: auto;

}   

.instructor-info .card__image img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  margin-top:10px;
  border-radius: 100%;

}
.instructor-info .card__image{
	margin-left: auto;
  	margin-right: auto;
  	display: block
}

.instructor-info .cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.instructor-info .cards__item {
  display: flex;
  padding: 0.5rem;
}

.instructor-info .card {
  background-color: white;
  border:1px solid #0984e3;
  border-radius: 0.25rem;
  box-shadow: 0 10px 20px -7px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 300px;
}

.instructor-info .card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1rem;
}

.instructor-info .card__title {
  color: #000;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.instructor-info .card__text {
  flex: 1 1 auto;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

