.map-container {
  padding: 0;
  position: relative;
  display: inline-block;
}
.map-container img {
  width: 100%;
}
.map-container .point {
  cursor: pointer;
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #00acc1;
  border-radius: 50%;
  transition: all 0.3s ease;
  will-change: transform, box-shadow;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 rgba(0, 172, 193, 0.4);
  animation: pulse 3s infinite;
}
.map-container .point:hover {
  animation: none;
  transform: translate(-50%, -50%) scale3D(1.35, 1.35, 1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.map-container .india {
  top: 46%;
  left: 69%;
}

.map-container .uae {
  top: 43%;
  left: 61%;
}

.map-container .malasiya {
  top: 57%;
  left: 81%;
}

.map-container .usa {
  top: 32%;
  left: 14%;
}

.map-container .italy {
  top: 32%;
  left: 49%;
}

.map-container .spain {
  top: 33%;
  left: 43%;
}
.map-container .china {
  top: 40%;
  left: 72%;
}

.map-container .qatar {
  top: 41%;
  left: 59%;
}

.map-container .ksa {
  top: 45%;
  left: 59%;
}

.map-container .bahrain {
  top: 38%;
  left: 59%;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 172, 193, 0.5);
  }
  70% {
    box-shadow: 0 0 0 25px rgba(0, 172, 193, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 172, 193, 0);
  }
}
