/* HOUM MAP */
.map-container {
  position: relative;
  padding: 0;
  z-index: 4;
}

.map-container iframe {
  width: 100%;
  height: 550px;
}

.map-image-wrapper {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (min-width: 992px) {
  .map-image-wrapper {
    height: 45vh;
  }
}

.map-item {
  position: relative;
  z-index: 1;
  bottom: -50px;

  &::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 70px;
    width: 100%;
    background-color: white;
  }

  &::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0%;
    left: 0;
    height: 20px;
    width: 100%;
    background-color: #a7b2a0;
  }
}


/* CONTACT MAP */

.custom-houm-contact {
  margin: 0;
  padding: 0;
  background-color: #F9F7F2;
}

.custom-map-contact {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 0;
}

.custom-map-item-container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.custom-map-item-container iframe {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 700px;
  border: 0;
  margin: 0;
}


@media (max-width: 768px) {
  .custom-map-item-container iframe {
    height: 400px;
  }
}

.custom-map-item-container {
  margin-top: -70px;

  &::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 70px;
    width: 100%;
    background-color: white;
  }

  &::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0%;
    left: 0;
    height: 20px;
    width: 100%;
    background-color: #F9F7F2;
  }
}