
.logo-item {
    position: relative;
    overflow: hidden;
}

.logo-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth hover transition */
}

/* Hover Effect */
.logo-item:hover img {
    transform: scale(1.1); /* Slight zoom on hover */
    opacity: 0.8; /* Slight fade on hover */
}
.business-slider-wrapper {
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
}

.swiper-wrapper {
    transition-timing-function: linear !important;
    display: flex;
    align-items: center;
}

.business-item {
    text-align: center;
    width: auto !important;
    flex-shrink: 0;
}

.business-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0px;
    white-space: nowrap;
}

/* .business-item.odd .business-content {
    flex-direction: column;
}

.business-item.even .business-content {
    flex-direction: column-reverse;
} */

.business-content img {
    max-width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
    border-radius: 0px;
}

.business-content h3 {
    margin: 0;
    font-size: 14px;
    line-height: 1.2;
	text-transform:uppercase;
}