#whatsAppDiv {
    position: fixed;
    top: calc(100vh - 200px);
    right: 05px;
    height: 60px;
    width: 60px;
    z-index: 1000;
    animation: asagi 5s infinite linear;
    cursor: pointer;
    overflow: hidden;
    transition: 500ms;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#whatsAppDiv:hover {
    transform: scale(1.2) rotate(15deg);}


@keyframes asagi {
    0%{
        top: calc(100vh - 200px);
    }
    
    50%{
        top: calc(100vh - 250px);
    }
    100%{
        top: calc(100vh - 200px);
    }
}

 .bg-paketsan {
        width: 100% !important;
        height: 100vh !important;
        object-fit: cover !important;
    }

    @media (max-width: 768px) {
        .bg-paketsan {
            height: auto !important;
            min-height: 400px !important;
        }
    }