.post-type-archive-servicios .services {
    padding: 150px 0 150px;
}

.post-type-archive-servicios .services__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.post-type-archive-servicios .services__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7rem;
    padding: 3rem 4rem;
    border: 1px solid #E7E7E7;
    box-sizing: border-box;
    width: 100% !important;
    height: 448px !important;
    transition: background-color 0.3s ease;
}

.post-type-archive-servicios .services__item:hover {
    background-color: #E7E7E7;
}

.post-type-archive-servicios .services__item__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.post-type-archive-servicios .services__item__img {
    width: 60px;
    height: 60px;
}

.post-type-archive-servicios .services__item__title {
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.96px;
}

.post-type-archive-servicios .services__item__description {
    overflow: hidden;
    max-height: 0px;
    opacity: 0;
    margin: 0;
    font-size: 18px;
    line-height: 1.15;
    letter-spacing: -0.36px;
    color: var(--tt-dark);
    transition: max-height .50s ease, opacity .25s ease .1s;
}

.post-type-archive-servicios .services__item:hover .spacer{ flex-basis: 0; }
.post-type-archive-servicios .services__item:hover .services__item__description{
  max-height: 160px;
  opacity: 1;
}
