section.locations-section {
    margin: 0 auto;
    padding: 50px 0 0;
    text-align: center;
    background-color: #fff;
  }

section.locations-section h2 {
    margin-bottom: 5px;
    display: inline-block;
    color: #272727;
    padding: 0 0 20px;
    text-transform: capitalize;
    font-family: "Raleway", sans-serif;
    position: relative;
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: 0.44px;;
  }

  /* underline below heading */
section.locations-section h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 8px;
    background-color: #009688;
    margin: 18px auto 10px;
    border-radius: 2px;
  }

 section.locations-section p.description {
    max-width: 870px;
    margin: 0 auto 70px;
    font-weight: 400;
    font-size: 18px;
    color: #3a3a3a;
    line-height: 1.5;
  }

  /* Grid container */
  .locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    justify-items: center;
    margin: 0 auto;
        max-width: 1920px;
  }


.locations-grid .locations-item {
    position: relative;
}
.locations-item .locations-label span.area{
    position: absolute;
    bottom: 60px;
    left: 2px;
    background: #fff;
    padding: 10px 20px;
    width: max-content;
    font-size: 22px;
    max-width: 200px;
    text-align: left;
    line-height: 28px;
    border-radius: 5px;
    box-shadow: 0 0 15px 3px rgba(0,0,0,0.5);
}


.locations-item .locations-label span.area::after {
    position: absolute;
    content: '';
    display: block;
    width: 40px;
    height: 37px;
    background: url(/template/9cd87d1c/images/downarrow.svg);
    margin: 0;
    border-radius: 2px;
    bottom: -17px;
    top: auto;
    left: -2px;
    background-size: 60px;
  }
.locations-item .locations-label{
    position: absolute;
    bottom: 50px;
    left: 40px;
    padding: 15px 20px;
    width: fit-content;
}
.pulse {
    background: #41b18d;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    box-shadow: 0 0 0 0 rgb(65 177 141);
    transform: scale(1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(65, 177, 141, 0.7);
    }

    70% {
        transform: scale(1.5);
        box-shadow: 0 0 0 15px rgba(222, 84, 72, 0);
    }

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