@charset "UTF-8";
/* snippet-row-insurances START */
.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
  border-top: 0px !important;
}
.table {
  --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.025);
}

.container-slider {
  overflow: hidden;
}
.slider {
  animation: slidein 30s linear infinite;
  white-space: nowrap;
}
.logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.img-logo {
   width: calc(100% / 5); /* Adjust this value based on the number of images */
   animation: fade-in 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
}

@keyframes slidein {
   from {
      transform: translate3d(0, 0, 0);
   }
   to {
      transform: translate3d(-100%, 0, 0);
   }
}

@keyframes fade-in {
   0% {
      opacity: 0;
   }
   100% {
      opacity: 1;
   }
}
/* snippet-row-insurances END */



