/* PRODUCTS */
.products-container{
	min-height: calc(100vh - 550px);
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	gap: 20px;
    background-color: whitesmoke;
}

.products-text{
	font-weight: 700;
	color: white;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
}
.banner {
	display: flex;
    flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%; height: 200px;
	min-height: 15em;
	background: linear-gradient(#000, transparent, #000), 
		var(--img) 20%/ cover;
	background-attachment: fixed;
	background-blend-mode: multiply;
	--img: url(../images/banners/banner.jpg);
}
.banner p{
	color: White;
}


/*  Products Section */

.products-section{
	display: flex; 
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #C0C0C0;
	/*background-image: linear-gradient(109.6deg, rgba(0, 0, 0, 0.93) 11.2%, rgb(63, 61, 61) 78.9%);*/
	background-image: linear-gradient(109.6deg, #C0C0C0 11.2%, rgb(255, 255, 255) 78.9%);
}
.product-gallery{
	display: grid;
	gap: 35px 50px;
	grid-template-columns: auto auto auto;
	width: 100%;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
	margin-bottom: 20px;
}
.product-gallery-1{
	display: grid;
	gap: 35px 50px;
	grid-template-columns: auto auto auto;
	width: 100%;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
	margin-bottom: 20px;
}
.product-gallery-1 a{
	transition: all 0.5s ease;
	text-decoration: none;
}
.product-gallery-1 a:hover{
	transform: scale(1.05);
}
.product-gallery a{
	transition: all 0.5s ease;
	text-decoration: none;
}
.product-gallery a:hover{
	transform: scale(1.05);
}
.product-card{
	display: flex;
	flex-direction: column;
	box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
	border: none;
	border-radius: 30px;
}
.product-image{
	width: 100%;
	border: none;
	border-radius: 30px 30px 0 0;
	width: 260px;
	height: 200px;
	height: 100%;
	object-fit:scale-down;
	vertical-align: bottom;
	background-color: white;
	/*padding: 0 30px 0 30px;*/
}
.product-name{
	background-color: #d3d6db;
	border: none;
	border-radius: 0 0 30px 30px;
}
.product-name-text{
	font-family: "Verdana", sans-serif;
	font-style: italic;
	color: #363636;
	font-size: 0.925rem;
	margin-bottom: 10px;
	padding: 0 20px 0 20px;
}

.products-page-main{
	display: grid;
	grid-template-columns: auto;
	gap: 3vw;
	background-color: whitesmoke;
}
.navigation-list{
	display: none; /* flex */
	justify-content: center;
}
.navigation-list ul{
	list-style: none;
	padding:0;
	margin-top:10px;
	margin-left: 3vw;
}
.navigation-list li{
	background-color: #009de4;
	padding: 10px;
	border-bottom: 1px black solid; 
	color: white;
}
.navigation-list ul li a{
	text-decoration: none;
}

.flex{
	display: flex;
	flex-direction: column;
	align-items: center;
}