div.service-container {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    justify-content: space-between;
	margin-top: 15px;
	width: 950px;
	margin: 20px auto 0px;
}

div.service-container a {
    text-decoration: none;
}

div.service-inner {
    /* background-color: #919499; */
    width: 300px;
    height: 300px;
    margin: 8px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    -moz-box-shadow: 0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
	-webkit-box-shadow: 0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
	box-shadow: 0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
}

div.service-image {
    background-color: white;
    background-size: contain;
    background-repeat: no-repeat;
    /* border-radius: 100%; */
    flex-grow: 1;
    width: 75%;

    background-position: center center;
    margin: 16px;
}

div.service-name {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 0 8px;
    line-height: 1.4em;
    text-transform: uppercase;
    color: white;
    font-size: 16px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    height: 64px;
}

@media(max-width: 1250px) {
	div.service-container {
		width: auto;
	}
}

@media(max-width: 700px) {
    div.service-container {
        flex-direction: column;
        align-items: center;
    }
}