@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300&family=Roboto:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');


@font-face {
	font-family: "Jakob-Bold";
	src: url("//db.onlinewebfonts.com/t/21efa9d175a553dfa3c83204792f7b6e.eot");
	src: url("//db.onlinewebfonts.com/t/21efa9d175a553dfa3c83204792f7b6e.eot?#iefix") format("embedded-opentype"),
		url("//db.onlinewebfonts.com/t/21efa9d175a553dfa3c83204792f7b6e.woff2") format("woff2"),
		url("//db.onlinewebfonts.com/t/21efa9d175a553dfa3c83204792f7b6e.woff") format("woff"),
		url("//db.onlinewebfonts.com/t/21efa9d175a553dfa3c83204792f7b6e.ttf") format("truetype"),
		url("//db.onlinewebfonts.com/t/21efa9d175a553dfa3c83204792f7b6e.svg#Jakob-Bold") format("svg");
}

@font-face {
	font-family: "Helvetica Neue Regular";
	src: url('../fonts/Helvetica-Neue-Regular.otf');
}

@font-face {
	font-family: "Helvetica Neue Bold";
	src: url('../fonts/Helvetica-Neue-Bold.ttf');
}

@font-face {
	font-family: "Presto";
	src: url('../fonts/Presto.ttf');
}

html {
	font-size: 16px;
	overflow-x: hidden;
}

body {
	position: relative;
	font-family: 'Poppins', sans-serif;
	background: #fff;
	overflow-x: hidden;
}

@media(min-width:1366px) {
	.container {
		max-width: 1320px;
	}
}

:root {
	--white: #ffffff;
	--black: #000;
	--theme-color: #9A784B;
	--gradiant-color1: #9a784b;
	--gradiant-color2: #f6c98e;
	--gradiant-color3: #9a784b;
}

p {
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 2;
	color: var(--black);
}

h1,
h2,
h4,
h5,
h6 {
	color: var(--black);
}

h3 {
	font-family: 'Roboto', sans-serif;
}

.img-auto {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}

a,
button {
	text-decoration: none !important;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

a:hover,
button:hover {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

figure {
	margin: 0;
}

section {
	padding: 5rem 0;
}

.themeBtn {
	font-size: 2rem;
	color: var(--black);
	text-transform: capitalize;
	font-weight: 400;
	font-family: 'Lobster', cursive;
	display: inline-block;
	padding: 0.8rem 2rem;
	line-height: normal;
	background: transparent;
	border: 2px solid black;

}


.headingOne {
	font-size: 3.125rem;
	color: var(--black);
	font-weight: 600;
	text-transform: capitalize;
	line-height: 0.95;
}

.headingTwo {
	font-size: 3.75rem;
	font-weight: 600;
	color: var(--black);
	margin-bottom: 2.5rem;
	text-align: center;
	text-transform: uppercase;
}

/* header start */
header {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 11;
	background-color: #ffff;
}

.tobar .container {
	padding: 0.5rem 0 0.5rem;
}

.tobar .themeBtn {
	font-size: 0.875rem;
	border: 1.5px solid var(--theme-color);
	border-radius: 21px;
	padding: 0.563rem 1.375rem;
	background: transparent;
	color: var(--theme-color);
	font-weight: 600;
	position: relative;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;

}

.tobar .themeBtn:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
	background-color: var(--theme-color);
	color: var(--white);

}

.tobar .themeBtn:before {
	pointer-events: none;
	position: absolute;
	z-index: -1;
	content: '';
	top: 100%;
	left: 5%;
	height: 10px;
	width: 90%;
	opacity: 0;
	background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
	background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform, opacity;
	transition-property: transform, opacity;
}

.tobar .themeBtn:hover:before {
	opacity: 1;
	-webkit-transform: translateY(5px);
	transform: translateY(5px);
}

.cart-items {
	display: flex;
	gap: 26px;
	align-items: center;
	justify-content: end;
}

.cart-items li a {
	position: relative;
}

.cart-items li a i {
	color: var(--black);
	font-size: 1.5rem;
	font-weight: 400;

}

.cart-items li a i:hover {
	color: var(--gradiant-color3);
}

.cart-items li a span {
	display: inline-grid;
	place-items: center;
	height: 20px;
	width: 20px;
	border-radius: 50%;
	background: var(--theme-color);
	font-size: 0.688rem;
	border: 1px solid var(--white);
	box-shadow: 0px 8px 53.1px 5.9px rgb(180 180 180 / 25%);
	color: var(--white);
	line-height: 1;
	position: absolute;
	top: -12px;
	right: -8px;
}

header .form-inline {
	justify-content: end;
}

a.navbar-brand {
	display: flex;
	justify-content: end;
}

.navbar-nav {
	align-items: center;
	justify-content: center;
	width: 100%;
	gap: 4rem;
	padding: 1rem 0;
}

.navbar-nav .nav-item .nav-link {
	font-size: 1.25rem;
	color: var(--black);
	text-transform: uppercase;
	font-weight: 600;
	padding: 0 0;
	margin: 0 0;
	display: inline-block;
	font-family: "Jakob-Bold";
	position: relative;
}

.navbar-nav .nav-item .nav-link:hover {
	color: var(--theme-color);
}

.navbar .nav-item.drop-down {
	position: relative;
	z-index: 1;
}

.navbar .drop-down>a:after {
	content: '\f0d7';
	font-family: 'Font Awesome 5 Pro';
	font-weight: 900;
	padding-left: 5px;
}

.navbar .drop-down ul {
	display: block;
	position: absolute;
	left: 0;
	top: calc(100% + 40px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	padding: 0;
	background: #fff;
	box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
	transition: 0.3s;
}

.navbar .drop-down:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.navbar .drop-down li {
	min-width: 200px;
	position: relative;
	list-style: none;
}

.navbar .drop-down ul a {
	padding: 10px 20px;
	font-size: 1.125rem;
	font-weight: 500;
	text-transform: none;
	color: var(--black);
	display: block;
}

.navbar .drop-down ul a:hover {
	background: var(--theme-color);
	color: #fff;
}


/* header end */




/* slider start */

.mainSlider {
	height: 850px;
	position: relative;
	z-index: 1;
	padding: 0;
}

.homeSlider.swiper-container {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
}

.homeSlider .slide-inner {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-wrap: wrap;
	align-items: center
}

.slideContent h2 {
	font-size: 3.125rem;
	font-weight: 400;
	font-family: "Helvetica Neue Regular";
	margin: 0 0 1.5rem;
}

.slideContent h1 span {
	font-weight: 400;
}

.slideContent h3 {
	font-size: 2rem;
	margin: 0.5rem 0 1rem;
}

.bannerShapLeft {
	position: absolute;
	bottom: 10px;
	left: 0;
	z-index: -1;
}

.mainSlider .themeBtn {
	font-family: 'Lobster', cursive;
	font-style: italic;
}

.bannerShapRight {
	position: absolute;
	bottom: 10px;
	right: 0;
	z-index: -1;
}

/* slider end */

/* marquee start */
.marqueeSlider {
	background: #864891;
	padding: 1rem 0;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.marqueeSlider h3 {
	font-family: "Jakob-Bold";
	color: #f6d44c;
	font-size: 6rem;
	padding-top: 2.5rem;
	line-height: 1;
}

.marqueeSlider .line_item {
	padding: 10px 0;
	width: 100%;
	padding-left: 30px;
	/*transform: rotate(4deg);*/
	position: relative;
	overflow: hidden;
	z-index: 3;
	display: flex;
	align-items: center;
	flex-flow: nowrap;
}

.marqueeSlider .line_item h5 {
	color: #fff;
	font-family: "Helvetica Neue Regular";
	font-weight: 600;
	font-size: 3rem;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	flex: 0 0 65%;
	margin: 0;
	animation: moveOn infinite linear 10s;
}

@keyframes moveOn {
	0% {
		transform: translateX(-0%);
	}

	0% {
		transform: translateX(-100%);
	}
}

.productSec {
	background: #f9f9f9;
	text-align: center;
}

.marqueeSlider .line_item h5 i {
	margin: 0 10px;
	color: yellow;
}

.proCarousel .swiper-wrapper {
	display: flex;
	align-items: flex-end;
}

.productSec h2 span {
	font-size: 20vw;
	font-family: "Helvetica Neue Regular";
	letter-spacing: 0.75rem;
	display: block;
	color: #d9d9d9;
	font-weight: 500;
}

.productSec h2 {
	font-size: 3rem;
	font-family: 'Lobster', cursive;
}

.proThumb {
	text-align: center;
}

/* marquee end */


.happySlider {
	background: linear-gradient(to top, #fbdf4f, #f4884d);
	text-align: center;
}

.happySlider h2 {
	font-size: 4rem;
	font-family: "Jakob-Bold";
	color: #fbefaa;
	font-weight: 700;
	letter-spacing: 2px;
	text-align: center;
	text-transform: uppercase;
}

.happySlider p {
	font-family: "Helvetica Neue Regular";
	color: var(--black);
	font-size: 2.5rem;
	line-height: 1.2;
	margin-bottom: 2rem;
	text-align: center;
}

.happySlider .swiper-pagination2 {
	position: absolute;
	left: 0 !important;
	right: 0 !important;
	bottom: 1rem !important;
	display: flex;
	align-items: center;
	justify-content: center;
}

.askQuestions {
	background-image: linear-gradient(to top, #64c4b6, #7f67ad);
}

.askQuestions h2,
.askQuestions .themeBtn {
	color: var(--white);
}

.askQuestions .themeBtn {
	border-color: #fff;
}

.askQuestions h2 span {
	font-family: 'Lobster', cursive;
	display: block;
	font-size: 3rem;
	margin-bottom: 1rem;
}

.askQuestions h2 {
	font-family: "Jakob-Bold";
	color: #fff;
	font-size: 5rem;
	text-transform: uppercase;
}

.cardStyle {
	margin-bottom: 1rem;
	border: 0;
}

.cardStyle .card-header {
	padding: 0;
	border: 0;
	background: transparent;
}

.cardStyle .card-header h2 button {
    font-weight: bold;
	padding: 1rem 2rem;
	background: #fff;
	color: var(--black);
	font-size: 2rem;
	display: flex;
	align-items: center;
	font-family: "Helvetica Neue Regular";
	justify-content: space-between;
}

.cardStyle .card-body {
	text-align: left;
}

.cardStyle .card-header h2 button[aria-expanded="true"] i::before {
	content: '\f068';
}

/* newsletter start */

.stayConnected span {
    font-weight: bold;
    text-transform: uppercase;
}

.newletterForm {
	flex-direction: column;
	display: flex;
	align-items: flex-start;
}

.newletterForm input {
	font-size: 1.25rem;
	padding: 1rem;
	width: 100%;
	height: 4.125rem;
	margin-bottom: 10px;
}

ul.socialIo {
	display: flex;
	gap: 1rem;
}

ul.socialIo a {
	font-size: 2rem;
}

/* newsletter end */

/* blog start */
.blogSec {
	background: #f1f1f1;
}

.blogSec h2 {
	font-family: "Jakob-Bold";
	text-align: center;
	font-size: 3.125rem;
	color: #000;
	margin: 0;
	line-height: 1;
	text-transform: uppercase;
	/* font-family: "Helvetica Neue Regular"; */
}

.blogSec p {
	font-family: "Helvetica Neue Regular";
	font-size: 3rem;
	font-weight: 400;
	line-height: 1;
	color: #000;
}

.blogSec h4 {
	font-family: 'Lobster', cursive;
	font-size: 2.25rem;
	color: #000;
	line-height: 1;
	margin-bottom: 1.5rem;
}

.blogSec .themeBtn {
	font-size: 1.25rem;
	padding: 0.75em 1.5em;
}

/* blog end */

/* Begin: footer */
footer {
	background-color: #fff;
	position: relative;
	padding-top: 6rem;
}

footer p {
	color: var(--black);
	font-family: "Helvetica Neue";
	margin-top: 1rem;
	text-align: left;
}

footer h3 {
	font-family: "Jakob-Bold";
	color: var(--black);
	font-size: 2rem;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

footer .links,
footer .contInfo {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-flow: column;
}

footer .contInfo {
	gap: 2rem 1rem;
}

footer .links li a {
    padding: 0;
	font-size: 1.25rem;
	color: #000;
	text-transform: uppercase;
	font-family: "Helvetica Neue Regular";
	display: block;
}

footer .contInfo li a {
	display: flex;
	align-items: flex-start;
	gap: 0 1.5rem;
	line-height: 1.5;
}

footer .contInfo li:nth-child(1) a span {
	font-size: 1.5rem;
	font-weight: 600;
}

footer .contInfo li a span {
	display: block;
	text-transform: none;
	font-size: 1.125rem;
	color: var(--white);
	line-height: 1.5;
	font-weight: 400;
}

footer .links li a:hover,
footer .links li a:focus {
	color: var(--theme-color);
}

.copyRight {
	border-top: 1px solid rgb(225 225 225/18%);
	padding: 2rem 0;
	margin-top: 2rem;

}

.copyRight p {
	font-size: 1.125rem;
	color: var(--black);
	line-height: 1;
	margin: 0;
	text-align: center;
}

.footerSocial {
	display: flex;
	margin-top: 2rem;
	align-items: center;
	justify-content: center;
	gap: 0 16px;
}

.footerSocial a {
	font-size: 1rem;
	color: var(--white);
	display: grid;
	place-items: center;
	border-radius: 50%;
	background-color: #1a1a1a;
	width: 60px;
	height: 59px;
}

.footerSocial a:hover {
	background-color: var(--theme-color);
	color: var(--white);
	border-color: var(--theme-color);
}

footer .links {
	display: flex;
	flex-flow: column wrap;
	margin: 0;
	max-height: 250px;
	gap: 2px 0rem;
}

ul.shopAll li a {
    font-family: "Jakob-Bold";
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
}


/* END: footer */



/* preloader start */
.preLoader {
	width: 100%;
	height: 100%;
	z-index: 1111;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-color: var(--white);
}

.ip {
	width: 16em;
	height: 8em;
}

.ip__track {
	stroke: (#000, 90%, 90%);
	transition: stroke #000;
}

.ip__worm1,
.ip__worm2 {
	animation: worm1 2s linear infinite;
	stroke: var(--theme-color)
}

.ip__worm2 {
	animation-name: worm2;

}



/* Animation */

@keyframes worm1 {
	from {
		stroke-dashoffset: 0;
	}

	50% {
		animation-timing-function: steps(1);
		stroke-dashoffset: -358;
	}

	50.01% {
		animation-timing-function: linear;
		stroke-dashoffset: 358;
	}

	to {
		stroke-dashoffset: 0;
	}
}

@keyframes worm2 {
	from {
		stroke-dashoffset: 358;
	}

	50% {
		stroke-dashoffset: 0;
	}

	to {
		stroke-dashoffset: -358;
	}
}

/* preloader end */

.skincare-section h2 {
	font-size: 14vw;
	font-family: "Helvetica Neue Regular";
	letter-spacing: 0.75rem;
	display: block;
	color: #d9d9d9;
	font-weight: 500;
}

.skincare-section h3 {
	font-family: "Jakob-Bold";
	font-size: 3rem;
	text-align: center;
	margin-top: 3rem;
	text-transform: uppercase;
}

.skincare-section h3.headingColor1 {
	color: #f68a4c;
}

.skincare-section h3.headingColor2 {
	color: #009a4d;
}

.skincare-section h3.headingColor3 {
	color: #8168ae;
}

.skincare-section h3.headingColor4 {
	color: #ad8877;
}

.nobadSec h4 {
	font-family: "Jakob-Bold";
	font-size: 5rem;
	color: #000;
	line-height: 1;
	text-transform: uppercase;
}

.nobadSec h4 span {
	font-family: "Helvetica Neue Regular";
	display: block;
	text-transform: none;
	font-size: 2.5rem;
	font-weight: 400;
}

.nobadSec h5 {
	font-family: 'Lobster', cursive;
	font-style: italic;
	text-align: center;
	font-size: 1.9rem;

}
.nobadSec p {
        font-weight: bold;
	font-family: "Helvetica Neue Regular";
	font-size: 1.5rem;
	text-align: center;
	line-height: 1.5;
}


/*Dynamic Time Changes*/

.menu-main-menu-container {
    margin: auto;
}