

.subline {
  color: #768191;
  font-weight: normal;
}



.grid {
  margin-left: auto;
  margin-right: auto;
  max-width: 740px;
  width: 90%;
}

.map {
  margin-top: 3em;
  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 #ffffff;
  content: "";
  height: 2em;
  left: 0;
  margin: -0.5em 0 0 -0.5em;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 2em;
}

.map__marker:hover .map__marker-info {
  display: block;
}

.map__marker > a {
  background-color: #155289;
  border-radius: 50%;
  height: 1em;
  display: block;
  text-indent: -9999px;
  width: 1em;
}

.map__marker--cchmc {
  left: 70%;
  top: 43%;
}
.map__marker--cchmc:after {
	animation-delay: 3s;
}
.map__marker--col {
  left: 36%;
  top: 45%;
}
.map__marker--col:after {
	animation-delay: 3s;
}
.map__marker--minn {
  left: 53%;
  top: 27%;
}

.map__marker--minn:after {
  animation-delay: 3s;
}

.map__marker--chop {
  left: 83%;
  top: 34%;
}

.map__marker--chop:after {
  animation-delay: 3s;
}

.map__marker--dana {
  left: 90%;
  top: 27%;
}
.map__marker--dana:after {
   animation-delay: 3s;
}

.map__marker--san-francisco {
  left: 6%;
  top: 46%;
}

.map__marker--san-francisco:after {
  animation-delay: 3s;
}

.map__marker--seattle {
  left: 12.5%;
  top: 11.6%;
}

.map__marker--seattle:after {
  animation-delay: 5s;
}

.map__marker--tx {
  left: 53%;
  top: 78%;
}

.map__marker--tx:after {
  animation-delay: 5s;
}
.map__marker--fred {
  left: 11.3%;
  top: 12.8%;
}

.map__marker--fred:after {
  animation-delay: 5s;
}

.map__marker-info {
  display: none;
  left: 50%;
  position: absolute;
  bottom: 0;
  transform: translate(-50%, -2em);
  width: 20em;
  z-index: 999;
}

.map__marker-info-header {
  background-color: #155289;
  border-top-left-radius: 0.5em;
  border-top-right-radius: 0.5em;
  color: #fff;
  padding: 0.5em 1em;
}

.map__marker-info-main {
  background-color: #fff;
  border-bottom-left-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
  color: #7e7e7e;
  padding: 0.5em 1em;
}

.map__marker-info h2 {
  margin-bottom: 0;
}

.map__marker-info-inner {
  border-radius: 0.5em;
  box-shadow: 0 0 0.25em rgba(0, 0, 0, 0.3);
  font-size: 0.875em;
}

.map__marker-info-inner:after {
  border-left: 0.75em solid transparent;
  border-right: 0.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: 0.75s;
  animation-name: bounce-in;
}