.boxHomeBoxes {
	display: block;
	margin: 40px 0 0 0;
	padding: 0;
	font-size: 0;
	line-height: 0;
	text-align: center;
}

.boxHomeBoxes li {
	display: inline-block;
	margin: 0 40px 40px 0;
	padding: 0;
	width: calc(33.3% - 27px);
	overflow: hidden;
	vertical-align: top;
	transition: box-shadow 0.15s ease-out;
}

.boxHomeBoxes li:hover {
	box-shadow: 0 0 8px rgba(0,0,0,0.75);
}

.boxHomeBoxes li:nth-child(3n) {
	margin-right: 0;
}

.boxHomeBoxes li a {
	display: block;
	box-sizing: border-box;
	margin: 0;
	padding: 15px;
	height: 230px;
	font-size: 1rem;
	line-height: 1.2em;
	color: #282828;
	background: #5373a2 no-repeat 90% center;
	background-size: 40% auto;
	text-decoration: none;
	overflow: hidden;
}

.boxHomeBoxes li a .info {
	width: 48%;
	text-align: left;
}

.boxHomeBoxes li a .info .title {
	display: block;
	padding: 0;
	margin: 0 0 10px 0;
	color: white;
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.4em;
	text-transform: uppercase;
}

.boxHomeBoxes li a .info p {
	margin: 0;
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.4em;
	color: #fff;
}






/* ########## */
/* RESPONSIVE */
/* ########## */


/* 1440 */
@media screen and (max-width: 1440px) {
	.boxHomeBoxes li {
		margin: 0 15px 15px 0;
		width: calc(33.3% - 10px);
	}

	.boxHomeBoxes li a .info p {
		font-size: 0.8rem;
		font-weight: 400;
		line-height: 1.3em;
	}
}


/* 1300px */
@media screen and (max-width: 1300px) {

}


/* 1024px */
@media screen and (max-width: 1024px) {
	.boxHomeBoxes {
		margin: 30px 0 20px 0;
	}

	.boxHomeBoxes li {
		box-sizing: border-box;
		margin: 0 10px 10px 0;
		width: calc(50% - 10px);
	}

	.boxHomeBoxes li:nth-child(3n) {
		margin-right: 10px;
	}

	.boxHomeBoxes li:nth-child(2n) {
		margin-right: 0;
	}
}


/* 960px */
@media screen and (max-width: 960px) {

}


/* 768px */
@media screen and (max-width: 768px) {

}


/* 640px */
@media screen and (max-width: 640px) {
	.boxHomeBoxes li {
		margin: 0 0 10px 0;
		width: 100%;
	}

	.boxHomeBoxes li:nth-child(3n) {
		margin-right: 0;
	}

	.boxHomeBoxes li:nth-child(2n) {
		margin-right: 0;
	}

	.boxHomeBoxes li a {
		height: auto;
		min-height: 240px;
		background-size: 35% auto;
	}
}


/* 480px */
@media screen and (max-width: 480px) {
	.boxHomeBoxes li a .info .title {
		font-size: 1.2rem;
	}
}


/* 320px */
@media screen and (max-width: 320px) {

}