.dienstleistungen-cards-holder{
    width: 100%;
    display: flex;
    justify-content: center;
}
.dienstleistungen-cards{
    width: 100%;
    padding: var(--section-padding);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2%;
}
.dienstleistung-card{
    background-color: var(--card-clr);
    border-radius: var(--radius);
    padding: 1em;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1em;
    max-width: 500px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}
.dienstleistung-card.is-inview{
    opacity: 1;
    transform: translateY(0);
}
.dienstleistung-card .icon-holder{
    position: absolute;
    right: 2em;
    top: -35px;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background-color: var(--bg-clr);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--ac-clr);
    box-shadow: inset 0 0 5px var(--ac-clr),
		0 0 0 8px var(--bg-clr);
}
.dienstleistung-card .icon-holder img{
    width: 60%;
    height: auto;
}

.dienstleistung-card .mini-heading{
    margin-top: 50px;
    text-align: center;
}
.dienstleistung-card p:last-of-type{
    color: var(--txt);
}

/* Offer-card specific footer pinning */
.dienstleistung-card.offer-card{
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--heading-clr);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
    border-radius: var(--radius);
    gap: 0 !important;
}
.dienstleistung-card.offer-card .offer-card__title{
    font-size: calc(1.05rem + 0.2vw);
    margin: 0;
    font-family: var(--font-body);
    color: var(--light);
}
.dienstleistung-card.offer-card .offer-card__price{
    color: var(--acc-clr, var(--ac-clr));
    font-size: calc(2rem + 0.2vw);
    font-weight: 600;
}
.dienstleistung-card.offer-card .offer-card__price-note{
    font-size: 0.9em;
    opacity: 0.85;
    color: var(--light);
    margin-bottom: 1em;
}
.dienstleistung-card.offer-card ul{
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin-bottom: 2em;
}
.dienstleistung-card.offer-card ul li{
    display: flex;
    align-items: center;
    gap: 10px;
}
.dienstleistung-card.offer-card ul li img{
    min-width: 20px;
    min-height: 20px;
    width: 20px;
    height: 20px;
}
.dienstleistung-card.offer-card ul li p{
    color: var(--light);
}
.dienstleistung-card.offer-card .offer-card__cta p{
    color: var(--light);
}
.dienstleistung-card.offer-card .offer-card__cta{
    margin-top: auto;
}



@media (max-width: 900px) {
    .dienstleistungen-cards{
        grid-template-columns: 100%;
        gap: 3em;
        place-items: center;
    }
	.dienstleistung-card{
		width: 100%;
		max-width: 500px;
	}
    .dienstleistung-card .icon-holder{
        width: 60px;
        height: 60px;
        top: -30px;
    }
}
