.social {
    position: fixed;
    top: 20%;
    z-index: 0;
}


.social ul {
    list-style-type: none;
    padding: 0;
    transform: translateX(-470px);
}

.social ul li {
    display: block;
    margin-right: 15px;
    background-color: rgba(0, 0, 0, 0.5);
    width: 500px;
    text-align: right;
    padding: 10px;
    border-radius: 0 30px 30px 0;
    transition: all 1s;
    z-index: 1;
}

.social ul li:hover {
    transform: translateX(300px);
    z-index: 3000;
}

.social ul li.facebook i {
    color: white;
}


.social ul li.twitter i {
    color: white;
}

.social ul li.youtube i {
    color: white;
}

.social ul li.home i {
    color: white;
}

.social ul li.instagram i {
    color: white;
}

.social ul li.twitter:hover {
    background-color: #55acee;
}

.social ul li.facebook:hover {
    background-color: #3d5999;
}

.social ul li.youtube:hover {
    background-color: #dd4b39;
}

.social ul li.instagram:hover {
    background-color: #e4405f;
}

.social ul li.home:hover {
    background-color: black;
}

.social ul li.instagram:hover {
    background-color: #bc2a8d;
}

.social ul li a {
    font-size: 13px;
    color: white;
    text-decoration: none;
    cursor: pointer;
    margin-left: 0px;
    margin-right: 20px;
}

.social ul li i {
    text-align: center;
    margin-left: 14px;
    color: black;
    padding: 10px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 20px;
    transform: rotate(0deg);
    cursor: pointer;
}

.social ul li:hover i {
    transform: rotate(360deg);
    transition: all 1s;
}

.fb-share-button {
    display: block;
    margin-left: 240px;
    margin-top: -35px;
}

@media screen and (max-width: 850px) {
    .social ul li {
        z-index: 1;
    }

    .social ul li:hover {
        z-index: 3000;
    }
}