.white_boxes {
	overflow: hidden;
	text-align: center;
}
.white_boxes .box {
	background-color: white;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,.1);
	width: calc( 100% / 5 - 20px );
	margin: 10px;
	display: inline-block;
}

.white_boxes .box:hover {
	background-color: #fafafa;
}

.white_boxes .box .box_icon {
	padding-top: 50%;
	display: block;
	text-align: center;
	position: relative;
}
.white_boxes .box .box_icon .icon_inner {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}
.white_boxes .box .title {
	padding-top: 50%;
	display: block;
	text-align: center;
	color: #3e4855;
	position: relative;
	line-height: 1.3em;
	word-break: break-word;
}
.white_boxes .box .title span {
	padding: 20px 20px 0 20px;
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
}

.white_boxes.style_boxes .box .box_icon {
	padding-top:  55%;
}

.white_boxes.style_boxes .box .title {
	padding-top:  45%;
}

@media( max-width: 900px ){
	.white_boxes .box {
		width: calc( 100% / 3 - 20px );
	}

	.white_boxes[data-count="5"] .box:nth-child( 4 ),
	.white_boxes[data-count="5"] .box:nth-child( 5 ) {
		display:  none;
	}
}

@media( max-width: 600px ){
	.white_boxes .box {
		width: calc( 100% / 2 - 20px );
	}
	.white_boxes[data-count="5"] .box:nth-child( 4 ) {
		display:  block;
	}
	.white_boxes.term_boxes .icon {
		max-height:  40px;
	}
}