.listing {
  height: 250px;
  overflow: hidden;
  border-radius: 4px;
}
.collection-banner {
  background-image: url("../../../images/banner-listagem.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-origin: center;
  background-size: 100%;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  transition: background-size .5s;
}

.collection-banner:hover {
  background-size: 110% ;
}

.collection-banner .contain-banner {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  align-items: start;
  top: 0;
  width: 40%;
  height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  padding-left: 57px;
  flex-direction: column;
  justify-content: center; 
}