



.social {
    position: fixed;
    top: 30%;
    z-index:999;
    margin-left:30px;
   
  }
  
  .social ul {
    list-style-type: none;
    padding: 0;
    transform: translatex(-270px);
  }
  
  .social ul li {
    display: block;
    margin: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    width: 300px;
    text-align: right;
    padding: 10px;
    border-radius: 0 30px 30px 0;
    transition: all 1s;
  }
  
  .social ul li:hover {
    transform: translatex(110px);
  }
  
  .social ul li.fb:hover {
    background-color: #55acee;
  }
  
  .social ul li.link:hover {
    background-color: #3b5999;
  }
  
  .social ul li.ins:hover {
    background-color: #dd4b39;
  }
  
  .social ul li.instagram:hover {
    background-color: #e4405f;
  }
  
  .social ul li a {
    color: white;
    text-decoration: none;
  }
  
  .social ul li i {
    text-align: center;
    margin-left: 14px;
    color: black;
    background-color: rgb(0, 255, 68);
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    transform: rotate(0deg);
  }
  
  .social ul li:hover i {
    transform: rotate(360deg);
    transition: all 1s;
  }
  