#map-section { padding-top: 0; background: rgb(13, 66, 105); background: linear-gradient(293deg, rgba(13, 66, 105, 1) 0%, rgba(18, 110, 132, 1) 55%, rgba(17, 105, 129, 1) 59%, rgba(21, 141, 151, 1) 100%); padding-bottom: 0.5rem; text-align: center; width: 100%; position: relative; }
.map-wrapper { position: relative; width: 90%; margin: 0 auto; line-height: 0; }
.map-wrapper img { width: 100%; height: auto; display: block; }
.marker-wrapper { position: absolute; transform: translate(-50%, -50%); }
.mapMarker { width: 14px; height: 14px; border-radius: 50%; background: rgba(255,255,255,0.15); cursor: pointer; transition: all 0.25s ease; z-index: 2; position: relative; }
.mapMarker::before { content: ''; position: absolute; width: 4px; height: 4px; background: rgba(255,255,255,0.6); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.mapMarker:hover { background: rgba(255,255,255,0.9); transform: scale(1.6); }
.mapMarker::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: rgba(255,255,255,0.6); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  60% { transform: scale(2.5); opacity: 0.2; }
  100% { transform: scale(3); opacity: 0; }
}
#mapButton { display: inline-block; background: #FFF; padding: 1rem; margin: 0rem auto 5rem auto; border: 1px solid rgba(13,66,105,1); transition: 0.25s; }
#mapButton:hover { background: rgba(178,190,66,1); }
#mapButton-img,
#mapButton-title { display: table-cell; vertical-align: middle; }
#mapButton-title { font-size: var(--p); font-weight: 900; text-transform: uppercase; padding-left: 0.5rem; }
@media (max-width: 991px) {
  #mapButton { margin: 0rem auto 3rem auto; }
}
