

/*********************************************************** small screen */
	#MainContent {
		width: 100%;
		padding: 20px 0px;
	}

	#ProductsContent {
		margin: 0px auto;
	}

	.ProductsNavBox {
		width: calc(100% / 3 - 10px);
	}

	.ProductsInfo {
		display: none;
	}

	.ProductsInfoMobile {
		display: block;
	}

	.ProductsInfoContentMobile {
		width: 100%;
	}
	
	.ProductsBox {
		width: calc(100%);
		height: calc(100vw * 280 / 440);
		display: none;
	}
	
	.ProductsBoxMobile {
		width: calc(100%);
		display: block;
	}
	
	.ProductBoxTitle {
		width: calc(100px * (60/190));
		height: 100px
	}

/*********************************************************** medium screen */
@media screen and (min-width: 800px) {
	#MainContent {
		width: calc(100% - 100px);
		padding: 20px 0px 30px 0px;
	}

	#ProductsContent {
		margin: 0px auto;
	}

	.ProductsNavBox {
		width: calc(100% / 3 - 10px);
	}

	.ProductsInfo {
		display: none;
	}

	.ProductsInfoMobile {
		display: block;
	}

	.ProductsInfoContentMobile {
		width: 70%;
	}
	
	.ProductsBox {
		width: calc(100%);
		height: calc(100vw * 280 / 440);
		display: none;
	}
	
	.ProductsBoxMobile {
		width: calc(100%);
		display: block;
	}
	
	.ProductBoxTitle {
		width: 60px;
		height: 190px;
	}
}

/*********************************************************** medium screen */
@media screen and (min-width: 900px) {
	.ProductsBox {
		width: calc((100% - 20px) / 2);
		height: calc((100vw / 2) * 280 / 440);
		display: inline-block;
	}
	
	.ProductsBoxMobile {
		width: calc(100%);
		display: none;
	}
	
	.ProductBoxTitle {
		width: calc(100px * (60/190));
		height: 100px
	}
}

/*********************************************************** large screen */
@media screen and (min-width: 1120px) {
	#MainContent {
		width: calc(100% - 100px);
		padding: 20px 0px 30px 0px;
	}

	#ProductsContent {
		margin: 0px auto;
	}

	.ProductsNavBox {
		width: calc(100% / 6 - 10px);
	}

	.ProductsInfo {
		display: block;
	}

	.ProductsInfoMobile {
		display: none;
	}
	
	.ProductsBox {
		width: calc((100% - 20px) / 2);
		height: calc((100vw / 2) * 320 / 440);
		display: inline-block;
	}
	
	.ProductsBoxMobile {
		width: calc(100%);
		display: none;
	}
	
	.ProductBoxTitle {
		width: calc(130px * (60/190));
		height: 130px
	}
}


/*********************************************************** Main Content */
#BottomBackground {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgb(26, 25, 23);
}

#MainContent {
	position: relative;
	top: 0px;
	left: 0px;
	background: rgb(17, 16, 15);
	margin: auto;

	/*background-repeat: repeat;
	background-image: url("assets/images/common/pattern-1.png");*/
}

/****************************************************************************************************************************************** NEW */
.ProductsTopButton {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100px;
	height: 30px;
	
	background: rgb(201, 181, 140);
	
	border-radius: 15px;
	border-style: none;
	
	cursor: pointer;
	
	color: rgb(62, 43, 31);
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	line-height: 30px;
	
	-webkit-transition: background 0.3s, color 0.3s;
	transition: background 0.3s, color 0.3s;
}
.ProductsTopButton:hover {
	background: rgb(62, 43, 31);
	color: rgb(201, 181, 140);;
}

#ProductsContent {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	min-height: 800px;
	
	background: rgb(24, 24, 24);
	
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.ProductsBox {
	position: relative;
	max-height: calc( ((1020px - 20px) / 2) * 320 / 440 );
	
	margin: 0px 0px 20px 0px;
	
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	
	overflow: hidden;
}
.ProductsBox:hover .ProductsOverlay {
	opacity: 1;
}
.ProductsBox:hover .ProductsImage {
	transform: scale(1.05);
}

.ProductBoxImageTitle {
	position: relative;
	width: 20px;
	height: 100px;
	background: red;
}

.ProductsImage {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	
	transform: scale(1.005);

	-webkit-transition: transform 0.5s;
	transition: transform 0.5s;
}

.ProductsOverlay {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	
	opacity: 0;
	
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.ProductsBoxBackground {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	
	background: rgba(0, 0, 0, 0.65);
}

.ProductsTextBox {
	position: absolute;
	top: 0px;
	left: 40px;
	width: calc(100% - 80px);
}

.ProductsText {
	position: relative;
	width: 100%;
	
	color: rgb(201, 181, 140);
	font-size: 15px;
	font-weight: 400;
	text-align: justify;
	line-height: 18px;
}

.ProductBoxTitle {
	position: absolute;
	top: 20px;
	left: 20px;
	
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url("assets/images/index/index-banner-title.svg");
}

.ProductsBoxMobile {
	position: relative;
	
	margin: 0px;
	
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.ProductsTextMobile {
	position: relative;
	width: calc(100% - 100px);
	
	margin: 0px auto;
	
	color: rgb(201, 181, 140);
	font-size: 15px;
	font-weight: 400;
	text-align: justify;
	line-height: 20px;
}

.ProductsImageMobile {
	position: relative;
	top: 0px;
	left: 0px;
	width: calc(100%);
	height: calc(100vw * 240 / 440);
	
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.ProductTextBoxMobile {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	
	background: rgb(39, 33, 32);
	
	background-repeat: repeat;
	background-image: url("assets/images/common/pattern-1.png");
}

.ProductBoxMobileSpacing {
	position: relative;
	width: 100%;
	height: 20px;
	
	background: rgb(17, 16, 15);
}
/****************************************************************************************************************************************** NEW */

#ProductsNavMenu {
	top: 0px;
	left: 0px;
	max-width: 90%;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
}

.ProductsNavBox {
	position: relative;
	height: 50px;
	padding: 0px 5px;
	display: inline-block;
	cursor: pointer;
	margin: 0px 0px 5px 0px;
}

.ProductsNavBox2 {
	width: 90%;
	margin: auto;
	color: rgb(193, 176, 137);
	font-size: 15px;
	line-height: 19px;
	font-weight: 600;
	text-align: center;
}

.ProductsNavBox:hover > .ProductsNavBox2 {
	color: rgb(236, 223, 195);
	/*background-color: rgba(193, 176, 137, 0.2);*/
	text-decoration: none;
}

.ProductsNavLine {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 1px;
	background: rgb(193, 176, 137);
}

.ProductsInfo {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
}

.ProductsInfo2 {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.ProductsInfoLeft {
	position: relative;
	top: 0px;
	left: 0px;
	width: calc(100% / 7 * 5);
	display: inline-block;
	background: rgb(50, 50, 50);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.ProductsInfoRight {
	position: relative;
	top: 0px;
	left: 0px;
	width: calc(100% / 7 * 2);
	height: calc((1120px - 100px - 20px - 20px) / 7 * 2 * 1.5);
	min-height: 350px;
	display: inline-block;
	background: rgb(39, 33, 32);
	/*cursor: pointer;*/
}

.ProductsInfoTopLine {
	position: absolute;
	top: 30px;
	left: 20px;
	width: calc(100% - 40px);
	height: 1px;
	background: rgb(193, 176, 137);
}

.ProductsInfoBottomLine {
	position: absolute;
	bottom: 30px;
	left: 20px;
	width: calc(100% - 40px);
	height: 1px;
	background: rgb(193, 176, 137);
}

.ProductsInfoContent {
	width: calc(100% - 57px);
}

.ProductsInfoContentTitle {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;

	font-size: 16px;
	line-height: 19px;
	text-align: center;
	margin: 0px 0px 15px 0px;
}

.ProductsInfoContentText {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;

	font-size: 13.5px;
	line-height: 19px;
	text-align: center;
	margin: 0px 0px 15px 0px;
}

.ProductsInfoContentReadMore {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;

	font-size: 14px;
	text-align: center;
}


/****************************************************************************** MOBILE */
.ProductsInfoMobile {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	background: rgb(39, 33, 32);

	margin: 0px 0px 30px 0px;
	/*cursor: pointer;*/
}

.ProductsInfoImageMobile {
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	min-height: 250px;
	height: 60vw;
	max-height: 360px;
	background: rgb(50, 50, 50);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.ProductsInfoContentMobile {
	position: relative;
	top: 0px;
	left: 0px;
	margin: auto;
}

.ProductsInfoLineMobile {
	position: relative;
	top: 0px;
	left: 0px;
	width: calc(100% - 40px);
	height: 1px;
	margin: auto;
	background: rgb(193, 176, 137);
}

.ProductsInfoTitleMobile {
	position: relative;
	top: 0px;
	left: 0px;
	width: calc(100% - 60px);
	margin: 0px auto 10px auto;

	font-size: 16px;
	line-height: 17px;
	text-align: center;
}

.ProductsInfoTextMobile {
	position: relative;
	top: 0px;
	left: 0px;
	width: calc(100% - 60px);
	margin: auto;

	font-size: 15px;
	line-height: 16px;
	text-align: left;
}

.ProductsInfoReadMoreMobile {

}