*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
a{
	color: #000;
	text-decoration: none;
}
img{
    max-width: 100%;
    display:block;
}
body{
font-family: Inter, sans-serif;
font-size: 16px;
line-height: 26px;
font-weight: 400;
color: #000;
background: #fff;
margin: 0;
overflow-x: hidden;
}
.lpd-hotspots-1-container{
max-width: 1400px;
padding: 0 20px;
margin: 0 auto;
}

.lpd-hotspots-1-hidden-desktop{
	display: none;
}

.lpd-hotspots-1-hotspot{
	padding: 120px 0;
}
.lpd-hotspots-1-heading{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}
.lpd-hotspots-1-heading-title-col{
	width: 60%;
}
.lpd-hotspots-1-heading-title-col h2{
	font-size: 52px;
	line-height: 130%;
	font-weight: 700;
}
.lpd-hotspots-1-btn-primary{
	display: inline-flex;
	padding: 18px 80px;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
	font-weight: 700;
	background: #000;
	border-radius: 100px;

}
.lpd-hotspots-1-hotspot-wrap{
	position: relative;
	margin: 60px 0 0;
	overflow: hidden;
}
.hotspot-img{
	border-radius: 20px;
}

.lpd-hotspots-1-hotspot-point{
	position: absolute;
	transition: all .1s linear .1s;
}
.lpd-hotspots-1-hotspot-point.lpd-hotspots-1-p1 {
    left: 30%;
    top: 66%;
}
.lpd-hotspots-1-hotspot-point.lpd-hotspots-1-p2{
	left: 43%;
    top: 55%;
}
.lpd-hotspots-1-hotspot-point.lpd-hotspots-1-p3{
	right: 27%;
    top: 48%;
}
.lpd-hotspots-1-hotspot-point.lpd-hotspots-1-p4{
	right: 12%;
    top: 55%;
}
.lpd-hotspots-1-hotspot-point-plus{
	display: flex;
	width: 25px;
	height: 25px;
	justify-content: center;
	align-items: center;
	border-radius: 100px;
	background: rgba(255, 255, 255, 0.80);
	color: #000;
	cursor: pointer;
	position: relative;
}
.lpd-hotspots-1-pulse {
  animation: pulse-animation 2s infinite;
}
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 255.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
}

.lpd-hotspots-1-hotspot-popup{
	position: absolute;
	min-width: 240px;
	background: #fff;
	border-radius: 12px;
	padding: 15px;
	display: none;
	z-index: 10;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	left: 50%;
    transform: translateX(-50%) translateY(-110%);
}
.lpd-hotspots-1-hotspot-popup img{
	height: 70px;
}
.lpd-hotspots-1-hotspot-popup-info{
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.lpd-hotspots-1-hotspot-popup-title{
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.lpd-hotspots-1-hotspot-popup-title h3,
.lpd-hotspots-1-hotspot-popup-price{
	font-size: 13px;
	line-height: 130%;
	font-weight: 600;
}
.lpd-hotspots-1-hotspot-popup-title p{
	font-size: 12px;
	line-height: 130%;
}
.lpd-hotspots-1-hotspot-popup.active{
	align-items: center;
	gap: 20px;
	display: flex;
	z-index: 5;
	position: absolute;

}
.lpd-hotspots-1-hotspot-point.active .lpd-hotspots-1-hotspot-point-plus{
	background: #000;
	color: #fff;
}
.lpd-hotspots-1-hotspot-point.active .lpd-hotspots-1-hotspot-popup {
    display: flex;
}

@media (max-width: 1280px){

}

@media (max-width: 992px){
.lpd-hotspots-1-hidden-desktop{
	display: block;
}
.lpd-hotspots-1-hidden-mobile{
	display: none;
}
}

@media (max-width: 768px){
.lpd-hotspots-1-heading{
	flex-direction: column;
	text-align: center;
}
.lpd-hotspots-1-heading-title-col,
.lpd-hotspots-1-action{
	width: 100%;
}
.lpd-hotspots-1-btn-primary{
	display: flex;
	width: 100%;
}
    /* Reset the base popup styles for mobile */
    .lpd-hotspots-1-hotspot-popup {
        min-width: 240px;
        width: 240px;
        left: 50%;
        transform: translateX(-50%) translateY(-110%);
    }
.lpd-hotspots-1-hotspot-point.lpd-hotspots-1-p3 .lpd-hotspots-1-hotspot-popup.active{
	left: -40px;
}
.lpd-hotspots-1-hotspot-point.lpd-hotspots-1-p4 .lpd-hotspots-1-hotspot-popup.active{
	left: -100px;
}
    /* Position the active popup */
    .lpd-hotspots-1-hotspot-popup.active {
        position: absolute;
        left: 50%;
        transform: translateX(-50%) translateY(-110%);
    }
    
}

@media (max-width: 479px){
.lpd-hotspots-1-hotspot{
	padding: 50px 0;
}
.lpd-hotspots-1-heading-title-col h2{
	font-size: 32px;
}
.lpd-hotspots-1-hotspot-wrap{
	margin: 40px 0 0;
}

}