* {
  transition: all 0.3s ease-out;
}

.card1 {
  display: block;
  position: relative;
  background-color: #f6f8f8;
  border-radius: 4px;
  padding: 32px 24px;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
}

.card1:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: #515555;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.5s ease-out;
}

.card1:hover:before {
  transform: scale(41);
}

.card1:hover p {
  transition: all 0.3s ease-out;
  color: rgba(255, 255, 255, 0.8);
}

.card1:hover h4 {
  transition: all 0.3s ease-out;
  color: #ffffff;
}

.card1:hover a {
  transition: all 0.3s ease-out;
  color: #ffffff;
}

