html{
    scroll-behavior: smooth;
}

.whats-app-fixed-area > .whats-app-btn > a {
    position: fixed;
    left: 5%;
    bottom: 20%;
    width: 50px;
    height: 50px;
    z-index: 9999999999999999;
    transform-origin: center center;
    transition: all 300ms ease-in-out;
    transform: scale(.9)
}
.whats-app-fixed-area > .whats-app-btn > a:hover {
    transform: scale(1)
}
.whats-app-fixed-area > .whats-app-btn > a:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #077703;
    border-radius: 50%;
    animation: animate 2s linear infinite
}
.whats-app-fixed-area > .whats-app-btn > a:after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #fff;
    border-radius: 50%;
    animation: animate 2s 1s linear infinite
}
@keyframes animate {
    100% {
        transform: scale(2);
        opacity: 0
    }
}
@keyframes call {
    50% {
        transform: rotate(50deg) scale(1)
    }
    100% {
        transform: rotate(100deg) scale(1)
    }
}

.call-us-fixed-area > .call-us-btn > a {
    position: fixed;
    left: 5%;
    bottom: 32%;
    width: 50px;
    height: 50px;
    z-index: 9999999999999999;
    transform-origin: center center;
    transition: all 300ms ease-in-out;
    transform: scale(.9)
}
.call-us-fixed-area > .call-us-btn > a:hover {
    transform: scale(1)
}
.call-us-fixed-area > .call-us-btn > a:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #077703;
    border-radius: 50%;
    animation: animate 2s linear infinite
}
.call-us-fixed-area > .call-us-btn > a:after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #fff;
    border-radius: 50%;
    animation: animate 2s 1s linear infinite
}
