.preload::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary-green-dark, #002e22);
  z-index: 9999;
}

.preload--transitions * {
  transition: 0s !important;
}

.preload--hidden::before {
  /* visibility: hidden; */
  display: none;
}

.loaded:before {
  animation: fadeout .3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* LOAD YOUR FONTS HERE */
@font-face {
  src: url("./fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-family: "Inter";
  font-display: swap;
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  src: url("./fonts/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype");
  font-family: "Inter";
  font-display: swap;
  font-weight: 100 900;
  font-style: italic;
}

@font-face {
  src: url("./fonts/CircularStd-Book.otf") format("opentype");
  font-family: "Circular Std";
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  src: url("./fonts/CircularStd-BookItalic.otf") format("opentype");
  font-family: "Circular Std";
  font-display: swap;
  font-weight: 400;
  font-style: italic;
}

@font-face {
  src: url("./fonts/CircularStd-Medium.otf") format("opentype");
  font-family: "Circular Std";
  font-display: swap;
  font-weight: 500;
  font-style: normal;
}

@font-face {
  src: url("./fonts/CircularStd-MediumItalic.otf") format("opentype");
  font-family: "Circular Std";
  font-display: swap;
  font-weight: 500;
  font-style: italic;
}

@font-face {
  src: url("./fonts/CircularStd-Bold.otf") format("opentype");
  font-family: "Circular Std";
  font-display: swap;
  font-weight: 700;
  font-style: normal;
}

@font-face {
  src: url("./fonts/CircularStd-BoldItalic.otf") format("opentype");
  font-family: "Circular Std";
  font-display: swap;
  font-weight: 700;
  font-style: italic;
}

@font-face {
  src: url("./fonts/CircularStd-Black.otf") format("opentype");
  font-family: "Circular Std";
  font-display: swap;
  font-weight: 900;
  font-style: normal;
}

@font-face {
  src: url("./fonts/CircularStd-BlackItalic.otf") format("opentype");
  font-family: "Circular Std";
  font-display: swap;
  font-weight: 900;
  font-style: italic;
}

