/* -------------------------
    SOCIAL BUTTONS
--------------------------- */
.element__ready__socials__buttons ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.element__ready__socials__buttons li {
    display: inline;
}
.element__ready__socials__buttons li a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #0045bc;
    padding-top: 14px;
    text-align: center;
    border-radius: 50%;
    margin: 0 5px;
    color: #ffffff;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.element__ready__socials__buttons li a:before,
.element__ready__socials__buttons li a:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    transition: 0.3s;
    z-index: -1;
}
.element__ready__socials__buttons li a:after {
    opacity: 0;
}
.element__ready__socials__buttons li a:hover:before{
    opacity: 0;
}
.element__ready__socials__buttons li a:hover:after{
    opacity: 1;
}

.element__ready__socials__buttons li:first-child a {
    margin-left: 0;
}
.element__ready__socials__buttons li:last-child a {
    margin-right: 0;
}
.element__ready__socials__buttons li a:hover {
    background: #28acff;
    color: #ffffff;
}