.floating_btn {
    position: fixed;
    bottom: 0;
    right: 10px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.floating_btn a {
    text-decoration: none;
}

.contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    box-shadow: 0 0 0 0 #42db87;
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    transition: all 300ms ease-in-out;
}

.contact_icon svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.text_icon {
    margin-top: 8px;
    color: #707070;
    font-size: 13px;
    margin-bottom: 0;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(66, 219, 135, 0);
    }
}
