.link-contact {
    transition: 0.5s all;
    position: fixed;
    right: 5px;
    bottom: calc(6vh + 30px);
    z-index: 1000;

    .item {
        margin: 10px;
        width: 50px;
        text-align: center;

        &.item.link-contact-show {
            display: block;
        }
    }
}

.linkcontact-1,
.linkcontact-2,
.linkcontact-3,
.linkcontact-4 {
    margin: 10px 0px;

    a {
        display: block;

        img {
            width: 100%;
            border-radius: 50%;
        }
    }
}

@media(max-width:768px) {

    .linkcontact-1,
    .linkcontact-2,
    .linkcontact-4 {
        a {
            img {
                width: 80%;
                border-radius: 50%;
            }
        }
    }
}

.linkcontact-1,
.linkcontact-2,
.linkcontact-3 {
    a:hover {

        &>.p1,
        &>.p2,
        &>.p3 {
            width: 220px;
            padding-right: 10px;
            white-space: nowrap;
        }

    }
}

.linkcontact-1,
.linkcontact-2,
.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
    }
}

.linkcontact-4,
.linkcontact-3,
.linkcontact-1 {
    width: 50px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
}

.linkcontact-4 {
    background: #ff2000;
}

.linkcontact-3 {
    background: #1FA4F4;
}

.linkcontact-1 {
    background: #C69B2B;
}

.linkcontact-1,
.linkcontact-4 {
    a {
        color: #fff !important;
    }
}