/**
 * =============== GOOGLE FONTS ===============
 *
 * @format
 */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;200;300;400;500;600;700&family=Poppins:wght@200;300;400;500;600;700;800;900&family=Cinzel+Decorative:wght@400;700;900&family=Piazzolla:opsz,wght@8..30,100;8..30,200;8..30,300;8..30,400;8..30,500;8..30,600;8..30,700;8..30,800;8..30,900&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');/*=============== VARIABLES CSS ===============*/
:root {
	--header-height: 3.5rem;
	/*========== Colors ==========*/
	/*Color mode HSL(hue, saturation, lightness)*/
	--first-color: hsl(15, 60%, 52%);
	--theme-color: #064631;
	--theme-color-light: #2aa179;
	--first-gradient: linear-gradient(
		199deg,
		rgb(9, 93, 66) 12%,
		rgb(9, 50, 36) 100%
	);
	--second-gradient: linear-gradient(
		351deg,
		rgb(9, 93, 66) 5%,
		rgb(9, 50, 36) 100%
	);
	--title-color: hsl(0, 0%, 12%);
	--text-color: hsl(0, 0%, 54%);
	--white-color: #fff;
	--body-color: hsl(0, 0%, 96%);
	--container-color: hsl(0, 0%, 98%);

	/*========== Font and typography ==========*/
	/*.5rem = 8px | 1rem = 16px ...*/
	--body-font: 'Poppins', sans-serif;
	--second-font: 'Cinzel Decorative', serif;
	--bigger-font-size: 2.25rem;
	--big-font-size: 1.5rem;
	--h1-font-size: 1.5rem;
	--h2-font-size: 1.25rem;
	--h3-font-size: 1rem;
	--normal-font-size: 0.938rem;
	--small-font-size: 0.813rem;
	--smaller-font-size: 0.75rem;

	/*========== Font weight ==========*/
	--font-regular: 400;
	--font-medium: 500;
	--font-semi-bold: 700;

	/*========== z index ==========*/
	--z-tooltip: 10;
	--z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1152px) {
	:root {
		--bigger-font-size: 4rem;
		--big-font-size: 3.5rem;
		--h1-font-size: 2.25rem;
		--h2-font-size: 1.5rem;
		--h3-font-size: 1.25rem;
		--normal-big-font-size: 1.125rem;
		--normal-font-size: 1rem;
		--small-font-size: 0.875rem;
		--smaller-font-size: 0.813rem;
	}
}

/*=============== BASE ===============*/
* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

html {
	scroll-behavior: smooth;
}

input,
button,
body {
	font-family: var(--body-font);
	font-size: var(--normal-font-size);
}

a {
	font-family : inherit;
}

body {
	background-color: var(--body-color);
	color: var(--text-color);
	transition: background 0.4s; /* for dark mode animation */
}

input,
button {
	border: none;
	outline: none;
}

h1,
h2,
h3,
h4 {
	color: var(--title-color);
	font-family: var(--second-font);
	font-weight: var(--font-semi-bold);
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
	color: hsl(0, 0%, 27%);
}

img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.padding-1 {
	padding: 40px 80px;
}

.padding-x-1 {
	padding: 0 80px;
}

/*=============== THEME ===============*/

/*========== Variables Dark theme ==========*/

/*========== 
	Color changes in some parts of 
	the website, in dark theme
==========*/

/*=============== REUSABLE CSS CLASSES ===============*/
/* .container {
	max-width: 1120px;
	margin-inline: 1.5rem;
	margin: 0 auto;
} */

.grid {
	display: grid;
	gap: 1.5rem;
}

.section {
	padding-block: 5rem 1rem;
}

.main {
	overflow: hidden; /* For animation ScrollReveal */
}

.select-box {
	padding: 0.3rem 1rem;
	width: 50%;
	max-width: 280px;
	font-size: 16px;
	font-family: var(--body-font);
}

.select-box option {
	padding: 0.3rem 1rem;
}

.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 12px;
}

.pagination li {
	padding: 6px 12px;
	border: 1px solid var(--text-color);
	min-width: 40px;
	text-align: center;
	cursor: pointer;
}

.pagination li.active {
	border: 2px solid var(--theme-color);
	color: var(--theme-color);
}

.xl-break {
	max-width: 1800px;
	margin-left: auto;
	margin-right: auto;
}

.section-margin {
	margin-top: 120px;
}

/*=============== HEADER & NAV ===============*/
.header {
	position: fixed;
	width: 100%;
	background-color: #efecf3;
	top: 0;
	left: 0;
	z-index: var(--z-fixed);
	padding: 20px 40px !important;
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav .logo {
	width: 100px;
}

.logo img {
	border-radius: 4px;
}

.nav__toggle,
.nav__close,
.search {
	display: flex;
	font-size: 2rem;
	color: var(--title-color);
	cursor: pointer;
	font-weight: 200;
}

.nav__link,
#product_link,
#customize {
	font-family: var(--second-font);
	position: relative;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1.8px;
	color: var(--title-color);
	cursor: pointer;
	background-color: transparent;
}

.nav__item .sub__menu {
	position: absolute;
	width: 200px;
	background: linear-gradient(
		0deg,
		rgba(255, 255, 255, 1) 70%,
		rgba(255, 255, 255, 0.6027661064425771) 100%
	);
	box-shadow: 0 20px 45px #00000020;
	margin-top: -50px;
	margin-left: -20px;
	opacity: 0;
	z-index: -999;
	transition: all ease 0.4s;
	padding: 20px;
}

.nav__link::after,
#product_link::after,
#customize::after {
	content: "";
	position: absolute;
	background-color: var(--theme-color);
	height: 2px;
	width: 0;
	left: 0;
	bottom: -6px;
	transition: 0.3s;
}

.nav__link:hover::after,
#product_link:hover::after,
#customize:hover::after {
	width: 100%;
}

.nav__link:hover,
#product_link:hover,
#customize:hover {
	color: var(--theme-color);
}

.nav__list {
	display: flex;
	column-gap: 40px;
	margin-bottom: 0px;
}

.nav__close,
.nav__toggle,
.dropdown_icon,
.search {
	font-size: 1.5rem;
}

.nav__toggle,
.nav__close {
	display: none;
}

.search:hover {
	color: var(--theme-color);
}

.logo__wrapper {
	display: flex;
	align-items: center;
}



/*=============== HOME ===============*/
/* .home {
	margin-top: 84px;
} */
.hero {
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	height: calc(100vh - 84px);
	padding: 20px 40px;
	border-bottom: 1px solid white;
}

.hero .photo {
	width: 40%;
}

.hero .data {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40%;
	font-size: var(--h2-font-size);
	align-items: center;
}

.hero .data h3 a {
	color: var(--text-color);
}
/*=============== POPULAR ===============*/

.popular h2 {
	font-size: var(--h2-font-size);
	margin-bottom: 40px;
}

.popular .products_list_one {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: start;
	column-gap: 40px;
	row-gap: 40px;
}

.popular .products_list_one .img-container {
	width: calc(25% - 30px);
	height: fit-content;
}

.popular .products_list_one .img-container img {
	transition: 0.4s;
}

.popular .products_list_one .img-container img,
.features .product-container .product .product_img img {
	border-radius: 8px;
}

.popular .products_list_one .img-container:hover img {
	scale: 1.02;
}

.popular .products_list_one .img-container a {
	display: block;
	text-align: center;
	margin-top: 20px;
	color: hsl(0, 0%, 12%);
}

.features h2 {
	font-size: var(--h2-font-size);
	margin-bottom: 40px;
}

.features .product-container {
	display: flex;
	align-items: center;
	justify-content: start;
	column-gap: 20px;
}

.features .product-container .product {
	width: 20%;
}

.features .product-container .product .product_img {
	overflow: hidden;
}

.features .product-container .product .product_img img {
	transition: 0.3s;
}

.features .product-container .product .product_img:hover img {
	scale: 1.02;
}

.features .product-container .product p {
	text-align: center;
	margin-top: 12px;
	color: hsl(0, 0%, 12%);
}

.footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0 16px 0;
	margin-top: 40px;
	margin-left: 80px;
	margin-right: 80px;
	border-top: 2px solid rgb(96, 95, 95);
}

.footer ul {
	display: flex;
	justify-content: start;
	align-items: center;
	column-gap: 1.5rem;
}

.footer ul li a {
	transition: 0.4s;
}

.footer ul li a:hover {
	text-decoration: underline;
	text-underline-offset: 6px;
}

.footer .social_link {
	display: flex;
	align-items: center;
	justify-content: end;
	column-gap: 20px;
}

.footer .social_link i {
	font-size: 24px;
	transition: 0.4s;
	cursor: pointer;
	color: hsl(0, 0%, 27%);
}

.footer .social_link i:hover {
	scale: 1.1;
}

/* Product Page */
.section_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 60px 80px 20px 80px;
}

.products_list {
	padding: 0 80px 60px 80px;
	display: flex;
	flex-wrap: wrap;
}

.products_list .product_card {
	width: 25%;
	border: 1px solid white;
	row-gap: 20px;
	padding-bottom: 10px;
}

.products_list .product_card .product_name {
	font-size: 16px;
	padding: 0 10px;
	font-weight: var(--font-regular);
	margin-top: 6px;
	transition: 0.4s;
}

.products_list .product_card .pro_img_container {
	width: 100%;
	height: auto;
	overflow: hidden;
}

.products_list .product_card img {
	transition: 0.5s;
	border-radius: 0px;
}

.products_list .product_card .product_name .product_price {
	color: inherit;
	font-weight: 800;
	float: right;
	transition: 0.4s;
}

.products_list .product_card:hover .product_name {
	color: var(--theme-color-light);
	font-weight: var(--font-medium);
}

.products_list .product_card:hover img {
	scale: 1.05;
}

/* Product Details */

.product-details {
	display: flex;
	justify-content: start;
	align-items: flex-start;
	padding: 60px 80px 20px 80px;
	line-height: 28px;
}

.product-details .img_container {
	width: 40%;
}

.product-details .img_container img {
	border-radius: 8px;
}

.product-details .details {
	padding-left: 80px;
	width: 50%;
}

/* About us */
.about_us {
	display: flex;
	align-items: center;
	padding: 60px 80px 20px 80px;
	min-height: 100vh;
}

.about_us .img_container {
	width: 40%;
}

.about_us .about_us_details {
	width: 50%;
	padding: 50px;
	line-height: 24px;
}

.about_us .about_us_details h2 {
	margin-bottom: 20px;
}

/* WORKSHOP */
.work_shop_list {
	display: flex;
	justify-content: start;
	flex-wrap: wrap;
	column-gap: 20px;
	row-gap: 20px;
	padding: 40px;
}

.work_shop_list .img_container {
	width: calc(33% - 12px);
}

.work_shop_list .img_container img {
	object-fit: cover;
	max-width: 100%;
	width: 100%;
}

.contact_us_form {
	width: 60%;
	margin: 40px auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px;
	background: rgb(239, 238, 238);
	border-radius: 12px;
}

.contact_us_form div {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin-top: 16px;
}

input,
textarea {
	width: 80%;
	padding: 8px 16px;
	border-radius: 8px;
	border: none;
	transition: 0.3s;
}

textarea {
	max-width: 80%;
}

input::placeholder,
textarea::placeholder {
	color:hsl(0, 1%, 71%);
}

input:focus,
textarea:focus {
	outline: 2px solid #0646319a;
	border: none;
}

.contact_us_form button {
	margin-top: 16px;
	padding: 8px 20px;
	background-color: var(--theme-color);
	color: rgb(234, 232, 232);
	border-radius: 12px;
	transition: 0.3s;
}

.contact_us_form button:hover {
	background-color: var(--theme-color-light);
}

/* Swiper class */

/*=============== CHOOSE ===============*/

/* Rotate icon */

/* Change color icon */

/* Title color change */

/*=============== FEATURES ===============*/

/*=============== PRODUCTS ===============*/

/*=============== JOIN ===============*/

/*=============== FOOTER ===============*/

/*=============== SCROLL BAR ===============*/

/*=============== SCROLL UP ===============*/

/* Show Scroll Up */

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 576px) {
	.nav .logo {
		width: 80px;
	}
	.hero {
		height: 30vh;
		border-bottom: 0.5px solid white;
	}

	.hero .data h3 a {
		font-size: var(--normal-font-size);
	}

	.hero-content {
		position: static;
		width: 100%;
		color: black;
		padding: 6rem 0;
	}

	.padding-1 {
		padding: 30px;
	}

	.padding-x-1 {
		padding: 0 30px;
	}

	.popular h2 {
		margin-top: 10px;
		margin-bottom: 30px;
		font-size: var(--h2-font-size);
	}

	.popular .products_list_one {
		flex-direction: column;
		row-gap: 30px;
	}

	.popular .products_list_one .img-container {
		width: 100%;
		font-size: var(--h3-font-size);
		font-weight: var(--font-medium);
	}

	.popular .products_list_one .img-container img {
		border-radius: 8px;
	}

	.popular .products_list_one .img-container a {
		margin-top: 6px;
		text-align: center;
	}

	.features h2 {
		margin-bottom: 20px;
		font-size: var(--h2-font-size);
	}

	.features .product-container {
		justify-content: space-between;
		flex-wrap: wrap;
		row-gap: 20px;
	}

	.features .product-container .product {
		width: 45%;
		justify-content: center;
	}

	.features .product-container .product .product_img {
		height: auto;
	}

	.features .product-container .product p {
		margin-top: 6px;
	}

	/* Products List */
	.section_header {
		padding: 20px;
		margin-top: 20px;
	}

	.products_list {
		padding: 20px;
	}

	.products_list .product_card {
		width: 50%;
		height: auto;
		overflow: hidden;
	}

	.products_list .product_card .pro_img_container {
		width: 90%;
		margin: 0 auto;
		height: auto;
		overflow: hidden;
	}

	.products_list .product_card .product_name {
		font-size: 12px;
		text-align: center;
	}

	/* Customize */

	.product-details {
		flex-direction: column;
		padding: 30px;
		line-height: 28px;
		margin-top: 12px;
	}
	.product-details .img_container {
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.product-details .img_container img {
		height: 35vh;
		object-fit: contain;
	}

	.product-details .details {
		padding: 20px;
		width: 100%;
	}

	/* Work Shop */
	.work_shop_list {
		margin-top: 20px;
		flex-wrap: none;
		align-items: center;
		flex-direction: column;
		justify-content: center;
		padding: 30px;
	}

	.work_shop_list .img_container {
		width: 100%;
	}

	/* About Us */
	.about_us {
		flex-direction: column;
		align-items: center;
		padding: 20px;
		margin-top: 60px;
	}

	.about_us .img_container {
		width: 100%;
	}

	.about_us .about_us_details {
		width: 100%;
		margin-top: 12px;
		padding: 0 10px;
		line-height: 24px;
	}

	.about_us .about_us_details h2 {
		text-align: center;
		margin-bottom: 12px;
		font-size: var(--h3-font-size);
	}

	.footer {
		flex-direction: column-reverse;
		row-gap: 12px;
	}

	.footer ul{
		flex-direction: column;
		row-gap: 12px;
	}

	.contact_us_form {
		margin: 0;
		width: 100%;
		padding: 20px;
	}

	input,
textarea {
	width: 100%;
	padding: 8px 16px;
	border-radius: 8px;
	border: none;
	transition: 0.3s;
}
}

/* For medium devices */
@media screen and (min-width: 576px) and (max-width: 768px) {
	.hero-content {
		position: static;
		width: 100%;
		color: black;
		padding: 6rem 0;
	}
	.nav .logo {
		width: 80px;
	}
	.hero {
		height: 40vh;
	}

	.hero .photo {
		width: 35%;
	}

	

	.padding-1 {
		padding: 40px;
	}

	.padding-x-1 {
		padding: 0 40px;
	}

	.popular .products_list_one .img-container a {
		margin-top: 12px;
	}

	.popular .products_list_one .img-container {
		width: 45%;
	}

	.features h2 {
		margin-bottom: 20px;
	}

	.features .product-container {
		flex-wrap: wrap;
		row-gap: 20px;
		column-gap: 20px;
	}

	.features .product-container .product {
		width: calc(33% - 12px);
	}

	.features .product-container .product p {
		margin-top: 8px;
	}

	.section_header {
		padding: 10px 30px;
	}

	.products_list {
		padding: 10px 30px;
	}

	.products_list .product_card {
		width: 33%;
	}

	.products_list .product_card .pro_img_container {
		height: auto;
	}

	.products_list {
		padding: 20px;
	}

	.products_list .product_card {
		width: 33%;
		height: auto;
		overflow: hidden;
	}

	.products_list .product_card .pro_img_container {
		width: 100%;
		margin: 0 auto;
		height: auto;
		overflow: hidden;
	}

	.products_list .product_card .product_name {
		font-size: 12px;
		text-align: center;
	}

	/* Customize */

	.product-details {
		flex-direction: column;
		padding: 30px;
		line-height: 28px;
		margin-top: 12px;
	}
	.product-details .img_container {
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.product-details .img_container img {
		height: 35vh;
		object-fit: contain;
	}

	.product-details .details {
		padding: 20px;
		width: 100%;
	}

	/* Work Shop */
	.work_shop_list {
		margin-top: 20px;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		padding: 30px;
	}

	.work_shop_list .img_container {
		width: 45%;
	}

	/* About Us */
	.about_us {
		flex-direction: column;
		align-items: center;
		padding: 30px;
		margin-top: 60px;
	}

	.about_us .img_container {
		width: 100%;
	}

	.about_us .about_us_details {
		width: 100%;
		margin-top: 12px;
		padding: 0 10px;
		line-height: 24px;
	}

	.about_us .about_us_details h2 {
		text-align: center;
		margin-bottom: 12px;
		font-size: var(--h3-font-size);
	}

	.footer {
		flex-direction: column-reverse;
		row-gap: 16px;
	}

	.footer ul{
		flex-direction: column;
		row-gap: 16px;
	}

	.contact_us_form {
		margin: 0;
		width: 100%;
		padding: 10px;
	}


}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.hero {
		height: 50vh;
	}

	.hero-content {
		position: static;
		width: 100%;
		color: black;
		padding: 6rem 0;
	}

	.padding-1 {
		padding: 40px;
	}

	.padding-x-1 {
		padding: 0 40px;
	}

	.popular h2 {
		margin-bottom: 25px;
	}

	.popular .products_list_one .img-container {
		width: calc(30% - 12px);
	}

	.features h2 {
		margin-bottom: 25px;
	}

	.features .product-container {
		flex-wrap: wrap;
		row-gap: 20px;
	}

	.features .product-container .product {
		width: calc(25% - 15px);
	}

	.section_header,
	.products_list {
		padding: 20px 40px;
	}

	.products_list .product_card .pro_img_container {
		height: auto;
	}

	.products_list .product_card .product_name {
		font-size: 0.8rem;
	}

	.product-details {
		align-items: center;
		padding: 20px 40px 20px 40px;
	}

	.product-details .img_container {
		width: 35%;
	}

	.product-details .details {
		padding: 40px;
		width: 65%;
	}

	.about_us .img_container {
		width: 50%;
	}

	.about_us .about_us_details {
		width: 50%;
	}

	.about_us {
		align-items: center;
	}

	.contact_us_form {
		width: 80%;
		padding: 20px;
	}
}

/* For large devices */
@media screen and (min-width: 1024px) {
	.hero {
		height: 92vh;
	}

	.hero .photo {
		width: 40%;
	}

	/* .nav__item:hover .sub__menu {
		z-index: 99;
		opacity: 1;
		margin-top: 20px;
	} */

	.nav__item:hover .sub__menu li {
		padding: 10px;
	}
}
