/*primary color*/
.bg-cream {
    background-color: #EBEBEB;
}


/*font*/
body {
    font-family: 'Poppins', sans-serif;
}
.bg-custom{

    background: linear-gradient(135deg, #33B088 50%, #192F4F 50%);
}
.bg-yellow-500 {
    background-color: #33B088;
}

.text-yellow-500 {
    color: #192F4F;
}

.floating {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating {
    0% {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(0, 8px);
    }

    100% {
        transform: translate(0, -0px);
    }
}

.floating-4 {
    animation-name: floating;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating-4 {
    0% {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(0, 8px);
    }

    100% {
        transform: translate(0, -0px);
    }
}

.text-darken {
    color: #33B088;
}

.empresa-hovers {

    filter: grayscale(100%);
    height: 50px;
    transition: all 1s;
}

.empresa-hovers:hover {
    filter: grayscale(0%);

}


.marquee_sup {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}

.marquee_sup img {
    display: inline-block;
    /* padding-left: 100%; */
 
    animation: marquee 30s linear infinite;
}





.marquee_sup:hover img {
    animation-play-state: paused;
}



@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    25% {
        transform: translateX(-50%);

    }

    50% {
       
        transform: translateX(50%);

    }
    75% {
                transform: translateX(-50%);

    }

    100% {
        transform: translateX(100%);
    }
}


@media  (min-width: 1200px) {
    .logos-herramientas-responsive {
        transform: translateX(70px) !important;
    }
}