:root{
	--f-vsm: 12px;
	--f-sm: 14px;
	--f-main: 16px;
	--f-md: 18px;
	--f-lg: 20px;
	--f-xl: 24px;
	--f-xxl: 28px;
	--f-xxxl: 40px;
	--f-vxl: 65px;
	
	@media screen and (max-width:1200px) {
		--f-vsm: 12px;
		--f-sm: 13px;
		--f-main: 15px;
		--f-md: 16px;
		--f-lg: 18px;
		--f-xl: 20px;
		--f-xxl: 22px;
		--f-xxxl: 34px;
		--f-vxl: 40px;
	}

	@media screen and (max-width:991px) {
		--f-vsm: 12px;
		--f-sm: 13px;
		--f-main: 14px;
		--f-md: 15px;
		--f-lg: 16px;
		--f-xl: 18px;
		--f-xxl: 20px;
		--f-xxxl: 28px;
		--f-vxl: 34px;
	}

	@media screen and (max-width:765px) {
		--f-vsm: 10px;
		--f-sm: 12px;
		--f-main: 13px;
		--f-md: 14px;
		--f-lg: 15px;
		--f-xl: 16px;
		--f-xxl: 18px;
		--f-xxxl: 22px;
		--f-vxl: 28px;
	}
}

*{
	box-sizing: border-box;
}
body{
	margin: 0px;
	font-family: 'Gilroy-Regular', sans-serif;
	font-size: var(--f-main);
}
.f-bold{
	font-family: 'Gilroy-Bold', sans-serif;
}
.f-med{
	font-family: 'Gilroy-Medium', sans-serif;
}
.f-dm{
	font-family: "DM Sans", sans-serif;
}
.f-inter{
	font-family: "Inter", sans-serif;
}

a{
	text-decoration: none;
}
img{
	max-width: 100%;
}
ul{
	list-style: none;
}
.roboto{
	font-family: "Roboto", sans-serif;
}
.container-1{
	width: 90%;
	min-width: 340px;
	padding-block: 30px;
	margin: 0px auto;
}
.container-2,
.container-3{
	width: 80%;
	min-width: 340px;
	padding-block: 100px;
	margin: 0px auto;
}
.container-3{
	width: 85%;
	padding-block: 50px;
}
/* header section------------ */
.header-top{
	background-image: url('../images/main.png');
	background-size: cover;
	height: 1143px;
}
.header-top nav{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-top nav .logo{
	font-size: var(--f-xxl);
	color: #fff;
	font-weight: 600;
}
.header-top nav ul{
	display: flex;
	width: fit-content;
	max-width: 500px;
	gap: 16px;
	justify-content: space-between;
	align-items: center;
	padding-inline-start: 0px;

	@media screen and (max-width:765px) {
		gap: 10px;
	}
}
.header-top nav ul li,
.header-top nav ul li a{
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	font-size: var(--f-md);
	transition: opacity 0.2s;
	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-ms-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	
	@media screen and (max-width:765px) {
		font-size: var(--f-main);
	}
}
.header-top nav ul li a:hover{
	opacity: 0.7;
}
.header-top nav .bag{
	position: relative;
}
.header-top nav .bag::before{
	content: "0";
	width: 20px;
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	background-color: #E58411;
	color: #fff;
	font-size: var(--f-vsm);
	position: absolute;
	top: 0px;
	left: calc(100% - 15px);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}
.header-top nav .bag img{
	width: 24px;
}
.header-top h1{
	text-transform: capitalize;
  font-size: var(--f-vxl);
  color: #fff;
  width: 60%;
  margin: 100px auto 0px;
  text-align: center;
}
.header-top p{
	font-size: var(--f-xl);
	color: #fff;
	text-align: center;
	width: 50%;
	margin: 20px auto 0px;
}

.header-botton{
	display: flex;
	gap: 20px;
	justify-content: space-between;
	align-items: center;
	margin-block: 100px;

	@media screen and (max-width:991px) {
		flex-direction: column;
		align-items: unset;
		justify-content: unset;
		gap: 35px;
	}
}
.header-botton .our-info{
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: space-between;
}
.header-botton .our-info:first-of-type{
	justify-content: center;
	padding-right: 20px;
}
.header-botton .our-info .sub-title,
h2.sub-title{
	font-size: var(--f-xxxl);
	margin-block: 0px;
	color: #1E1E1E;
}
.header-botton .our-info span.info-title{
	color: #1E1E1E;
	font-size: var(--f-xl);
	opacity: 0.9;
}
.header-botton .our-info p{
	line-height: 185%;
	opacity: 0.8;
	color: #1E1E1E;
}

a.more-info{
	color: #E58411;
	font-size: var(--f-sm);
	line-height: 185%;
	display: flex;
	align-items: center;
	opacity: 0.7;
	transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
}
a.more-info:hover{
	opacity: 1;
	
	img{
		transform: translateX(6px);
		-webkit-transform: translateX(6px);
		-moz-transform: translateX(6px);
		-ms-transform: translateX(6px);
		-o-transform: translateX(6px);
	}
}

a.more-info img{
	width: 48px;
	margin-left: 10px;
	transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
}


/* selling section */
.selling{
	background-color: #F7F7F7;
}
.sellings-content{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.sellings-content ul{
	display: flex;
	width: fit-content;
	gap: 5px;
	min-width: 25%;
	margin-block:50px;
	padding: 6px;
	background-color: #EEEEEE;
	border-radius: 44px;
	-webkit-border-radius: 44px;
	-moz-border-radius: 44px;
	-ms-border-radius: 44px;
	-o-border-radius: 44px;
}
.sellings-content ul li{
	height: 45px;
	width: 84px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	border-radius: 32px;
	-webkit-border-radius: 32px;
	-moz-border-radius: 32px;
	-ms-border-radius: 32px;
	-o-border-radius: 32px;
	transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;

	@media screen and (max-width:765px) {
		height: 30px;
		width: 60px;
	}
}
.sellings-content ul li.active,
.sellings-content ul li:hover{
	background-color: #fff;
}
.cards{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	width: 100%;
	gap: 60px 30px;
	margin-block: 80px 50px;
	justify-content: space-between;	
}
.card{
	display: flex;
	background-color: #fff;
	flex-direction: column;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}
.card .product-img{
	background-color: #FAFAFA;
	height: 240px;
	width: 100%;
	position: relative;
	border-radius: 20px 20px 0px 0px ;
	-webkit-border-radius: 20px 20px 0px 0px ;
	-moz-border-radius: 20px 20px 0px 0px ;
	-ms-border-radius: 20px 20px 0px 0px ;
	-o-border-radius: 20px 20px 0px 0px ;
}
.card .product-img::before{
  content: '';
	width: 100px;
	height: 122px;
	position: absolute;
	background: #000000;
	opacity: 0.1;
	top: 46%;
	left: 31%;
	filter: blur(19px);
	transform: rotate3d(1, 0, 1, 87deg);
	-webkit-transform: rotate3d(1, 0, 1, 87deg);
	-moz-transform: rotate3d(1, 0, 1, 87deg);
	-ms-transform: rotate3d(1, 0, 1, 87deg);
	-o-transform: rotate3d(1, 0, 1, 87deg);
}
.card .product-img img{
	position: absolute;
	top: -20%;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}
.card .product-info{
	display: flex;
	flex-direction: column;
	padding: 20px;
}
.card .product-info .prod-type{
	color: #8D8D8D;
	
}
.card .product-info .prod-name{
	font-size: var(--f-lg);
	font-weight: 600;
	color: #0D1B39;
	margin-block: 5px;
}
.card .product-info .rate{
	color: #F6B76F;
	font-size: var(--f-sm);
	display: flex;
}
.card .product-info .rate i{
	margin-right: 5px;
}
.card .product-info .price-add{
	margin-block: 50px 10px;
	font-size: var(--f-lg);
	font-weight: 600;
	color: #0D1B39;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.card .product-info .price-add i{
	padding: 10px;
	cursor: pointer;
	background-color: #0D1B39;
	color: #fff;
	border: 1px solid #0D1B39;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
}
.card .product-info .price-add i:hover{
	background-color: #fff;
	color: #0D1B39;
}
.sellings-content > a:last-of-type{
	font-size: var(--f-md);
}
/* experiences section -------------*/
.experiences-content,
.materials-content{
	display: flex;
	justify-content: space-between;
	margin-block: 300px;
	gap: 100px;
	min-width: 350px;

	@media screen and (max-width:991px) {
		margin-block: 150px;
	}

	@media screen and (max-width:765px) {
		flex-direction: column;
		padding-inline: 10%;
		gap: 50px;
	}
}
.experiences-content > div,
.materials-content > div{
	flex: 1;
	min-width: calc(50% - 50px);
}
.experiences-content .experiences-img{
	position: relative;
	height: fit-content;
}
.experiences-content .experiences-img::before{
	content: '';
	width: 100%;
	height: 70%;
	position: absolute;
	z-index: -1;
	background-color: #F7F7F7;
	top: 50%;
	right: 0px;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}
.experiences-content .experiences-img::after{
	content: '';
	width: 70%;
	height: 100%;
	position: absolute;
	z-index: -1;
	background-color: #F7F7F7;
	top: -20%;
	left: 0px;
	border-radius:  0px 20px 20px;
	-webkit-border-radius:  0px 20px 20px;
	-moz-border-radius:  0px 20px 20px;
	-ms-border-radius:  0px 20px 20px;
	-o-border-radius:  0px 20px 20px;
}
.experiences-content .experiences-img img{
	width: 90%;
  box-shadow: 0px 50px 50px -35px rgba(0 ,0 ,0, 0.5);
  border-radius:0px 20px 20px 0px;
  -webkit-border-radius:0px 20px 20px 0px;
  -moz-border-radius:0px 20px 20px 0px;
  -ms-border-radius:0px 20px 20px 0px;
  -o-border-radius:0px 20px 20px 0px;
}
@media screen and (max-width:765px) {
	.experiences-content .experiences-img::before,
	.experiences-content .experiences-img::after{
		display: none;
	}
	.experiences-content .experiences-img img{
		border-radius: 20px;
		-webkit-border-radius: 20px;
		-moz-border-radius: 20px;
		-ms-border-radius: 20px;
		-o-border-radius: 20px;
		width: 100%;
	}
}
.experiences-content .experiences-info{
	padding: 20px 10% 0px 0px;
}
.experiences-info > span:first-of-type,
.materials-info > span:first-of-type{
	font-size: var(--f-md);
	line-height: 100%;
	letter-spacing: 17.5%;
	text-transform: uppercase;
	color: #E58411;
	margin-bottom: 18px;
	display: inline-block;
}
.experiences-content .experiences-info h2,
.materials-info h2{
	text-transform: capitalize;
}
.experiences-content .experiences-info p,
.materials-info p{
	font-size: var(--f-md);
	line-height: 185%;
	color: #1E1E1E;
	opacity: 0.8;
	margin-block: 30px;
}

/* materials section */
.materials-content{
	align-items: center;
}
.materials-info{
	padding-left: 100px ;
}
.materials-info h2{
	padding-right:160px ;
}

.materials-img{
	display: flex;
	justify-content: space-between;
}
.materials-img > div:first-of-type{
	width: 35%;
	display: flex;
	flex-direction: column;
}
.materials-img > div:first-of-type img{
	width: 100%;
	box-shadow: 0px 35px 50px -35px rgba(0 ,0 ,0, 0.5);
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-ms-border-radius: 15px;
	-o-border-radius: 15px;
}
.materials-img > div:first-of-type img:first-of-type{
	margin-bottom: 60px;
}
.materials-img > div:last-of-type{
	width: 60%;
	display: flex;
	align-items: end;
	position: relative;
}
.materials-img > div:last-of-type::before{
	content: '';
	width: 60%;
	height: 50%;
	position: absolute;
	z-index: -1;
	background-color: #F7F7F7;
	top: 50%;
	right: 0px;
	border-radius:  20px 0px 0px;
	-webkit-border-radius:  20px 0px 0px;
	-moz-border-radius:  20px 0px 0px;
	-ms-border-radius:  20px 0px 0px;
	-o-border-radius:  20px 0px 0px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}
.materials-img > div:last-of-type img{
	width: 100%;
	margin-bottom: 10px;
	box-shadow: 0px 35px 50px -35px rgba(0 ,0 ,0, 0.5);
}
@media screen and (max-width:765px) {
	.materials-content{
		flex-direction: column-reverse;
	}
	.materials-info{
		padding-inline-start: 0px;
	}
	.materials-img > div:last-of-type::before{
		display: none;
	}
	.materials-img > div:last-of-type img{
		border-radius: 20px;
		-webkit-border-radius: 20px;
		-moz-border-radius: 20px;
		-ms-border-radius: 20px;
		-o-border-radius: 20px;
	}
}

/* reviews section */
.reviews .container-2{
	padding: 0px;
	margin-block: 200px;
}
.reviews-content{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.reviews-content > span:first-child{
	font-size: var(--f-md);
	line-height: 100%;
	letter-spacing: 17.5%;
	text-transform: uppercase;
	color: #E58411;
	margin-bottom: 18px;
	display: inline-block;
}
.reviews-content .boxs{
	margin-top: 50px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
	gap: 40px;
	width: 100%;
	justify-content: space-between;

	@media screen and (max-width:765px) {
		gap: 50px 20px;
	}
}
.reviews-content .boxs .box{
	height: 500px;
	display: flex;
	padding: 20px;
	align-items: end;
	box-shadow: 0px 35px 50px -35px rgba(0 ,0 ,0, 0.5);
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}
.reviews-content .boxs .box:first-of-type{
	background-image: url(../images/sofa3-1.png);
	background-size: cover;
}
.reviews-content .boxs .box:nth-child(2){
	background-image: url(../images/sofa3-2.png);
	background-size: cover;
}
.reviews-content .boxs .box:last-of-type{
	background-image: url(../images/sofa3-3.png);
	background-size: cover;
}
.reviews-content .box .box-info{
	display: flex;
	flex-direction: column;
	background-color: #fff;
	height: 45%;
	width: 100%;
	padding-inline: 6%;
	align-items: center;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}
.reviews-content .box .box-info > span:first-of-type{
	font-size: var(--f-md);
	color: #1E1E1E;
	margin-top: -25px;
}
.reviews-content .box .box-info > span:last-of-type{
	font-size: var(--f-vsm);
	color: #1E1E1E;
	opacity: 0.6;
	margin-top: 10px;
}
.reviews-content .box .box-info p{
	font-size: var(--f-sm);
	opacity: 0.8;
	text-align: center;
}
.reviews-content .box .box-info img{
	width: 60px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	border: 6px solid #fff;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}
.reviews-content .box .box-info .review{
	color: #F6973F;
	display: flex;
	font-size: var(--f-sm);
}
.reviews-content .box .box-info .review i{
	margin-right: 5px;
}
.reviews-content .box .box-info .review i:last-of-type{
	opacity: 0.3;
	margin-right: 0px;
}

/* footer section */
footer{
	background-color: #F7F7F7;
}
.footer-infos{
	display: grid;
	gap: 40px;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	justify-content: space-between;
}
.footer-info{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
footer .copyright{
	display: flex;
  justify-content: space-between;
  margin-bottom: -48px;
  margin-top: 100px;
}
.footer-info .f-info-title{
	color: #F6973F;
	font-size: var(--f-md);
	letter-spacing: -0.23px;
}
.footer-info:first-of-type .f-info-title{
	color: #1E1E1E;
	font-size: var(--f-xxl);
	letter-spacing: 1%;
}
.footer-info p,
.footer-info > a,
.copyright div span{
	line-height: 160%;
	font-size: var(--f-sm);
	color: #1E1E1E;
}
.footer-info > a{
	opacity: 0.7;
	transition: opacity 0.2s;
	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-ms-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
}
.footer-info > a:hover{
	opacity: 1;
}
.copyright > span{
	font-size: var(--f-sm);
}
.copyright div span:first-of-type{
	margin-right: 40px;
}

.footer-info a i{
	opacity: 1;
	margin-right: 10px;
}


