*{
	margin: 0;
	box-sizing: border-box;
}

body{
	background: #fff;
	font-family: 'Open Sans', sans-serif;
}

.wrap{
	/**max-width: 1100px;*/
	width: 90%;
	margin: auto;
}


.wrap > h3{
	color: #000203;
	font-weight: 400;
	flex-direction: column;
	text-align: center;
	margin: 0px 0px;
    padding-top: 5%;
	transition: all 300ms;
}

.wrap > h3:hover {
	transform: scale(1.17);
}

.text-product {
    color: #1a7fc7;
}

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

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



/* PRODUCTOS ============*/

.products-list{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}


.products-list .product-item{
	width: 30%;
	margin-left: 3%;
	margin-bottom: 25px;
	box-shadow: 0px 0px 6px 0px 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%;
	height: 280px;
	transition: all 300ms;
	box-shadow: 0px 15px 25px rgba(0, 0, 0, 0,.50);
}

.products-list .product-item img:hover {
	transform: scale(1.1);
}

.products-list .product-item a{
	display: block;
	width: 100%;
	padding: 8px 0;
	background: #2D3E50;

	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: 300px){
	.menu,
	.products-list{
		width: 90%;
	}

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

	.menu .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){
	.menu{
		flex-direction: column;
	}
	.menu .category_item{
		width: 100%;
	}
}

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

	.products-list .product-item{
		width: 100%;
		margin: 1%;
	}

	.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;
	}
}

/*Estilos menu producto*/

.contenedor-menu {
	width: 20%;
	min-width: 300px;
	margin: 20px;
	display: inline-block;
	font-family: 'Roboto', sans-serif;
	line-height: 18px;
}

.contenedor-menu .menu {
	width: 100%;
}

.contenedor-menu ul {
	list-style-type: none;
	display: flex;
}

.contenedor-menu .menu li a {
	width: 155px;
	color: #494949;
	display: block;
	padding: 15px 8px;
	background: #e9e9e9
}

.contenedor-menu .menu li ul a {
	width: auto;
	color:white;
	background: #196ba0;
}

.contenedor-menu .menu li a:hover {
	background: #1a95d5;
	color: #fff;
}

.contenedor-menu .menu ul {
	display: none;
}

.contenedor-menu .menu ul li a {
	background: #424242;
	color: #e9e9e9;
}

.contenedor-menu .menu .activado > a {
	background: #1a95d5;
	color: #fff;
}

@media screen and (max-width: 350px) {
	body {
		padding-top: 80px;
	}

	.contenedor-menu {
		margin: 0;
		width: 100%;
		position: fixed;
		top: 0;
		z-index: 1000;
	}

	

}

a {
	text-decoration: none;
}

.contenedor-menu ul {
	list-style: none;
	display: flex;
	justify-content: space-between;
}

.contenedor-menu ul li ul {
	display: flex;
	flex-direction: column;
}

.contenedor-menu .menu ul li ul li {
    width: 180px;
}

/*Fin Estilos menu producto*/



.card-body {
	text-align: center;
}

  
  