/***Popover Elements***/
.el-marker {
  animation: pulse-popover 1.5s infinite;
}

@keyframes pulse-popover {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(76, 149, 99, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(76, 149, 99, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(76, 149, 99, 0);
  }
}

@font-face {
    font-family: 'nevis';
    src: url('../fonts/nevis-Bold.woff2') format('woff2'),
        url('../fonts/nevis-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


@font-face {
font-family: "GothamMedium";
src: url("../fonts/Gotham-Medium.woff2") format("woff2"),
  url("../fonts/Gotham-Medium.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
    font-family: 'GothamBook';
    src: url('../fonts/GothamBook.woff2') format('woff2'),
        url('../fonts/GothamBook.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



