/* Servicios Start */
.servicios-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: repeat(3, 1fr);
  margin-inline: auto;
  gap: 1rem;
}

.service-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 2rem;
  gap: 2rem;
  height: 30rem;
  color: var(--white);
}

.service-item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgb(0, 0, 0, 1), rgb(0, 0, 0, 0));
  z-index: 5;
}
.service-item-desc {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  z-index: 10;
}

.service-item a {
  position: relative;
  padding: 0.5rem 1rem;
  background-color: transparent;
  color: var(--white);
  text-align: center;
  text-decoration: none;
  border: 1px solid var(--white);
  z-index: 10;
}

@media (max-width: 991px) {
  .servicios-container {
    grid-template-columns: 1fr;
  }
}