.map-container {
  display: flex;
  padding: 55px 0;
  filter: saturate(0);
}

.ds-google-map {
  flex: 1;
  position: relative;
}

.ds-google-map-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.ds-google-map iframe {
  width: 100%;
  height: 100%;
}

.ds-manual-map {
  height: 100%;
  width: auto;
}

.location-details {
  display: flex;
  justify-content: space-between;
}

.location-detail {
  text-align: left;
}

.location-sub-details {
  margin-bottom: 30px;
}

.location-detail-title {
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .map-container {
    display: block;
  }

  .ds-google-map {
    margin-bottom: 15px;
  }

  .ds-google-map-wrapper {
    position: relative;
  }

  .ds-google-map iframe {
    width: 100%;
    height: 400px;
  }

  .ds-manual-map {
    height: auto;
    width: 100%;
  }

  .ds-manual-map img {
    height: auto;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .location-details {
    display: block;
  }

  .location-detail {
    margin-bottom: 25px; 
  }

  .location-detail-title {
    margin-bottom: 10px;
  }
}