.map-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
}

.map-point {
    position: absolute;
    transform: translate(-50%, -50%);
}

.map-icon {
    border-radius: 50%;
    display: block;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.map-icon:hover svg rect{
    fill: #000;
    
}
.map-icon:hover {
    transform: scale(1.2);

}

.map-tooltip {
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: rgba(247,245,245,0.8);
    color: #222431;
    font-family: 'Poppins';
    font-size: 13px;
    border: 1px solid #F04E30;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.map-point:hover .map-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.map-container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.maps-sec-page .grid {
    padding: 50px 45px;
    box-sizing: border-box;
}
.sub-text-maps {
font-family: 'Poppins';
font-style: normal;
font-weight: 400;
font-size: 15px;
line-height: 150%;
flex: none;
order: 0;
flex-grow: 0;
}

.maps-setting-mod .grid{
    border-left: 1px solid #e0e0e0;
    border-right:  1px solid #e0e0e0;
        box-sizing: border-box;
    border-bottom: 1px solid #e0e0e0;
}
.maps-sec-page .grid {
      border-left: 1px solid #e0e0e0;
    border-right:  1px solid #e0e0e0; 
}

@media(max-width:901px){
    .maps-sec-page .grid{
    padding: 16px;
}
.maps-sec-page{
    margin:0 20px;
    border-top: 1px solid #e0e0e0;
}
.map-container{
    padding: 0px;
}
.map-container  {
    width: 100%;
    box-sizing: border-box;
}
.maps-setting-mod{
    margin: 0 20px;
}
.map-icon svg {
    width: 5px; height: 5px;
}
}