	.BoxItems {
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		-o-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.BoxItem_item {
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		vertical-align: top;
		width: 46%;
	}
	.BoxItem_item:first-child {
		margin-right: 3%;
	}
	.BoxItem_img {
		text-align: center;
	}
	.BoxItem_img img {
		max-width: 100%;
	}
	.BoxItem_button img {
		max-width: 100%;
	}
	@media (max-width: 600px) {
		.BoxItem_item {
			display: block;
			width: 100%;
		}
		.BoxItem_img img {
			max-width: 200px;
		}
		.BoxItem_button {
			text-align: center;
		}
		.BoxItem_button img {
			max-height: 100px;
		}
	}