/* Contacto */
.carousel-item {
  position: relative;
  height: 90vh;
}

.carousel-item img {
  width: auto;
  height: 100%;
  object-fit: cover;
}

.carousel-item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(188, 228, 238, 0.8);
}

.carousel-caption {
  height: 90%;
  display: flex;
  align-items: start;
  z-index: 1;
}

.iconcircle-contacto {
  border-radius: 50%;
  box-sizing: border-box;
  border-width: 1px;
  border-style: solid;
  border-color: var(--secundario);
  color: var(--secundario);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}

.iconcircle-contacto:hover {
  background-color: var(--secundario);
  color: var(--white) !important;
}


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

  .carousel-item img {
    min-height: 50vh;
    object-fit: cover;
  }

  .carousel-caption {
    height: 95%;
    display: flex;
    align-items: start;
    z-index: 1;
  }
}


.container-contacto {
  position: relative;
}

.sello-agua-contacto {
  width: 35%;
  top: 50%;
  left: 50%;
  position: absolute;
  opacity: 0.15;
  z-index: -1;
  transform: translate(-50%, -50%);
}