/* whatsapp calling tag inside */

.all-fixed-data {
    position: fixed;
    left: 10px;
    bottom: 80px;
    transform: translateY(-50%);
    z-index: 999;
    max-width: 45px;
}

.contact-button-fixed {
    width: 175px;
    height: 55px;
    border-radius: 10px;
    background: linear-gradient(45deg, #f0e96c, #013277);
    text-align: center;
    transform: rotate(-90deg);
    position: relative;
    left: -80px;
}

.whatsapp-button-fixed {
    position: fixed;
    top: 215%;
    left: -9px;
    z-index: 999;
}

.whatsapp-button-fixed img {
    width: 82%;
}

.contact-button-fixed a {
    text-align: center;
    font-size: 18px;
    display: block;
    font-weight: 500;
    position: relative;
    top: 55%;
    transform: translateY(-50%);
    animation: blinking .8s infinite 1s;
}

@keyframes blinking {
    0% {
        color: rgb(226, 121, 121);
    }
    20% {
        color: #fff;
    }
    40% {
        color: rgb(148, 18, 18);
    }
    60% {
        color: #be5f10;
    }
    80% {
        color: #e6331b;
    }
    100% {
        color: #c49925;
    }
}