/* STYLES FOR LOCATION GRID */
.locGrid {
    margin: 0 !important;
    max-width: unset !important;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 50px 35px;
    padding: 85px 13.6%;
    position: relative;
}
.locGridImage {
    height: 243px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.locGridContent {
    width: 90%;
    position: relative;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.85);
    padding: 5px 10px 0 15px;
}
.locGridH4 {
    font-family: 'BauerBodoniStdBlack' !important;
	font-weight: 900 !important;
	font-size: 30px !important;
	color: #FFFFFF !important;
	line-height: 37px;
    margin-bottom: 10px !important;
}
.locGridExerpt {
    margin-bottom: 12px !important;
}
.locGridContent .locGridExerpt p, .locGridExerpt {
    font-family: "Gotham A", "Gotham B" !important;
	font-size: 16px !important;
	color: #7BAFD4 !important;
	line-height: 25px !important;
}
.locGridContent a, .locGrid .loc-more-posts {
    font-family: "Gotham A", "Gotham B" !important;
	font-size: 15px !important;
	color: #FFFFFF !important;
	text-align: center;
	background: rgba(0,0,0,0.10) !important;
	border: 2px solid #B2B2B2 !important;
	padding: 9.5px 18.4px !important;
	text-transform: uppercase;
    text-decoration: none;
}
.locGrid .loc-more-posts, .locGridMobile {
    display: none;
}
.locGrid .loc-more-posts {
    position: absolute;
    bottom: 75px;
    left: 50%;
    transform: translateX(-50%);
}
@media only screen and (max-width: 1300px) {
    .locGrid {
        padding: 55px 15px;
    }
}
@media only screen and (max-width: 1000px) {
    .locGrid {
        grid-template-columns: 1fr 1fr;
    }
}
@media only screen and (max-width: 600px) {
    .locGrid {
        display: none;
        grid-template-columns: 1fr;
    }
    .locGridMobile {
        display: grid !important;
        padding-bottom: 150px;
    }
    .locGrid .loc-more-posts {
        display: block;
    }
}