#map {
    width:100%;
    height:350px;
}

/**============== /places ==============**/
.places-hero {
    align-items: center;
    background: url(/themes/custom/brokerage/images/shutterstock_428711317.png);
    background-position: center;
    background-size: cover;
    display: flex;
    height: 500px;
    justify-content: center;
    padding-top: 73.69px;
    position: relative;
    text-align: center;
    width: 100%;
}

.places-hero::before {
    background-color: rgba(0,0,0,.4);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.place-item {
    align-items: center;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    color: #FFF;
    display: flex;
    height: 500px !important;
    justify-content: center;
    padding: 5px;
    position: relative;
    width: 100% !important;
}

.place-item:hover {
    color: #FFF;
}

.place-item::before {
    background-color: rgba(0,0,0,.5);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: all .3s ease-in;
    width: 100%;
}

.place-item:hover.place-item::before {
    background-color: rgba(0,0,0,.4);
}

.place-item h3 {
    line-height: 1;
    outline: 1px solid #FFF;
    padding: 15px 15px 10px;
    text-align: center;
}

/**============== /places/* ==============**/
.place-hero {
    align-items: center;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    display: flex;
    height: 500px !important;
    justify-content: center;
    position: relative;
}

.place-hero::before {
    background-color: rgba(0,0,0,.4);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

/*---- Listings ----*/
.placeListings {
    padding: 75px 0;
}

.place-listings-heading {
    color:#fff;
    font-weight:100;
    text-align: center;
}

.listingCard {
    height: 250px;
    overflow: hidden;
    padding: 0 !important;
    position: relative;
}

.listingLink {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

.listingLink:hover ~ .listingOverlay,
.listingLink:focus ~ .listingOverlay {
    transform: translate3d(0, 70%, 0);
}

.listingLink:hover ~ .listingTitle,
.listingLink:focus ~ .listingTitle {
    transform: translate3d(0, 0, 0);
}

.listingOverlay {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	position: absolute;
	width: 100%;
	top: -15px;
	transition: transform 300ms;
	background-color: rgba(0, 0, 0, .6);
	transform: translate3d(0, 90%, 0);
}

.listingImg {
    display: block;
	height: 100%;
    object-fit: cover;
    width: 100%;
}

.listingTitle {
    display: flex;
    font-size: 22px;
    justify-content: space-between;
    margin: 0;
    padding: 1rem;
    transform: translate3d(0, -0, 0);
    transition: transform 300ms;
}

.listingAddress {
    font-size: 14.5px;
    font-weight: 700;
}

.listingPrice {
    font-size: 14.5px;
}

.listingBody {
    flex-grow: 1;
    gap: 1rem;
	padding: 0 1rem 1rem 1rem;
	transition: opacity 500ms 100ms;
}

.listingInfo {
    font-size: 18px;
}