.social-wrapper .social-button {
  display: inline-block;
  height: 60px;
  width: 60px;
  float: left;
  margin: 0 5px;
  overflow: hidden;
  background: #000000;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-out;
}

.social-wrapper .social-button:hover {
  width: 200px;
}

.social-wrapper .social-button .social-icon {
  display: inline-block;
  height: 60px;
  width: 60px;
  text-align: center;
  border-radius: 50px;
  box-sizing: border-box;
  line-height: 60px;
  transition: all 0.3s ease-out;
}

.social-wrapper .social-button:nth-child(1):hover .social-icon {
  background: #4267B2;
}

.social-wrapper .social-button:nth-child(2):hover .social-icon {
  background: #fffafa15;
}

.social-wrapper .social-button:nth-child(3):hover .social-icon {
  background: #E1306C;
}

.social-wrapper .social-button:nth-child(4):hover .social-icon {
  background: #333;
}

.social-wrapper .social-button:nth-child(5):hover .social-icon {
  background: #ff0000;
}

.social-wrapper .social-button .social-icon i {
  font-size: 25px;
  line-height: 60px;
  transition: all 0.3s ease-out;
}

.social-wrapper .social-button:hover .social-icon i {
  color: #fff;
}

.social-wrapper .social-button span {
  font-size: 20px;
  font-weight: 500;
  line-height: 60px;
  margin-left: 10px;
  transition: all 0.3s ease-out;
}

.social-wrapper .social-button:nth-child(1) span {
  color: #4267B2;
}

.social-wrapper .social-button:nth-child(2) span {
  color: #ffffff;
}

.social-wrapper .social-button:nth-child(3) span {
  color: #E1306C;
}

.social-wrapper .social-button:nth-child(4) span {
  color: #333;
}

.social-wrapper .social-button:nth-child(5) span {
  color: #ff0000;
}