
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
  font-size: 16px;
  font-family: 'Montserrat';
}
body{
  background-color: azure;
  width: 100%;
}

section{
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}
.container{
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.container img{
  height: 100%;
  width: 100%;
}
.all-tooltip{
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  
}

.tooltip-content{
  position: absolute;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 20px #00000020;
  padding: 5px;
  border-radius:8px;
  width: 60vw;
  max-width: 150px;
  opacity: 0;
  pointer-events: none;
  /* left: -50%; */
  z-index: 2;
}
.tooltip-content .arrow{
  position: absolute;
  width: 10px;
  height: 10px;
  border: 10px solid transparent;
  border-bottom-color: rgb(255, 255, 255);
  top: 0px;
  left: 50%;
  transform:translate(-50%, -100%) rotate(0deg);
}
.pin{
  position: absolute;
  content: '';
  top: 50%;
  left: 80%;
  height: 25px;
  width: 25px;
  background-color: rgb(219, 201, 36);
  border-radius: 50%;
  cursor: pointer;
}
.pin:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  animation: puls-effect 1s ease infinite;
}

.tooltip.active .tooltip-content{
  opacity: 1;
  pointer-events: all;
  display: block;
  font-family:Arial, Helvetica, sans-serif;
}

/* Custom Style for tooltip-1 */

.tooltip-1 .pin{
  top: 31%;
  left: 45%;
  height: 7px;
  width: 7px;
  background-color: rgb(233, 219, 24);
}


/* Custom Style for tooltip-2 */

.tooltip-2 .pin{
  top: 46%;
  left: 23%;
  height: 7px;
  width: 7px;
  background-color: rgb(233, 219, 24);
}


/* Custom Style for tooltip-3 */

.tooltip-3 .pin{
  top: 37%;
  left: 40%;
  height: 7px;
  width: 7px;
  background-color: rgb(233, 219, 24);
}

/* Custom Style for tooltip-4 */

.tooltip-4 .pin{
  top: 44%;
  left: 54%;
  height: 7px;
  width: 7px;
  background-color: rgb(233, 219, 24);
}


/* Puls Effect For Pins */

@keyframes puls-effect{
  0%{
    transform: scale(1);
    opacity: 1;
  }
  100%{
    transform: scale(3);
    opacity: 0;
  }
}

/* Media Query */

/* @media (max-width: 768px){
  .tooltip-1 .tooltip-content{
    flex-direction: column;
    max-width: 300px;
  }
  .tooltip-1 .tooltip-content .content,
  .tooltip-1 .tooltip-content .img{
    width: 80%;
  }
} */

.bottom-right {
  position: absolute;
  bottom: 8px;
  right: 16px;
  color: azure;
  font-size:8px;
}

.starttxt {
  position: absolute;
  bottom: 77%;
  right: 28%;
  color: azure;
  font-size:7px;
  font-family:Verdana, Geneva, Tahoma, sans-serif
}


/* .close {
  cursor: pointer;
  position: absolute;
 
  transform: translate(0%, -50%);
}

.close:hover {background: #bbb;} */

