
.circle {
  width: 200px;
  height: 200px;
  float: left;
  margin: 10px;
  padding: 0;
  position: relative;
  background: #cccccc;
  border-radius: 50%;
  overflow: hidden;
}

.circle .header {
  width: 200px;
  height: 100px;
  top: -100px;
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 100px 100px 0 0;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.circle:hover .header {
  top: 0;
  -webkit-box-shadow: 0px 0px 15px 2px rgba(255, 255, 255, .75);
  box-shadow: 0px 0px 15px 2px rgba(255, 255, 255, .75);
}

.header h3 {
  font-size: 20px;
  text-align: center;
  margin: 40px 20px 0 20px;
  padding-bottom: 5px;
  border-bottom: 3px double #000000;
}

.circle .text {
  width: 200px;
  height: 100px;
  top: 200px;
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0 0 100px 100px;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.circle:hover .text {
  top: 100px;
  -webkit-box-shadow: 0px 0px 15px 2px rgba(255, 255, 255, .75);
  box-shadow: 0px 0px 15px 2px rgba(255, 255, 255, .75);
}

.text p {
  margin: 10px;
  text-align: center;
}




.circle-2 {
  width: 200px;
  height: 200px;
  float: left;
  margin: 10px;
  padding: 0;
  position: relative;
  background: #cccccc;
  border-radius: 50%;
  overflow: hidden;
}

.circle-2 .text-2 {
  width: 200px;
  height: 200px;
  top: 0;
  left: 0;
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.circle-2:hover .text-2 {
  -webkit-transform: scale(1);
  transform: scale(1);
  background: rgba(255, 255, 255, 0.75);
  -webkit-box-shadow: 0px 0px 15px 2px rgba(255, 255, 255, .75);
  box-shadow: 0px 0px 15px 2px rgba(255, 255, 255, .75);
}

.text-2 h3 {
  font-size: 20px;
  text-align: center;
  margin: 40px 20px 0 20px;
  padding-bottom: 5px;
  border-bottom: 3px double #000000;
}

.text-2 p {
  margin: 10px 0 0 0;
  text-align: center;
}