.map-container {
    /*padding: 3.2rem 0.8rem;*/
    position: relative;
    display: inline-block;
  }
  
  .map-container img {
    width: 100%;
  }
  
  .point {
    cursor: pointer;
    position: absolute;
    width: .5rem;
    height: .5rem;
    background-color: #102649;
    border-radius: 50%;
    transition: all 0.3s ease;
    will-change: transform, box-shadow;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 rgba(62, 74, 0, 0.4);
    animation: pulse 3s infinite;
  }
  
  .tippy-popper {
    font-weight: bold;
    font-size: 1.5rem;
  }
  
  .map-container .egypt {
    top: 24%;
    left: 55%;
  }
  
  .map-container .saudi-arabia {
    top: 25%;
    left: 63%;
  }
  
  .map-container .emirates {
    top: 28%;
    left: 69%;
  }
  
  .map-container .bahrain {
    top: 24%;
    left: 67%;
  }
  .map-container .oman {
    top: 33%;
    left: 69%;
  }
  
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 36, 74, 0.5);
    }
    70% {
      box-shadow: 0 0 0 25px rgba(0, 36, 74, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(0, 36, 74, 0);
    }
  }