/*====== STRUCTURE =======*/
html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
}

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

body {
	overflow: hidden;
	margin: 0px;
	max-width: 100%;
	font-family: 'Plus Jakarta Sans', sans-serif;
}

ul {
	padding-left: 0px;
}

ul li {
	list-style-type: none;
}

a {
	cursor: pointer;
}

a,
button,
input,
textarea {
	text-decoration: none !important;
	outline: none !important;
	border: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label {
	margin-bottom: 0px;
	margin-top: 0px;
}
.page-main-container{
	position: relative;
	background: linear-gradient(166.25deg, #FBF4EC 0.52%, #F0DBC9 88.84%);
	min-height: 100vh;
	padding-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
	text-align: center;
}


.page-shape{
	position: absolute;
}
.top-left-shape{
	top:0;
	left:0;
	text-align: left;
}
.top-right-shape{
	top:0;
	right:0;
	text-align: right;
}
.bottom-right-shape{
	bottom:0;
	right:0;
	text-align: right;
}
.bottom-left-shape{
	bottom: 0;
	left: 0;
}
.bg-shape{
	top:0;
	height: 100%;
    width: 100%;
}
.page-shape svg{
    width: 50%;
    height: auto;
}
.top-left-shape {
    text-align: left;
}
.top-left-shape {
    top: 0;
    left: 0;
}
.bg-shape img{
	width: 100%;
	height: 100%;
}
/* @media only screen and (width: 768px) and (height: 1024px) and (orientation:portrait) {
	body{
	  background: red !important;
	}  
  }
  @media all and (width: 1024px) and (height: 768px) and (orientation:landscape){
	body{
	  background: green !important;
	}   
  }
   */
.page-welcome-text{
	color: #000;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
letter-spacing: 0;
	position: relative;
}
.page-welcome-text::before{
	content: '';
    position: absolute;
    background: #000;
    height: 1px;
    width: 80px;
    left: -100px;
    top: 9px;
}
.page-welcome-text::after{
	content: '';
    position: absolute;
    background: #000;
    height: 1px;
    width: 80px;
    right: -100px;
    top: 9px;
}
.page-heading{
	color: #000;
	text-align: center;
	font-size: 60px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 0;
	margin: 30px 0 30px;
}
.tick svg {
    width: 46px;
    height: 46px;
}
.qus{
	color: #000;
text-align: center;
font-size: 26px;
font-style: normal;
font-weight: 600;
line-height: normal;
margin-bottom: 20px;
}
.answer-box{
	position: relative;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.09);
	max-width: 505px;
	overflow: hidden;
	margin-bottom: 30px;
}
.answer-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(225deg, #B1894C 0%, #D2AA5D 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}.answer p{
		font-size: 23px;
	}
.answer p{ 
	color: #000; 
font-style: normal;
font-weight: 500;
line-height: normal;
position: relative;
}
.answer-box .highlight {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
  }
  .answer{
	width: 100%;
    display: block;
	padding: 32px 40px;
	position: relative;
  }
  .answer:after{
	content:'';
	position: absolute;
	background: linear-gradient(61deg, rgba(194, 156, 83, 0.50) 0%, rgba(133, 94, 36, 0.50) 100%);
	width: 100%;
	height: 2.5px;
	bottom:0;
	left: 0;
  }
  .quad-answer::after{
	content: '';
    position: absolute;
	background: linear-gradient(61deg, rgba(194, 156, 83, 0.50) 0%, rgba(133, 94, 36, 0.50) 100%);
    height: 100%;
    width: 2px;
    top: 0;
    left: 50%;
  }
  .answer:last-child::after{
	content: none;
  }
  .answer-box input {
    display: none;
}
  /* .answer-box input:hover ~ .highlight {
	background-color: #CCC;
  }
   */
   .tick{
	opacity: 0;
	position: relative;
   }
  .answer-box input:checked ~ .highlight {
	background: linear-gradient(225deg, #B1894C 0%, #D2AA5D 100%);
  }
  .answer-box input:checked ~ .ans-inner>p {
	color: #fff;
  }
  .answer-box input:checked ~ .ans-inner>.tick {
	opacity: 1;
  }
  
 .next-btn{
	border-radius: 12px;
	background: #41311A;
	min-width: 505px;
	padding: 35px 40px;
	text-align: center;
	color: #FFF;
	font-size: 19px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing:0;
	transition: all .6s ease-in-out;
	display: block;
	height: 88px;
	display: flex;
	justify-content: center;
	align-items: center; margin:0 auto;
 }
 .next-btn:hover{
	box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.09);
	color: #fff;
 }
 .page-sub-heading{
	color: #000;
text-align: center;
font-size: 60px;
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing:0;
margin-bottom: 50px;
 }
 .quad-answer {
	display: flex;
	flex-wrap: wrap;
 }
 .quad-answer .answer {
    padding: 90px 50px;
}

.p-card{
	border-radius: 23px;
border: 3px solid #DEC4AE;
background: #FFF;
box-shadow: 0px 17px 98px 0px rgba(0, 0, 0, 0.16);
padding: 15px;
width: calc(33% - 10px);
}
.p-img{
	display: flex;
    justify-content: center;
	width: 127px;
    height: 127px;
	margin: 0px auto 15px;
}
.p-img img{
	width: 100%;
}
.product-card-main{
	margin: 0px 20px;
	position: relative;
	z-index: 1;
	justify-content: space-between;
}
.p-des h5{
	color: #000;
text-align: center;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: normal;
min-height: 30px;
margin-bottom: 0px;
}
.p-des p{
	color: #797979;
text-align: center;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 15px; /* 152.632% */
margin-bottom: 10px;
min-height: 75px;
}
.p-info span{
	color: #B8822C;
font-size: 12px;
font-style: normal;
font-weight: 500;
line-height: 29px; /* 145% */
letter-spacing:0;margin: 0 auto;
}
.p-info span:nth-child(1){
	border-right:1px solid #CACACA;
	padding-right: 30px;
}
.page-bottom-info{
	margin-top: 40px;
}
.signup-info h5{
	color: #000;
	text-align: center;
	font-size: 38px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 20px;
}
.signup-info p{
	color: #000;
text-align: center;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: normal;
margin-bottom: 10px;
}
.page-bottom-info{
	position: relative;
	z-index: 1;
	padding: 0px 50px;
}
.signup-input {
    border-radius: 12px;
    border: 3px solid #DEC4AE;
    background: #FFF;
    box-shadow: 0px 17px 98px 0px rgba(0, 0, 0, 0.16);
    padding: 10px 10px 10px 20px;
    height: 90px;
}
.signup-input input{
	width: calc(100% - 350px);
	height: 100%;
	background: transparent;
	border: none;
	color: #BFBFBF;
	text-align: left;
	font-size: 22px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.signup-input input::placeholder{
	color: #BFBFBF;
}
.signup-btn{
	border-radius: 6px;
	background: #7F5A23;
	width: 155px;
    height: 60px;
	color: #FFF;
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
.hero-slider {
	width: 100vw;
	height: 100vh;
}
.slider{
	
	width: 100vw!important;
	height: 100vh!important;
}
.slider-img-1{
	background: url('../images/slider-img1.png');
	background-size: cover;
    background-repeat: no-repeat!important;
    background-position: center;
}
.slider-img-2{
	background: url('../images/slider-img2.png');
	background-size: cover;
    background-repeat: no-repeat!important;
    background-position: center;
}

.perfume-main-container{
	width: 100vw;
	height: 100vh;
}
.perfume-inner{
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: 100%;
}
.perfume-img{
	width: 60%;
}
.perfume-detail{
	width: 40%;
	padding: 20px;
}
.perfume-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.perfume-small-img img{
	width: 100%;
}
.perfume-detail h4{
	color: #000;
	text-align: center;
	font-size: 25px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	padding: 40px 0 50px;
}
.perfume-detail p{
	color: #797979;
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 35px; /* 195.652% */
	margin-bottom: 30px;
}
.perfume-info span{
	color: #B8822C;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 29px; /* 145% */
letter-spacing: 0;
}
.perfume-info{
	display: flex;
	justify-content: center;
}
.perfume-info span:nth-child(1){
	border-right:1px solid #CACACA;
	padding-right: 15px;
	margin-right: 15px;
}
.slider-detail{
	border-radius: 27px;
	background: rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(20.5px);
	color: #FFF;
	text-align: center;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin:0px 50px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 80px;
	/* font-size: 75px;
	padding: 80px 90px;
	 */
}


@media only screen 
  and (min-device-width: 540px) 
  and (max-device-width: 1180px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 1) {
	.page-welcome-text {
		font-size: 14px;
	}
	.page-heading {
		font-size: 60px;
	}
	.page-sub-heading {
		font-size: 60px;
	}
	.page-heading{
		margin: 30px 0 50px;
	}
	.qus{
		font-size: 26px;
	}
	.page-shape svg{
		width: 45%;
		height: auto;
	}
	.answer-box{
		max-width: 505px;
		margin:0px auto 40px;
	}
	.answer {
		padding: 30px 30px;
	}
	.answer p{
		font-size: 23px;
	}
	.next-btn {
		min-width: 505px;
		padding: 44px 40px;
		height: 88px;
		font-size: 19px;
	}
	.page-main-container{
		overflow-y: auto;
		
	}
	
	.tick svg{
		width: 46px;
		height: 46px;
	}
	.top-left-shape {
		text-align: left;
	}
	.top-right-shape {
		text-align: right;
	}
	.bottom-right-shape{
		text-align: right;
	}
	.page-form-main{
		position: relative;
		z-index: 1;
	}
	.bottom-left-shape {
    	text-align: left;
	}
	.page-choice-main{
		position: relative;
		z-index: 1;
	}
	.quad-answer .answer {
		padding: 40px 40px;
	}
	.slider-detail{
		padding: 20px 40px;
		font-size: 20px;
	}
	.perfume-small-img{
		max-width: 200px;
		margin: auto;
	}
}
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1400px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 1) {
	.page-welcome-text {
		font-size:14px;
	}
	.page-heading {
		font-size: 60px;
	}
	.page-heading{
		margin: 30px 0 30px;
	}
	.qus{
		font-size: 26px;
		margin-bottom: 20px;
	}
	.page-shape svg{
		width: 50%;
		height: auto;
	}
	.answer-box{
		max-width: 505px;
		margin:0px auto 30px;
	}
	.answer {
		padding: 32px 40px;
	}
 
	.next-btn {
		min-width: 505px;
		padding: 35px 40px;
		height: 88px;
		font-size: 19px;
	}
	.page-main-container{
		overflow-y: auto;
		padding-bottom: 0px;
		padding-top: 0px;
	}
	.tick svg{
		width: 46px;
		height: 46px;
	}
	.top-left-shape {
		text-align: left;
	}
	.top-right-shape {
		text-align: right;
	}
	.bottom-right-shape{
		text-align: right;
	}
	.page-form-main{
		position: relative;
		z-index: 1;
	}
	.perfume-small-img{
		max-width: 200px;
		margin: auto;
	}
	.slider-detail{
		padding: 40px 80px;
		font-size: 35px;
	}
	.p-des p {
		font-size: 12px;
		margin-bottom: 10px;
		min-height: 60px;
	}
	.p-des h5{
		min-height: 30px;
		margin-bottom: 0px;
	}
	.page-sub-heading{
		margin-bottom: 20px;
		font-size: 50px;
	}
 
	.signup-info h5{
		font-size: 38px;
	}
	.signup-info p{
		font-size: 20px;
	}
	.signup-info p{
		font-size: 16px;
	}
	.bottom-left-shape{
		text-align: left;
	}
	.quad-answer .answer {
		padding: 40px 40px;
	}
}

.extrabuttonus {
    display: flex;
    justify-content: space-between; gap:10px;
}.us3box { 
    max-width: 505px;
    margin: 0 auto;
} .extrabuttonus button {
    border-radius: 12px;
    background: #41311A;
    min-width: 244px;
    padding: 35px 40px;
    text-align: center;
    color: #FFF;
    font-size: 19px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
letter-spacing: 0;
    transition: all .6s ease-in-out;
    display: block;
    height: 88px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}  .extrabuttonus .next-btn{
    border-radius: 12px;
    background: #41311A;
    min-width:244px;
    padding: 35px 40px;
    text-align: center;
    color: #FFF;
    font-size: 19px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
letter-spacing: 0;
    transition: all .6s ease-in-out;
    display: block;
    height: 88px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}


.home-button{
	position: absolute;
    top: 30px;
    left: 30px;
	color: #41311A;
	font-weight: 500;
	font-size: 0px;
	z-index: 1000;
	display: flex;
	align-items: center;
	
}
.icon-box{
	width: 40px;
    height: 40px;
	background: #41311A;
	display: flex;
    align-items: center;
    justify-content: center;
	border-radius: 6px;
	margin-right: 10px;
}



@media screen and (max-width:1080px) {.p-des p { 
 
    min-height: 105px;
} }

@media screen and (max-width:810px) {.p-des p { 
 
    min-height: 165px;
} }


@media screen and (min-width:1401px) {
.answer-box {
    max-width: 505px;
    margin: 0px auto 40px;
}
}