.header-top1 {
        padding-top: 5px;
    padding-bottom: 5px;
    background: antiquewhite;
}
.bg1 {background-color: aliceblue;}
.bg2 {background-color: antiquewhite;}
.bg-white {background-color: #fff;}

.as_heading {color: #fc0000;padding-top: 20px;}


.awards-md img {
    margin-bottom: 15px;
}

/*========== Call & Whatsapp Icon ==========*/
@keyframes pulsate {
    0% {
        transform: scale(0.9, 0.9);
        opacity: 1;
    }
    50% {
        transform: scale(1.2, 1.2);
        opacity: 1;
    }
    100% {
        transform: scale(0.9, 0.9);
        opacity: 1;
    }
}

@keyframes callb {
    0% {
        transform: scale(0.9);
    }
    20% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.1);
    }
    60% {
        transform: scale(1.2);
    }
    80% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1.4);
    }
}

@keyframes calla {
    0% {
        box-shadow: 0px 0px 0px 4px rgba(162, 162, 162, 0.8);
    }
    20% {
        box-shadow: 0px 0px 0px 6px rgba(162, 162, 162, 0.6);
    }
    40% {
        box-shadow: 0px 0px 0px 8px rgba(162, 162, 162, 0.4);
    }
    60% {
        box-shadow: 0px 0px 0px 10px rgba(162, 162, 162, 0.2);
    }
    80% {
        box-shadow: 0px 0px 0px 12px rgba(162, 162, 162, 0.1);
    }
    100% {
        box-shadow: 0px 0px 0px 14px rgba(162, 162, 162, 0);
    }
}

.call {
    position: fixed;
    z-index: 999999;
    left: 20px;
    bottom: 30px;
    display: inline;
    font-size: 33px;
    text-align: center;
    height: 65px;
    width: 65px;
    border-radius: 1px solid #000;
    animation-name: calla;
    animation-duration: 0.8s;
    animation-iteration-count: infinite;
    background: #fc0000;
    line-height: 60px;
    border-radius: 50%;
}

.whatsapp {
    position: fixed;
    z-index: 999999;
    right: 20px;
    bottom: 30px;
    display: inline;
    font-size: 33px;
    text-align: center;
    height: 65px;
    width: 65px;
    border-radius: 1px solid #000;
    animation-name: calla;
    animation-duration: 0.8s;
    animation-iteration-count: infinite;
    background: #03A437;
    line-height: 60px;
    border-radius: 50%;
}