html {
  background: transparent;
  color: black;
  text-align: center;
  font-family: "Roboto", Helvetica, sans-serif;
}

body {
  max-width: 1200px;
  margin: 0px auto;
  padding: 0 0px;
  overflow-x: hidden;
      background: transparent;
   /* background-image: url(https://basmi.co/siacomex-2023/wp-content/uploads/2023/10/fondo.jpg);
    background-size: cover;*/
    padding: 5%;
}

.description {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(0, 0, 0, 0.7);
}

div, img, footer {
  position: relative;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  font-weight: 300;
}

h1 {
  font-size: 36pt;
}

h2 {
  font-size: 24pt;
}

h3 {
  font-size: 18pt;
}

h4 {
  font-size: 16pt;
}

h5 {
  font-size: 14pt;
}

h6 {
  font-size: 12pt;
}

p {
  font-size: 12pt;
  margin-bottom: 12pt;
}

strong {
  font-weight: 900;
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  color: black;
}

a {
  transition: color 0.15s ease-in-out;
  font-family: "Roboto Condensed", Helvetica, sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  color: #333333;
}
a:visited {
  color: #333333;
}
li.active a, a:hover, a:active {
  color: black;
}

.centered {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.centered-y {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.distribution-map {
  position: relative;
  width: 100%;
  padding: 0px;
  box-sizing: border-box;
  margin: 0 auto;
}
.distribution-map > img {
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}
.distribution-map .map-point {
  cursor: pointer;
  outline: none;
  z-index: 0;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 15px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=1000);
  opacity: 10;
  transform: translate(-50%, -50%);
  -moz-transition: opacity 0.15s ease-in-out 0.15s, width 0.15s ease-in-out 0.15s, height 0.15s ease-in-out 0.15s, z-index 0.15s ease-in-out 0.15s;
  -o-transition: opacity 0.15s ease-in-out 0.15s, width 0.15s ease-in-out 0.15s, height 0.15s ease-in-out 0.15s, z-index 0.15s ease-in-out 0.15s;
  -webkit-transition: opacity 0.15s ease-in-out, width 0.15s ease-in-out, height 0.15s ease-in-out, z-index 0.15s ease-in-out;
  -webkit-transition-delay: 0.15s, 0.15s, 0.15s, 0.15s;
  transition: opacity 0.15s ease-in-out 0.15s, width 0.15s ease-in-out 0.15s, height 0.15s ease-in-out 0.15s, z-index 0.15s ease-in-out 0.15s;
  background: rgba(255, 255, 255, 0.85);
  border: 3.75px solid black;
}
.distribution-map .map-point .content {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  transition: opacity 0.15s ease-in-out;
  width: 100%;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  overflow: overlay;
}
.distribution-map .map-point:active, .distribution-map .map-point:focus {
  margin: 0;
  padding: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  width: 400px;
  height: 200px;
  color: black;
  z-index: 1;
  transition: opacity 0.15s ease-in-out, width 0.15s ease-in-out, height 0.15s ease-in-out;
}
.distribution-map .map-point:active .content, .distribution-map .map-point:focus .content {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transition: opacity 0.15s ease-in-out 0.15s, height 0.15s ease-in-out, overflow 0.15s ease-in-out;
  -o-transition: opacity 0.15s ease-in-out 0.15s, height 0.15s ease-in-out, overflow 0.15s ease-in-out;
  -webkit-transition: opacity 0.15s ease-in-out, height 0.15s ease-in-out, overflow 0.15s ease-in-out;
  -webkit-transition-delay: 0.15s, 0s, 0s;
  transition: opacity 0.15s ease-in-out 0.15s, height 0.15s ease-in-out, overflow 0.15s ease-in-out;
  overflow: hidden;
}
.distribution-map .map-point:active .content a:hover, .distribution-map .map-point:active .content a:active, .distribution-map .map-point:focus .content a:hover, .distribution-map .map-point:focus .content a:active {
  color: black;
}


.map-point {
	background: black;
	border-radius: 50%;
	margin: 10px;
	height: 20px;
	width: 20px;
}


.map-point {
	background: black;
	border-radius: 50%;
	margin: 10px;
	height: 20px;
	width: 20px;

	box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
	transform: scale(1);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}



img.ima-mapa {
    width:60%!important;
    height:100%;
}


.bogota {
    top:43%;
    left:40%
}


.ipiales {
    
    top:63%;
    left:23%
}

.santa-marta {
    
    top:6%;
    left: 39.5%;
}


.cartagena {
    
    top: 11%;
    left: 33%;
}

.barranquilla {
    
    top:9%;
    left:35.5%;
}


.buenaventura {
    
    top: 51%;
    left:29%;
}

@media (max-width: 768px){



img.ima-mapa {
    width:100%!important;
    height:100%;
}


.ipiales {
    top: 61%;
    left: 2%;
}

.buenaventura {
    top: 49%;
    left: 11%;
}

.bogota {
    top: 41%;
    left: 32%;
}


.cartagena {
    top: 11%;
    left: 20%;
}

.barranquilla {
    top: 6%;
    left: 22.5%;
}


.santa-marta {
    top: 4%;
    left: 29.5%;
}


.map-point h2 {
    font-size: 20px!important;
}

.map-point p {
    font-size: 12px!important;
    margin-bottom: 0px!important;
}


.distribution-map .map-point .content {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    transition: opacity 0.15s ease-in-out;
    width: 60%!important;
    height: 100%;
    left: 50%;
    transform: translateX(-80%)!important;
    overflow: overlay;
}

}





























