.contenedor {
  left: 50%;
  max-width: 100%;
  position: absolute;
  top: 80%;
  transform: translate(-50%, -50%);
  width: 90%;
  z-index: -9;
}
.map {
  margin-top: 12em;
  position: relative;
}
.map-markers {
  list-style: none;
  margin: 0;
  padding: 0;
}
.map-marker {
  position: absolute;
}
.map-marker:after {
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-name: pop;
  border-radius: 50%;
  border: 1px solid #CF0C1E;
  content: '';
  height: 2em;
  left: 0;
  margin: -.5em 0 0 -.5em;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 2em;
}
.map-marker:hover .map-marker-info {
  display: block;
}
.map-marker a {
  background-color: #CF0C1E;
  border-radius: 50%;
  height: 1em;
  display: block;
  text-indent: -9999px;
  width: 1em;
}
.map-marker-mexico {
  left: 14%;
  top: 40%;
}

.map-marker-south-east-asian {
  left: 70%;
  top: 41%;
}

.map-marker-south-asian {
  left: 62%;
  top: 40%;
}

.map-marker-east-asian {
  left: 70%;
  top: 30%;
}

.map-marker-middle-eastern {
  left: 55%;
  top: 29%;
}

.map-marker-eastern-european {
  left: 51%;
  top: 15%;
}

.map-marker-western-european {
  left: 42%;
  top: 22%;
}

.map-marker-caribbean {
  left: 21%;
  top: 41%;
}

.map-marker-north-america {
  left: 15%;
  top: 28%;
}

.map-marker-central-america {
  left: 19%;
  top: 50%;
}

.map-marker-south-america {
  left: 26%;
  top: 62%;
}

.map-marker-info {
  display: none;
  left: 50%;
  position: absolute;
  bottom: 0;
  transform: translate(-50%, -2em);
  width: 30em;
  z-index: 999;
}
.map-marker-info header {
  background-color: #CF0C1E;
  border-radius: .5em .5em 0 0;
  color: #fff;
  padding: .5em 1em;
  margin-bottom: -1px;
}
.map-marker-info main {
  background-color: #fff;
  border-radius: 0 0 .5em .5em;
  color: #7e7e7e;
  padding: .5em 1em;
}
.map-marker-info h2 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 0;
}
.map-marker-info-inner {
  border-radius: .5em;
  box-shadow: 0 0 0.25em rgba(0, 0, 0, 0.3);
  font-size: .875em;
}
.map-marker-info-inner:after {
  border-left: .75em solid transparent;
  border-right: .75em solid transparent;
  border-top: 1em solid #fff;
  content: '';
  height: 0;
  left: 50%;
  position: absolute;
  top: 100%;
  transform: translateX(-50%);
  width: 0;
}

.animate {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes bounce-in {
  0%, 20%, 40%, 60%, 80%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.animate-bounce-in {
  animation-duration: .75s;
  animation-name: bounce-in;
}

@keyframes pop {
  0% {
    transform: scale(0);
  }
  8% {
    opacity: .4;
  }
  10% {
    opacity: 0;
    transform: scale(1);
  }
}
.animate-pop {
  animation-duration: 1s;
  animation-name: pop;
}