/* 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 {
    position: relative;
  }
  #places-map h1 {
    font-size: 1.3125em;
    margin-top: 0.9523809524em;
    text-align: center;
  }
  @media (min-width: 37.5em) {
    #places-map h1 {
      font-size: 2.1875em;
      margin-top: 0.9428571429em;
    }
  }
  #places-map .wu-logo {
    display: none;
    height: 3.875em;
    width: 11.3125em;
  }
  @media (min-width: 60em) {
    #places-map .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 .wu-logo {
      left: 50%;
      margin-left: -43.75em;
    }
  }
  #places-map img {
    height: auto;
    position: relative;
    z-index: 1;
  }
  .secondary-page #places-map .content {
    margin: 0;
    position: relative;
  }
  @media (min-width: 60em) {
    .secondary-page #places-map .content {
      margin: 0 auto;
    }
  }
  #places-map .map {
    position: relative;
   text-align: center;
  }
  #places-map .map-pins {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
  }
  
  #places-map .map-location-marker {
    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 .map-location-marker {
      visibility: hidden;
    }
    .js #places-map .map-location-marker.bounceInDown {
      visibility: visible;
    }
  }
  #places-map .map-location-marker: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: -9px;
    opacity: 0;
    position: absolute;
    top: -8px;
    -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 {
    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 .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;
  }
  @media (min-width: 30em) {
    #map-info {
      top: 50%;
      margin-top: -8.875em;
    }
  }
  @media (min-width: 60em) {
    #map-info {
      margin-left: -8.875em;
      width: 17.75em;
    }
  }
  @media (min-width: 48em) {
    #map-info {
      margin-left: 0;
      margin-top: 0;
    }
    #map-info: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 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 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 img {
    height: auto;
    max-width: 100%;
  }
  
  #places-map .marker-kozhikode {
      left: 15%;
      top: 30%;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
  }
  #map-info.kozhikode {
      top: 26%;
      left: 16.3%;
  }

  #places-map .marker-palakkad {
    left: 27.5%;
    top: 45%;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
    }
    #map-info.palakkad {
        top: 41%;
        left: 28.9%;
    }

    #places-map .marker-ernakulam {
        left: 25.7%;
        top: 61%;
      -webkit-animation-delay: 0.8s;
      animation-delay: 0.8s;
    }
    #map-info.ernakulam {
        top: 57%;
        left: 27%;
    }
    
    #places-map .marker-trivandram {
        left: 33.8%;
        top: 93%;
      -webkit-animation-delay: 0.8s;
      animation-delay: 0.8s;
    }
    #map-info.trivandram {
        top: 89%;
        left: 35%;
    }
  
    #places-map .marker-minjur {
        left: 93.5%;
        top: 8%;
      -webkit-animation-delay: 0.8s;
      animation-delay: 0.8s;
    }
    #map-info.minjur {
        top: 4%;
        left: 94.7%;
    }

    #places-map .marker-vellore {
        left: 80%;
        top: 17%;
      -webkit-animation-delay: 0.8s;
      animation-delay: 0.8s;
    }
    #map-info.vellore {
        top: 13%;
        left: 81.3%;
    }

    #places-map .marker-maduravoyal {
        left: 92%;
        top: 18%;
      -webkit-animation-delay: 0.8s;
      animation-delay: 0.8s;
    }
    #map-info.maduravoyal {
        top: 14%;
        left: 93.2%;
    }

    #places-map .marker-salem {
        left: 69.5%;
        top: 36%;
      -webkit-animation-delay: 0.8s;
      animation-delay: 0.8s;
    }
    #map-info.salem {
        top: 32%;
        left: 70.8%;
    }

    #places-map .marker-villupuram {
        left: 88%;
        top: 40%;
      -webkit-animation-delay: 0.8s;
      animation-delay: 0.8s;
    }
    #map-info.villupuram {
        top: 36%;
        left: 89.3%;
    }

    #places-map .marker-trichy {
      left: 76%;
      top: 49%;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    }
    #map-info.trichy {
        top: 45%;
        left: 77.2%;
    }

    #places-map .marker-coimbatore {
      left: 56.5%;
      top: 60%;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    }
    #map-info.coimbatore {
        top: 56%;
        left: 57.6%;
    }

    #places-map .marker-madurai {
      left: 70%;
      top: 67%;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    }
    #map-info.madurai {
        top: 63.2%;
        left: 71.2%;
    }

    
    #places-map .marker-tuticorin {
      left: 69%;
      top: 84%;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    }
    #map-info.tuticorin {
        top: 80%;
        left: 70.3%;
    }

    #places-map .marker-nagercoil {
      left: 63.5%;
      top: 93.5%;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    }
    #map-info.nagercoil {
        top: 89.5%;
        left: 64.7%;
    }
  

  

  
  
  
  