@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url("/css/webfonts/fa-solid-900.woff2") format("woff2"),
         url("/css/webfonts/fa-solid-900.woff") format("woff"),
         url("/css/webfonts/fa-solid-900.ttf") format("truetype");
}

@font-face {
    font-family: "Font Awesome 6 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("/css/webfonts/fa-brands-400.woff2") format("woff2"),
         url("/css/webfonts/fa-brands-400.woff") format("woff"),
         url("/css/webfonts/fa-brands-400.ttf") format("truetype");
}

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

/* Solid Icons */
.fa, .fas, .fa-solid {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Brand Icons */
.fab {
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
}

/* Icon Definitions - Solid (fas) */
.fa-phone:before { content: "\f095"; }
.fa-envelope:before { content: "\f0e0"; }
.fa-bars:before { content: "\f0c9"; }
.fa-cogs:before { content: "\f085"; }
.fa-award:before { content: "\f559"; }
.fa-certificate:before { content: "\f0a3"; }
.fa-user-tie:before { content: "\f508"; }
.fa-hammer:before { content: "\f6e3"; }
.fa-home:before { content: "\f015"; }
.fa-tools:before { content: "\f7d9"; }
.fa-building:before { content: "\f1ad"; }
.fa-industry:before { content: "\f275"; }
.fa-user:before { content: "\f007"; }
.fa-history:before { content: "\f1da"; }
.fa-shield-alt:before { content: "\f3ed"; }
.fa-star:before { content: "\f005"; }
.fa-comments:before { content: "\f086"; }
.fa-user-cog:before { content: "\f4fe"; }
.fa-fire:before { content: "\f06d"; }
.fa-map-marker-alt:before { content: "\f3c5"; }
.fa-id-card:before { content: "\f2c2"; }

/* Icon Definitions - Brands (fab) */
.fa-facebook-f:before { content: "\f39e"; }
.fa-youtube:before { content: "\f167"; }

/* Utility Classes */
.fa-fw {
    text-align: center;
    width: 1.25em;
}

.fa-lg {
    font-size: 1.33333em;
    line-height: 0.75em;
    vertical-align: -0.0667em;
}

.fa-2x { font-size: 2em; }
.fa-3x { font-size: 3em; }
.fa-4x { font-size: 4em; }
.fa-5x { font-size: 5em; }

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

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