.d-flex {
    display: flex;
}

.fw-bolder {
    font-weight: bolder;
}

.align-content-center {
    align-content: center;
}

.text-center {
    text-align: center;
}

/* Standard-Styling für Desktop */
.show-desktop {
    display: block;
}

.show-mobile {
    display: none !important;
}

/* Für Geräte mit einer maximalen Breite von 768px (Mobile-Geräte) */
@media (max-width: 768px) {
    .hidden-mobile {
        display: none !important;
    }

    .show-desktop {
        display: none !important;
    }

    .show-mobile {
        display: block;
    }
}

@media (min-width: 768px) {
    .hidden-desktop {
        display: none !important;
    }
}