.social-sticky {
  position: fixed;
  bottom: 60px;      /* distance from bottom */
  right: 20px;       /* distance from right */
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.social-sticky a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;

  font-size: 22px;
  text-decoration: none;
  transition: 0.3s;

}

.social-sticky a:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
