#map {
  width: 100%;
  max-width: 1200px;
  height: 80vh;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (min-width: 1200px) {
  #map {
    height: 400px;
  }
}
@media (min-width: 1400px) {
  #map {
    height: 80vh;
  }
}
#map .map-wrapper {
  width: 100%;
  height: 80vh;
  position: relative;
  overflow: auto;
}
@media (min-width: 1200px) {
  #map .map-wrapper {
    height: 400px;
    overflow: hidden;
  }
}
@media (min-width: 1400px) {
  #map .map-wrapper {
    height: 80vh;
  }
}
#map img {
  width: 1200px;
  max-width: none;
  display: block;
  z-index: -1;
}
@media (min-width: 1280px) {
  #map img {
    position: absolute;
  }
}
#map .map-links {
  position: absolute;
  width: 1200px;
  height: 100%;
  z-index: 1;
}
@media (min-width: 1280px) {
  #map .map-links {
    height: 400px;
  }
}
#map .map-links .tour {
  width: 90px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 0;
}
#map .map-links .tour a {
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.5);
  display: block;
  border-radius: 100%;
  margin: 0 auto;
  animation-name: pulse;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  transform-origin: center;
}

@keyframes pulse {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}/*# sourceMappingURL=map.css.map */