/* Fakten-Box */
.faktenbox {
    width: 1200px;
    top: 0px;
    z-index: 2;
    display: flex;
    align-items: center;
	margin-bottom:-10px;
}
/* Einzelne Registerkarten */
.fakt1all {
    position: relative;
    float: left;
    margin-left: 10px;
    margin-top: 7px;
    height: 47px;
    width: 128px;
    background: #898384;
    transition: transform 0.2s ease-in-out, background 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
	overflow: hidden
}
.fakt1all:hover {
    transform: scale(1.07);
    background: #898384;
}
/* Icon-Tab */
.fakt1tab {
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%) rotate(-5deg);
    background: #2d0105b5;
    font-size: 11px;
    padding: 8px 12px;
    border-radius: 4px 0 0 4px;
    text-align: center;
    font-weight: bold;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    transition: background 0.3s ease-in-out;  
}
/* Icon-Größe in den Tabs */
.fakt1tab i {
    font-size: 16px; /* Größe der Icons */  
}
/* Hover-Effekt für Icon-Tabs */
.fakt1all:hover .fakt1tab {
    background:  #2d0105b5;
}
/* Inhalt der Registerkarten */
.fakt1inhalt {
    text-align: center;
    padding: 10px;
}
.fakt1inhalt a {
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    letter-spacing: 0.1em;
    transition: color 0.3s ease-in-out;
}
.fakt1inhalt a:hover {
    color: #fff;
}
/* Mobile Anpassung */
@media screen and (max-width: 768px) {
    .faktenbox {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
}

.fakt1all {
        width: 45%;
        margin-left: 5px;
}
.fakt1tab {
        left: -10px;
        font-size: 12px;
}
}

@media screen and (max-width: 480px) {
    .fakt1all {
        width: 100%;
        margin-left: 0;
}
.fakt1tab {
        left: -8px;
        font-size: 11px;
}
}


