.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box
}

.brand_wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box;
}

.client-swiper {
    position: relative;
    width: 100%;
    height: 200px;
    z-index: 1;
    overflow: hidden;
}

.client-swiper-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box;
}

.client-swiper-item {
    flex-shrink: 0;
    width: 133px;
    height: 100%;
    position: relative;
    text-align: center;
    margin-right: 156px;
}

.brand__item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.brand__thumb img {
    max-width: 100%;
    height: auto;
}

.brand__thumb-hover-secondary:hover {
    opacity: 0.8;
}

.section-space__top {
    padding-top: 20px;
}


@media (min-width: 1400px) {
    .col-xxl-3 {
        flex: 0 0 auto;
        width: 33%;
    }
}


/* Floating Buttons */
.float {
    position: fixed;
    bottom: 25px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    /* WhatsApp green */
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

.float.call {
    background-color: #2196F3;
    /* Blue for call button */
    bottom: 91px;
}

.float.whatsapp {
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    box-shadow: 0 0 0 0 #25d366;
}

.float.call {
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    box-shadow: 0 0 0 0 #2196F3;
}

.my-float {
    margin: 0;
}

/* Pulsing Animation */
@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(37, 211, 102, 0);
        /* WhatsApp green fade */
    }
}

.float.call .pulsing {
    box-shadow: 0 0 0 30px rgba(33, 150, 243, 0);
    /* Blue fade for call */
}

/* Responsive */
@media (max-width: 768px) {
    .float {
        width: 50%;
        height: 60px;
        bottom: 0;
        right: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .float.whatsapp {
        left: 0;
    }

    .float.call {
        left: 50%;
        bottom: 0;
    }
}