.breadcrumb-nav {
    margin: 20px 0;
}

.breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    position: relative;
    margin-right: 10px;
    font-size: 14px;
    color: #fff;
    text-transform: capitalize;
    opacity: 0;
    transform: translateY(-20px);
    animation: dropIn 0.5s forwards;
    text-shadow: 0em 0em 0.3em rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
}

.breadcrumb li:nth-child(1) {
    animation-delay: 0.2s;
}

.breadcrumb li:nth-child(2) {
    animation-delay: 0.4s;
}

.breadcrumb li:nth-child(3) {
    animation-delay: 0.6s;
}

.breadcrumb li::after {
    content: "";
    display: inline-block;
    margin-left: 10px;
    width: 17px;
    height: 17px;
    opacity: 0.7;
    font-weight: bold;
    background-image: url('/wp-content/themes/divi-child/shortcodes/breadcrumb/chevron.svg');
    background-size: contain; /* Stellt sicher, dass das SVG in den Container passt */
    background-repeat: no-repeat; /* Verhindert die Wiederholung des SVGs */
}

.breadcrumb li:last-child::after {
    content: "";
    margin-left: 0;
    display: none;
}

.breadcrumb li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
    text-shadow: 0em 0em 0.3em rgba(0,0,0,0.4);
}

.breadcrumb li a:first-child {
    opacity: 0.7;
    transition: opacity 0.6s ease;
}

ul.breadcrumb {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.breadcrumb li a:hover {
    color: #fff;
    opacity: 1;
}

@keyframes dropIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.breadcrumb-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.socials img {
    width: 30px;
    /* opacity: 0; */
    /* transform: translateY(-20px);
    animation: dropIn 0.5s forwards;
} */
}
.socials a img:nth-child(1) {
    margin-left: 0.75em;
    opacity: 0;
    animation: dropIn 0.5s forwards;
    transform: translateY(-20px);
    animation-delay: 0.8s;
}

.socials a img:nth-child(2) {
    opacity: 0;
    animation: dropIn 0.5s forwards;
    animation-delay: 1.2s;
    transform: translateY(-20px);
}


@media only screen and (max-width: 500px) {
    .breadcrumb-container {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column-reverse;
        align-content: flex-start;
    }
    .socials img:first-child {
        width: 30px;
        margin-right: 0.5em;
    }
    .socials img:last-child {
        width: 30px;
        margin-left: unset;
    }
}

