/* Hero Section */
.hero-section {
  height: 100vh;
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3)),
    url("../img/background10.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 2;
  max-width: 100%;
  padding: 0 20px;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}

.info-card-map {
  display: flex !important;
  flex-wrap: nowrap !important;
  width: 100%;
}

.information {
  color: black;
}

.info-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.21);
  max-width: 350px;
}
.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.info-icon {
  background: #b3b3b4;
  color: #000000;
  font-size: 18px;
  padding: 12px;
  border-radius: 10%;
  margin-right: 15px;
}
.info-text h6 {
  margin: 0;
  font-weight: 600;
  font-size: 15px;
}
.info-text p {
  margin: 0;
  font-size: 14px;
  color: Black;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-icons a:hover {
  background: #ffffff;
  color: #000000;
}

.info-card-map {
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 7% !important;
  gap: 7%;
}
@media (max-width: 768px) {
  .info-card {
    margin-top: 20%;
    max-width: 100% !important;
    margin-bottom: 10%;
  }
  .info-card-map {
    flex-wrap: wrap !important;
  }
  .flex-fill {
    margin-bottom: 10%;
  }
}

@media (max-width: 576px) {
  .info-card {
    margin-top: 20%;
    max-width: 100% !important;
    margin-bottom: 10%;
  }
  .info-card-map {
    flex-wrap: wrap !important;
  }
  .flex-fill {
    margin-bottom: 10%;
  }
}
