/* Media Query for Mobile Devices */
@media only screen and (max-width: 480px) and (orientation: portrait) 
{
    
    
		.single-product .row
		{
			
			text-align: left;
		}
		
		.single-product .col-2
		{
			
			padding: 20px 0;
		}

		.single-product h1
		{
			
			font-size: 26px;
			line-height: 22px;
		}
		
		.row
		{
			
			text-align: center;
		}
		
		.col-1, .col-2, .col-3, .col-4
		{
			
			flex-basis: 100%;
		}
		
		.cart-info p
		{		
			display: none;
		}
 

    
} 

/*Media Query for low resolution  Tablets, Ipads */
@media screen and (min-width: 481px) and (max-width: 1024px) 
{

		.single-product .row
		{
			
			text-align: left;
		}
		
		.single-product .col-2
		{
			
			padding: 20px 0;
		}

		.single-product h1
		{
			
			font-size: 26px;
			line-height: 22px;
		}
		
		.row
		{
			
			text-align: center;
		}
		
		.col-1, .col-2, .col-3, .col-4
		{
			
			flex-basis: 100%;
		}
		
		.cart-info p
		{		
			display: none;
		}
 
    
}


/*Media Query for Laptops and Desktops */
@media screen and (min-width: 1025px) and (max-width: 1280px)
{     

	nav ul
	{
		
		position: absolute;
		top: 70px;
		left: 0;
		background: #333;
		width: 100%;
		overflow: hidden;
		transition: 1s;
		max-height: 0;
		transition:max-height 0.5s;
		
	}
		
	nav ul li
	{
		
		display: block;
		margin-right: 50px;
		margin-top: 10px;
		margin-bottom: 10px;
		
	}
		
	nav ul li a
	{
		
		color: #fff;
	}
		
	.menu-icon
	{
		
		display: block;
		cursor: pointer;
	}
   
    
}










