/* =========================
   GLOBAL RESET
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #222;
  margin: 0;
  padding: 0;
}

/* =========================
   COLOR VARIABLES
========================= */
:root {
  /* --black: #000;
  --white: #fff;
  --brand-red: #8b1d1d;
  --brand-gold: #c9a14a;
  --alert-yellow: #f5c542;
  --text-dark: #222;
  --text-muted: #666; */
  --alert-height: 34px;
  --header-height: 72px;
}

body.modal-open {
  overflow: hidden;
}
 

 