div.header-products
{
	background: url('/img_files/items/bg-products.jpg') no-repeat center;
	background-size: cover;
}

	span.products-desc
	{
		display: block;
		width: 500px;
		margin-top: 20px;
		font-size: 20px;
		color: #fff;
	}

div.products-list
{
	display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    row-gap: 100px;
	margin-bottom: 100px;
}

	div.products-block
	{
		position: relative;
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
		row-gap: 100px;
	}
	
		div.products-block:before
		{
			position: absolute;
			content: '';
			width: 100%;
			top: 100px;
			bottom: 100px;
			margin-left: -100px;
			padding: 0px 100px;
			background: #d0e2ef;
		}

	div.product
	{
		position: relative;
		display: flex;
		width: 100%;
		background: #fff;
	}

	div.product:nth-child(2n)
	{
		flex-direction: row-reverse;
	}

	div.product:hover div.settings_menu
	{
		display: block;
	}

		div.product-block
		{
			width: 50%;
		}
		
		div.product-block.col-info
		{
			display: flex;
			flex-direction: column;
			justify-content: space-between;
			padding: 50px;
			border: 1px solid #d8e3f1;
			box-sizing: border-box;
		}
		
		img.product-img
		{
			display: block;
			width: 100%;
			height: 800px;
			object-fit: cover;
		}
		
		span.product-name
		{
			font-size: 40px;
			font-weight: 600;
			text-transform: uppercase;
			color: #11679e;
		}
		
		span.product-desc
		{
			display: block;
			margin: 30px 0px;
			font-size: 16px;
			line-height: 24px;
		}
		
		span.product-contact
		{
			height: 70px;
			font-size: 18px;
			text-transform: uppercase;
		}
		
			span.product-contact i
			{
				margin-left: 10px;
			}
			
		div.product-settings-wrap
		{
			width: 100%;
			margin-bottom: 30px;
		}
		
			span.product-settings-title
			{
				display: block;
				margin-bottom: 10px;
				font-size: 20px;
				font-weight: 500;
				text-transform: uppercase;
			}
			
			ul.product-settings
			{
				list-style-type: none;
			}
			
				ul.product-settings li
				{
					display: flex;
					padding: 10px 35px;
					border-bottom: 1px solid #d8e3f1;
				}
				
					ul.product-settings li i
					{
						margin-right: 10px;
						padding: 4px 0px;
						font-size: 16px;
						color: #11679e;
					}
					
					ul.product-settings li span
					{
						font-size: 16px;
						line-height: 24px;
					}
					
		div.product-colors-wrap
		{
			width: 100%;
		}
		
			span.product-colors-title
			{
				display: block;
				margin-bottom: 20px;
				font-size: 20px;
				font-weight: 500;
				text-transform: uppercase;
			}
			
			ul.product-colors
			{
				list-style-type: none;
				display: flex;
			}
			
				ul.product-colors li
				{
					display: flex;
					align-items: center;
					margin-right: 30px;
				}
				
				ul.product-colors li:last-child
				{
					margin: 0px;
				}
				
					ul.product-colors li span.color-img
					{
						width: 50px;
						height: 50px;
						margin-right: 10px;
						background-position: center;
						background-repeat: no-repeat;
						background-size: cover;
					}
					
					ul.product-colors li span.color-name
					{
						font-size: 16px;
						line-height: 24px;
					}