/*@charset "utf-8";*/
/* CSS Document */
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	background: beige;
	font-family: 'Open Sans', sans-serif;
}
#logo{
	float: left;
	margin-top: 0px;
	margin-left: 30px;
	border-radius: 20px;
	padding: 5px;
	border: 2px solid #ccc;
	box-shadow: 5px 5px 0px black;
}

main h1{
	text-align: center;
	margin-top: 10px;
	font-size: 50px;
	color: transparent;
	background-color: #b3b3b3;
	text-shadow: 2px 2px 3px chocolate;
	/*text-shadow: 2px 2px 3px rgba #1b4f8f;*/
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
}
main h2{
	text-align: center;
	margin-top: 10px;
	font-size: 20px;
	color: transparent;
	background-color: #b3b3b3;
	text-shadow: 2px 2px 3px chocolate;
	/*text-shadow: 2px 2px 3px rgba #1b4f8f;*/
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
}

main h5{
	text-align: center;
	margin-top: 10px;
	font-size: 30px;
	color: transparent;
	background-color: #b3b3b3;
	/*text-shadow: 2px 2px 3px rgba(226, 129, 216, .8);*/
	text-shadow: 2px 2px 3px chocolate;
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
}


.wrap{
	max-width: 1400px;
	with: 90%;
	margin: auto;
}

.wrap > h1{
	color: chocolate;
	font-weight: 1000;
	display: flex;
	flex-direction: column;
	text-align: center;
	margin: 15px 0px;
}

.wrap > h1:after{
	content: '';
	width: 100%;
	height: 5px;
	background: #A78634;
	margin: 15px 0;
}

.wrap > h1:after{
	content: '';
	width: 100%;
	height: 1px;
	background: #C7C7C7;
	margin: 10px 0;
}

.store-wrapper{
	display: flex;
	flex-wrap: wrap;
}

.category_list{
	display: flex;
	flex-direction: column;
	width: 18%;
}

.category_list .category_item{
	display: block;
	width: 90%;
	padding: 6px 0;
	margin-bottom: 12px;
	/*background: #E84C3D;*/
	background: rgba(136,123,75,1.00);
	text-align: center;
	text-decoration: none;
	color: #fff;
}

.category_list .ct_item-active{
	/*background: #2C4350;*/
	background: rgba(75,69,40,1.00);
}
   
/*PROYECTOS******************/

.products-list{
	width: 74%;
	display: flex;
	flex-wrap: wrap;
}

.products-list .product-item{
	width: 27%;
	margin-left: 3%;
	margin-bottom: 40px;
	box-shadow: 0px 0px 8px 5px rgba(0,0,0,0.22);
	display: flex;
	flex-direction: column;
	align-items: center;
	align-self: flex-start;
	transition: all .4s;
}

.products-list .product-item img{
	width: 100;
	/*background: silver;
	border-radius: 20px;*/
}


.products-list .product-item:hover img{
	transform: scale(1.6);
	transition: transform 0.5s ease-in-out 0.1s;
	flex-wrap: wrap;
}

.products-list .product-item a{
	display: block;
	width: 100%;
	font-size: 12px;
	padding: 8px 0;
	/*background: #2C3E50;*/
	background: rgba(102,127,69,1.00);
	color: #fff;
	text-align: center;
	text-decoration: none;
}

/* RESPONSIVE */

@media screen and (max-width: 1100px){
	.products-list .product-item{
		width: 30.3%;
	}
}

@media screen and (max-width: 900px){
	.category_list,
	.products-list{
		width: 100%;
	}

	.category_list{
		flex-direction: row;
		justify-content: space-between;
	}

	.category_list .category_item{
		align-self: flex-start;
		width: 15%;
		font-size: 14px;
	}

	.products-list .product-item{
		margin-left: 4.5%;
	}

	.products-list .product-item:nth-child(3n+1){
		margin-left: 0px;
	}
}

@media screen and (max-width: 700px){
	.category_list{
		flex-direction: column;
	}
	.category_list .category_item{
		width: 100%;
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 600px){

	.products-list .product-item{
		width: 47.5%;
	}

	.products-list .product-item:nth-child(3n+1){
		margin-left: 4.5%;
	}

	.products-list .product-item:nth-child(2n+1){
		margin-left: 0px;
	}

}

@media screen and (max-width: 350px){
	.products-list .product_item{
		width: 100%;
		margin-left: 0px;
	}
}









