.social_container {
    margin: 0 auto;
    padding-top: 5em;
    bottom: 1px;
    left: calc(34%);
    position: absolute;
}

    .social_container a {
        text-decoration: none;
    }

.social_icon {
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    overflow: hidden;
    color: #fff;
}

    .social_icon p {
        opacity: 0;
        margin-left: 8px;
        position: relative;
        top: -10px;
        right: 220px;
        display: none;
    }

    .social_icon i {
        font-size: 3.4em;
        opacity: 0.5;
        position: relative;
        -webkit-transition: opacity 0.25s ease-in-out;
        transition: opacity 0.25s ease-in-out;
    }

    .social_icon:hover {
        width: 290px;
        cursor: pointer;
    }

        .social_icon:hover > i {
            opacity: 1;
        }

        .social_icon:hover > p {
            display: inline;
            animation: slideInLeft 0.5s ease-in-out forwards, fadeIn 0.5s ease-in-out 0.3s forwards;
        }

@-webkit-keyframes slideInLeft {
    from {
        right: 220px;
    }

    to {
        right: 0;
    }
}

@keyframes slideInLeft {
    from {
        right: 220px;
    }

    to {
        right: 0;
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
