/*Social Icon*/
.social-icon-container{
    z-index:100;
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  align-items: center;
}

.social-icon-container-follow{
  display: flex;
  flex-direction: column;
  font-size: 11px;
  text-align: center;
  background-color: #2980b9;
  color: #fff;
  padding: 7px 0;
}

.social-icon{
 display: flex;
 flex-direction: column;
 text-align: center;
}

.social-icon a{
  color: #fff !important;
  padding: 12px;
  transition: all 1s;
}

.social-icon .fa-brands{
  font-size: 17px;
}

.social-icon a:nth-of-type(1){
  background-color:#F51563;
}

.social-icon a:nth-of-type(2){
  background-color:#0866FF;
}

.social-icon a:nth-of-type(3){
  background-color:#000;
}

.social-icon a:nth-of-type(4){
  background-color:#FF0000;
}

.social-icon a:nth-of-type(5){
  background-color:#00E676;
}

.social-icon a:nth-of-type(6){
  background-color:darkgray;
}


@media(max-width: 768px){
  .social-icon-container{
    bottom: 0;
    top: unset;
    left: 0;
    transform: translateY(-0%);
    align-items: center;
    width: 100%;
  }
  
  .social-icon-container-follow{
    display: none;
  }
  
  .social-icon{
    width: 100%;
     flex-direction: row;
     justify-content: space-between;
  }

  .social-icon .fa-brands{
    width: 16.667%;
    font-size: 14px;
  }

  .social-icon a{
    width: 16.667%;
    padding: 5px 00;
  }
}