/*static map*/

/*mobile*/
.map-container {
	text-align: center;
	margin-bottom: 30px;
}
.map-container .static-map {
    position: relative;
    height: 0;
    overflow: hidden;
    margin-bottom: 9px;
    padding-bottom: 25%;
    display: inline-block;
}
.map-container .static-map img { width: 100%;}
.map-container .map-caption {
    position: absolute;
    top: 5px;
    left: 25px;
    text-align: left;
}
.map-container .title {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    font-family: 'petala-pro', sans-serif;
    margin-bottom: 8px;
}
.map-container .map-caption a {
    font-family: 'petala-pro', sans-serif;
    color: #fff;
    border: 1px solid #fff;
    font-size: 14px;
    background: rgba(0, 0, 0, .6);
    border-radius: 3px;
    padding: 1px 7px 4px;
}

/* Tablet */
@media only screen and (min-width: 768px) {
    .map-container .static-map {
		padding-bottom: 18%;
        margin-bottom: 9px;
	}
}

/*desktop*/
@media only screen and (min-width: 64em) {
	.map-container {
		display: flex;
		flex-wrap: wrap;
	}

	.map-container .static-map {
		flex-basis: calc(50% - 10px);
		padding-bottom: 12%;
	}
	.map-container .static-map:nth-child(odd) {
		margin-right: 10px;
	}
	.map-container .static-map:nth-child(even) {
		margin-left: 10px;
	}
}