/* Icons – ausgeduennter Ersatz fuer Font Awesome 5.15.4.
   Vorher wurde das komplette Paket von cdnjs.cloudflare.com geladen; dabei ging
   die IP-Adresse jedes Besuchers an einen Dritten. Hier stehen nur die zehn
   Symbole, die auf dieser Website tatsaechlich vorkommen. */

@font-face {
    font-family: "FA5 Free";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url("fonts/fa-solid-900.woff2") format("woff2");
}

@font-face {
    font-family: "FA5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("fonts/fa-brands-400.woff2") format("woff2");
}

.fa,
.fas,
.fab {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.fa,
.fas {
    font-family: "FA5 Free";
    font-weight: 900;
}

.fab {
    font-family: "FA5 Brands";
    font-weight: 400;
}

/* verwendete Symbole */
.fa-map-marker-alt::before { content: "\f3c5"; }
.fa-clock::before          { content: "\f017"; }
.fa-phone::before          { content: "\f095"; }
.fa-envelope::before       { content: "\f0e0"; }
.fa-spinner::before        { content: "\f110"; }
.fa-file-signature::before { content: "\f573"; }
.fa-linkedin-in::before    { content: "\f0e1"; }
.fa-facebook-f::before     { content: "\f39e"; }
.fa-twitter::before        { content: "\f099"; }
.fa-instagram::before      { content: "\f16d"; }

.fa-spin {
    animation: fa-spin 2s infinite linear;
}

@keyframes fa-spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .fa-spin { animation: none; }
}
