.haiwode_map {
    position: relative;
  }
  
  .haiwode_map_content {
    width: 100%;
    aspect-ratio: 160/70;
    min-height: 300px;
  }
  
  .haiwode_map .haiwode_address {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 35px 20px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(15px);
  }
  .haiwode-address-container{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
  }
  
  .haiwode_map .haiwode_address b {
    font-family: var(--medium-font-family);
    font-size: var(--text-flag-size);
    font-weight: 500;
    line-height: 1.5;
    color: var(--title-text-color);
  }
  
  @media screen and (max-width: 992px) {
    .haiwode_map .haiwode_address {
      padding: 20px 15px;
    }
  
    .haiwode_address svg {
      width: 30px;
      height: 30px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .haiwode_map .haiwode_address {
      padding: 15px;
    }
  
    .haiwode_map .haiwode_address b {
      font-size: 12px;
    }
  }