@import url(/assets/css/header.css);
@import url(/assets/css/footer.css);
.map-container {
  padding: 40px 140px 100px 140px;
}
.map {
  width: 100%;
  height: 406px;
  border: 8px solid #f1f1f1;
  border-radius: 16px;
}
.map iframe {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: none;
  object-fit: cover;
}
.map-contact {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  margin-top: 30px;
}
.map-contact li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}
.map-contact li p {
  color: #5f6980;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}
.map-contact li span {
  color: #111111;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
}
.map-contact li a {
  color: #2563eb;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  border-bottom: 2px solid #2563eb;
}
.map-container .map-title h2 {
  color: #282828;
  font-size: 42px;
  font-weight: 600;
  line-height: 54px;
  text-align: center;
  margin: 15px 0 60px 0;
}
@media (max-width: 1200px) {
  .map-container {
    padding: 48px 24px;
  }
}
@media (max-width: 576px) {
  .map-container .map-title h2 {
    font-size: 36px;
    line-height: 42px;
    margin: 10px 0 30px 0;
  }
  .map-contact li span {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
  }
}
