@charset "UTF-8";

.list {
	width: 100%;
	max-width: 1060px;
	margin: 0px auto;
}

.list-box{
	height: auto;
	float: left;
	width: 30%;
	margin-right: 5%;
	margin-bottom: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

.list-box:nth-child(3n) {
	margin-right: 0px;
}

.list-box img {
	box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    border: 5px solid #f9fafc;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

.list-box img:hover {
	box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.5);
	background-color: rgba(255,255,255,0.9);
}

@media only screen and (max-width: 768px) {
	.list {
		width: 100%;
		max-width: 100%;
		margin: 0px auto;
	}
	.list-box{
		overflow: auto;
		height: auto;
		float: left;
		width: 47%;
		margin-right: 6%;
		margin-bottom: 20px;
	}
	.list-box:nth-child(2) {
		margin-right: 0px;
		float: right;
	}
	.list-box:nth-child(3) {
		margin-right: 6%;
	}
	.list-box:nth-child(odd) {
		margin-right: 6% !important;
	}
	.list-box:nth-child(even) {
		margin-right: 0% !important;
	}
}

@media only screen and (max-width: 640px) {
	.list {
		width: 90%;
		max-width: 100%;
		margin: 0px auto;
	}
	.list-box:nth-child(2) {
		margin-right: 0px;
		float: none;
	}
	.list-box{
		overflow: auto;
		height: auto;
		float: none;
		width: 100%;
		margin-right: 0% !important;
		text-align: center;
	}
	.list-box img {
		width: 100%;
	}
}
