#global-presence {
    padding: 80px 0px
}

#global-presence .container p {
    padding: 0px 200px;
    margin-top: 20px
}

#global-presence .container .clickBt {
    position: relative;
    z-index: 1;
    margin: auto;
    width: fit-content;
    margin-top: 30px;
    margin-bottom: 20px;
}

#global-presence .map_Container {
    width: 75%;
    margin: auto;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

/* 
#global-presence .map_Container::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 400px;
    background: linear-gradient(180deg, #FFFFFF 42.73%, rgba(255, 255, 255, 0) 73.81%);
    pointer-events: none;
    opacity: .8;
    z-index: 1
} */

#global-presence .mapWrap {
    position: relative;
    width: 100%;
    height: 100vh
}

#global-presence #map {
    width: 100%;
    height: 100%
}

#global-presence .marker {
    width: 22px;
    height: 22px;
    background: #e63946;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    cursor: pointer
}

#global-presence .marker::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #fff;
    position: absolute;
    top: 6px;
    left: 6px;
    border-radius: 50%
}

#global-presence .infoPanel {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    width: 450px;
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .15);
    display: none
}

#global-presence .infoPanel.active {
    display: block
}

#global-presence .infoPanel h2 {
    font-size: 28px;
    margin-bottom: 16px;
    display: none;
}

#global-presence .infoBlock {
    margin-bottom: 20px
}

#global-presence .infoBlock h4 {
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 600
}

#global-presence .infoBlock p,
#global-presence .infoBlock a {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
    display: block
}

#global-presence .infoBlock a {
    display: inline-block;
}

#global-presence .closeBtn {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: rgba(0, 0, 0, 0);
    font-size: 22px;
    cursor: pointer
}

.mapboxgl-ctrl-bottom-left {
    display: none !important
}

.map-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%, -100%);
    cursor: pointer;
    font-family: "Poppins", serif !important;
}

.marker-label {
    font-size: 11px;
    color: #000;
    white-space: nowrap;
    margin-bottom: 4px;
    font-weight: 500;
}

.marker-dot {
    width: 10px;
    height: 10px;
    background: #E21E25;
    border-radius: 50%;
}



/* iPad Air — landscape only */
@media only screen and (min-device-width: 1180px) and (max-device-width: 1180px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {

    #global-presence .mapWrap {
        position: relative;
        width: 100%;
        height: 500px;
    }

}

/* iPad Air — Portrait only */
@media only screen and (min-device-width: 820px) and (max-device-width: 820px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {

    #global-presence .mapWrap {
        position: relative;
        width: 100%;
        height: 500px;
    }

}


@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {

    #global-presence .mapWrap {
        position: relative;
        width: 100%;
        height: 500px;
    }

}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {

    #global-presence .mapWrap {
        position: relative;
        width: 100%;
        height: 400px;
    }

}


/* .marker-label{
  font-size:11px;
  color:#000;
  white-space:nowrap;
  margin-top:4px;
  font-weight:500;
  display:none;
}

.map-marker.show-label .marker-label{
  display:block;
} */

@media(min-width: 320px)and (max-width: 767px) {
    #global-presence .container p {
        padding: 0px 10px;
        margin-top: 20px
    }

    #global-presence .container .clickBt img {
        width: 100%
    }

    #global-presence .mapWrap {
        position: relative;
        width: 100%;
        height: 70vh
    }

    #global-presence .infoPanel {
        width: 98%;
        right: 3px
    }

    #global-presence .map_Container::before {
        height: 140px
    }

    .location-tip {
        font-size: 11px !important;
    }

    #global-presence .map_Container {
        width: 100%;
    }

}

@media(hover: none) {
    .tooltip {
        display: none !important
    }

    #global-presence {
        padding: 40px 0px
    }
}




.location-tip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e9e9e9;
    color: #000;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;

}

/* Red dot */
.location-tip .dot {
    width: 12px;
    height: 12px;
    background: #e63946;
    border-radius: 50%;
    flex-shrink: 0;
}