#map-yak {
  background: #00494b;
  padding: 50px 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#map-yak h3 {
	text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 48px;
    border-bottom: solid 6px #2ddb34;
    padding-bottom: 10px;
    margin-bottom: 50px;
    max-width: fit-content;
}
#map-yak .wrapper {
	border: solid 6px #2ddb34;
    padding: 15px;
    background: white;
}
#map-yak .flex {
  justify-content: center;
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
}
#map-yak .contents {
  max-width: 560px;
  margin-left: 15px;
}
#map-yak p {
  font-weight: 500;
}
#map-yak h4 {
  font-size: 24px;
  margin-top: 0px;
  text-transform: uppercase;
  font-weight: 700;
}
#map-yak .flex-img {
  display: flex;
  flex-wrap: wrap;
}
#map-yak .flex-img img {
  z-index: 1;
  max-width: 30%;
  position: relative;
  margin: 5px;
  transform: scale(1);
  transition: .5s;
  max-height: 135px;
}
#map-yak .flex-img img:hover {
  z-index: 100;
  transform: scale(2.5);
  transition: .5s;
}