 @font-face {
  font-family: "Don Jose";
  src: url("../fonts/DonJose_Black.otf") format("opentype");
  font-display: swap;
} 

 @font-face {
  font-family: "Courier Prime";
  src:
    url("../fonts/CourierPrime-Regular.ttf") format("truetype"),
    url("../fonts/CourierPrime-Bold.ttf") format("truetype"),
    url("../fonts/CourierPrime-Italic.ttf") format("truetype"),
    url("../fonts/CourierPrime-BoldItalic.ttf") format("truetype");
  font-display: swap;
} 

h1,
h2,
h3,
h3,
h4,
h5,
h6,
h1 > span,
h2 > span,
ul[nav-list] > li,
a[nav-btn],
span[nav-text] {
  font-family: "Don Jose", sans-serif !important;
}

.title-font {
  font-family: "Don Jose", sans-serif !important;
}

body,
p,
li,
span {
  font-family: "Courier Prime", "Roboto", sans-serif !important;
}

.grecaptcha-badge {
  display: none !important;
}

.animate {
  animation-name: pulse;
  animation-timing-function: ease;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}