section.map {
  padding: 32px 0 0;
  background: #f1fefd;
}
section.map .wrapper .details {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: auto;
  gap: 16px;
  padding: 0 16px;
  margin-bottom: 32px;
}
section.map .wrapper .details .detail {
  background: linear-gradient(180deg, #007F80 0%, #076969 100%);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  flex-basis: 100%;
  align-self: stretch;
}
section.map .wrapper .details .detail h3 {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 2.1875rem;
  color: #FFF;
  line-height: 1.3;
}
section.map .wrapper .details .detail P {
  color: #FFF;
  margin-bottom: 8px;
}
section.map .wrapper .details .detail P:last-child {
  margin-bottom: 0;
}
section.map .wrapper .details .detail .icons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: auto;
  gap: 8px;
}
section.map .wrapper .details .detail .icons a svg, section.map .wrapper .details .detail .icons a img {
  width: 24px;
  height: 24px;
}
section.map .wrapper .map-embed {
  height: 250px;
}
section.map .wrapper .map-embed iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (min-width: 601px) {
  section.map .wrapper .map-embed {
    height: 360px;
  }
}
@media only screen and (min-width: 992px) {
  section.map .wrapper .details {
    position: relative;
    flex-direction: row;
    justify-content: space-between;
    gap: 36px;
    z-index: 1;
  }
  section.map .wrapper .details .detail {
    flex-basis: 33%;
    text-align: left;
  }
  section.map .wrapper .details .detail:first-child p {
    white-space: pre;
  }
  section.map .wrapper .details .detail .icons {
    justify-content: flex-start;
  }
  section.map .wrapper .map-embed {
    height: 540px;
  }
}
