.link-contact {
    transition: 0.5s all;
    position: fixed;
    left: 0px;
    bottom: 20px;
    z-index: 80;
}

.link-contact .item {
    /* display: none; */
    margin: 10px;
    width: 50px;
    text-align: center;
}

.link-contact .item.link-contact-show {
    display: block;
}

.linkcontact-1,
.linkcontact-2,
.linkcontact-3 {
    margin: 10px 0px;
}

.linkcontact-1 a,
.linkcontact-2 a,
.linkcontact-3 a {
    display: block;
}

.linkcontact-1 a img,
.linkcontact-2 a img,
.linkcontact-3 a img,
.linkcontact-4 a img {
    width: 100%;
    border-radius: 50%;
}

@media(max-width:768px) {

    .linkcontact-1 a img,
    .linkcontact-2 a img,
    .linkcontact-3 a img,
    .linkcontact-4 a img {
        width: 80%;
        border-radius: 50%;

    }
}

.linkcontact-1 a:hover>.p1,
.linkcontact-2 a:hover>.p2,
.linkcontact-3 a:hover>.p3 {
    width: 220px;
    padding-right: 10px;
    white-space: nowrap;
}

.linkcontact-1 p,
.linkcontact-2 p,
.linkcontact-3 p {
    position: absolute;
    top: 0px;
    padding: 10px 0px;
    transition: all 0.6s;
    width: -1;
    left: 15px;
    z-index: -1;
    margin: 0;
    background: #1FA4F4;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-align: end;
    border-radius: 20px
}

#contacthide {
    background: #337ab7;
    border-radius: 10px;
    padding: 5px 20px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    outline: none;
    position: relative;
}

/* #contacthide:hover>p {
    width: 240px;
    margin-right: 100px;
    white-space: nowrap;
}

#contacthide p {
    position: absolute;
    top: -5px;
    padding: 10px 0px;
    transition: all 0.6s;
    width: 0;
    right: 0px;
    z-index: -1;
    margin: 0;
    background: #fff;
    color: #444;
    border: 1px solid #ccc;
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
    font-size: 14px;
    font-weight: normal;
} */
.linkcontact-4,
.linkcontact-1 {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
}

.linkcontact-1 {
    background: #C69B2B;
}

.linkcontact-4 a,
.linkcontact-1 a {
    color: #fff !important;
}

.vibing {
    animation: vibing 1s ease-in-out 0s normal none infinite running
}

@keyframes vibing {
    0% {
        transform: rotate(0deg) scale(1) skew(1deg);
    }

    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        transform: rotate(0deg) scale(1) skew(1deg);
    }

    100% {
        transform: rotate(0deg) scale(1) skew(1deg);
    }
}