body {
  background: url('../../IMG/BckBG-4.png');
}

.Map-IMG {
  background: url('Map.jpg') no-repeat;
  display: block;
  margin: 0 auto;
  padding: 0 auto;
  align: center;
  border: 3px solid #1e94de;
  border-radius: 20px;
}

.dot {
  position: absolute;
  top: 380px;
  left: 405px;
  background: rgba(255, 255, 255, 1);
  box-shadow: 1px 0 2px 0 rgba(0, 0, 0, 0.5);
  height: 0;
  width: 0;
  padding: 4px;
  border-radius: 5000px;
}
.dot:before, .dot:after {
  position: absolute;
  content: " ";
  border-radius: inherit;
  height: 0px;
  width: 0px;
  box-shadow: 0 0 2px 1px #FFF;
  transform: translate(-50%, -50%);
  animation: pulseInner 3s infinite ease-out;
}
.dot:after {
  height: 7px;
  width: 7px;
  box-shadow: 0 0 4px 1px #FFF;
  animation: pulseOuter 3s infinite ease-out;
}

@keyframes pulseInner {
  0% {
    height: 0;
    width: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  95% {
    height: 125px;
    width: 125px;
    opacity: 0.25;
  }
  100% {
    opacity: 0;
  }
}
@keyframes pulseOuter {
  0% {
    height: 7px;
    width: 7px;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    height: 250px;
    width: 250px;
    opacity: 0.25;
  }
}