/* Responsive Google Maps Container */
.location-container {
  position: relative;
  width: 100%;
  max-width: 1200px; 
  margin: 0 auto; /* Center the container */
  padding: 0 20px; /* Add some padding on sides */
  box-sizing: border-box;
}

/* Responsive iframe wrapper technique */
.location-container::before {
  content: "";
  display: block;
  padding-bottom: 40%; /* 4:3 Aspect Ratio (adjust as needed) */
}

.location-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px; /* Optional: rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Optional: subtle shadow */
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
  .location-container {
    max-width: 100%;
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .location-container {
    padding: 0 10px;
  }
  
  .location-container::before {
    padding-bottom: 60%; /* Slightly different aspect ratio for mobile */
  }
}

@media (max-width: 480px) {
  .location-container {
    padding: 0 5px;
  }
  
  .location-container::before {
    padding-bottom: 65%; /* Adjust height for very small screens */
  }
}

.telephone-container-location > a {
    font-size: 24px;
    font-weight: 400;
}

.gmail-container   > a {
      font-size: 24px;
    font-weight: 400;
}

.google-address-container > a{
      font-size: 24px;
    font-weight: 400;
}

