.logos-slider {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    position: relative;
 /*   -webkit-mask-image: linear-gradient(90deg,rgba(0,0,0,0) 0,#000 15%,#000 85%,rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(90deg,rgba(0,0,0,0) 0,#000 15%,#000 85%,rgba(0,0,0,0) 100%); */
}

.logos-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    animation: slide 80s linear infinite;
    margin: 0 0 0 65px;
   
}

.logos-slider-container img {
  width: 230px;
  max-width: 230px;
}

@keyframes slide {
  0% {
    transform: translate3d(0,0,0)
  }
  100% {
    transform: translate3d(-100%,0,0)
  }
}

h1 {
  text-align: center;
  font-family: 'Lato';
  color: #3D4A54;
}

.card {
  background: #e3f7ff;
  padding: 10px;
  border-radius: 0px;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0px 3px 8px rgb(61 74 84 / 10%), 0px 3px 12px rgb(61 74 84 / 6%)
}


.gh{
    border: 1px solid #80dbff;
  border-radius: 5px;
  padding: 5px;
}



@media only screen and (max-width: 600px) {

.logos-slider-container img {
  width: 100px;
  max-width: 190px;
}
}
