.social-btns .btn,
.social-btns .btn:before,
.social-btns .btn .fa {
  transition: all 0.35s;
  transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
}
.social-btns .btn:before {
  top: 90%;
  left: -110%;
}
.social-btns .btn .fa {
  transform: scale(0.8);
}
.social-btns .btn.facebook:before {
  background-color: #3b5998;
}
.social-btns .btn.facebook .fa {
  color: #3b5998;
}
.social-btns .btn.twitter:before {
  background-color: rgb(103, 103, 103);
}
.social-btns .btn.twitter .fa {
  color: black;
}
.social-btns .btn.linkedin:before {
  background-color: #0a66c2;
}
.social-btns .btn.linkedin .fa {
  color: #0a66c2;
}
.social-btns .btn:focus:before,
.social-btns .btn:hover:before {
  top: -10%;
  left: -10%;
}
.social-btns .btn:focus .fa,
.social-btns .btn:hover .fa {
  color: #fff;
  transform: scale(1);
}
.social-btns {
  height: 90px;
  /* margin: auto; */
  font-size: 0;
  text-align: center;
  /* position: absolute; */
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.social-btns .btn {
  display: inline-block;
  background-color: #fff;
  width: 52px;
  height: 50px;
  line-height: 53px;
  /* width: 90px;
  height: 90px;
  line-height: 90px; */
  margin: 0 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 85%;
  box-shadow: 0 5px 15px -5px rgba(0,0,0,0.1);
  opacity: 0.99;
}
.social-btns .btn:before {
  content: '';
  width: 120%;
  height: 120%;
  position: absolute;
  transform: rotate(45deg);
}
.social-btns .btn .fa {
  font-size: 20px;
  vertical-align: middle;
}