
.card {
    width: 25%;
    margin: 12px 0;
    z-index: 0;
}
.card a:hover,
.card a {
    text-decoration: none !important;
}
.cardInner {
    position: relative;
    color: #202945;
    background: #b9bf15;
    padding: 48px 24px;
    text-decoration: none;
    z-index: 0;
    margin: 0 12px;
    height: 100%;
}
.cardContent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
    background: #202945;
    color: #b9bf15;
    opacity: 1;
    transition: .3s;
    z-index: 1;
}
.cardInner:hover .cardContent {
    opacity: 0;
    z-index: 0;
}
.cardHover {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 400px;
    margin: 0 auto;
}
.cardInner:hover .cardHover {
    z-index: 1;
}
.cardHoverTop {
    text-align: center;
}
.cardUeberschrift {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 24px;
}
.cardSubUeberschrift {
    color: #ffffff;
}
.cardIcon {
    line-height: 1;
    display: none;
}
.cardIcon span {
    font-size: 80px;
}

.cardHoverTopUeberschrift {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 22px;
}
.cardHoverTopSubUeberschrift {
    margin-bottom: 24px;
}
.cardHoverTopText {
    margin-bottom: 24px;
}
.cardHoverLink {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
}
.cardHoverLink span.material-icons {
    font-size: 24px;
}
span.cardHoverLinkname {
    margin-left: 6px;
    font-weight: 700;
}


@media (max-width: 1366px) {
    .card {
        width: 33.333%;
    }
}
@media (max-width: 992px) {
    .card {
        width: 50%;
    }
}
@media (max-width: 767px) {
    .card {
        width: 100%;
    }
}