/* Ensure the map sits in normal flow between header & footer */
#map-section {
  padding: 2rem 0;
}

.map-wrapper {
  position: relative;
  width: 100%;
  max-width: 1250px; /* optional max width */
  margin: 0 auto;    /* center it */
}

/* container for the injected iframe */
#map-container {
  width: 100%;
  height: 500px; /* match the JS height */
}

.map-logo {
  position: absolute;
  bottom: 40px;      /* distance from the bottom of the map */
  left: 10px;        /* distance from the left of the map */
  width: 100px;      /* whatever size you need */
  z-index: 10;
  background: rgba(255,255,255,0.8);
  padding: 4px;
  border-radius: 3px;
  
  /* remove any top setting */
  top: auto;
}

/* “full map” link styling */
#firmsonmap_biglink {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #0066cc;
  text-decoration: none;
}
#firmsonmap_biglink:hover {
  text-decoration: underline;
}

.contact__info .list-wrap li .content .title {
    font-size: 18px;
    color: #0a2a50;
}

.contact__area {
    background-color: #fff;
    overflow: hidden;
}

.section-title p {
    margin-bottom: 0;
    margin-top: 20px;
    color: #0a2a50;
    font-size: 20px;
}

.contact__info .list-wrap li {
	margin-bottom: 20px;
}

.section-title .title {
    font-size: 27px;
    margin-bottom: 20px !important;
}


.map-container {
  position: relative;
  display: inline-block;
}

.map-icon-link {
  position: relative;
  display: inline-block;
}

.map-icon-img {
  width: 42px;
  height: 42px;
}

.map-tooltip {
  position: absolute;
  top: 50%;
  left: 110%;
  transform: translateY(-50%);
  background-color: #ffffff;
  color: #000;
  padding: 6px 10px;
  border-radius: 3px;
  white-space: nowrap;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 100;
   margin-top: -124px;
}
/* LEFT ARROW */
.map-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px; /* Arrow's position from left */
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent #ffffff transparent transparent;
}

/* Show tooltip on hover */
.map-icon-link:hover .map-tooltip {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991.98px) {

.map-tooltip {
  position: absolute;
  top: 50%;
  left: 76px;
  }
  .map-tooltip::after {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
  }

.map-icon-img {
    width: 42px;
    height: 42px;
    display: block;
    margin-left: 85px;
    margin-top: -96px;
     z-index: 1;
}

    .btn { 
    display: block;
    margin: auto;
    margin-top: 30px;
   }
   
   .contact-form .form-check {
    display: block;
    margin-top: 20px;
    padding-left: 30px;
	}
}