/* Neighborhood hotspots
------------------------------------*/

#hotspots {
    margin-bottom: 20px;
}

#hotspots .hotspot {
    position: relative;
    display: block;
    margin-bottom: 2%;
    margin-left: 1%;
    margin-right: 1%;
    overflow: hidden;
    width: 31%;
    border-radius: 0px;
    -webkit-box-shadow: 0 3px 5px 0 rgba(0,0,0,.18);
    box-shadow: 0 3px 5px 0 rgba(0,0,0,.18);
}

.hotspot .inner-info {
    position: absolute;
    z-index: 100;
    background: rgba(0,0,0,.7);
    text-align: center;
    padding: 20% 0 40px 0;
    margin: 0 auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    opacity: 0;
    transform: translateY(30%)
}

.hotspot:hover .inner-info {
    opacity: 1;
    transform: translateY(0);
}

.hotspot .inner-info h2 {
    padding-top: 0;
    padding-bottom: 15px;
    line-height: 1em;
    color: #fff;
    font-family: bagnard 'gotham medium', sans-serif;
}

.hotspot .inner-info h3 {
    font-size: 1rem;
    padding-top: 0;
    padding-bottom: 15px;
    color: #fff;
    font-family: bagnard 'gotham medium', sans-serif;
}

.hotspot .inner-info span {
    width: 100%;
    max-width: 140px;
    border-radius: 4px;
    background: #fff;
    text-align: center;
    color: #333;
    height: 35px;
    line-height: 35px;
    display: block;
    margin-right: auto;
    margin-left: auto;
    font-family: "Gotham Book", arial, sans-serif;
}

.hotspot img {
    width: 100%;
}



@media screen and (max-width:721px){#walkscore h2.hood-title{font-size:3rem;}
    #walkscore .score-box{width:90%;margin-right:auto;margin-left:auto;display:block;float:none;margin-bottom:15px;}

    #hotspots .hotspot {
        width: 95%;
        margin-right: auto;
        margin-left: auto;
        float: none;
    }

    #hotspots .hotspot .inner-info {
        transform: translateY(0);
        opacity: 1;
    }


}