.text {
    color: var(--gray-clr);
    margin-block: 1.5rem;
    font-weight: 300;
}

/* Add WA floating button CSS */
.floating {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 25px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

/* Add Mobile floating button CSS */

.floating-mob {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 85px;
    right: 40px;
    background-color: #254ed3;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 25px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.fab-icon {
    margin-top: 16px;
}

.header-image{
    width: 100%;
}

.header-image img{
    width: 100%;
    height: calc(100vh - 13vh);
}

.row-image{
    float: left;
}

/* Media Queries */
@media screen and (max-width: 680px) {
    .header-image{
        width: 100%;
        height: 40vh;
    }

    .header-image img{
        width: 100%;
        height: 100%;
    }
}

.footer-color{
    background-color: #e3d8d1;
}