/* Workflow headings */
.workflow-title {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 25px;
    min-height: 63px;
}

/* Home-page audience headings */
h3.home-audience-title {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0;
}

/* Mobile screens */
@media screen and (max-width: 767px) {
    .workflow-title {
        font-size: 22px;
        min-height: 0;
    }

    h3.home-audience-title {
        font-size: 22px;
    }
}

/* ========================================
   WhatsApp Floating Button
======================================== */

.whatsapp-float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:50px;
    right:25px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:32px;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    z-index:9999;
    transition:.3s;
}

.whatsapp-float:hover{
    transform:scale(1.1);
    color:#fff;
    background:#1EBE57;
}