/*** CMS - Convenios ***/
#pageGen-hero .carousel-item {
  position: relative;
  height: 60vh;
}

#pageGen-hero .carousel-item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(0, 0, 0, 0.4);
}

#pageGen-hero .carousel-caption {
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 1;
}

#pageGen-hero .carousel-item p {
  margin: 0 auto 35px auto;
}

@media (max-width: 992px) {
  .carousel-item {
    min-height: 500px;
  }

  .carousel-item img {
    min-height: 500px;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .carousel-item {
    min-height: 400px;
  }

  .carousel-item img {
    min-height: 400px;
    object-fit: cover;
  }
}