
 .map-container {
	 padding: 3.2rem 0.8rem;
	 position: relative;
	 display: inline-block;
}
 .map-container img {
	 width: 100%;
}
 .map-container .point {
	 cursor: pointer;
	 position: absolute;
	 width: 0.6rem;
	 height: 0.6rem;
	 background-color: #ff1e00;
	 border-radius: 50%;
	 transition: all 0.3s ease;
	 will-change: transform, box-shadow;
	 transform: translate(-50%, -50%);
	 box-shadow: 0 0 0 rgba(255, 55, 9, 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 .venezuela {
    top: 39%;
    left: 43%;
}
 .map-container .bolivia {
    top: 54%;
    left: 57%;
}
 .map-container .paraguay {
    top: 57%;
    left: 63%;
}
 .map-container .peru {
    top: 50%;
    left: 49%;
}
 .map-container .colombia {
    top: 35%;
    left: 49%;
}
 .map-container .crica {
	 top: 29%;
	 left: 37%;
}
 .map-container .mexico {
	 top: 16%;
	 left: 20%;
}
 .map-container .panama {
    top: 31%;
    left: 41%;
}
 .map-container .prico {
	 top: 22%;
	 left: 56%;
}
 .map-container .rdonminicana {
	 top: 21%;
	 left: 51%;
}

 .map-container .uruguay {
    top: 68%;
    left: 67%;
}
 .map-container .aruba {
    top: 26%;
    left: 54%;
}
.map-container .curazao {
    top: 27%;
    left: 53%;
}
.map-container .ecuador {
    top: 39%;
    left: 43%;
}
 .map-container .conce {
    top: 73%;
    left: 49%;
}
.map-container .santiago {
    top: 70%;
    left: 49%;
}
.map-container .antofagasta {
    top: 58%;
    left: 52%;
}
 @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);
	}
}
 