.services{
  font-size: 3em;
  color: #fff;

}

.h-line{
  width: 150px;
  margin: 0 auto;
  height: 1.7px;
}

.page-content-services {
  display: grid;
  grid-gap: 1rem;
  padding: 1rem;
  /* max-width: 1024px; */
  width: 100%;
  /* margin: 0 auto; */
  font-family: var(--font-sans);
  
}
@media (min-width: 600px) {
  .page-content-services {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 800px) {
  .page-content-services {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cardServices {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 1rem;
  width: 100%;
  text-align: center;
  color: whitesmoke;
  background-color: whitesmoke;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
}



@media only screen and (min-width: 600px) and (max-width:1186px) {
  .cardServices {
    height: 350px;
  }

  .titleServices{
    font-size: 1rem !important;
  }
  .copyServices{
    font-size: 0.85rem !important; 
  }
}

.cardServices:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: 0 0;
  transition: transform calc(var(--d) * 1.5) var(--e);
  pointer-events: none;
}
.cardServices:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  pointer-events: none;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.009) 11.7%, rgba(0, 0, 0, 0.034) 22.1%, rgba(0, 0, 0, 0.072) 31.2%, rgba(0, 0, 0, 0.123) 39.4%, rgba(0, 0, 0, 0.182) 46.6%, rgba(0, 0, 0, 0.249) 53.1%, rgba(0, 0, 0, 0.32) 58.9%, rgba(0, 0, 0, 0.394) 64.3%, rgba(0, 0, 0, 0.468) 69.3%, rgba(0, 0, 0, 0.54) 74.1%, rgba(0, 0, 0, 0.607) 78.8%, rgba(0, 0, 0, 0.668) 83.6%, rgba(0, 0, 0, 0.721) 88.7%, rgba(0, 0, 0, 0.762) 94.1%, rgba(0, 0, 0, 0.79) 100%);
  transform: translateY(-50%);
  transition: transform calc(var(--d) * 2) var(--e);
}
.cardServices:nth-child(1):before {
  background-image: url("../../img/10.jpg");

}
.cardServices:nth-child(2):before {
  background-image: url("../../img/3.jpg");
}
.cardServices:nth-child(3):before {
  background-image: url("../../img/5.jpg");
}

.cardServices:nth-child(4):before {
  background-image: url("../../img/8.jpg");
}


.contentServices {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  transition: transform var(--d) var(--e);
  z-index: 1;
}

.contentServices > * + * {
  margin-top: 1rem;
}

.titleServices {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.2;
}

.copyServices {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.35;
  color: #faedcd;
}

.btnServices {
  cursor: pointer;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 0.025rem;
  text-transform: uppercase;
  color: white;
  background-color: black;
  border: none;
}
.btnServices:hover {
  background-color: #0d0d0d;
}
.btnServices:focus {
  outline: 1px dashed yellow;
  outline-offset: 3px;
}

@media (hover: hover) and (min-width: 600px) {
  .cardServices:after {
    transform: translateY(0);
  }

  .contentServices {
    transform: translateY(calc(100% - 4.5rem));
  }
  .contentServices > *:not(.titleServices) {
    opacity: 0;
    transform: translateY(1rem);
    transition: transform var(--d) var(--e), opacity var(--d) var(--e);
  }

  .cardServices:hover,
.cardServices:focus-within {
    align-items: center;
  }
  .cardServices:hover:before,
.cardServices:focus-within:before {
    transform: translateY(-4%);
  }
  .cardServices:hover:after,
.cardServices:focus-within:after {
    transform: translateY(-50%);
  }
  .cardServices:hover .contentServices,
.cardServices:focus-within .contentServices {
    transform: translateY(0);
  }
  .cardServices:hover .contentServices > *:not(.titleServices),
.cardServices:focus-within .contentServices > *:not(.titleServices) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--d) / 8);
  }

  .cardServices:focus-within:before, .card:focus-within:after,
.cardServices:focus-within .contentServices,
.cardServices:focus-within .contentServices > *:not(.titleServices) {
    transition-duration: 0s;
  }
}