/* Breakpoints
// ========================================================================== */
/* 320px */
/* 480px */
/* 599px */
/* 600px */
/* 768px */
/* 967px */
/* 960px */
/* 1400px */
/* Colors 
// ========================================================================== */
/* Convert px to ems
// ========================================================================== */
/* Mixins
// ========================================================================== */
/* Media Query Watcher
// ========================================================================== */
#getActiveMQ-watcher {
  font-family: "break-0";
}
@media (min-width: 20em) {
  #getActiveMQ-watcher {
    font-family: "break-1";
  }
}
@media (min-width: 30em) {
  #getActiveMQ-watcher {
    font-family: "break-2";
  }
}
@media (min-width: 37.5em) {
  #getActiveMQ-watcher {
    font-family: "break-3";
  }
}
@media (min-width: 48em) {
  #getActiveMQ-watcher {
    font-family: "break-4";
  }
}
@media (min-width: 60em) {
  #getActiveMQ-watcher {
    font-family: "break-5";
  }
}

/* =Map Pin Animation
// ========================================================================== */
@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}
@-moz-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes pulsate {
  0% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

/* =Places Map
// ========================================================================== */
#places-map-1 {
  position: relative;
}
#places-map-1 h1 {
  font-size: 1.3125em;
  margin-top: 0.9523809524em;
  text-align: center;
}
@media (min-width: 37.5em) {
  #places-map-1 h1 {
    font-size: 2.1875em;
    margin-top: 0.9428571429em;
  }
}
#places-map-1 .wu-logo {
  display: none;
  height: 3.875em;
  width: 11.3125em;
}
@media (min-width: 60em) {
  #places-map-1 .wu-logo {
    background: url(https://jeffbridgforth.com/codepen/wu-logo.jpg) no-repeat;
    display: block;
    position: absolute;
    bottom: 1.875em;
    left: 2em;
  }
}
@media (min-width: 87.5em) {
  #places-map-1 .wu-logo {
    left: 50%;
    margin-left: -43.75em;
  }
}
#places-map-1 img {
  height: auto;
  position: relative;
  z-index: 1;
}
.secondary-page #places-map-1 .content {
  margin: 0;
  position: relative;
}
@media (min-width: 60em) {
  .secondary-page #places-map-1 .content {
    margin: 0 auto;
  }
}
#places-map-1 .map {
  position: relative;
 text-align: center;
}
#places-map-1 .map-pins {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
}
#places-map-1 .smmap-location-marker {
  cursor: pointer;
  position: absolute;
  height: 30px;
  margin-top: -1.875em;
  margin-left: -0.7857142857em;
  width:21px;
  z-index: 3;
}
#places-map-1 .map-location-marker-1 {
  background: url(../img/red-pin.png) no-repeat;
  cursor: pointer;
  position: absolute;
  height: 21px;
  margin-top: -1.875em;
  margin-left: -0.7857142857em;
  width:15px;
  z-index: 3;
}
@media (min-width: 48em) {
  .js #places-map-1 .map-location-marker-1 {
    visibility: hidden;
  }
  .js #places-map-1 .map-location-marker-1.bounceInDown {
    visibility: visible;
  }
}
#places-map-1 .smmap-location-marker-1:after {
  -webkit-animation: pulsate 2s ease-in-out infinite;
  -moz-animation: pulsate 2s ease-in-out infinite;
  animation: pulsate 2s ease-in-out infinite;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 30px;
  content: "";
  display: block;
  height: 31px;
  left: -2px !important;
  opacity: 0;
  position: absolute;
  top: 0px !important;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
  width: 31px;
  z-index: 2;
}
#places-map-1 .map-location-marker-1:after {
  -webkit-animation: pulsate 2s ease-in-out infinite;
  -moz-animation: pulsate 2s ease-in-out infinite;
  animation: pulsate 2s ease-in-out infinite;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 30px;
  content: "";
  display: block;
  height: 31px;
  left: -2px;
  opacity: 0;
  position: absolute;
  top: -1px;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
  width: 31px;
  z-index: 2;
}

#page-places {
  position: relative;
}

#map-info-1 {
  background: #333;
  color: #fff;
  position: absolute;
  top: -1.5625em;
  left: 50%;
  margin-left: -7.8125em;
  padding:10px 15px;
  width: 15.625em;
  z-index: 10;
}
#map-info-1 .close-btn {
  background: url(http://jeffbridgforth.com/codepen//close-btn.png) no-repeat;
  cursor: pointer;
  display: block;
  height: 0.6875em;
  width: 0.6875em;
  position: absolute;
  right: 10px;
    top: 10px;
}

#places-map-1 .marker-neemuch {
    left: 12%;
    top: 39%;
    background: url(../img/bred-pin.png);
    width: 28px;
    height: 39px;
}
#map-info-1.neemuch {
    top: 36%;
    left: 15%;
}
#places-map-1 .marker-ujjain {
    left: 10%;
    top: 60%;
    background: url(../img/bred-pin.png);
    width: 28px;
    height: 39px;
}
#map-info-1.ujjain {
    top: 57%;
    left: 12%;
}
#places-map-1 .marker-ratlam {
    left: 18%;
    top: 60%;
    background: url(../img/bred-pin.png);
    width: 28px;
    height: 39px;
}
#map-info-1.ratlam {
    top: 56%;
    left: 20%;
}
#places-map-1 .marker-indore {
    left: 20%;
    top: 72%;
    background: url(../img/bred-pin.png);
    width: 28px;
    height: 39px;
}

#map-info-1.indore {
  top: 68%;
  left: 23%;
}
#places-map-1 .marker-bopal {  
  left: 62%;
    top: 75%;
  background: url(../img/bred-pin.png);
  width: 28px;
  height: 39px;
}
#map-info-1.bopal {  
  top: 72%;
  left: 64%;

}
#places-map-1 .marker-sendhwa {
    left: 10%;
    top: 87%;
    background: url(../img/bred-pin.png);
    width: 28px;
    height: 39px;
}
#map-info-1.sendhwa {
    top: 83%;
    left: 13%;
}
#places-map-1 .marker-jabalpur { 
  left: 75%;
  top: 76%;
  background: url(../img/bred-pin.png);
  width: 28px;
  height: 39px;
}
#map-info-1.jabalpur {
  top: 72%;
  left: 77%;
}
#places-map-1 .marker-indore1 {
  left: 54%;
  top: 80%;
  background: url(../img/bred-pin.png);
  width: 28px;
  height: 39px;
}
#map-info-1.indore1 {
  top: 77%;
  left: 56%;
}
#places-map-1 .marker-peenya2 {
  left: 51%;
  top: 65%;
  background: url(../img/bred-pin.png);
  width: 28px;
  height: 39px;
}
#map-info-1.peenya2 {
  top: 61%;
  left: 53%;
}
#places-map-1 .marker-jaipur {
  left: 26%;
  top: 68%;
  background: url(../img/bred-pin.png);
  width: 28px;
  height: 39px;
}
#map-info-1.jaipur {
  top: 66%;
  left: 28%;
}
#places-map-1 .marker-jothpur {
  left: 14%;
  top: 70%;
  background: url(../img/bred-pin.png);
  width: 28px;
  height: 39px;
}
#map-info-1.jothpur {
  top: 68%;
  left: 16%;
}

#places-map-1 .marker-kanpur {
  left: 36%;
  top: 32%;
  background: url(../img/bred-pin.png);
  width: 28px;
  height: 39px;
}
#map-info-1.kanpur {
  top: 30%;
  left: 38%;
}
#places-map-1 .marker-varnasi {
  left: 70%;
  top: 22%;
  background: url(../img/bred-pin.png);
  width: 28px;
  height: 39px;
}
#map-info-1.varnasi {
  top: 20%;
  left:72%;
}
#places-map-1 .marker-haldwani {
  left: 78%;
  top:29%;
  background: url(../img/bred-pin.png);
  width: 28px;
  height: 39px;
}
#map-info-1.haldwani {
  top: 27%;
  left:80%;
}



@media (min-width: 30em) {
  #map-info-1 {
    top: 50%;
    margin-top: -8.875em;
  }
}
@media (min-width: 60em) {
  #map-info-1 {
    margin-left: -8.875em;
    width: 17.75em;
  }
}
@media (min-width: 48em) {
  #map-info-1 {
    margin-left: 0;
    margin-top: 0;
  }
  #map-info-1:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width:10px 11px 10px 0;
    border-color: transparent #333 transparent transparent;
    position: absolute;
    left: -9px;
  }
  
#map-info-1 h1 {
  float: left;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 0;
  margin-top: 0;
  color: #fff;
  font-weight: normal; width: 100%; text-align: left;
}
#map-info-1 a {
  color: #70b333;
  display: block;
  font-size: 14px;
  float: left;
  margin-right: 2.5em;
  margin-top: 5px;
  text-decoration: none;
  font-weight: 500;
  line-height: normal;
}
#map-info-1 img {
  height: auto;
  max-width: 100%;
}
}
/* cemhs */
#places-map-1 .marker-peenya {
  left: 11%;
  top: 42%;
  /* background: url(../img/bred-pin.png); */
  /* width: 28px;
  height: 39px; */
}
#map-info-1.peenya {
  top: 37%;
  left: 12.5%;
}

#places-map-1 .marker-hyderabad {
  left: 74.7%;
  top: 54.7%;
}
#map-info-1.hyderabad {
  top: 49.5%;
  left: 76%;
}
