@font-face {
  font-family: Noto Sans;
  src: url('./fonts/NotoSans-Regular.ttf');
}

:root {
  --font-mono: Noto Sans;
  --font-size-40: 40px;
  --font-size-28: 28px;
  --font-size-24: 24px;
  --font-size-20: 20px;
  --font-size-16: 16px;
  --font-size-14: 14px;
  --font-size-12: 12px;
  --header-height: 100px;
  --header-mobile-height: 75px;
  --header-z-index: 1005;
  --footer-height: 60px;
  --footer-bg: #4B4B4B;
  --white-color: #FFFFFF;
  --secondary-color: #F1F1F1;
  --dark-gray-color: #4B4B4B;
  --gray-color: #B0B0B0;
  --light-gray-color: #E0E0E0;
  --black-color: #000000;
  --brown-color: #A4663A;
  --green-color: #68D45F;
  --red-color: #F45959;
  --swiper-pagination-bullet-width: 30px;
  --swiper-pagination-bullet-height: 6px;
  --swiper-pagination-bullet-border-radius: 25px;
  --swiper-pagination-bullet-inactive-color: var(--light-gray-color);
  --swiper-pagination-color: var(--gray-color);
}

* {
  box-sizing: border-box;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-mono);
  color: var(--gray-color);
  font-size: var(--font-size-16);
}

*::-webkit-scrollbar {
  width: 5px;
  height: 4px;
}

*::-webkit-scrollbar-thumb {
  background: var(--light-gray-color);
}

html,
body {
  scroll-behavior: smooth;
  width: 100vw;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

hr {
  display: block;
  background-color: var(--light-gray-color);
  width: 100%;
  margin:1rem auto;
  height: 1px;
  border: 0px;
}

vr{
  display: block;
  background-color: var(--light-gray-color);
  width: 1px;
  margin: auto 1rem;
  height: 100%;
  border: 0px;
}

.swiper-pagination {
  bottom: 1.5rem !important;
}


.leaflet-control-attribution {
  display: none !important;
}

.location-icon {
  width: 15px;
  height: 15px;
  background: rgba(82, 125, 205, 1);
  position: relative;
  display: block;
  border-radius: 50%;
}

.location-icon:after {
  content: '';
  background: rgba(59, 134, 234, 0.6);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: block;
  animation: pulse 1s cubic-bezier(0.9, 0.7, 0.5, 0.9) infinite;
  top: 0;
  left: 0;
}

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