/* CSS para desativar a transiÃ§Ã£o em dispositivos mÃ³veis */
.no-transition {
  transition: none !important;
}

.carousel-item.active {
  width: 100%;
}

.img-banner {
  width: 100%;
  height: auto;
  max-height: 400px;
  padding: 0 20%;
}

@media screen and (max-width: 900px) {
  .img-banner {
    width: 100%;
    height: auto;
    max-height: 200px;
    padding: 0;
  }

  .carousel-item.active {
    display: flex;
    justify-content: center;
    max-height: auto;
  }
}