.map-container {
  padding: 20px 0.8rem;
  position: relative;
  display: inline-block;
	    margin-top: 40px;
}
.map-container img {
  width: 100%;
}
.map-container .point {
  cursor: pointer;
  position: absolute;
  width: 1rem;
    height: 1rem;
    background-color: #fe6f00;
  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 .guj {
   top: 51%;
    left: 10%;
}
.map-container .up
{
    top: 37%;
    left: 45%;
}
.map-container .bihar
       {
    top: 44%;
    left: 63%;
}
.map-container .orissa
 {
    top: 53%;
    left: 58%;
}
.map-container .mp
 {
    top: 46%;
    left: 46%;
}
.map-container .karnataka
 {
        top: 74%;
    left: 25%;
}
.map-container .rajas
 {
    top: 44%;
    left: 20%
}
.map-container .maha
 {
    top: 54%;
    left: 24%;
}
.map-container .Chile {
    top: 77%;
    left: 23%;
}
.map-container .Jammu {
    top: 15%;
    left: 28%;
}
.map-container .Delhi {
   top: 30%;
    left: 31%;
}
.map-container .Tamil {
    top: 86%;
    left: 37%;
}
.map-container .Kerala {
   top: 86%;
    left: 29%;
}

@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);
  }
}