/* legal popup start here */
.legalDiv {
	position: fixed;
	width: 100%;
	height: 100dvh;
	top: 0%;
	left: 0;
	z-index: 9999;
	padding: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.legalDiv:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(5px);
}

.legalDiv .innerLegalDiv {
	position: relative;
	background: #fff;
	width: 500px;
	padding: 40px;
	filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}

.legalDiv .abdLogoDiv {
	text-align: center;
	margin-top: 10px;
}

.legalDiv .abdLogoDiv a {
	display: inline-flex;
}

.legalDiv .abdLogoDiv img {
	width: 35px;
	height: 35px;
}

.legalDiv .zoyaLogo {
	height: 175px;
	margin: 0 auto;

}

.legalDiv h4 {
	text-align: center;
	font-family: 'GothamBook';
	font-size: 34px;
	line-height: 34px;
	letter-spacing: 0px;
	color: #000000;
	text-transform: uppercase;
}

.legalDiv .notext {
	display: none;
}

.legalDiv h6 {
	text-align: center;
	font-family: 'GothamBook';
	font-size: 18px;
	line-height: 18px;
	letter-spacing: 0px;
	color: #000000;
	text-transform: uppercase;
	margin-top: 15px;
}

.legalDiv p {
	text-align: center;
	font-family: 'GothamBook';
	font-size: 12px;
	line-height: 18px;
	letter-spacing: 0px;
	color: #000000;
	text-transform: uppercase;
	margin-top: 5px;
}

.legalDiv p a {
	color: #A02522;
	font-weight: 700;
}

.legalDiv p.errorMsg {
	color: #A02522;
	opacity: 0;
}

.legalDiv p.errorMsg.error {
	opacity: 1;
}

.legalDiv h5 {
	text-align: center;
	font-family: 'GothamBook';
	font-size: 18px;
	line-height: 18px;
	letter-spacing: 0px;
	color: #000000;
	text-transform: uppercase;
	margin-top: 20px;
}

.legalDiv input {
	border: 0;
	border-radius: 0;
	outline: none;
	/* border-bottom: 1px solid #707070; */
	font-family: 'GothamBook';
	color: #000;
	font-size: 34px;
	width: 90px;
	text-align: center;
}

.legalDiv input::placeholder {
	font-family: 'GothamLight';
}

.legalDiv .disclaimerPara {
	font-family: 'GothamLight';
	font-size: 10px;
	line-height: 12px;
	color: #000000;
	margin-top: 10px;
}

.legalDiv .btnWrapper {
	margin: 15px 0 20px;
	display: flex;
	justify-content: center;
	align-items: center;

}

/* .legalDiv.no .notext {
	display: block;
} */

/* .legalDiv.no.legalDiv .btnWrapper {
	display: none;
} */


.legalDiv .btnWrapper .borderPlainBtn {
	min-width: 110px;
	text-transform: uppercase;
	margin: 0 5px;
}

body {
	/* transform: translateY(0vh); */
	/* overflow: hidden; */
	transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
	height: auto !important;
}

body.legaldrink {
	/* transform: translateY(0vh); */
	overflow: unset;
	transition: all 1.5s cubic-bezier(0.075, 0.82, 0.165, 1);
	height: auto !important;
}

body.legaldrink .legalDiv {
	transform: scale(0);
	transition: all 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/* legal popup end here */
/* header start here */

header {
	padding: 20px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

header nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header nav .logo-div{
	position: relative;
	z-index: 2;
}
header nav .logo-div a img {
	height: 33px;
}

header nav ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

header nav ul li {
	margin: 0 10px;
	position: relative;
	z-index: 1;
}

header nav ul li a {
	color: #000000;
	font-family: 'GothamMedium';
	font-size: 12px;
	/* transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); */
	position: relative;
	/* color: transparent; */
	overflow: hidden;
	display: flex;

}

.nav-up-small nav ul li a {
	color: transparent;
}

.nav-up-small header nav ul li a:after,
.nav-up-small header nav ul li a:before {
	content: attr(data-text);
	position: absolute;
	top: 0%;
	left: 0;
	right: 0;
	margin: 0 auto;
	font-size: inherit;
	color: #000000;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.25s linear;
}

.nav-up-small header nav ul li a:after {
	top: 100%;
	transition: all 0.25s linear;
}

.nav-up-small header nav ul li a:hover:before {
	top: -100%;
	transition: all 0.25s linear;
}

header nav ul li a:hover:after {
	top: 0%;
	transition: all 0.25s linear;
}

header nav ul li a.active,
header nav ul li a:hover {
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
	color: #A02522;
}

.nav-up-small header nav ul li a.active,
.nav-up-small header nav ul li a:hover {
	color: transparent;
}

header.nav-up {
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
	top: -73px;
}

header.nav-up-small {
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
	top: 0;
}

header .burger-menu {
	display: flex;
	display: none;
	justify-content: space-between;
	align-items: center;
	transform: translateY(-200px);
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
	position: relative;
}

header .burger-menu .clickWrapper {
	background: rgba(255, 255, 255, 0.4);
	position: relative;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

header .burger-menu .burger-logo {
	/* position: absolute; */
	z-index: 9;
	/* width: 50px; */
	display: inline-flex;
}

header .burger-menu .burger-logo a {
	height: 70px;
	width: 70px;
	background: rgba(255, 255, 255, 0.4);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px;
}

header .burger-menu .burger-click {
	border-bottom: 1px solid #000;
	width: 22px;
	height: 21px;
	cursor: pointer;
	position: relative;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);

}



header .burger-menu .burger-click:after,
header .burger-menu .burger-click:before {
	content: "";
	position: absolute;
	top: 0;
	width: 100%;
	height: 1px;
	background: #000;
	transform-origin: center;
	left: 0;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

header .burger-menu .burger-click:after {
	top: 10px;
}

.menu-open .burger-menu .burger-click {
	border-color: transparent;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.menu-open .burger-menu .burger-click:before {
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
	transform: rotate(45deg);
}

.menu-open .burger-menu .burger-click:after {
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
	transform: rotate(-45deg);
	top: 0;
}

.nav-up-small header {
	/* padding: 10px 20px; */
	padding-left: 0;
	padding-top: 10px;
	padding-bottom: 0;
	z-index: 999;
}

.nav-up nav {
	display: none;
}

.nav-up-small .burger-menu {
	transform: translateY(0);
	display: flex;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.nav-up-small nav .logo-div {
	display: none;
}

.nav-up-small nav {
	display: flex;
	position: fixed;
	background: rgba(255, 255, 255, 1);
	width: 100%;
	height: 100dvh;
	top: 0px;
	left: 0px;
	align-items: flex-start;
	padding: 150px 0px 50px;
}

.nav-up-small nav ul {
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
}

.nav-up-small nav ul li {
	width: 100%;
	padding: 15px 0;
	margin: 0;
	border-top: 1px solid rgba(112, 112, 112, 0.2);
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.nav-up-small nav ul li a {
	font-family: 'GothamLight';
	font-size: 40px;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.nav-up-small nav ul li a.active,
.nav-up-small nav ul li a:hover {
	opacity: 1;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.nav-up-small nav ul li .borderPlainBtn {
	font-size: 14px;
	font-family: 'GothamBook';
	min-width: 220px;
	min-height: 50px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-left: 1px solid rgba(112, 112, 112, 0.3) !important;
}

.nav-up-small nav ul li:last-child {
	width: 50%;
	justify-content: flex-start;
	padding-left: 40px;
}

.nav-up-small nav ul li:nth-last-child(2) {
	width: 50%;
	justify-content: flex-end;
	padding-right: 40px;
}

.nav-up-small nav ul li:nth-last-child(2) a,
.nav-up-small nav ul li:last-child a {
	font-size: 14px;
	font-family: 'GothamMedium';
}

.nav-up-small nav {
	box-shadow: 15px 15px 50px rgba(0, 0, 0, .3);
	transform-origin: right top;
	transform: translateY(-120%);
	transition: .5s ease;
}

.nav-up-small.menu-open nav {
	transform: none;
	transition: .5s ease;
	display: flex;
	justify-content: center;
	align-items: center;
}

.subMenu{
	position: relative;
}
.subMenu>a{
	position: relative;
	padding-right: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.subMenu>a:before{
	content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-left: 1.5px solid #000;
    border-bottom: 1.5px solid #000;
    transform: rotate(-45deg);
    right: 5px;
    margin-top: -6px;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.subMenu:hover>a{
color: #A02522;
transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.subMenu:hover>a:before{
	border-left-color: #A02522;
	border-bottom-color: #A02522;
	transform: rotate(135deg);
    margin-top: 0px;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
header:hover:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
	background: transparent linear-gradient(252deg, #F2F2F2 0%, #FFFFFF 50%, #F2F2F2 100%) 0% 0% no-repeat padding-box;
}
.nav-up-small header:hover:before{
	display: none;
}
.subMenu .innerMenu{
	position: fixed;
    width: 100%;
	background: transparent linear-gradient(252deg, #F2F2F2 0%, #FFFFFF 50%, #F2F2F2 100%) 0% 0% no-repeat padding-box;
    left: 0;
    right: 0;
    margin: 0 auto;
    justify-content: center;
	padding: 80px 0 45px 0;
	opacity: 0;
	visibility: hidden;
	z-index: -1;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.subMenu:hover .innerMenu{
	opacity: 1;
	visibility: visible;
	z-index: auto;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.overlaynav{
    content: "";
    width: 100%;
    height: 100vw;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.subMenu:hover ~ .overlaynav{
	opacity: 1;
	visibility: visible;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.subMenu .innerMenu ul{
	justify-content: space-evenly;
}
.subMenu .innerMenu li{
	display: flex !important;
	align-items: center;
	justify-content: center;
}
.subMenu .innerMenu li a{
	flex-wrap: wrap;
	gap: 17px;
	justify-content: center;
}
.subMenu .innerMenu li img{
	height: 235px;
}

.subMenu .innerMenu li span{
	font-family: 'GothamBook';
	display: flex;
	width: 100%;
	font-size: 1.25rem;
	line-height: 1.5rem;
	color: #000000;
	justify-content: center;
}
.nav-up-small .overlaynav{
	display: none;
}
.nav-up-small .subMenu .innerMenu li img{
	display: none;
}
.nav-up-small  .subMenu .innerMenu{
	position: static;
	background: transparent;
	display: flex;
	padding: 0;
	border-top: 1px solid rgba(112, 112, 112, 0.2);
	margin-top: 15px;
	opacity: 1;
    visibility: visible;
    z-index: auto;
}
.nav-up-small  .subMenu{
	flex-wrap: wrap;

}.nav-up-small .subMenu>a{
	color: transparent;
}
.nav-up-small  .subMenu .innerMenu li{
	border: 0;
	width: 100%;
	justify-content: center;
	padding: 20px 0 0;
}
.nav-up-small  .subMenu .innerMenu li span{
	color: transparent;
}
.nav-up-small  .subMenu>a:before{
	transform: none;
	border: 0;
}
.nav-up-small .subMenu .innerMenu li a{
	font-size: 1.25rem;
	font-family: 'GothamLight';
}

/* header end here */


/* Bottle start here */
.cloudimage-360-icons-container,
.cloudimage-360-view-360-icon,
.cloudimage-360-loader {
	margin: auto;
	display: none !important;
}

.bottle-container {
	position: fixed !important;
	/* position: sticky; */
	top: 100px;
	left: 0;
	right: 0;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	z-index: 2;
	/* display: none; */
	width: 38dvh !important;
	height: 100dvh;
	transition: all 1.1s linear;
}

.bottle-container .bottle-div {
	display: flex;
	justify-content: center;
	transition: all 1.1s linear;
}

.bottle-container.slide1 {
	width: 18dvh !important;
	top: calc(100dvh + 285px);
	height: calc(100dvh - 200px);
	align-items: center;
	transition: all 1.1s linear;
}

.bottle-container.slide2 {
	top: calc(200dvh + 100px);
	transition: all 1.1s linear;
}

.bottle-container.slide3 {
	top: calc(300dvh + 100px);
	transition: all 1.1s linear;
}

.bottle-container.slidefooter {
	top: calc(200dvh + 100px);
	transition: all 1.1s linear;
}

.bottle-container img {
	position: absolute;
	height: 100dvh;
	top: 50px;
	object-fit: contain;
}

.footer.bottle-container {
	justify-content: flex-end;
	top: auto;
	left: auto;
	height: 500px !important;
	width: auto !important;
	bottom: 0;
	z-index: 1;
}

.footer.bottle-container img {
	/* top: auto; */
	height: 100dvh;
	right: 30px;
}

/* Bottle end here */


/* main swiper start here */
/* .fp-overflow::-webkit-scrollbar {
	width: 0;
} */

.no-event {
	pointer-events: none !important;
}

.footer.bottle-container {
	visibility: hidden;
	z-index: -9;
	transition: none;
}

.footer.bottle-container.active {
	visibility: visible;
	z-index: 1;
	transition: none;
}

.footer.bottle-container img {

	top: 0;
}

.mainSwiper {
	width: 100%;
	height: 100dvh;
	z-index: 2;
	background: #fff;
	position: fixed;
	top: 0;
}

.mainSwiper>.swiper-wrapper>.swiper-slide {
	/* height: 100dvh; */
}

.mainSwiper>.swiper-wrapper>.swiper-slide.last-slide {
	height: 20px !important;
	padding: 10px;
	background: red;
}



/* main swiper end here */


/* spotlight start here */

.spotlight-div .spotlight-slider-div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.spotlight-div .spotlight-slider-div .swiper .spotlight-img .spotlight-assets {
	height: 100dvh;
	width: 100%;
	object-fit: cover;
}

.spotlight-div .spotlight-slider-div .spotlight-content {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 9;
}

.spotlight-div .spotlight-slider-div .spotlight-content .spotlight-middel-content ul {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.spotlight-div .spotlight-slider-div .spotlight-content .spotlight-middel-content ul:before {
	/* content: ""; */
	width: 1px;
	height: 100%;
	background: #000;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
}

.spotlight-div .spotlight-slider-div .spotlight-content .spotlight-middel-content ul li {
	width: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.5s linear;
	opacity: 1 !important;
}

.spotlight-div .spotlight-slider-div .spotlight-content .spotlight-middel-content ul li.left-content {
	clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
	margin-top: 10px;
}

.spotlight-div .spotlight-slider-div .spotlight-content .spotlight-middel-content ul li.left-content.aos-animate {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	transition: all 0.5s linear;
}

.spotlight-div .spotlight-slider-div .spotlight-content .spotlight-middel-content ul li.right-content {
	clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.spotlight-div .spotlight-slider-div .spotlight-content .spotlight-middel-content ul li.right-content img {
	width: 100%;
	height: 150px;
	object-fit: contain;
}

.spotlight-div .spotlight-slider-div .spotlight-content .spotlight-middel-content ul li.right-content.aos-animate {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	transition: all 0.5s linear;
}

.spotlight-div .spotlight-slider-div .spotlight-content .spotlight-middel-content ul li span {
	color: #000;
	font-family: 'GothamLight';
	font-size: 56px;
	text-align: center;
	text-transform: uppercase;
}

.spotlight-div .spotlight-slider-div .spotlight-content .spotlight-middel-content p {
	color: #000;
	font-family: 'GothamLight';
	font-size: 20px;
	text-transform: uppercase;
	text-align: center;
	margin-top: 16px;
	letter-spacing: 2px;
}

.spotlight-div .spotlight-slider-div .spotlight-content .spotlight-middel-content p strong {
	text-transform: none;
	font-family: 'GothamMedium';
	display: block;
	margin-top: 8px;
	letter-spacing: 0px;
}

.scroll-down {
	position: fixed;
	top: calc(100dvh - 150px);
	right: 30px;
	z-index: 99;
	font-family: 'GothamMedium';
	word-break: break-all;
	color: #000;
	font-size: 10px;
	text-transform: uppercase;
	width: 10px;
	text-align: center;
	line-height: 12px;
	padding-bottom: 70px;
	cursor: pointer;
	animation: move 2.2s infinite alternate;

}

.scroll-down.active {
	animation: none;
}

.scroll-down:before {
	content: "";
	width: 1px;
	height: 35px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
	background: #000;
	background-position: 0 -60px;
	background-size: 100% 200%;

}

.scroll-down.active:before {
	animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 50%);
	background-position: 0 -60px;
	background-size: 100% 200%;
	height: 60px;

}

.scroll-down:after {
	content: '';
	width: 0;
	height: 0;
	transition: all 0.25s linear;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 110px;

	transform: rotate(-45deg);
	visibility: hidden;
}

.scroll-down.active:after {
	top: 85px;
}

.nav-up-small .scroll-down:after {
	transition: all 0.25s linear;
	width: 20px;
	height: 20px;
	left: -5px;
	bottom: 37px;
	visibility: visible;
}

.scroll-down span {
	opacity: 0;
}

.scroll-down.active span {
	opacity: 1;
}

@keyframes scrolldown {
	0% {
		background-position: 0 -60px;
	}

	75% {
		background-position: 0 0;
	}

	100% {
		background-position: 0 60px;
	}
}

@keyframes move {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-10px);
	}
}

/* spotlight end here */


/* special batch start here */

.special-batch-div {
	padding: 50px 0 0;
	position: relative;
	height: 100dvh !important;
}

.special-batch-div:before {
	content: "";
	background: transparent linear-gradient(232deg, #F2F2F2 0%, #FFFFFF 50%, #F2F2F2 100%) 0% 0% no-repeat padding-box;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.6;
}

.special-batch-div .container {
	position: relative;
	z-index: 5;
}

.special-batch-div p {
	text-align: center;
	font-family: 'GothamLight';
	font-size: 20px;
	line-height: 35px;
	color: #000000;
	text-transform: uppercase;
	margin-top: 25px;
}


/* special batch end here */


/* botanical start here */

.botanical-div {
	position: relative;
	height: 100dvh !important;
}

.botanical-div .botanical-slider-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	padding-left: 100px;
}

.botanical-div .botanical-slider-wrapper .image-slider {
	position: absolute;
	top: 0;
	right: 0;
	height: 100dvh;
}

.botanical-div .botanical-slider-wrapper .image-slider .swiper-slide {
	overflow: hidden;
	position: relative;
	height: 100%;
}

.botanical-div .botanical-slider-wrapper .image-slider .swiper-slide .spotlight-img {
	position: absolute;
	width: 100%;
	height: 100dvh;
	left: 0;
	top: 0;
}

.botanical-div .botanical-slider-wrapper .image-slider .spotlight-assets {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	height: 100%;
	object-fit: cover;
}

.botanical-div .botanical-slider-wrapper .botanical-content-div {
	width: 400px;
	text-align: center;
}

.botanical-div .botanical-slider-wrapper .botanical-content-div .content-slider {
	margin-top: 20px;
}

.botanical-div .botanical-slider-wrapper .botanical-content-div .content-slider .swiper-slide {
	background: #fff;
}

.botanical-div .botanical-slider-wrapper .botanical-content-div .content-slider h5 {
	text-align: center;
	font-family: 'GothamLight';
	font-size: 40px;
	letter-spacing: 0px;
	color: #000000;
	text-transform: uppercase;
}

.botanical-div .botanical-slider-wrapper .botanical-content-div .content-slider h6 {
	text-align: center;
	font-family: 'GothamMedium';
	font-size: 16px;
	line-height: 30px;
	letter-spacing: 0px;
	color: #000000;
	text-transform: uppercase;
	margin-top: 15px;
}

.botanical-div .botanical-slider-wrapper .botanical-content-div .content-slider p {
	text-align: center;
	font-family: 'GothamLight';
	font-size: 16px;
	line-height: 30px;
	letter-spacing: 0px;
	color: #000000;
	text-transform: uppercase;
	margin-top: 35px;
}

.botnical-swiper-btn-container {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 35px;
}

.botnical-swiper-btn-container .swiper-button,
.botnical-swiper-btn-container .swiper-pagination {
	position: static;
	transform: none;
}

.botnical-swiper-btn-container .swiper-button-prev {
	transform-origin: center;
	transform: rotate(-180deg)
}

.botnical-swiper-btn-container .swiper-button-next {
	transform-origin: center;
	transform: rotate(0deg)
}


/* botanical end here */


/* drinking start here */

.drinking-div {
	height: 100dvh !important;
	position: relative;
	z-index: 3;
	background: #fff;
}

.drinking-div .drinking-assets {
	position: absolute;
	height: 100dvh;
	width: 50%;
	top: 0;
	left: 0;
	object-fit: cover;
}

.drinking-div .container {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 100dvh;
}

.drinking-div .drinking-content {
	width: 50%;
	text-align: center;
	padding: 0 100px;
}

.drinking-div .drinking-content img {
	height: 150px;
}

.drinking-div .drinking-content .heading-big {
	margin-top: 30px;
}

.drinking-div .drinking-content p {
	font-family: 'GothamLight';
	font-size: 16px;
	line-height: 30px;
	margin-top: 30px;
}

.drinking-div .drinking-content .heading-big~p {
	margin-top: 20px;
	line-height: 18px;
}

.row-reverse .drinking-assets {
	left: auto;
	right: 0;
}

.row-reverse .container {
	justify-content: flex-start;
}


/* drinking end here */


/* our tales start here */

.tales-div {
	padding: 70px 0 20px;
	position: relative;
	background: #fff;
	z-index: 3;
	display: flex;
	height: 100dvh;
}

.tales-div .fp-overflow {
	display: flex;
	align-items: center;
}

.tales-div::before {
	content: "";
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	left: 0;
	background: transparent linear-gradient(244deg, #F2F2F2 0%, #FFFFFF 50%, #F2F2F2 100%) 0% 0% no-repeat padding-box;
	opacity: 0.6;
}

.tales-div .container {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.tales-div .swiper-pagination {
	position: absolute !important;
}

.recipePopupSlider .swiper-button,
.tales-div .swiper-button {
	position: absolute !important;
	top: 50% !important;
	transform: translateY(-50%);
}

.recipePopupSlider .swiper-button-next,
.tales-div .swiper-button-next {
	right: -50px !important;
	left: auto !important;
	transform: translateY(-50%) rotate(-90deg);
}

.recipePopupSlider .swiper-button-prev,
.tales-div .swiper-button-prev {
	left: -50px !important;
	right: auto !important;
	transform: translateY(-50%) rotate(90deg);
}

.recipePopupSlider .swiper-button-prev {
	left: 50px !important;
}

.recipePopupSlider .swiper-button-next {
	right: 50px !important;
}

.tales-div .tales-slider {
	width: 39%;
	height: calc(100dvh - 90px);
}

.tales-div .swiper-wrapper {
	align-items: center;
}

.tales-div .swiper-slide {
	overflow: hidden;
	position: relative;
	height: 100%;
	/* height:-webkit-fill-available; */
	/* background: #fefefe; */
	background: #fdfdfd;
}

.tales-div .swiper-slide .tales-assets-div {
	/* position: absolute; */
	width: 100%;
	width: fit-content;
	margin: 0 auto;
	height: calc(100dvh - 165px);
	height: calc(100% - 80px);
	/* height: auto; */
	/* left: 0; */
	/* top: 0; */
	position: relative;
	overflow: hidden;
}

.tales-div .tales-assets-div img {
	/* position: absolute; */
	width: 100%;
	/* left: 0; */
	/* top: 0; */
	/* bottom: 0; */
	/* margin: auto; */
	height: 100%;
	object-fit: contain;
}

.tales-div .tales-assets-div video {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	visibility: hidden;
	opacity: 0;
	z-index: -1;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.tales-div .tales-assets-div.play img.tales-img {
	visibility: hidden;
	opacity: 0;
	z-index: -1;
}

.tales-div .tales-assets-div.play video {
	visibility: visible;
	opacity: 1;
	z-index: 1;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.share-div {
	display: flex;
	flex-wrap: wrap;
	width: 20px;
	height: 40px;
	position: absolute;
	top: 20px;
	right: 20px;
	opacity: 0;
	z-index: 7;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.share-div a {
	display: block;
	margin-bottom: 10px;
}

.share-div a.liked svg path {
	fill: #ff0000;
	stroke: none;
}

.share-div a img {
	width: 20px !important;
	object-fit: contain !important;
	position: static !important;
}

.tales-div .tales-assets-div .view-recipe,
.tales-div .tales-assets-div .play-icon {
	position: absolute;
	width: 82px;
	height: 82px;
	cursor: none;
	opacity: 0;
	z-index: 5;
	transition: transform 0.5s ease-out;

}

.tales-div .tales-assets-div .play-icon {
	background: url(../image/play.svg) center center;
}

.tales-div .tales-assets-div.play .play-icon {
	background: url(../image/pause.svg) center center;
}

.tales-div .tales-assets-div:hover .view-recipe,
.tales-div .tales-assets-div:hover .play-icon,
.tales-div .tales-assets-div:hover .share-div {
	opacity: 1;
	transition: transform 0.5s ease-out;
}

.tales-div .tales-assets-div:hover .share-div:hover~.view-recipe,
.tales-div .tales-assets-div:hover .share-div:hover~.play-icon {
	opacity: 0;
}

.tales-div .tales-slider p {
	text-align: center;
	font-size: 30px;
	line-height: 30px;
	font-family: 'GothamLight';
	color: #000000;
	text-transform: uppercase;
	/* position: absolute; */
	/* bottom: 0; */
	z-index: 1;
	width: 100%;
	margin-top: 17px;
}

.tales-div .tales-content-div {
	width: 21%;
	padding: 0 20px;
}

.muteUnmuteSound {
	width: 30px;
	height: 30px;
	background: url(../image/mute.svg) center center;
	background-size: contain;
	position: absolute;
	bottom: 15px;
	right: 15px;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	cursor: pointer;
}

.muteUnmuteSound.unmuted {
	background: url(../image/unmute.svg) center center;
	background-size: contain;
}

.tales-div .tales-assets-div.play .muteUnmuteSound {
	opacity: 1;
	visibility: visible;
}

.tales-div .tales-assets-div .muteUnmuteSound:hover~.play-icon {
	opacity: 0;
}


/* our tales end here */


/* grid start here */

.grid-div {

	position: relative;
	z-index: 2;
	background: #fff;
	height: 100dvh !important;
	padding: 70px 0 0 0;


	/* display: flex;
	justify-content: center;
	align-items: center; */
}

.grid-div:before {
	content: "";
	position: absolute;
	bottom: -100px;
	height: 100px;
	background: linear-gradient(to bottom, #fff, transparent);
	width: 100%;
}

.grid-div .container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	/* height: 70vh; */
	padding: 80px 0 30px 0;
}


.grid-div .light-box-slider {

	width: 100%;
}

.grid-div .light-box-slider .swiper-slide {
	overflow: hidden;
	position: relative;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.grid-div .light-box-slider .swiper-slide .light-box-assets {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.grid-div .light-box-slider .light-box-assets img {
	/* position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	height: 100%;
	object-fit: contain; */
}

.grid-div .light-box-thumb-slider {
	padding-top: 20px;
}

.grid-div .light-box-thumb-slider .swiper-slide {
	width: auto;
	height: 75px;
	/* border: 3px solid #707070; */
	opacity: 0.5;
	cursor: pointer;
}

.grid-div .light-box-thumb-slider .swiper-slide.swiper-slide-active {
	/* border-color: #A02522; */
	opacity: 1;
}

.grid-div .light-box-thumb-slider .swiper-slide img {
	object-fit: contain;
	height: 100%;
	width: 100%;
	width: auto;
}

.grid-div .light-box-thumb-slider .swiper-wrapper {
	/* display: flex;
	justify-content: center; */
	/* gap: 10px; */
}


.grid-div .swiper-button {
	position: absolute !important;
	top: 50% !important;
	transform: translateY(-50%);
}

.grid-div .swiper-button-prev {
	transform: translateY(-50%) rotate(90deg) !important;
	left: 20px !important;
	right: auto !important;
}

.grid-div .swiper-button-next {
	right: 20px !important;
	left: auto !important;
	transform: translateY(-50%) rotate(-90deg);
}

/* .grid-div .grid-slider-main {
	width: calc(100% - 270px);
	height: 100%;
	margin: 0;
}

.grid-div .grid-slider-main .swiper-slide {
	height: 100%;
}

.grid-div .grid-slider-main .lightbox-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.grid-div .grid-slider-thumb {
	width: 250px;
	height: 100%;
	margin: 0;
	position: relative;
}
.grid-div .grid-slider-thumb img{
	height: 100%;
width: 100%;
object-fit: cover;
}

.grid-div .grid-slider-thumb .swiper-slide-thumb-active {
	border: 2px solid #A02522;
}

.grid-slider-thumb .swiper-button {
	z-index: 99;
	position: absolute !important;
	top: -50px !important;
	left: 0 !important;
	right: 0 !important;
	transform: rotate(180deg);
}

.grid-slider-thumb .swiper-button-next {
	top: auto !important;
	bottom: -50px !important;
	transform: rotate(0deg);
}


.grid-slider-thumb .grid-container {
	height: 70vh;
} */


.grid-container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: auto;
	gap: 30px;
}

.grid-div .grid-items .lightbox-img {
	height: calc(100dvh - 200px);
	object-fit: contain;
}

.grid-div .grid-items {
	/* display: grid; */
	position: relative;
	overflow: hidden;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}

.grid-container .grid-items:nth-child(1) {
	grid-column-start: 1;
	grid-column-end: 3;
}

.grid-container .grid-items:nth-child(2) {
	grid-column-start: 3;
	grid-column-end: 4;
}

.grid-container .grid-items:nth-child(3) {
	grid-column-start: 1;
	grid-column-end: 2;
}

.grid-container .grid-items:nth-child(4) {
	grid-column-start: 2;
	grid-column-end: 4;
}

.grid-div .grid-items:hover .share-div {
	opacity: 1;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.grid-div .grid-items:hover .share-div:hover+.lightbox {
	opacity: 0;
}

.grid-div .grid-items .lightbox {
	width: 82px;
	height: 82px;
	border-radius: 50%;
	position: absolute;
	transition: transform 0.5s ease-out;
	opacity: 0;
	cursor: none;
}

.grid-div .grid-items:hover .lightbox {
	opacity: 1;
	transition: transform 0.5s ease-out;
}

.grid-div .grid-items.videoSlide .lightbox {}


/* grid end here */


/* footer start here */

footer {

	overflow: hidden;
	background: #fff;
	z-index: 9;
}

footer .fp-overflow {
	padding-top: 100px;
}

footer .locationUl {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	/* border-top: 1px solid #DEDEDE; */
	/* border-bottom: 1px solid #DEDEDE; */
	position: relative;
	margin-top: 10px;
}

footer .locationUl:before {
	/* content: ''; */
	width: 1px;
	height: 100%;
	background: #DEDEDE;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}

footer .locationUl li {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 25px 0;
}

footer .locationUl li:first-child {
	justify-content: flex-end;
	/* margin-right: 300px; */
}

footer .locationUl li:last-child {
	justify-content: flex-start;
	padding-left: 100px;
}

footer .locationUl li img {
	height: 24px;
	margin-right: 15px;
}

footer .followUsDiv {
	margin-top: 50px;
}

footer .followUsDiv .socilaUl {
	margin-top: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

footer .followUsDiv .socilaUl li {
	margin: 0 25px;
}

footer .followUsDiv .socilaUl li img {
	width: 50px;
	height: 50px;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

footer .followUsDiv .socilaUl li:hover img {
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

footer .followUsDiv .socilaUl li:nth-child(1):hover img {
	filter: brightness(0) saturate(100%) invert(24%) sepia(93%) saturate(1750%) hue-rotate(260deg) brightness(85%) contrast(86%);
}

footer .followUsDiv .socilaUl li:nth-child(2):hover img {
	filter: brightness(0) saturate(100%) invert(11%) sepia(76%) saturate(5835%) hue-rotate(355deg) brightness(103%) contrast(85%);
}

footer .followUsDiv .socilaUl li:nth-child(3):hover img {
	filter: brightness(0) saturate(100%) invert(31%) sepia(61%) saturate(2103%) hue-rotate(198deg) brightness(104%) contrast(95%);
}

footer .blackFooter {
	background: #000000;
	margin-top: 30px;
	padding: 36px 0 10px 0;
	position: relative;

}

footer .blackFooter h6 {
	font-family: 'GothamBold';
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	text-align: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 32px;
	margin-bottom: 40px;
}

footer .blackFooter h6 small {
	display: block;
}

footer .footermerge {
	position: relative;
	overflow: hidden;
}

footer .footermerge .bottle-div {
	position: absolute;
	right: 30px;
	bottom: -150px;
	height: 800px;
	z-index: 1;
}

footer .blackFooter form {
	max-width: 770px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 0 auto;
	margin-top: 40px;
}

footer .blackFooter form .form-control {
	width: calc(100% / 3);
	padding: 0 5px;
	position: relative;
	padding-bottom: 30px;
}

footer .blackFooter form .checkDiv {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 15px;
}

footer .blackFooter form .checkDiv label {

	font-family: 'GothamLight';
	font-size: 10px;
	line-height: 10px;
	letter-spacing: 0px;
	color: #C6C6C6;
	position: relative;
	padding-left: 25px;
	cursor: pointer;
}

footer .blackFooter form .checkDiv label:before {
	content: "";
	position: absolute;
	top: 2px;
	border: 1px solid #C6C6C6;
	width: 15px;
	height: 15px;
	left: 0;

}

footer .blackFooter form .checkDiv label:after {
	content: "";
	position: absolute;
	top: 5px;
	border-bottom: 1px solid #C6C6C6;
	border-left: 1px solid #C6C6C6;
	width: 10px;
	height: 5px;
	left: 3px;
	transform: rotate(-50deg);
	opacity: 0;

}

footer .blackFooter form .checkDiv input {
	display: none;
}

footer .blackFooter form .checkDiv input:checked~label:after {
	opacity: 1;
}

footer .blackFooter form .form-control input {
	border: 0;
	border-bottom: 1px solid #8E8E8E;
	border-radius: 0;
	background: transparent;
	color: #fff;
	font-family: 'GothamMedium';
	font-size: 14px;
	padding: 10px 0;
	width: 100%;
	outline: none;


}

footer .blackFooter form .underline-link {
	margin-top: 50px;
}

footer .blackFooter form .underline-link:hover {
	background: #fff;
}

footer .blackFooter .copyDiv {
	margin-top: 45px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding: 25px 0;
}

footer .blackFooter .copyDiv .copyRightsDiv {
	display: flex;
	justify-content: center;
	align-items: center;
}

footer .blackFooter .copyDiv .copyRightsDiv a,
footer .blackFooter .copyDiv .copyRightsDiv p,
footer .blackFooter .copyDiv .tag-line {
	color: #fff;
	text-transform: uppercase;
	font-family: 'GothamLight';
	font-size: 12px;
}

footer .blackFooter .copyDiv .copyRightsDiv p {
	margin-right: 50px;
}

footer .blackFooter .copyDiv .copyRightsDiv a {
	margin: 0 15px;
}

footer .blackFooter .copyDiv .tag-line {
	margin-top: 20px;
}

/* footer end here */


/* light box popup start here */

.light-box-popup {
	position: fixed;
	z-index: 99;
	background: #fff;
	width: 100%;
	height: 100dvh;
	top: 0;
	left: 0;
	padding: 50px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: scale(0);
	visibility: hidden;
	opacity: 0;
	z-index: -9;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.lightBox-open .light-box-popup {
	transform: scale(1) translateY(0%);
	visibility: visible;
	opacity: 1;
	z-index: 9999;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.lightBox-open .light-box-popup .popup-content {
	top: 0;
	/* position: absolute; */
	width: 100%;
	height: 100dvh;
	/* padding: 20px 0; */
}

.lightBox-open .light-box-popup .popup-content .sliderWrapper {
	height: 100%;
}

.light-box-popup .popup-content .light-box-slider {
	height: calc(100dvh - 130px);
	height: 100%;
	width: 100%;
}

.light-box-popup .popup-content .light-box-slider .swiper-slide {
	overflow: hidden;
	position: relative;
	height: 100%;
}

.light-box-popup .popup-content .light-box-slider .swiper-slide .light-box-assets {
	/* position: absolute; */
	width: fit-content;
	height: 100%;
	margin: 0 auto;
	position: relative;
}

.light-box-popup .popup-content .light-box-slider .swiper-slide .light-box-assets .muteUnmuteSound {
	bottom: 70px;
	opacity: 1;
	visibility: visible;
}

.light-box-popup .popup-content .light-box-slider .light-box-assets video,
.light-box-popup .popup-content .light-box-slider .light-box-assets img {
	/* position: absolute; */
	width: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	height: calc(100% - 100px);
	object-fit: contain;
}

.light-box-popup .popup-content .light-box-thumb-slider {
	padding-top: 20px;
}

.light-box-popup .popup-content .light-box-thumb-slider .swiper-slide {
	width: 100px;
	height: 80px;
	border: 3px solid #707070;
}

.light-box-popup .popup-content .light-box-thumb-slider .swiper-slide.swiper-slide-thumb-active {
	border-color: #A02522;
}

.light-box-popup .popup-content .light-box-thumb-slider .swiper-slide img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.light-box-popup .popup-content .light-box-thumb-slider .swiper-wrapper {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.light-box-popup .popup-content .container {
	position: relative;
}

.light-box-popup .popup-content .swiper-button {
	position: absolute !important;
	top: 50% !important;
	transform: translateY(-50%);
}

.light-box-popup .popup-content .swiper-button-prev {
	transform: translateY(-50%) rotate(90deg) !important;
	left: 20px !important;
	right: auto !important;
}

.light-box-popup .popup-content .swiper-button-next {
	right: 20px !important;
	left: auto !important;
	transform: translateY(-50%) rotate(-90deg);
}

.light-box-popup .popup-content .topControlsDiv {
	position: absolute;
	top: 0px;
	width: 100%;
	left: 0;
	/* background: rgba(160, 37, 34,0.2); */
	padding: 10px 20px;
	z-index: 999;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.light-box-popup .popup-content .topControlsDiv .rightControl {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 10px;
}

.light-box-popup .popup-content .topControlsDiv .controlsBtn {
	width: 30px;
	height: 30px;
	border: 0;
	outline: none;
	overflow: hidden;
	display: inline-flex;
	cursor: pointer;
	background: url(../image/modulobox.svg) no-repeat;
	filter: brightness(0) saturate(100%) invert(0%) sepia(2%) saturate(6%) hue-rotate(153deg) brightness(91%) contrast(101%);

}

.light-box-popup .popup-content .topControlsDiv .zoomIn {
	background-position: 4px -123px;
}

.light-box-popup .popup-content .topControlsDiv .zoomIn.disabled {
	opacity: 0.3;
	pointer-events: none;
	cursor: not-allowed;
}

.light-box-popup .popup-content .topControlsDiv .zoomOut {
	background-position: 4px -167px;
}

.light-box-popup .popup-content .topControlsDiv .openScreen {
	background-position: 4px -386px;
}

.light-box-popup .popup-content .topControlsDiv .closeScreen {
	background-position: 4px -430px;
}

.light-box-popup .popup-content .topControlsDiv .playSlider {
	background-position: 4px -210px;
}

.light-box-popup .popup-content .topControlsDiv .pauseSlider {
	background-position: 4px -254px;
}

.light-box-popup .popup-content .topControlsDiv .downloadImg {
	background-position: 4px -298px;
}

.light-box-popup .popup-content .swiper-pagination {
	position: static !important;
	top: 0px !important;
	width: auto !important;
	height: auto !important;
	bottom: auto !important;
	min-height: auto !important;
	left: 0 !important;
	right: auto !important;
	flex-wrap: nowrap;
	display: inline-flex;
	margin: 0;
	font-family: 'GothamBook';
}

.light-box-popup .popup-content .swiper-pagination span:before {
	display: none;
}

.light-box-popup .closed-btn {
	/* position: absolute; */
	top: unset;
	right: unset;
	z-index: 9;
	width: 20px;
	height: 20px;
}



/* light box popup end here */






/* .section:nth-child(odd){
	background: red;
}
.section:nth-child(even){
	background: green;
} */
.fp-overflow {
	min-height: 100%;
}

.fp-overflow::-webkit-scrollbar {
	width: 0 !important;
}

/* recipe popup start here */
.popupDiv {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 50%;
	transform: translateY(-50%) scale(0);
	left: 0;
	right: 0;
	margin: 0 auto;
	background: #fff;
	z-index: -11;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.recipeOpen {
	overflow: hidden;
}

.recipeOpen .popupDiv {
	z-index: 9999;
	transform: translateY(-50%) scale(1);
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.popupDiv .closed-btn {
	position: absolute;
	right: 20px;
	top: 20px;
	z-index: 999;
}

.popupDiv .recipePopupSlider {
	position: absolute;
	width: 100%;
	height: 100dvh;
	top: 0;
}

.popupDiv .recipePopupSlider .swiper-slide {
	overflow: hidden;
}

.popupDiv .mainContentDiv {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	width: 100%;
	height: 100dvh;
	left: 0;
	top: 0;
}

.popupDiv .mainContentDiv .videoAssets {
	background: #000;
	width: 35%;
	height: 100dvh;
}

.popupDiv .mainContentDiv .muteUnmuteSound {
	right: auto;
	left: calc(35% - 45px);
	opacity: 1;
	visibility: visible;
}

.popupDiv .mainContentDiv .videoContentDiv {
	width: 60%;
	padding-right: 20%;
}

.popupDiv .mainContentDiv .videoContentDiv h3 {
	font-family: 'GothamLight';
	font-size: 40px;
	line-height: 40px;
	letter-spacing: 0px;
	color: #000000;
	text-transform: uppercase;
}

.popupDiv .mainContentDiv .videoContentDiv .ingredientsMethodsDiv {
	display: flex;
	justify-content: flex-start;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(112, 112, 112, 0.4);
}

.popupDiv .mainContentDiv .videoContentDiv .ingredientsMethodsDiv>div {
	width: calc((100% / 2) - 20px);
}

.popupDiv .mainContentDiv .videoContentDiv .ingredientsMethodsDiv h6 {
	font-family: 'GothamMedium';
	font-size: 16px;
	line-height: 30px;
	letter-spacing: 0px;
	color: #000000;
	text-transform: uppercase;
}

.popupDiv .mainContentDiv .videoContentDiv .ingredientsMethodsDiv ul {
	margin-top: 20px;
	padding-right: 20px;
	padding-left: 15px;
	list-style: disc;
}

.popupDiv .mainContentDiv .videoContentDiv .ingredientsMethodsDiv ul li {
	font-family: 'GothamLight';
	font-size: 14px;
	line-height: 16px;
	letter-spacing: 0px;
	color: #000000;
	margin-bottom: 15px;
}

.popupDiv .mainContentDiv .videoContentDiv .ingredientsMethodsDiv ul li::marker {
	color: #B5B5B5;
}

/* reciepe popup end here */

/* privacy start here */


.plainTextDiv .dateText {
	margin-top: 50px;
	font-family: 'GothamMedium';
	font-size: 18px;
	color: #A02522;
	margin-bottom: 40px;
}

.plainTextDiv .container {
	padding: 100px;
}

.plainTextDiv .plaiContentDiv p {
	font-family: 'GothamBook';
	color: #000;
	font-size: 16px;
	line-height: 26px;
	margin-top: 20px;
}

.plainTextDiv .plaiContentDiv h5 {
	margin-top: 50px;
	font-family: 'GothamMedium';
	font-size: 18px;
}

.plainTextDiv .plaiContentDiv h6 {
	margin-top: 50px;
	font-family: 'GothamMedium';
	font-size: 16px;
}

.plainTextDiv .plaiContentDiv ol {
	list-style: decimal;
	padding-left: 15px;
}

.plainTextDiv .plaiContentDiv ul {
	padding-left: 15px;
	list-style: disc;
}

.plainTextDiv .plaiContentDiv ul li,
.plainTextDiv .plaiContentDiv ol li {
	font-family: 'GothamBook';
	color: #000;
	font-size: 16px;
	line-height: 26px;
	margin-top: 20px;
}

.plainTextDiv .plaiContentDiv strong {
	font-family: 'GothamMedium';
}

.plainTextDiv .plaiContentDiv a {
	color: #A02522;
}

/* privacy end here */

/* thank you popup start here */
.sharepopup,
.thankYouPopup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100dvh;
	z-index: 999;
	display: flex;
	justify-content: center;
	align-items: center;

	/*  */
	/* transform: scale(0);
	opacity: 0;
	visibility: hidden;
	z-index: -1; */

	/*  */

	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.sharepopup {
	height: 100%;
	transform: scale(0);
	opacity: 0;
	visibility: hidden;
	z-index: -1;
	position: absolute;
}

.shareOpen.sharepopup,
.thanksyouOpen .thankYouPopup {
	transform: scale(1);
	opacity: 1;
	visibility: visible;
	z-index: 9999;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.sharepopup:before,
.thankYouPopup:before {
	content: "";
	background: rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.sharepopup .closed-btn,
.thankYouPopup .closed-btn {
	position: absolute;
	top: 20px;
	right: 20px;
}

.sharepopup .popupContent,
.thankYouPopup .popupContent {
	background: #fff;
	padding: 40px;
	position: relative;
	text-align: center;
	filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}

.thankYouPopup .popupContent img {
	height: 150px;
	margin: 0 auto;
}

.sharepopup .popupContent p,
.thankYouPopup .popupContent p {
	font-family: 'GothamBook';
	font-size: 28px;
	margin-top: 24px;
	line-height: 34px;
}

.sharepopup .popupContent p {
	margin-top: 0;
	margin-bottom: 25px;
}

.sharepopup .popupContent p strong,
.thankYouPopup .popupContent p strong {
	display: block;
	font-size: 30px;
	font-family: 'GothamBold';
}

/* thank you popup end here */

/* tales inner page start here */
.tales-div-inner-page.tales-div .fp-overflow {
	padding: 80px 0;
}

.tales-div-inner-page {
	padding: 0;
}

.tales-div-inner-page.tales-div .tales-slider,
.tales-div-inner-page {
	height: auto !important;
}

.tales-div-inner-page.tales-div .fp-overflow,
.tales-div-inner-page.tales-div .swiper-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
}

.tales-div-inner-page.tales-div .swiper-wrapper {
	gap: 50px;
}

.tales-div-inner-page.tales-div .tales-slider {
	width: 100%;
}

.tales-div-inner-page.tales-div .swiper-slide {
	width: calc((100% / 3) - 34px);
}

/* tales inner page end here */
/* flavours page start */
.normalPage img{
	right: 0;
	left: auto;
	position: static !important;
	width: 100% !important;
	height: calc(100vh - 120px) !important;
  }
  .normalPage .fp-overflow{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
  }
  .normalPage .innerCard{
	width: 100%;
  }
  .normalPage .contentDiv{
	background: transparent linear-gradient(252deg, #F2F2F2 0%, #FFFFFF 50%, #F2F2F2 100%) 0% 0% no-repeat padding-box;
	padding: 30px 20px;
	text-align: center;
	min-height: 120px;
  }
  .normalPage .contentDiv h2{
	font-size: 28px;
	margin-bottom: 8px;
  }
  .entry-header {
	display: none;
  }

  /* flavours page end  */

  /* flavours section start */
  .flavours-div{
	/* display: none !important; */
	display: flex;
    height: 100dvh !important;
	background: #fff;
	position: relative;
	z-index: 3;
  }
  .flavours-div .fp-overflow{
	display: flex;
	min-height: 100vh;
  }
  /* .test .flavours-div{
	display: flex !important;
  } */
  .flavours-div .flavours-slider-wrapper{
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	width: 100%;
  }
  .flavours-div .flavours-slider-wrapper .flavours-inner-wrapper .flavours-assets-div{
	position: relative;
  }
  .flavours-main-wrapper{
	position: relative;
	width: 100%;
  }
  .flavours-div .flavours-slider-wrapper  h3{
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .flavours-inner-div{
	width: 50%;
	display: flex;
	justify-content: space-between;
	align-items: center;
  }
  .flavours-inner-div:first-child{
	flex-direction: row-reverse;
  }
  /* .flavours-inner-div:first-child .flavours-content-div{
	margin: 0 100px 0 50px;
  }
  .flavours-inner-div:last-child .flavours-content-div{
	margin: 0 50px 0 100px;
  } */
  .flavours-inner-div .flavours-content-div{
	height: 100%;
    width: 600px;
    text-align: center;
	margin-top: -100px !important;
  }
  .flavours-inner-div .flavours-content-div h4{
    font-family: 'GothamMedium';
	margin-bottom: 10px;
  }
  .bg-img-div{
	position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
	overflow: hidden;
  }
  .bg-img-div .bg-img{
	height: 230px;
	width: 100%;
	object-fit: cover;
  }
  .flavours-inner-wrapper {
	display: flex;
    align-items: flex-end;
    justify-content: space-between;
	position: relative;
	z-index: 1;
	padding: 0 5%;
  }
  .flavours-assets-div .main-img{
	width: 90%;

  }
  /* flavours section end */


@media screen and (min-width:1800px){
	.normalPage img{
		height: calc(100vh - 300px) !important;
	}
	.normalPage .contentDiv{
		min-height: 300px;
	}
	.bg-img-div .bg-img{
		height: 340px;
	}
}
@media screen and (min-width: 1400px) {
	.botanical-div .botanical-slider-wrapper {
		padding-left: 0;
	}

	.bottle-container.slide1 {
		width: 25dvh !important;
		top: calc(100dvh + 320px);
	}

	.bottle-container.slide2 {
		width: 20dvh !important;
		top: calc(200dvh + 250px);
	}

	.tales-div .swiper-slide {
		height: min-content;
	}
	.bottle-container.slide3 {
		width: 30dvh !important;
		top: calc(300dvh + 100px);
	}
	.bottle-container.slide4 {
		width: 30dvh !important;
		top: calc(300dvh + 100px);
	}
	
}

@media screen and (max-width: 767px) {
	.legalDiv .innerLegalDiv {
		width: 370px;
		padding: 20px;
	}

	body {
		/* transform: none !important;
		overflow: unset !important; */
	}

	.scroll-down {
		right: 20px;
	}

	.scroll-down.active:after {
		width: 0;
		height: 0;
		visibility: hidden;
	}

	header {
		padding: 15px;
	}
	header .burger-menu{
		display: flex;
	}
	header .burger-menu .clickWrapper {
		width: 35px;
		height: 30px;
	}

	header .burger-menu .burger-click {

		width: 20px;
		height: 16px;
	}

	header .burger-menu .burger-click:after {
		top: 7px;
	}

	header .burger-menu .burger-logo img {
		height: 50px;
	}

	.nav-up-small nav {
		padding: 100px 0px;
	}

	.nav-up-small nav ul li a {
		font-size: 24px;
	}

	.nav-up-small nav ul li {
		margin-bottom: 0px;
	}

	.nav-up-small nav ul li:last-child {
		padding-left: 30px;
	}

	.nav-up-small nav ul li:nth-last-child(2) {
		padding-right: 30px;
	}
	.nav-up-small .subMenu .innerMenu li a{
		font-size: 16px;
	}
	header:hover:before{
		display: none;
	}
	.spotlight-div {
		height: 100dvh !important;
	}

	.spotlight-div .spotlight-slider-div .swiper .spotlight-img .spotlight-assets {
		height: 50dvh;
	}

	.spotlight-div .spotlight-slider-div .spotlight-content .spotlight-middel-content ul li.right-content img {
		height: 100px;
	}

	.bottle-container {
		top: 35dvh;
		height: 40dvh;
		width: 100px !important;
	}

	.bottle-container canvas {
		height: 100% !important;
		object-fit: contain;
	}

	.bottle-container.slide1 {
		width: 90px !important;
		top: calc(173dvh);
		height: 25dvh;
		align-items: center;
		transition: all 1.1s linear;
	}

	.bottle-container.slide2 {
		/* top: calc(100% - 355px);
		transition: all 1.1s linear;
		width: 300px !important;
		height: 500px !important; */
		width: 150px !important;
		top: calc(250dvh);
		transition: all 1.1s linear;
		height: 25dvh;
	}
	.bottle-container.slide3 {
		/* top: calc(100% - 355px);
		transition: all 1.1s linear;
		width: 300px !important;
		height: 500px !important; */
		width: 150px !important;
		top: calc(350dvh);
		transition: all 1.1s linear;
		height: 70dvh;
	}

	.bottle-container img {
		top: 0;
		object-position: top;
		height: 100%;
	}

	.bottle-container {
		/* transition: all 1.1s linear;
		top: auto;
		bottom: calc(100dvh - 700px);
		position: sticky !important; */
	}

	/* .bottle-container.sticky {

		top: auto;
		bottom: -45px;
		transition: all 1.1s linear;
		margin-top: -400px;
	} */

	/* .botanical-div.active~.bottle-container {
		margin-top: -340px;
	} */

	.tales-div {
		/* margin-top: -60px; */
		min-height: 100dvh !important;
	}

	.tales-div .swiper-wrapper {
		align-items: flex-start;
	}

	.tales-div .tales-assets-div.play .play-icon {
		background: none;
	}

	.mainSwiper {
		/* overflow: unset; */
	}

	.footer.bottle-container {
		width: 100%;
		top: 60dvh;
	}

	.footer.bottle-container img {
		height: 70dvh;
		right: 10px;
	}

	footer .blackFooter .copyDiv .copyRightsDiv .menu-footermenu-container {
		width: 100%;
	}

	footer .blackFooter .copyDiv .copyRightsDiv .menu-footermenu-container .footer_links {
		justify-content: space-evenly;
	}

	.spotlight-div .spotlight-slider-div .swiper {
		width: 100%;
		height: auto;
	}

	.spotlight-div .spotlight-slider-div .spotlight-content {
		width: 100%;
		margin: 0;
		padding: 25dvh 0 0px;
		position: absolute;
		bottom: 3%;
	}

	.fp-overflow {
		/* max-height: 100% !important;
		overflow: unset !important; */
	}

	.fp-table {
		justify-content: unset;
	}

	.spotlight-div .spotlight-slider-div .spotlight-content .spotlight-middel-content ul li {
		width: 80px;
	}

	.spotlight-div .spotlight-slider-div .spotlight-content .spotlight-middel-content ul li span {
		font-size: 38px;
	}

	.spotlight-div .spotlight-slider-div .spotlight-content .spotlight-middel-content p {
		font-size: 16px;
	}

	.special-batch-div {
		padding: 80px 0 0px;
		/* padding: 100px 0; */
	}

	.special-batch-div .container {
		height: calc(65dvh - 100px);
		display: flex;
		align-items: center;
	}

	.special-batch-div p {
		font-size: 13px;
		line-height: 24px;
		margin-top: 15px;
	}

	.special-batch-div p br {
		display: none;
	}

	.special-batch-div p .overflow-hidden small,
	.special-batch-div p .overflow-hidden {
		display: inline;
	}

	.botanical-div .botanical-slider-wrapper .image-slider {
		position: absolute;
		width: 100%;
		height: 35dvh;
		top: auto;
		bottom: 0;

	}

	.botanical-div .botanical-slider-wrapper .image-slider .swiper-slide .spotlight-img {
		height: 35dvh;
	}

	.botanical-div .botanical-slider-wrapper {
		padding-left: 0;
		flex-wrap: wrap;
	}

	.botanical-div .botanical-slider-wrapper .botanical-content-div .content-slider h5 {
		font-size: 26px;
	}

	.botanical-div .botanical-slider-wrapper .botanical-content-div .content-slider h6 {
		font-size: 13px;
		margin-top: 8px;
	}

	.botanical-div .botanical-slider-wrapper .botanical-content-div .content-slider p {
		font-size: 12px;
		margin-top: 15px;
		line-height: 22px;
	}

	.botanical-div {
		padding-top: 0;
		height: auto !important;
		max-height: auto !important;
	}

	.botanical-div .fp-overflow {
		height: 100dvh;
	}

	.botanical-div .container {
		position: absolute;
		width: 100%;
		left: 0;
		right: 0;
		margin: 0 auto;
		top: 0px;
		display: flex;
		align-items: center;
		height: calc(60dvh);
	}

	.botanical-div .botanical-slider-wrapper .botanical-content-div .content-slider {
		width: 70%;
	}

	.botnical-swiper-btn-container {
		left: 20px;
		z-index: 9;
		top: 70px;
		transform: none;
	}

	.section {
		/* min-height: auto !important; */
		/* height: auto !important; */
	}

	.botnical-swiper-btn-container .swiper-pagination {
		/* margin: 0; */
	}

	.botanical-div .botanical-slider-wrapper .botanical-content-div {
		width: 100%;
	}

	.drinking-div {
		height: 100dvh !important;
	}

	.drinking-div .container {
		flex-wrap: wrap;
		height: auto;
		display: block;
	}

	.drinking-div .drinking-assets {
		position: static;
		width: 100%;
		height: fit-content;
		height: auto;
		object-fit: contain;
		object-position: top;
	}

	.drinking-div .drinking-content {
		width: 100%;
		padding: 20px;
	}

	.drinking-div .drinking-content p {
		font-size: 13px;
		line-height: 24px;
	}

	.drinking-div .drinking-content img {
		height: 100px;
	}

	.tales-div {
		padding: 60px 0 0px;
		padding: 0;
		height: 100dvh;
	}

	.tales-div .fp-overflow {
		height: 100dvh;
	}

	.tales-div .tales-slider:nth-child(3) {
		display: none;
	}

	.tales-div .tales-slider:nth-child(1) {
		order: 2;
		width: 100%;
		height: auto;
		margin-top: 0px;
	}

	.tales-div .tales-content-div {
		order: 1;
		width: 100%;
		text-align: center;
	}

	.tales-div .tales-content-div img {
		height: 80px;
	}

	.tales-div .container {
		flex-wrap: wrap;
		width: 70%;
		padding-bottom: 0px;
		position: static;
	}

	.tales-div .swiper-button-next {
		right: 10px !important;
		top: 60dvh !important;
	}

	.tales-div .swiper-button-prev {
		left: 10px !important;
		top: 60dvh !important;
	}

	.tales-div .swiper-slide .tales-assets-div {
		height: 410px;
		height: auto;
	}

	.tales-div .tales-slider p {
		font-size: 24px;
		line-height: 28px;
	}

	.tales-div .swiper-pagination {
		bottom: 0px !important;
		display: none;
	}


	.grid-div {
		padding: 80px 0 30px;
		height: 100dvh !important;
	}

	.grid-div .fp-overflow {
		display: flex;
		flex-wrap: wrap;
	}

	.grid-container {
		display: flex;
		flex-wrap: wrap;
	}

	.grid-div .container {
		padding: 0;
	}

	.grid-container .grid-items .lightbox {
		opacity: 1;
		left: 0;
		right: 0;
		margin: 0 auto;
		top: 50%;
		transform: translateY(-50%);
		width: 50px;
		height: 50px;
	}


	.light-box-popup .popup-content .light-box-slider {
		height: 100%;
	}

	footer {
		padding-top: 0;
		margin-top: 0;
	}

	footer .list-wrapper {
		flex-wrap: wrap;
		padding-bottom: 10px;
	}

	footer .list-wrapper .list-div {
		width: 100%;
		margin-bottom: 45px;
		padding: 0;
	}

	footer .list-wrapper .list-div h6 {
		font-size: 20px;
		line-height: 20px;
	}

	footer .list-wrapper .list-div h6 br {
		display: none;
	}

	footer .copy-div p {
		font-size: 12px;
		line-height: 12px;
	}

	footer .copy-div p br {
		display: block;
	}

	footer .blackFooter {
		padding-bottom: 300px;
	}

	footer .blackFooter .overflow-hidden small {
		display: inline;
	}

	footer .blackFooter form .form-control {
		width: 100%;
		margin-bottom: 20px;
	}

	footer .blackFooter .container {
		width: 75%;
	}

	footer .blackFooter .copyDiv .copyRightsDiv {

		flex-wrap: wrap;
		justify-content: space-evenly;
	}

	footer .blackFooter .copyDiv .copyRightsDiv p {
		order: 5;
		margin: 0;
		margin-top: 20px;
		text-align: center;
		width: 100%;
	}

	footer .blackFooter .copyDiv .container {
		width: 100%;
	}

	footer .blackFooter .copyDiv .copyRightsDiv a {
		margin: 0;
	}

	footer .footermerge .bottle-div {
		position: absolute;
		right: 0;
		bottom: -100px;
		height: 400px;
		z-index: 1;
		left: 0;
		margin: 0 auto;
	}





	.legalDiv .zoyaLogo {
		height: 100px;
	}

	.legalDiv h4 {
		font-size: 24px;
		line-height: 28px;
	}

	.legalDiv h6 {

		font-size: 14px;
		line-height: 18px;
	}

	.bg-color {
		margin-bottom: 100px;
	}

	.bg-color .botnical-swiper-btn-container {
		top: 80px;
	}

	.lightBox-open .light-box-popup .popup-content {
		display: flex;
		justify-content: center;
		align-items: center;
		/* height: 100%; */

	}

	.tales-div .tales-assets-div .view-recipe,
	.tales-div .tales-assets-div .play-icon {
		top: 50%;
		transform: translateY(-50%);
		left: 0;
		right: 0;
		margin: 0 auto;
		opacity: 1;
	}

	.popupDiv .mainContentDiv {

		flex-wrap: wrap;
		padding: 100px 20px 0;
		max-height: 100dvh;
		overflow-y: auto;
		position: relative;
	}

	/* .recipePopupSlider .swiper-button-next {
		right: 20px !important;
		top: 97vh !important;
		width: 20px !important;
		height: 20px !important;
	}

	.recipePopupSlider .swiper-button-prev {
		right: 60px !important;
		top: 97vh !important;
		left: auto !important;
		width: 20px !important;
		height: 20px !important;
	} */

	.popupDiv .mainContentDiv .videoContentDiv h3 {

		position: absolute;
		top: 20px;
		left: 20px;
		font-size: 24px;
		line-height: 26px;
		padding: 0px 60px 0 0;
	}

	.popupDiv .mainContentDiv .videoContentDiv h3 br {
		display: none;
	}

	.popupDiv .mainContentDiv .videoAssets {
		width: 100%;
		height: auto;
	}

	.popupDiv .mainContentDiv .muteUnmuteSound {
		left: auto;
		right: 25px;
		bottom: auto;
		top: 110px;

	}

	.popupDiv .mainContentDiv .videoContentDiv {
		width: 100%;
	}

	.popupDiv .mainContentDiv .videoContentDiv .ingredientsMethodsDiv {

		padding: 0;
		border: 0;
		flex-wrap: wrap;
	}

	.popupDiv .mainContentDiv .videoContentDiv .ingredientsMethodsDiv>div {
		width: calc((100% / 1) - 20px);

	}

	.share-div {
		opacity: 1 !important;
	}

	.light-box-popup .popup-content .light-box-slider .swiper-slide {
		width: 100% !important;
	}



	.grid-div .grid-items .lightbox-img {
		height: 400px;
		height: 100%;
	}

	.grid-div .light-box-slider .swiper-slide {
		padding: 0 5px;
	}

	.grid-div .light-box-slider {
		padding: 0 20px;
	}

	.light-box-popup .popup-content .light-box-slider .light-box-assets img {
		height: 100%;
	}

	.lightBox-open .light-box-popup .popup-content .sliderWrapper {
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.plainTextDiv {
		padding: 100px 0;
	}

	.plainTextDiv .container {
		padding: 0;
	}

	.fp-overflow {
		max-height: 100dvh !important;
	}

	.tales-div-inner-page.tales-div .swiper-wrapper {
		gap: 40px;
	}

	.tales-div-inner-page.tales-div .swiper-slide {
		width: 100%;
	}

	.recipePopupSlider .swiper-button-prev {
		left: auto !important;
		right: 50px !important;
		top: 90vh !important;
	}

	.recipePopupSlider .swiper-button-next {
		right: 15px !important;
		top: 90vh !important;
	}

	.recipePopupSlider .swiper-button {
		width: 10px !important;
		height: 25px !important;
	}





}

.overflow-hidden {
	overflow: hidden;
	display: inline-flex;
}

.overflow-hidden small {
	font-size: 100%;
	display: flex;
}

/* bakend css */
body.home header nav ul li:first-child {
	display: none;
}

.wpcf7-response-output,
.wpcf7-not-valid-tip {
	margin-top: 10px;
	font-family: 'GothamBook';
	color: #dc3232 !important;
	font-size: 12px;
	position: absolute;
}

.wpcf7-response-output {
	text-align: center;
	border-width: 1px !important;
	position: static;

}

footer .blackFooter form .checkDiv label:before {
	display: none;
}

footer .blackFooter form .checkDiv label:after {
	display: none;
}

footer .blackFooter form .checkDiv input {
	display: block;
}

footer .blackFooter form .checkDiv label {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	justify-content: center;
}

footer .blackFooter form .checkDiv {
	width: 70%;
	margin: 0 auto;
	margin-top: 15px;
}

footer .blackFooter form .checkDiv .wpcf7-not-valid-tip {
	text-align: center;
	left: 0;
	right: 0;
}

footer .blackFooter form .submit_btn {
	display: block;
	width: 100%;
	text-align: center;
	position: relative;
}

footer .blackFooter form .submit_btn .wpcf7-spinner {
	position: absolute;
	top: 10px;
	left: 0;
	right: 0;
	margin: 0 auto;
}


footer .blackFooter .copyDiv .copyRightsDiv .menu-footermenu-container .footer_links {
	display: flex;
}

@media screen and (max-width: 767px) {
	footer .blackFooter form .checkDiv {
		width: 100%;
	}

	footer .blackFooter form .checkDiv .wpcf7-list-item {
		margin: 0;
	}

	footer .blackFooter form .checkDiv label {
		padding-left: 0;
		justify-content: flex-start;
	}

	footer .locationUl {
		gap: 15px;
	}

	footer .locationUl li {
		width: auto;
	}

	footer .locationUl li:last-child {
		padding-left: 0;
	}
}

.pum-theme-488 .pum-container,
.pum-theme-lightbox .pum-container {
	background: transparent !important;
	border: 0 !important;
	padding: 0 !important;
	box-shadow: none !important;
}

.sharepopup .popupContent ul {
	display: flex;
	justify-content: center;
	align-items: center;
}

.sharepopup .popupContent ul li {
	margin: 0 10px;
}

.sharepopup .popupContent ul li img {
	height: 40px;
	transition: all 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.sharepopup .popupContent ul li:hover img.instaImg {
	transition: all 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
	filter: brightness(0) saturate(100%) invert(24%) sepia(93%) saturate(1750%) hue-rotate(260deg) brightness(85%) contrast(86%);
}

.sharepopup .popupContent ul li:hover img.fbImg {
	transition: all 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
	filter: brightness(0) saturate(100%) invert(31%) sepia(61%) saturate(2103%) hue-rotate(198deg) brightness(104%) contrast(95%);
}

.sharepopup .popupContent ul li:hover img.waImg {
	transition: all 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
	filter: brightness(0) saturate(100%) invert(65%) sepia(25%) saturate(1196%) hue-rotate(77deg) brightness(95%) contrast(86%);
}

@media screen and (max-width: 767px) {

	.pum-theme-488 .pum-content+.pum-close,
	.pum-theme-lightbox .pum-content+.pum-close {
		top: 35px;
	}
}

.browserNote {
	display: none;
	position: fixed;
	top: auto;
	z-index: 9999;
	background: #000;
	width: 100%;
	padding: 10px;
	bottom: 0;
}

.browserNote h2 {
	color: #fff;
	text-align: center;
	font-family: 'GothamLight';
}

/* bakend css */

/* Os CSS */
.safari.iphone .browserNote,
.safari.mac .browserNote {
	display: block;
}

@media screen and (max-width: 767px) {
	.safari.iphone .bottle-container {
		top: 30dvh;
	}

	.safari.iphone .bottle-container.slide1 {
		top: calc(170dvh);
		height: 26dvh;
	}

	.safari.iphone .bottle-container.slide2 {
		top: calc(255dvh);
		height: 26dvh;
	}
	.safari.iphone .bottle-container.slide3{
		top: calc(355dvh);
		height: 65dvh;
	}


}

/* Os CSS */
/* Vday css */

.vday-div {
	position: relative;
	height: 100dvh !important;
}

.vday-div .fp-overflow {
	display: flex;
	align-items: center;
}

.vday-div p {
	text-align: center;
	font-family: 'GothamLight';
	font-size: 20px;
	line-height: 35px;
	color: #000000;
	margin-top: 25px;
}

.drinking-content.hide_line .underline-div:before {
	display: none;
}

.vdayForm form {
	max-width: 1030px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 0 auto;
	margin-top: 40px;
}

.vdayForm form .form-control {
	width: calc(100% / 4);
	padding: 0 5px;
	position: relative;
	padding-bottom: 30px;
}

.vdayForm form .form-control input {
	border: 0;
	border-bottom: 1px solid #8E8E8E;
	border-radius: 0;
	background: transparent;
	color: #676767;
	font-family: 'GothamMedium';
	font-size: 14px;
	padding: 10px 0;
	width: 100%;
	outline: none;
}

.vdayForm form .checkDiv {
	width: 51%;
	margin: 0 auto;
	margin-top: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.vdayForm form .checkDiv p {
	margin-top: 0;
}

.vdayForm form .checkDiv label {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	font-family: 'GothamBook';
	font-size: 10px;
	line-height: 14px;
	letter-spacing: 0px;
	color: #000;
	position: relative;
	padding-left: 25px;
	cursor: pointer;
}

.vdayForm form .checkDiv label span {
	text-align: left;
}

.vdayForm form .checkDiv input {
	display: block;
}

.vdayForm form .submit_btn {
	display: block;
	width: 100%;
	text-align: center;
	position: relative;
}

.vdayForm form .underline-link:hover {
	color: #A02522;
}

.vdayForm form .submit_btn .wpcf7-spinner {
	position: absolute;
	top: 10px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

/* .vday_tnc{
	font-family: 'GothamBook';
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0px;
    color: #A02522;
	display: block;
} */
.vday_tnc .wpcf7-list-item-label:after {
	content: "Terms and Conditions.";
	display: inline;
	font-family: 'GothamBold';
	font-size: 10px;
	line-height: 14px;
	letter-spacing: 0px;
	color: #A02522;
	padding-left: 5px;
}

.vday_spotlight.drinking-div .drinking-content img {
	height: 200px;
}

@media screen and (max-width: 767px) {
	.vday-div {
		height: auto !important;
	}

	.vday-div .fp-overflow {
		align-items: flex-start;
		padding: 80px 0;
	}

	.vday-div p br {
		display: none;
	}

	.vdayForm form .form-control {
		width: calc(100% / 1);
	}

	.vdayForm form .form-control p {
		margin-top: 0;
	}

	.vdayForm form .checkDiv {
		width: 100%;
	}

	.vdayForm .wpcf7-not-valid-tip {
		margin-top: 5px;
		line-height: 1;
	}

	.vdayForm form .checkDiv label {
		padding-left: 0;
	}

	.vdayForm form .checkDiv .wpcf7-list-item {
		margin: 0;
	}

	.vdayForm form .submit_btn {
		padding-top: 20px;
	}

	.vdayForm form .submit_btn {
		margin-top: 0;
	}

	.vday_spotlight .fp-overflow {
		display: flex;
		flex-wrap: wrap;
	}

	.vday_spotlight .drinking-div .drinking-content {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	/* flavours page start */
	.normalPage .fp-overflow{
		flex-wrap: wrap;
	}
.normalPage img{
	height: auto !important;
  }
  .normalPage .innerCard:last-child{
	margin-bottom: 50px;
  }

  /* flavours page end  */
  .flavours-inner-wrapper{
	flex-wrap: wrap;
	padding: 0;
  }
  .flavours-div .flavours-slider-wrapper .flavours-inner-wrapper .flavours-assets-div,
  .flavours-inner-div{
	width: 100%;
	position: relative;
  }
  .flavours-div .flavours-slider-wrapper h3{
	position: static;
	margin-bottom: 30px;
  }
  .flavours-inner-div .flavours-content-div{
	position: absolute;
	margin-top: 0 !important;
  }
  .flavours-inner-div:first-child .flavours-content-div{
	right: 50px;
	width: auto;
	margin: 0;
	top: 100px;
  }
  .flavours-inner-div:last-child .flavours-content-div{
	left: 50px;
	width: auto;
	margin: 0;
	top: 100px;
  }
  .flavours-assets-div .main-img{
	height: 350px;
	position: relative;
	width: auto;
	z-index: 1;
	margin: 0 20px;
  }
  .flavours-assets-div .bg-img{
	position: absolute;
	bottom: 0;
	height: 150px;
	width: 100%;
	object-fit: cover;
  }
  .flavours-inner-div{
	margin-bottom: 20px;
  }
  .flavours-div{
	height: auto !important;
  }
  .flavours-div .flavours-slider-wrapper .flavours-inner-div:last-child .flavours-assets-div{
	display: flex;
			justify-content: flex-end;
	
  }
  .flavours-div .fp-overflow{
	display: unset;
	padding: 50px 0 0 0;
  }
}

/* vday css */

.onlysoptlightpage .mainSwiper section:nth-of-type(1n+2) {
	display: none !important;
}