.sticky-logo-floating {
    position: fixed;
    bottom: 100px; 
    right: 20px;  
    z-index: 9999999;
    display: block;
    transition: transform 0.3s ease;
}

.sticky-logo-floating img {
    width: 80px; 
    height: auto;
    display: block;
}
@media (max-width: 768px) {
    .sticky-logo-floating {
        bottom: 15px;
        right: 15px;
    }
    .sticky-logo-floating img {
        width: 100px;
    }
}