/*
Copyright inpleworks, Co.
XET CSS v2.0.4 2024-08-02 for supported in all modern browsers
By xetemplate(https://xetemplate.com)
*/
.xet-page > section + section {
  margin-top: 2rem;
}
.xet-page > section .grid-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  row-gap: 2rem;
}
.xet-page > section .grid-container > div > div:last-child {
  display: flex;
  align-items: center;
  gap: 4px;
}
.xet-page > section .grid-container .h4 {
  margin-bottom: 0.5rem;
  color: var(--xet-theme-text-strong-color);
}
.xet-page > section .grid-container .text-red {
  color: red;
}
.xet-page #map {
  height: 400px;
  border: 1px solid var(--xet-theme-border-color);
}

@media (min-width: 992px) {
  .xet-page > section .grid-container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 3rem;
  }
  .xet-page > section .grid-container .h4 {
    margin-bottom: 1rem;
  }
}