/* ---------- Média de type Image ----------- */
.image-carousel {
	display: block;
    position: relative;
    height: 496px !important;
    overflow: hidden;
}

.image-carousel img {
    overflow: hidden;
    min-height: 100%;
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.image {
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .image-carousel {
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
  }
}
