.leistungen {
    margin-top: 3rem;
    text-align: center;
}

.leistungen__title {
    margin-bottom: 2rem;
}

.leistungen__container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.leistungen__box {
    max-width: 27ch;
}

.leistungen__box-hide {
    margin-top: 3rem;
    display: none;
}

.leistungen__name {
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.leistungen__text {
    color: #575555;
}

.leistungen__btn {
    margin-top: 2rem;
    color: var(--clr-white);
    background-color: var(--clr-black);
    transition: all 0.4s;
}

.leistungen__btn:hover {
    background-color: #575555;
}

