h5 > span,
.icon2 > span {
  /* border: 1px solid ; */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px 15px;
  background: transparent;
  border-radius: 5px;
}
h5 > span i,
.icon2 > span i {
  color: #5f6265;
}

.contact-box {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map iframe {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  border: none;
}

.card {
  border: none !important;
}

.modal-list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(10, auto);
  gap: 0.5rem 2rem;
  list-style: none;
  margin: 0;
}

.not-niceselect li {
  color: #dee2e6;
  border-bottom: 1px solid #dee2e6;
  padding: 0.25rem;
  cursor: pointer;
  text-wrap: nowrap;
}
.not-niceselect li:hover {
  border-bottom: 1px solid rgb(32, 175, 103);
  transition: all 300ms ease-in;
}
.not-niceselect li:hover a {
  color: rgb(32, 175, 103) !important;
}

form label {
  color: rgb(28, 28, 28);
}

.link-grid {
  display: grid;
  width: auto;
}

@media (max-width: 768px) {
  .modal-list {
    grid-template-rows: repeat(8, auto);
  }
}