/*
Custom Css
*/
.sm a{
  margin: 0 20px;
  width: 80px;
  height: 80px;
  background-color: #E9EEF5;
  display: inline-block;
  border-radius: 24px;
  box-shadow: 6px 6px 12px rgba(0, 0, 0, .15), -6px -6px 12px rgba(255, 255, 255, .1);
  overflow: hidden;
  font-size: 30px;
  transition: .3s linear;
  position: relative;
}
.sm a:hover{
  transform: scale(1.3);
  border-radius: 50%;
}
.sm a i::before{
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  background-size: 200% 200%;
  background-position: 75% 75%;
  top: 0;
  left: 0;
  line-height: 80px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background .5s linear;
}
.sm a:hover i::before{
  background-position: 0% 0%;
}
.sm .fa-facebook-f::before{
  background-image: linear-gradient(135deg,#0D8BF0 30%,#0a3d62 50%);
}

.sm .fa-instagram::before{
  background-image: linear-gradient(135deg, #c32aa3 30%, #0a3d62 50%);
}

.sm .fa-whatsapp::before{
  background-image: linear-gradient(135deg,#2DCB47 30%,#0a3d62 50%);
}


.sm .fa-behance::before{
  background-image: linear-gradient(135deg,#0057FF 30%,#0a3d62 50%);
}
