*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* INICIO ANIMACION */
@keyframes slide{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }

}
/* FIN ANIMACION */



.logos{
    overflow: hidden;
    padding: 60px 0;
    background-color: white;
    position: relative;

}

/* .logos:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background: linear-gradient( to left,rgba(255, 255, 255, 0), white);
    content: "";
    z-index: 2;
} */


.logos-slide{
    white-space: nowrap;
    animation: 7s slide infinite linear;
}
.logos-slide img{
    height: 180px;
    margin: 0 40px;
}

/* STYLE CARDS */
 .custom-card {
      border: none;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
      border-radius: 15px;
    }

    .custom-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    }

    .custom-card img {
      border-radius: 15px;
      transition: transform 0.5s ease;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .custom-card:hover img {
      transform: scale(1.05);
    }
/* FIN STYLE CARDS */