@import url("https://fonts.googleapis.com/css?family=Open+Sans:700,600,300");
.frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 450px;
  height: 350px;
  margin-top: -200px;
  margin-left: -200px;
  border-radius: 2px;
  box-shadow: 4px 8px 16px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-image: url("images/aboutpage.jpg");
  background-size: 125% 125%;
  font-family: "Open Sans", Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.card {
  width: 320px;
  height: 300px;
  background: white;
  box-shadow: 4px 8px 16px 0 #1b3b14;
}
.card .left {
  position: absolute;
  left: 0;
  width: 190px;
  height: 300px;
  overflow: hidden;
}
.card .left .avatar {
  position: absolute;
  left: 50px;
  top: 32px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  cursor: pointer;
  background: #bee6b4;
}
.card .left .avatar .circle {
  box-sizing: border-box;
  position: absolute;
  border-radius: 50%;
  transition: all 1.5s ease-in-out;
  border: 1px solid;
}
.card .left .avatar .circle:first-child {
  left: -3px;
  top: -3px;
  width: 106px;
  height: 106px;
  border-color: #2d6120 #2d6120 #2d6120 transparent;
}
.card .left .avatar .circle:nth-child(2) {
  left: -6px;
  top: -6px;
  width: 112px;
  height: 112px;
  border-color: #2d6120 transparent #2d6120 #2d6120;
}
.card .left .avatar:hover .circle:first-child {
  transform: rotate(360deg);
}
.card .left .avatar:hover .circle:nth-child(2) {
  transform: rotate(-360deg);
}
.card .left .avatar img {
  width: inherit;
  height: inherit;
  display: block;
  border-radius: inherit;
}
.card .left .info {
  position: absolute;
  text-align: center;
  top: 122px;
  width: 100%;
  padding-top: 40px;
  
}
.card .left .info span1 {
  display: block;
}
.card .left .info span1.small {
  top: 22px;
}

.card .right {
  position: absolute;
  right: 0;
  width: 130px;
  height: 300px;
  color: white;
}
.card .right .stats {
  position: relative;
  height: 100px;
  background: #010201;
  box-shadow: 0 -1px white;
  cursor: pointer;
}
.card .right .stats:first-child {
  box-shadow: none;
}
.card .right .stats:hover {
  background: #0305039f;
}
.card .right .stats span1.big {
  top: 30px;
}
.card .right .stats span1.small {
  top: 50px;
}

span1 {
  position: absolute;
  left: 0;
  width: 100%;
  text-transform: capitalize;
  text-align: center;
}
span1.big {
  font-size: 18px;
  font-weight: 600;
}
span1.small {
  font-size: 12px;
  font-weight: 300;
}

span2.big {
  font-size: 24px;
  font-weight: 600;
}
span2.small {
  font-size: 18px;
  font-weight: 300;
}