html, body {
  position: relative;
}
.social {
  position: fixed;
  bottom: 120px;
  z-index: 999;
}
.social ul {
  padding: 0px;
  transform: translate(-245px, 0);
}
.social ul li {
  display: block;
  margin: 5px;
  background: rgba(0, 0, 0, 0.36);
  width: 300px;
  text-align: right;
  padding: 10px;
  border-radius: 0 30px 30px 0;
  transition: all 1s;
}
.social ul li:hover {
  transform: translate(110px, 0);
  background: rgba(255, 255, 255, 0.4);
}
.social ul li:hover a {
  color: #000;
}
.social ul li:hover i {
  color: #fff;
  background: rgba(0, 0, 0, 0.36);
  transform: rotate(360deg);
  transition: all 1s;
}
.social ul li i {
  margin-left: 10px;
  color: #000;
  background: #fff;
  padding: 10px;
  border-radius: 50%;
  width: auto;
  height: auto;
  font-size: 20px;
  background: #ffffff;
  transform: rotate(0deg);
}

.sss {
    position: fixed;
    z-index: 99999999999;
    bottom: 20%;
    right: 0px;
}

.whatsapp {
    display: none
}

.sss-group {
    display: none;
    position: fixed;
    z-index: 99999999999;
    bottom: 20%;
    right: 0px;
    flex-direction: column;
    align-items: flex-end;
}

@media (max-width: 639px) {

    .whatsapp {
        display: block
    }

    .sss-group {
        display: flex
    }
}