.map {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  justify-content: center;
}
.map svg {
  height: auto;
}
.map .hospital-marker {
  transform-box: fill-box;
  transform-origin: bottom;
  transition: transform 0.2s ease;
}
.map .hospital-marker.is-hover {
  transform: scale(1.2);
}
.map .hospital-marker.transform-origin-top {
  transform-origin: top;
}

.map-marker {
  transition: all 0.2s ease-in-out;
}

.city-item {
  display: block;
  position: relative;
  width: 70%;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, white, white);
  border-radius: 1rem;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.1019607843);
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  color: inherit;
  min-width: 325px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 1.75rem 1.25rem;
}
.city-item:before {
  content: none;
}
.city-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #0099C9, #38B6AB);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.city-item:hover {
  text-decoration: none;
}
.city-item:hover .term-name::after {
  background-color: white;
}
.city-item.is-hover {
  color: white;
}
.city-item.is-hover::after {
  opacity: 1;
}
.city-item.is-hover .term-name {
  color: white;
}
.city-item:nth-child(even) {
  margin-left: auto;
}
.city-item:nth-child(odd) {
  margin-right: auto;
}
.city-item:last-of-type::before {
  background: none;
}
.city-item .term-name {
  font-weight: bold;
  color: #0099C9;
  transition: color 0.2s ease-in-out;
}
.city-item .term-name::after {
  margin-left: auto;
}
.city-item p {
  margin-bottom: 0.25rem;
}
.city-item > * {
  position: relative;
  z-index: 2;
}