/* ---------- 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;
}

@media only screen and (max-width: 768px) {
  .image-carousel {
    height: 200px !important;
  }
}