.client-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 40px;
}

.client-carousel-slides {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.client-grid-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.client-grid-slide .basicHeight {
    height: auto !important;
    min-height: 100px;
}

/* Force borders back on for all responsive modes, since our JS dynamically maps the edge borders perfectly */
.client-logo1, .client-logo2, .client-logo3, .client-logo4 {
    background-color: #fff !important;
    padding: 10px !important;
}

.client-logo1 {
    border-right: 1px solid #e9e9e9 !important;
    border-bottom: 1px solid #e9e9e9 !important;
}

.client-logo2 {
    border-right: none !important;
    border-bottom: 1px solid #e9e9e9 !important;
}

.client-logo3 {
    border-right: 1px solid #e9e9e9 !important;
    border-bottom: none !important;
}

.client-logo4 {
    border-right: none !important;
    border-bottom: none !important;
}

.client-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.client-carousel-dot {
    width: 9px;
    height: 9px;
    border-radius: 5px;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: background-color 0.3s ease, width 0.3s ease, transform 0.3s ease;
}

.client-carousel-dot.active {
    background-color: #ffb507;
    width: 24px;
    height: 9px;
}

@media (min-width: 481px) and (max-width: 767px) {
    .client-padding {
        padding: 0 !important;
    }
}