:root {
  --base-blue: #1cabe2;
  --base-blue-dark: #0e95ca;
  --bg: #fff;
  --marker-color: #fff;
}

*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Poppins,Roboto,Helvetica Neue,Segoe UI,Arial,Geneva;
  color: #333;
  background-color: var(--bg);
}

button {
  cursor: pointer;
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -webkit-appearance: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.main {
  display: flex;
  justify-content: center;
}

.mx-auto {
  margin: 0 auto;
}

.container {
  margin-top: 0.25rem;
  transition: max-width .5s;
  max-width: 600px;
}

.map-container {
  width: 100%;
  height: 95vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.map {
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.map > img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.markers-container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.marker {
  position: absolute;
  z-index: 2;
  width: 58px;
  height: 58px;
  padding: 6px;
  border-radius: 50%;
  text-align: center;
  text-shadow: 1px 1px 2px #000;
  color: var(--marker-color);
  font-size: 9px;
  line-height: .8rem;
  transition: margin-top .2s;
}

@media (min-width: 600px) {
  .marker {
    line-height: .9rem;
    font-size: 11px;
    width: 72px;
    min-height: 72px;
  }
}

.marker:hover {
  margin-top: -6px;
}

.slider {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: start;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  z-index: 0;
  transition: opacity .3s, visibility .3s;
}

.slider-see-more {
  width: 100%;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 1rem 1rem 2rem;
}

.slider-see-more a {
  background-color: var(--base-blue);
  color: white;
  padding: .5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  min-width: 160px;
  display: inline-block;
  transition: background .5s;
}

.slider-see-more a:hover {
  background-color: var(--base-blue-dark);
}

.slider-active {
  z-index: 50;
  visibility: visible;
  opacity: 1;
}

.slider-backdrop {
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .70);
  overflow: hidden;
}

.slider-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  padding: 0 10px;
  z-index: 30;
  border-radius: 50px;
  transition: background-color .3s;
  background-color: rgba(255, 255, 255, .8);
}

.glider-contain {
  z-index: 20;
  border-radius: 0.5rem;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .glider .glider-track {
    align-items: start;
    padding-top: 5%
  }
}

.glider {
  overflow-x: hidden;
}

.glider-contain .glider-prev, .glider-contain .glider-next {
  font-size: 14px;
  font-weight: bold;
  background-color: rgba(255,255,255,.8);
  color: #666;
  padding: 6px;
  border-radius: 50%;
  opacity: 1;
  cursor: pointer;
  bottom: 100px;
  position: fixed;
  top: auto;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid #ddd;
}

.glider-contain .glider-prev.disabled, .glider-contain .glider-next.disabled {
  color: white;
  border: 2px solid #666;
  background-color: #666;
  opacity: inherit;
  opacity: .5;
}

.glider-contain .glider-prev {
  margin-left: -26px;
}

.glider-contain .glider-next {
  margin-left: 26px;
}


  .glider-contain .glider-prev, .glider-contain .glider-next {
    align-items: center;
    height: auto;
    box-shadow: 1px 1px 2px #666;
    left: auto;
    bottom: auto;
    top: 44%;
    transform: none;
    position: absolute;
  }
  .glider-contain .glider-prev {
    left: 40px;
  }
  .glider-contain .glider-next {
    right: 16px;
  }


.glider-slide figure {
  position: relative;
}

.glider-slide figure img {
  width: 100%;
  max-height: 60vh;
  display: block;
  object-fit: contain;
}

.glider-slide figcaption {
  padding: 1rem;
  background-color: rgba(255, 255, 255, .8);
  font-weight: bold;
  font-size: .875rem;
  line-height: 1rem;
  position: relative;
}

@media (min-width: 600px) {
  .glider-slide figure img {
    max-height: 80vh;
  }

  .glider-slide figcaption {
    bottom: 0;
  }
}