@media (max-width: 900px) {

	
	button.menu-toggle{
		display: flex;
		border: none;
		padding: 10px;
		background: var(--darker-color);
		border-radius: 10px;
		transition: .2s;
	}
	
	button.menu-toggle.open{
		transform: scale(1.1);
		background: #ca0000;
	}
	
	#social-menu{
		justify-content: center;
	}

	#social-menu li a{
		padding: 10px;
	}

	#social-menu li a span{
		display: none;
	}

	div.branch_handler{
		flex-direction: column-reverse;
	}

	div.branch{
		max-height: 250px;
		height: 100vh;
	}

	div.child_branches{
		margin-bottom: 20px;
	}

	div.branch:hover{
		width: 100%;
	}

	.bg-grad, img.bg-grad-foot{
		right: 0;
		top: -100px;
		object-fit: cover;
		max-width: none;
	}

	img.bg-grad-foot{
		height: 30px;
	}

	div.widthfooter{
		flex-direction: column;
		gap: 30px;
	}

	div.footer_block.company_info{
		width: 100%;
	}

	div.left_footer{
		justify-content: space-between;
		flex-direction: column;
		gap: 30px;
	}

	div.widthfooter{
		padding: 20px 0;
	}

	div.footer_block, div.footer_block > div > ul{
		align-items: flex-start;
	}

	div.footer_block li.menu-item a{
		flex-direction: row;
	}

	li.menu-item a{
		text-align: left;
	}

	.product_handler{
		grid-template-columns: 1fr ;
		gap: 10px;
	}

	.product_thumb_content h3.entry-title{
		font-size: 18px;
	}

	div.product_card{
		flex-direction: column;
	}

	.product_image{
		aspect-ratio: 0;
		max-height: 40vh;
		width: 100%;
	}

	.product_title, .main-content h2{
		font-size: 32px;
	}

	.stats_flex{
		flex-wrap: wrap;
	}

	.product_stats .type_stats{
		flex-direction: column;
	}

	.toggleStats{
		display: none;
	}
	
	.menu-primary-container{
		position: absolute;
		display: grid;
		grid-template-columns: 1fr 1fr;
		top: 0px;
		left: 0px;
		padding: 20px;
		background: #6b0604;
		width: 100%;
		border-radius: 0 0 20px 20px;
		gap: 10px;
		z-index: -1;
		opacity: 0;
		box-shadow: 0 0px 0px 0px #0000;
		transition: .2s;
	}
	
	.menu-primary-container.open{
		top: 70px;
		z-index: 100;
		opacity: 1;
		box-shadow: 0 40px 40px 20px #000a;
		transition: .2s, box-shadow .2s .1s;
	}
	
	nav#site-navigation * ul, nav#site-navigation * ul li{
		display: contents;
	}
	
	.main-navigation li a{
		width: 100%;
		padding: 10px 15px;
		background: #350302;
		border-radius: 10px;
		text-align: center;
	}
	
	.main-navigation li:last-child:nth-child(odd) a{
		grid-column: 1/3;
	}
	
	.main-navigation a:after{
		content: none;
	}
}