:root {
  --thm-font: 'Open Sans', sans-serif;
  --heading-font: 'Gilroy-Bold';
  --special-font-exb: 'Gilroy-ExtraBold';
  --special-font-light: 'Gilroy-Light';
  --special-font-bold: 'Gilroy-Bold';
  --special-font-smb: 'Gilroy-SemiBold';
  --thm-base: #ff57a4;
  --thm-base-rgb: 255, 87, 164;
  --thm-primary: #4275ff;
  --thm-primary-rgb: 66, 117, 255;
  --thm-black: #42495b;
  --thm-black-rgb: 66, 73, 91;
  --thm-gray: #7b86f1;
  --thm-gray-rgb: 123, 134, 241;
}

.map {
  font-family: var(--special-font-light), sans-serif;
  letter-spacing: 0;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "liga" on;
  color: #686868;
  font-size: 1.5rem;
  line-height: 1.4;
  display: flex;
  /*align-items: flex-end;*/
  /*justify-content: flex-end;*/
  align-items: center;
  justify-content: center;
  vertical-align: center;
  flex-direction: column;
  box-sizing: border-box;
  background: linear-gradient(45deg, #4bbfef 0%, #025bfa 100%);
  padding-bottom: 70px;
  min-height: 100vh;
}

.map p {
  color: #fff;
  text-align: center;
  padding-bottom: 100px;
}

.map h1 {
  font-family: var(--heading-font), sans-serif;
  color: #fff;
  text-align: center;
  padding-bottom: 50px;
  padding-top: 50px;
}

.map p strong {
  font-family: var(--heading-font), sans-serif;
}

.map *, .map *:before, .map *:after {
  box-sizing: inherit;
}

.map .Container {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}

.map .Map-container {
  position: relative;
}

.map #Map-svg {
  width: 750px;
  max-width: 100%;
  height: auto;
}

.map .Location-nav {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.75);
}
.map .Location-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.map .Location-nav li {
  margin: 15px;
  cursor: default;
  user-select: none;
  position: relative;
}
.map .Location-nav li::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.25s linear, transform 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.map .Location-nav li:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/*# sourceMappingURL=compiled.css.map */
