.gmaps {
  border-radius: 10px;
  overflow: hidden;
}
.gmap-overlay {
  width: 100%;
  height: 650px;
  background-image: url("../../img/map-bg.jpg");
  position: relative;
}
.gmap-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(246, 246, 246, 0.6);
  backdrop-filter: blur(7px);
}
.gmap-overlay .gmap-modal {
  background-color: white;
  padding: 25px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 550px;
  z-index: 2;
}

.gmap-overlay #show-map {
  width: 100%;
}

@media screen and (max-width: 600px) {
  .gmap-overlay .gmap-modal {
    max-width: 90%;
  }

