.circle {
  margin: 1px;
  display: inline-block;
  padding: 1px;
  text-align: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgb(180, 52, 77);
}

.circle::before,
.circle::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.circle,
.circle::before,
.circle::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.circle {
  position: relative;
  z-index: 2;
  background-color: #fff;
  border: 2px solid rgb(180, 52, 77);
  color: rgb(180, 52, 77);
  line-height: 50px;
  overflow: hidden;
}

.circle:hover {
  color: #ffffff;
}
.circle::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-transform: scale(.4);
  transform: scale(.4);
  color: #ffffff;
}
.circle:hover::after {
  background: rgb(180, 52, 77);
  border-radius: 50%;
  -webkit-transform: scale(.9);
  transform: scale(.9);
  color: #ffffff;
}

.circle1 {
  opacity: 0.4;
}

.circle2 {
  opacity: 0.6;
}

.circle3 {
  opacity: 0.8;
}

.circle a {
  text-decoration: none;
  color: rgb(180, 52, 77);
}
.circle a:hover {
  color: #ffffff;
}

.circle h2 {
  font-size: 60px;
}

.circle h2 small {
  color: rgb(180, 52, 77);
}

.circle p {
  font-size: 24px;
  line-height: 26px;
}
