@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root 
{
    --yellow: #c78634;
    --black: #130f40;
    --light-color: #666;
    --box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.1);
    --border: 0.5rem solid rgba(0,0,0.1);
    --outline: .1rem solid rgba(0,0,0.1);
}


*
{
	font-family: 'Poppins', sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
	border: none;
	text-decoration: none;
	text-transform: capitalize;
	transition: all .2s linear;
}

html 
{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

body 
{
    background: #eee;
}

section
{
	padding: 2rem 9%;
}

.heading
{
	text-align: center;
	padding: 2rem 0;
	padding-bottom: 3rem;
	font-size: 3.5rem;
	color: var(--black);
}

.heading span
{
	background: var(--yellow);
	color: #fff;
	display: inline-block;
	padding: .5rem 3rem;
	clip-path: polygon(100% 0, 93% 50%, 100% 99%, 0% 100%, 7% 50%, 0% 0%);
}


.header
{
	border: 1px solid;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2rem 9%;
	background: #fff;
	box-shadow: var(--box-shadow);
}

.home
{
	border: 1px solid;
	display:	flex;
	justify-content: center;
	background:	url(../image/banner.png) no-repeat;
	background-position: center;
	background-size: cover;
	padding-top: 17rem;
	padding-bottom: 9rem;
}

.home .content
{
	border:;
	text-align: center;
	width: 60rem;
}

.home .content h3
{
	color: var(--black);
	font-size: 3rem;
}

.home .content h3 span
{
	color: var(--yellow);
}

.home .content p
{
	color: var(--light-color);
	font-size: 1.7rem;
	padding: 1rem 0;
	line-height: 1.8;
}

.header .logo
{
	font-size: 2.5rem;
	font-weight: bolder;
}

.header .logo i
{
	color: var(--yellow);
}

.header .logo img
{
	height: 5rem;

}


.header .navbar a
{
	font-size: 1.7rem;
	margin: 0 1rem;
	color: var(--black);
}

.header .navbar a:hover
{
	color: var(--yellow);
}

.header .icons div 
{
  border: 0px solid;
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  border-radius: .5rem;
  background: #eee;
  color: var(--black);
  font-size: 2rem;
  margin-right: .3rem;
  text-align: center;
}

.header .icons div:hover
{
	background: var(--yellow);
	color: white;
}


#menu-btn
{
	display: none;
}

.header .navbar.active
{
	right: 2rem;
	transition: .1s linear;
}

.header .search-form 
{
  border: 0px solid;
  position: absolute;
  top: 110%;
  right: -110%;
  width: 50rem;
  height: 4rem;
  background: #fff;
  border-radius: .5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: var(--box-shadow);
}

.header .search-form.active
{
	right: 2rem;
	transition: .1s linear;
}

.header .search-form input 
{
  height: 100%;
  width: 100%;
  background: none;
  text-transform: none;
  font-size: 1.6rem;
  color: var(--black);
  padding: 0 1.5rem;
}

.header .search-form label
{
	font-size: 2.2rem;
	padding-right: 1.5rem;
	color:  var(--black);
	cursor: pointer;
}

.header .search-form label:hover
{
	color: var(--yellow);
}


/*Features*/
.features .box-container
{
	border: 0px solid;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
	gap: 1.5rem;
}

.features .box-container .box
{
	border: 0px solid red;
	padding: 3rem 2rem;
	background: #fff;
	outline: var(--outline);
	outline-offset: -1rem;
	text-align: center;
	box-shadow: var(--box-shadow);


}

.features .box-container .box:hover
{
	box-shadow: 1px 1px 10px 4px var(--yellow);
}

.features .box-container .box img
{
	margin: 1rem 0;
	height: 15rem;
}

.features .box-container .box h3
{
	font-size: 2.5rem;
	line-height: 1.8;
	color: var(--black);
}

.features .box-container .box p
{
	font-size: 1.5rem;
	line-height: 1.8;
	color: var(--light-color);
	padding-bottom: 1rem 0;
}
/*Features*/


/*Products*/
.products .product-slider
{
	border: 0px solid;
	padding: 	1rem;
}

.products .product-slider:first-child
{
	margin-bottom: 	2rem;
}

.products .product-slider	 .box
{
	border: 0px solid red;
	background: #fff;
	border-radius: 	.5rem;
	text-align: center;
	padding: 3rem 2rem;
	outline-offset: -1rem;
	outline: var(--outline);
	box-shadow: var(--box-shadow);
	transition: .1s linear;

	min-width: 350px;
	max-width: 400px;
	min-height: 310px;
	max-height: 310px;
}

.products .product-slider	 .box:hover
{
	box-shadow: 1px 1px 1px 4px var(--yellow);
}

.products .product-slider	 .box img
{
	height: 15rem;
}

.products .product-slider	 .box h1
{
	font-size: 2.5rem;
	color: var(--black);
}

.products .product-slider .box .price
{
	font-size: 2.0rem;
	color: var(--light-color);
}

.products .product-slider .box .price2
{
	font-size: 2.0rem;
	color: var(--light-color);
	padding: .5rem 0;
}
/*Products*/



/*Reviews*/
.reviews .review-slider
{
	border: 0px solid;
	padding: 	1rem;
}

.reviews .review-slider:first-child
{
	margin-bottom: 	2rem;
}

.reviews .review-slider	 .box
{
	border: 0px solid red;
	background: #fff;
	border-radius: 	.5rem;
	text-align: center;
	padding: 3rem 2rem;
	outline-offset: -1rem;
	outline: var(--outline);
	box-shadow: var(--box-shadow);
	transition: .1s linear;

	min-width: 300px;
	max-width: 500px;
	min-height: 250px;
	max-height: 250px;
}

.reviews .review-slider	 .box:hover
{
	box-shadow: 1px 1px 1px 4px var(--yellow);
}

.reviews .review-slider	 .box img
{
	height: 10rem;
	width: 10rem;
	border-radius: 50%;
}

.reviews .review-slider	 .box p
{
	padding: 1rem 0;
	line-height: 1.8;
	font-size: 1.5rem;
	color: var(--light-color);
}

.reviews .review-slider	 .box h3
{
	padding: 0rem 0;
	font-size: 2.2rem;
	color: var(--black);
}


.reviews .review-slider .box .price
{
	font-size: 2.5rem;
	color: var(--light-color);
}

.reviews .review-slider .box .price2
{
	font-size: 2.5rem;
	color: var(--light-color);
	padding: .5rem 0;
}
/*Reviews*/










/*Footer*/
.footer
{
	background: #fff;
}


.footer .box-container
{
	border: 0px solid;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(26rem, 0.3fr));
	gap:1.5rem;

}

.footer .box-container .box h3
{
	font-size: 2.5rem;
	color: var(--black);
	padding: 1rem 0;
}

.footer .box-container .box h3 i
{
	color: var(--yellow);
}

.footer .box-container .box .links
{
	display: block;
	font-size: 1.5rem;
	color: var(--light-color);
	padding: 1rem 0;
}

.footer .box-container .box .links i
{
	color: var(--yellow);
	padding-right: .5rem;
}

.footer .box-container .box .links:hover i
{
	padding-right: 2rem;
}

.footer .box-container .box p
{
	line-height: 1.8;
	font-size: 1.5rem;
	color: var(--light-color);
	padding: 1rem 0;
}

.footer .box-container .box .share a
{
	border: 0px solid;
	height: 4rem;
	width: 4rem;
	line-height: 4rem;
	border-radius: .5rem;
	font-size: 2rem;
	color: var(--black);
	margin-left: .2rem;
	background: #eee;
	text-align: center;
}

.footer .box-container .box .share a:hover
{
	background: var(--yellow);
	color: #fff;
}

.footer .credit
{
	text-align: center;
	margin-top: 2rem;
	padding: 1rem;
	padding-top: 2.5rem;
	font-size: 2rem;
	color: var(--black);
	border-top: var(--border);
}

.footer .credit span
{
	color: var(--yellow);
}
/*Footer*/








@media (max-width: 991px)
{
	html 
	{
		font-size: 55%;
	}

	.header
	{
		padding: 2rem;
	}

	section
	{
		padding: 2rem;
	}

	.products .product-slider	 .box
	{
		min-width: 350px;
		max-width: 400px;
		min-height: 280px;
		max-height: 280px;
	}

	.reviews .review-slider	 .box
	{
		min-width: 350px;
		max-width: 400px;
		min-height: 260px;
		max-height: 260px;
	}

}


@media (max-width: 768px)
{
	#menu-btn
	{
		display: inline-block;
	}

	.header .navbar
	{
		position: absolute;
		top: 110%;
		right: -110%;
		width: 30rem;
		box-shadow: var(--box-shadow);
		border-radius: .5rem;
		background: #fff;
	}

	.header .navbar a
	{
		font-size: 2rem;
		margin: 2rem 2.5rem;
		display: block;
	}
}


@media (max-width: 450px)
{
	html 
	{
		font-size: 50%;
	}

	.heading
	{
		font-size: 2.5rem;
	}
	.footer
	{
		text-align: center;
	}

	.products .product-slider	 .box
	{
		min-width: 350px;
		max-width: 400px;
		min-height: 250px;
		max-height: 250px;
	}

		.reviews .review-slider	 .box
	{
		min-width: 350px;
		max-width: 400px;
		min-height: 200px;
		max-height: 200px;
	}

}