.section-title {
  font-family: 'Catamaran', sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 38px;
  line-height: 48px;
  color: #0A344E;
}

.section-title.white {
  color: #fff;
}

.section-map {
  padding-top: 60px;
  position: relative;
}

.section-map .section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-map .map-wrapper {
  background: #f7f7f7;
  /*border: 1px solid rgba(196, 196, 196, 0.3);*/
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.section-map .map-wrapper.full-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  border-radius: 0;
}

.section-map .map-wrapper img {
  user-select: none;

}

.section-map .map-wrapper .map-actions {
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
}

.section-map .map-wrapper .map-actions.map-actions-full-screen {
  position: absolute;
  top: 11px;
  left: 11px;
}

.section-map .map-wrapper .map-actions-zoom-wrapper {
  display: flex;
  width: 112px;
  justify-content: space-between;
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.section-map .map-locations-list {
  display: flex;
  flex-direction: column;
  height: 260px;
  flex-wrap: wrap;
  align-items: center;
  list-style: url('../images/icons/map/pin.svg');
  margin-top: 48px;
  /*align-content: center;*/
}

.section-map .map-locations-list > li {
  color: #A4A0A0;
  font-size: 15px;
  line-height: 23px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  height: 26px;
  min-width: 180px;
  margin: 0 40px;
}

@media (max-width: 800px) {
    .section-map .map-locations-list { 
        width: 105%;
        overflow: auto;
        padding-left: 20px;
    }
    .section-map .map-locations-list > li {
        margin: 0;
    }
}