:root {
    --primary-color-values: 6, 116, 48;
    --primary-color: #067430;
}

html, body {
    margin: 0;
    padding: 0;
}

section#hero {
    position: relative;
    margin-top: 80px;
    height: calc(100vh - 80px - 60px);
}

.wp-float-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 62px;
    height: 62px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,.25);
    z-index: 9999;
    transition: transform .2s, box-shadow .2s;
    overflow: hidden;
}

.wp-float-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(0,0,0,.35);
}

.wp-float-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}