   body, html {
            height: 100%;
            margin: 0;
            font-family: Arial, sans-serif;
            overflow-x: hidden;
        }

        .ltn__brand-logo-area {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .slider-wrapper {
            width: 100%;
            overflow: hidden;
        }

        .slider {
            display: flex;
            transition: transform 1s ease-in-out;
        }

        .slide {
            display: flex;
            min-width: 100%;
        }

        .ltn__brand-logo-item {
            margin: 0 2%;
            max-width: 30%;
        }

        .ltn__brand-logo-item img {
            width: 100%;
            height: auto;
        }
        
        
        /* Your existing CSS styles */

/* Increase logo size on smaller devices */
@media (max-width: 768px) {
    .ltn__brand-logo-item {
        max-width: 50%; /* Adjust the maximum width for smaller devices */
    }
}

/* Additional media queries for even smaller devices if needed */
@media (max-width: 480px) {
    .ltn__brand-logo-item {
        max-width: 70%; /* Adjust the maximum width for even smaller devices */
    }
}



