
.partner-marquee {
    overflow: hidden; /* Hide overflow */
    background-color: #f8f9fa; /* Background color */
    padding: 20px 0; /* Padding */
}

.marquee-content {
    display: flex; /* Use flexbox for horizontal layout */
    animation: marquee 15s linear infinite; /* Animation properties */
}

.partner-item {
    display: flex;
    align-items: center; /* Center items vertically */
    margin-right: 50px; /* Space between items */
}

    .partner-item img {
        width: 50px; /* Set image width */
        height: auto; /* Maintain aspect ratio */
        margin-right: 10px; /* Space between image and text */
    }

@keyframes marquee {
    from {
        transform: translateX(100%); /* Start from right */
    }

    to {
        transform: translateX(-100%); /* Move to left */
    }
}


.footer-image {
    width: 45%;
    height: auto;
    max-height: 50px;
}
