/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 851px) {
	#logo{
	display: none;
}
	
	.header-nav .menu-item{
		flex: 1;
		
		
	}
	.header-nav .menu-item-type-custom{
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
	}
	.header-nav .menu-item-type-custom a {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		transform: translateY(-50%);
	}
	.header-nav .menu-item-type-custom a img{
		position: absolute;
		width: 120px;
		object-fit: contain;
		margin: unset;
	}
}

/* Small Devices, Tablets */
@media only screen and (max-width : 850px) {
	.menu-item-type-custom{
		display: none !important;
	}
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}
