main {
  width: 100%;
  padding: 10px;
  text-align: center;
}
main > h1 {
  margin: 0 0 10px 0;
  color: var(--green);
}
main > .map {
  width: 100%;
  height: auto;
}
.innerMap {
  border-radius: 5px;
  width: 100%;
  background: url(../lib/img/map.png) no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 13/16;
  position: relative;
}
.innerMap > .innerPart {
  width: 350px;
  border-radius: 5px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  padding: 5px;
  color: white;
  font-weight: 800;
}
.habarlashPartsFooter{
    display: flex;
    justify-content: start;
    align-items: start;
}
@media screen and (min-width: 710px) {
  main > .map {
    padding: 20px;
  }
  .innerMap{
    aspect-ratio: 16/16;
  }
  .innerMap > .innerPart {
    width: 450px;
    bottom: 20px;
  }
  .habarlashPartsFooter>p{
      text-align: start;
      font-size: 16px;
    }
    .habarlashPartsFooter>.label{
      width: 20%;
      text-align: center;
  }
}
@media screen and (min-width: 900px) {
  .map > .innerMap {
    aspect-ratio: 16/7;
  }
}
