/* ==========================================================================
   WebTribe — Font Awesome 6 subset
   Only the icon classes used across the site are defined here, so the CSS
   stays tiny. Font files are served locally from /awesome.

   To use a new icon: add a line in the matching style section below, e.g.
       .fa-rocket::before { content: "\f135"; }
   Look up the FA6 codepoint at fontawesome.com/icons (it is shown in the
   icon's details). Solid icons go in the 900-weight family, brand icons
   (f39e-style codepoints) go in the brands family.
   ========================================================================== */

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

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

/* Base */
.fa {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

.fa-solid, .fas { font-family: "Font Awesome 6 Free"; font-weight: 900; }
.fa-regular, .far { font-family: "Font Awesome 6 Free"; font-weight: 400; }
.fa-brands, .fab { font-family: "Font Awesome 6 Brands"; font-weight: 400; }

.fa-fw { text-align: center; width: 1.25em; }
.fa-spin { animation: fa-spin 2s linear infinite; }
@keyframes fa-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Icons used across the site */
.fa-angle-right::before { content: "\f105"; }
.fa-arrow-left::before { content: "\f060"; }
.fa-arrow-right::before { content: "\f061"; }
.fa-arrows-rotate::before { content: "\f021"; }
.fa-award::before { content: "\f559"; }
.fa-bars::before { content: "\f0c9"; }
.fa-bolt::before { content: "\f0e7"; }
.fa-briefcase::before { content: "\f0b1"; }
.fa-building::before { content: "\f1ad"; }
.fa-calendar-days::before { content: "\f073"; }
.fa-chart-line::before { content: "\f201"; }
.fa-chevron-down::before { content: "\f078"; }
.fa-chevron-right::before { content: "\f054"; }
.fa-circle-check::before { content: "\f058"; }
.fa-clock::before { content: "\f017"; }
.fa-code::before { content: "\f121"; }
.fa-comments::before { content: "\f086"; }
.fa-database::before { content: "\f1c0"; }
.fa-desktop::before { content: "\f390"; }
.fa-envelope::before { content: "\f0e0"; }
.fa-eye::before { content: "\f06e"; }
.fa-facebook-f::before { content: "\f39e"; }
.fa-gauge-high::before { content: "\f625"; }
.fa-gem::before { content: "\f3a5"; }
.fa-graduation-cap::before { content: "\f19d"; }
.fa-handshake::before { content: "\f2b5"; }
.fa-headset::before { content: "\f590"; }
.fa-hospital::before { content: "\f0f8"; }
.fa-hotel::before { content: "\f594"; }
.fa-house::before { content: "\f015"; }
.fa-industry::before { content: "\f275"; }
.fa-instagram::before { content: "\f16d"; }
.fa-key::before { content: "\f084"; }
.fa-laptop-code::before { content: "\f5fc"; }
.fa-layer-group::before { content: "\f5fd"; }
.fa-linkedin-in::before { content: "\f0e1"; }
.fa-location-dot::before { content: "\f3c5"; }
.fa-mobile-screen-button::before { content: "\f3cd"; }
.fa-network-wired::before { content: "\f6ff"; }
.fa-paper-plane::before { content: "\f1d8"; }
.fa-pen-ruler::before { content: "\f5ae"; }
.fa-phone::before { content: "\f095"; }
.fa-screwdriver-wrench::before { content: "\f7d9"; }
.fa-server::before { content: "\f233"; }
.fa-shield-halved::before { content: "\f3ed"; }
.fa-spinner::before { content: "\f110"; }
.fa-store::before { content: "\f54e"; }
.fa-twitter::before { content: "\f099"; }
.fa-users::before { content: "\f0c0"; }
.fa-utensils::before { content: "\f2e7"; }
.fa-video::before { content: "\f03d"; }
.fa-warehouse::before { content: "\f494"; }
.fa-wifi::before { content: "\f1eb"; }
.fa-xmark::before { content: "\f00d"; }
