.universidades {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    border: 1px solid #bdbdbd;
    padding: 1rem;
    justify-content: space-around;
    align-items: center;
    padding-inline: 3%;
}

.universidades img {
    width: auto;
    height: 100px;
    max-height: fit-content;
    max-width: 150px;

}

@media (max-width: 768px) {
.universidades {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  display: flex;
  flex-direction: row;
  padding-inline: 1.5rem;
  gap: 2.3rem;
  justify-content: flex-start;
  border: none;
}

.universidades::-webkit-scrollbar {
  display: none;
}

  .universidades img {
    height: 50px;
    max-width: 100px;
  }
}
