body .mod-blue-wrapper{
	display: flex;
    flex-wrap: nowrap;
    height: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
}

body .mod-blue-wrapper .mod-blue-item {
    width: 33.333%;
    padding: 1em 2em;
    box-sizing: border-box;
    height: auto;
    overflow: hidden;
    /*background-repeat: no-repeat;
    background-position: center;
    background-size: cover;*/
    position: relative;
}

body .mod-blue-wrapper .mod-blue-item .blue-item-bg{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	-webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

body .mod-blue-wrapper .mod-blue-item:hover .blue-item-bg {
    -ms-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

body .mod-blue-wrapper .mod-blue-item .blue-item-overlay{
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	z-index: 1;
}

body .mod-blue-wrapper .mod-blue-item .mod-blue-item-inner{
	position: relative;
	z-index: 2;
}

body .mod-blue-wrapper .mod-blue-item .blue-item-icon {
    display: block;
    margin: 0 auto 1em;
    max-width: 75px;
}

body .mod-blue-wrapper .mod-blue-item h3{
    text-transform: uppercase;
    font-size: 1.4em;
    font-weight: 400;
    margin-bottom: 0em;
    white-space: pre;
    text-align: center;
    /*font-family: 'Lato', sans-serif;*/
}

body .mod-blue-wrapper .mod-blue-item p {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    margin-top: 1em;
    margin-bottom: 2em;
    padding-top: 1em;
    font-size: .9em;
    font-weight: 200;
    line-height: 1.4em;
    text-align: left;
    color: #fff;
}

body .mod-blue-wrapper .mod-blue-item .blue-item-button-wrapper{
	text-align: center;
}

body .mod-blue-wrapper .mod-blue-item a.blue-item-button {
    border-bottom: none;
    position: relative;
    transition: .2s left;
    left: 0;
    background-color: #fff;
    border-radius: 4px;
    padding: .5em .7em;
    display: inline-block;
    text-decoration: none;
    font-size: 1.1em;
    border: 1px solid #000;
    font-weight: 500;
}

@media(max-width: 600px){
	body .mod-blue-wrapper{
		flex-wrap: wrap;
	}
	body .mod-blue-wrapper .mod-blue-item{
		width: 100%;
	}
}