/*
 * Subset of Font Awesome 6 (Free) — only the glyphs actually used on this site.
 * Replaces the full ~73 KB CDN stylesheet (which mapped 2,000+ icons).
 * Keep markup using existing class names (e.g. <i class="fas fa-star">) untouched.
 */

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

.fa,
.fas,
.fa-solid,
.fab,
.fa-brands,
.far,
.fa-regular {
  -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,
.fa-solid {
  font-family: "FA Solid";
  font-weight: 900;
}
.fab,
.fa-brands {
  font-family: "FA Brands";
  font-weight: 400;
}
.far,
.fa-regular {
  font-family: "FA Regular";
  font-weight: 400;
}

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

.fa-spin {
  animation: fa-spin 2s linear infinite;
}
@keyframes fa-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Solid glyphs */
.fa-star::before { content: "\f005"; }
.fa-star-half-alt::before,
.fa-star-half-stroke::before { content: "\f5c0"; }
.fa-map-marker-alt::before,
.fa-location-dot::before { content: "\f3c5"; }
.fa-eye::before { content: "\f06e"; }
.fa-times::before,
.fa-xmark::before,
.fa-close::before { content: "\f00d"; }
.fa-image::before { content: "\f03e"; }
.fa-images::before { content: "\f302"; }
.fa-robot::before { content: "\f544"; }
.fa-bolt::before { content: "\f0e7"; }
.fa-pencil-alt::before,
.fa-pencil::before { content: "\f303"; }
.fa-info-circle::before,
.fa-circle-info::before { content: "\f05a"; }
.fa-magic::before,
.fa-wand-magic::before { content: "\f0d0"; }
.fa-plus::before { content: "\2b"; }
.fa-upload::before { content: "\f093"; }
.fa-save::before,
.fa-floppy-disk::before { content: "\f0c7"; }
.fa-globe::before { content: "\f0ac"; }
.fa-phone::before { content: "\f095"; }
.fa-envelope::before { content: "\f0e0"; }
.fa-clock::before { content: "\f017"; }
.fa-arrow-right::before { content: "\f061"; }
.fa-arrow-left::before { content: "\f060"; }
.fa-ship::before { content: "\f21a"; }
.fa-shield-alt::before,
.fa-shield-halved::before { content: "\f3ed"; }
.fa-calendar-check::before { content: "\f274"; }
.fa-users::before { content: "\f0c0"; }
.fa-search::before,
.fa-magnifying-glass::before { content: "\f002"; }
.fa-spinner::before { content: "\f110"; }
.fa-chevron-left::before { content: "\f053"; }
.fa-chevron-right::before { content: "\f054"; }
.fa-cog::before,
.fa-gear::before { content: "\f013"; }
.fa-external-link-alt::before,
.fa-arrow-up-right-from-square::before { content: "\f08e"; }
.fa-calendar-alt::before,
.fa-calendar-days::before { content: "\f073"; }
.fa-list::before { content: "\f03a"; }
.fa-folder::before { content: "\f07b"; }
.fa-tags::before { content: "\f02c"; }
.fa-map-marked-alt::before,
.fa-map-location-dot::before { content: "\f5a0"; }
.fa-route::before { content: "\f4d7"; }
.fa-mountain-sun::before { content: "\e52f"; }
.fa-check-circle::before,
.fa-circle-check::before { content: "\f058"; }
.fa-signal::before { content: "\f012"; }
.fa-directions::before,
.fa-diamond-turn-right::before { content: "\f5eb"; }
.fa-shuttle-van::before,
.fa-van-shuttle::before { content: "\f5b6"; }
.fa-check::before { content: "\f00c"; }
.fa-exclamation-triangle::before,
.fa-triangle-exclamation::before { content: "\f071"; }
.fa-comments::before { content: "\f086"; }

/* Regular variants (used via "far") share codepoints with their solid name. */
.far.fa-star::before { content: "\f005"; }
.far.fa-calendar::before { content: "\f133"; }
.far.fa-clock::before { content: "\f017"; }

/* Brand glyphs */
.fa-facebook::before { content: "\f09a"; }
.fa-facebook-f::before { content: "\f39e"; }
.fa-instagram::before { content: "\f16d"; }
.fa-whatsapp::before { content: "\f232"; }
.fa-twitter::before { content: "\f099"; }
