@media screen and (max-width:480px) {
	*{
		margin: 0;
		padding: 0;
	}
	
	#top_header{
		width: 100%;
		height: 50px;
		background: #212F3D;
	}
	
	#general_name_category{
		width: 100%;
		height: 55px;
		font-family: sans-serif;
		font-size: 135%;
		font-weight: 600;
		letter-spacing: 2px;
		text-align: center;
		display: flex;
		justify-content: center;
		align-items: center;
		position: sticky;
		top: 0;
		background: #cecece;
		z-index: 1;
	}
	
	#name_category{
		width: 100%;
		height: 55px;
		font-family: sans-serif;
		font-size: 135%;
		font-weight: 600;
		letter-spacing: 2px;
		text-align: center;
		display: flex;
		justify-content: center;
		align-items: center;
		position: sticky;
		top: 0;
		background: #cecece;
		z-index: 1;
	}
	
	#brand_category{
		width: 98%;
		height: auto;
		margin: 15px auto;
		display: flex;
		flex-grow: 1;
		flex-wrap: wrap;
		/*overflow: hidden;*/
		/*overflow-x: scroll;*/
		/*background: #808B96;*/
	}
	
	.brand_product{
		aspect-ratio: 1;
		width: 33.33%;
		margin: 10px 0;
		font-family: sans-serif;
		font-size: 90%;
		font-weight: 600;
		/*display: flex;
		flex-grow: 1;
		flex-wrap: wrap;*/
		justify-content: center;
		align-items: end;
		text-decoration: none;
		/*background: #2E86C1;*/
	}
	
	.img_box{
		aspect-ratio: 1;
		width: 98%;
		margin: 0 auto;
		border-radius: 10px;
		display: flex;
		align-self: start;
		object-fit: cover;
		background: #fff;
		overflow: hidden;
	}
	
	.img_product{
		width: 100%;
		height: auto;
		border-radius: 10px;
		object-fit: cover;
	}
	
	.name_product{
		width: 100%;
		height: 50px;
		margin-top: 4px;
		margin-bottom: 3px;
		display: flex;
		justify-content: center;
		align-self: start;
		text-align: center;
		letter-spacing: 1px;
		line-height: 1.2;
		color: #000;
		/*background: #000;*/
	}
	
	#filtr{
		width: 96%;
		height: 60px;
		margin: 15px auto;
		border-radius: 10px;
		background: #D0D3D4;
	}
	
	#box{
		width: 100%;
		margin-top: 20px;
		display: flex;
		flex-wrap: wrap;
	}
	
	#box_product{
		aspect-ratio: 8/10;
		width: 50%;
		box-shadow: inset 0 0 1px #000;
		display: flex;
		background: #E0FFFF;
	}
	
	#box_product img{
		width: 100%;
		height: 100%;
	}
	
	
	
	footer{
		width: 100%;
		height: 250px;
		margin-top: 30px;
		background: #17202A;
	}
}