.floating-call-btn {
    position: fixed;
    bottom: 111px;
    left: 14px;
    z-index: 9999;
    background: #f45d22;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    text-decoration: none;
    transition: 0.2s;
    cursor: pointer;
    outline: none;
}
.floating_btn img {width:30px;}


        .floating-call-btn img {width:30px;}

        .floating-call-btn:hover {
            background: #f45d22;            
            box-shadow: 0 2px 8px rgba(244, 93, 34, 0.2);
            color: #fff;
            text-decoration: none;
        }
        /* Animation */
        .animated-call {
            animation: call-pulse 1.2s infinite;
        }
        @keyframes call-pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(244, 93, 34, 0.7);
                transform: scale(1);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(244, 93, 34, 0);
                transform: scale(1.08);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(244, 93, 34, 0);
                transform: scale(1);
            }
        }

/*Whastapp icon*/
a{
  text-decoration:none;
}
.floating_btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  width:50px;
  height:50px;
  line-height:50px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}


.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
}