@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../fonts/fontawesome/fa-solid-900.woff2") format("woff2"),
       url("../fonts/fontawesome/fa-solid-900.ttf") format("truetype");
}

.fa,
.fas {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.fa-phone:before {
  content: "\f095";
}

.fa-bars:before {
  content: "\f0c9";
}

.fa-times:before {
  content: "\f00d";
}

.fa-home:before {
  content: "\f015";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-bolt:before {
  content: "\f0e7";
}

.fa-box-open:before {
  content: "\f49e";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-user:before {
  content: "\f007";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-boxes:before {
  content: "\f468";
}

.fa-image:before {
  content: "\f03e";
}

.fa-money-bill-wave:before {
  content: "\f53a";
}

.fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-spin:before {
  animation: fa-spin 2s linear infinite;
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 