#clientes > div > div.row.text-center.py-3.my-4.bg-white > div > div.owl-stage-outer > div{
    display: flex;
    justify-content: center;
    align-items: center;
}
#clientes > div > div.row.text-center.py-3.my-4.bg-white > div > div.owl-stage-outer > div div{
    margin-right: 10px;
}
.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 55px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    text-decoration: none;
    animation: pulse-wp 2s infinite;
}

.float:hover {
    color: #FFF;
    background-color: #1ebe5d;
}

@keyframes pulse-wp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.imagen_carrousel{
    text-align: center;
}

html .scroll-to-top {
    right: 25px !important;
}

/* Media Query Mobile*/
@media screen and (max-width: 600px) {
    .header-logo a img{
        width: 200px;
        height: auto;
    }
    #clientes > div > div.row.text-center.py-3.my-4.bg-white > div > div.owl-stage-outer > div div img{
        width: 100px;
        height: auto;
    }
    #clientes > div > div.row.text-center.py-3.my-4.bg-white > div > div.owl-stage-outer > div div{
        margin-right: 3px;
        width: 100px;
    }
    .float {
        bottom: 20px;
        right: 15px;
    }    

    html .scroll-to-top, 
    html .scroll-to-top.hidden-mobile {
        right: 20px !important;
        display: block !important;
    }
}