.trust_box {
	margin-top: 20px;
	margin-bottom: 20px;
}

.trust_box_inner {
	overflow: hidden;
	width: 100%;
	font-size: 12px;
	line-height: 1.5em;
	display: table;
}

.trust_box_inner .col {
	display: table-cell;
	vertical-align: middle;
	border-right: 1px solid #ddd;
}

.trust_box_inner .col:last-child {
	border-right: 0;
}

.trust_box_inner .col_nr {
	width: calc( 50% / 3 );
	text-align: center;
	padding: 0 5px;
}

.trust_box_inner .col_nr .nr {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 10px;
}

.trust_box_inner .col_nr .text {
	text-transform: uppercase;
	line-height: 1.2em;
}

.trust_box_inner .col_text {
	width: 50%;
	padding-left: 20px;
}

.trust_box .h5 {
	margin-bottom: 10px;
}


@media( max-width: 700px ){

	.trust_box_inner {
		display: block;
	}

	.trust_box_inner .col {
		display: block;
		float: left;
	}

	.trust_box_inner .col_nr {
		width: calc( 100% / 3 );
	}

	.trust_box_inner .col:nth-child( 3n ){
		border-right: 0;
	}

	.trust_box_inner .col_text {
		width: 100%;
		padding: 20px 0 0;
	}

}