.circle-image-wrapper {
  display: block;
  text-align: center;
}
.circle-image {
  text-align: center;
  position: relative;
  margin: 1em auto;
  max-width: 70%;
  display: inline-block;
}
@media only screen and (min-width: 62em) {
  .circle-image {
    max-width: 100%;
  }
}
.circle-image img {
  border-radius: 50%;
  border: 10px solid rgba(255, 255, 255, 0.2);
  position: relative;
}
.circle-image .inner-shadow {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  transition-duration: 0.2s;
  bottom: 0;
  left: 0;
  margin: 10px;
  position: absolute;
  right: 0;
  top: 0;
}
.circle-image .title {
  border-radius: 3px;
  bottom: .8em;
  color: #eee;
  font-family: 'Handlee', 'Open Sans', sans-serif;
  font-size: 2.4rem;
  left: .4em;
  margin: 0;
  padding: .4em .2em .3em;
  position: absolute;
  right: .4em;
  text-align: center;
}
.circle-image:hover .inner-shadow {
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.4);
  background: rgba(38, 18, 11, 0.1);
}
.circle-image.accent-blue .title {
  background: rgba(94, 120, 153, 0.9);
}
.circle-image.accent-green .title {
  background: rgba(155, 149, 88, 0.9);
}
.circle-image.accent-red .title {
  background: rgba(85, 38, 40, 0.85);
}
.circle-image.accent-dark-brown .title {
  background: rgba(63, 48, 47, 0.85);
}
