@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  width: 100%;
  overflow-x: hidden;
}
.container_portada_clientes {
  width: 100%;
  height: 390px;
  padding-top: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(/assets/clientes/0001-5\ 1.png) rgba(0, 0, 0, 0.644) 50% /
    cover no-repeat;
}
.title_portada {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.text_portada {
  color: #fff;
  font-family: "Roboto Flex";
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.text_portada span {
  color: #00accd;
}
.line {
  width: 153px;
  height: 7px;
  background: #fff;
}
.container_cards_clientes {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 100%;
  padding: 50px 100px 0px 100px;
  flex-direction: column;
  align-items: center;
  gap: 37px;
  margin-bottom: 120px;
}
.filter_cards {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  row-gap: 28px;
  align-self: stretch;
  flex-wrap: wrap;
}
.cards_clientes {
  border: 1px solid rgb(187, 186, 186);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 231px;
}
.image_cards {
  
  width: 300px;
  height: 220px;
  object-fit: cover;
}
.image_cards1{
    width: 296px;
    height: 100px;
    object-fit: cover;
}
.image_cards6 {
  width: 256px;
  height: 68px;
  object-fit: cover;
}
.image_cards2{
    width: 250px;
    height: 220px;
    object-fit: cover;
}
.image_cards3{
  width: 240px;
  height: 120px;
  object-fit: cover;
}
.image_cards4{
  width: 240px;
  height: 145px;
  object-fit: cover;
}
.image_cards5{
  width: 240px;
  height: 165px;
  object-fit: cover;
}
::-webkit-scrollbar {
  width: 5px; /* Ancho de la barra de desplazamiento */
}
::-webkit-scrollbar-thumb {
  background: #c0c0c0;
}

@media (max-width: 768px) {
  .container_portada_clientes {
    padding-top: 100px;
    height: 300px;
    background-size: cover;
  }

  .text_portada {
    font-size: 30px;
    text-align: center;
  }

  .line {
    width: 100px;
    height: 5px;
  }

  .container_cards_clientes {
    padding: 20px 20px 0px 20px;
    gap: 20px;
    margin-bottom: 60px;
  }

  .filter_cards {
    justify-content: center;
    row-gap: 20px;
  }

  .cards_clientes {
    width: 100%;
    height: auto;
  }

  .image_cards,
  .image_cards1,
  .image_cards6,
  .image_cards2,
  .image_cards3,
  .image_cards4,
  .image_cards5 {
    width: 100%;
    height: auto;
  }
}


