/*--------------------------------------------------------------
# Whatsapp button
--------------------------------------------------------------*/
.btn-whatsapp {
    position: fixed;
    right: 65px;
    bottom: 15px;
    z-index: 996;
    background: transparent;
    transition: all 0.4s;
    color: #fff;
    line-height: 0;
    padding: 2.5px;
}
  
.btn-whatsapp .icon {
    float: left;
    background: #25d366;
    padding: 5px;
    margin-right: 2px;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    color: #fff;
    border: 1px solid #25d366;
    transition: all 0.4s;
}
  
.btn-whatsapp .text {
    float: left;
    background: #25d366;
    padding: 15px;
    border-radius: 5px;
    color: #fff;
    border: 1px solid #25d366;
    font-weight: bold;
    transition: all 0.4s;
}
  
.btn-whatsapp:hover .icon {
    background: #fff;
    color: #25d366;
}
  
.btn-whatsapp:hover .text {
    background: #fff;
    color: #25d366;
}
  