.splide__slide img {
    width: 100%;
    height: auto;
}

#floating-wa {
    height: 55px;
    width: 55px;
    font-size: 22px;
    display: inline;

    font-weight: 900;
    color: #fff;
    position: fixed;
    right: 28px;
    bottom: 30px;
    z-index: 999;
    text-align: center;
    padding-top: 3px;
    line-height: 37px;
    border-radius: 50%;

    /* background-color: #25d366;
    border-radius: 50px; */

    animation: zoomIn 0.8s ease-in-out;
}

@keyframes zoomIn {
    0% {
        transform: scale(0);
    }
    60% {
        transform: scale(1.2);
    }
    80% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}
